diff options
author | Daniel Colascione <dancol@dancol.org> | 2012-08-31 22:38:52 -0800 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2012-08-31 22:38:52 -0800 |
commit | 17a2cbbd76385d0be8a4b28974e64f4debf459c1 (patch) | |
tree | c9d9f61e8580269679c9583ee94ccd812cca5790 /src/gtkutil.h | |
parent | c650a5dec69902c684c5333befd35da6c518c5e0 (diff) | |
download | emacs-17a2cbbd76385d0be8a4b28974e64f4debf459c1.tar.gz emacs-17a2cbbd76385d0be8a4b28974e64f4debf459c1.tar.bz2 emacs-17a2cbbd76385d0be8a4b28974e64f4debf459c1.zip |
Refactor window-system configuration
This change streamlines the window system selection code in
configure.in and moves many common function declarations from
window-specific headers to frame.h. It introduces a new TERM_HEADER
macro in config.h: we set this macro to the right header to use for
the window system for which we're compiling Emacs and have source
files include it indirectly. This way, we don't have to teach every
file about every window system.
Diffstat (limited to 'src/gtkutil.h')
-rw-r--r-- | src/gtkutil.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gtkutil.h b/src/gtkutil.h index 462e879d3e7..c1b6634999f 100644 --- a/src/gtkutil.h +++ b/src/gtkutil.h @@ -25,6 +25,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include <gtk/gtk.h> #include "frame.h" +#include "xterm.h" /* Minimum and maximum values used for GTK scroll bars */ |