]> git.eshelyaron.com Git - emacs.git/commitdiff
Conditionally include xterm.h using HAVE_X_WINDOWS.
authorGeoff Voelker <voelker@cs.washington.edu>
Wed, 29 Apr 1998 04:34:05 +0000 (04:34 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Wed, 29 Apr 1998 04:34:05 +0000 (04:34 +0000)
src/frame.c
src/window.c
src/xdisp.c

index cb597b0c614fa813dff9bad1b797978dbe8b7d21..7d461089471f36cff91c060749ae3b823ef2e63f 100644 (file)
@@ -28,6 +28,8 @@ Boston, MA 02111-1307, USA.  */
 #include "charset.h"
 #ifdef HAVE_WINDOW_SYSTEM
 #include "fontset.h"
+#endif
+#ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif
 #include "frame.h"
index 1f4815eba3e2e530b4ae6046c7d6ba1794a50c32..e4ba54a4c6804b3242b71650d4f29a09d629ad46 100644 (file)
@@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA.  */
 #include "keyboard.h"
 #include "blockinput.h"
 #include "dispextern.h"
-#ifdef HAVE_WINDOW_SYSTEM
+#ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif
 
index 6419c5b3aa04fdd7111314d32b71a2057b900507..2ac8e7d45b497e715ae69615323491c11d3cfe0f 100644 (file)
@@ -42,7 +42,7 @@ Boston, MA 02111-1307, USA.  */
 #include "process.h"
 #include "region-cache.h"
 
-#ifdef HAVE_WINDOW_SYSTEM
+#ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif