aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1998-04-29 04:34:05 +0000
committerGeoff Voelker1998-04-29 04:34:05 +0000
commit6d55d620a61d672067cdcd5880968606f9d9cf27 (patch)
tree50bf2a9107d24c36eb73b868489fb6d43dbe23b4 /src
parent051024111a5e938d5f502b780668b1aaf7dd2f7f (diff)
downloademacs-6d55d620a61d672067cdcd5880968606f9d9cf27.tar.gz
emacs-6d55d620a61d672067cdcd5880968606f9d9cf27.zip
Conditionally include xterm.h using HAVE_X_WINDOWS.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
-rw-r--r--src/window.c2
-rw-r--r--src/xdisp.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c
index cb597b0c614..7d461089471 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -28,6 +28,8 @@ Boston, MA 02111-1307, USA. */
28#include "charset.h" 28#include "charset.h"
29#ifdef HAVE_WINDOW_SYSTEM 29#ifdef HAVE_WINDOW_SYSTEM
30#include "fontset.h" 30#include "fontset.h"
31#endif
32#ifdef HAVE_X_WINDOWS
31#include "xterm.h" 33#include "xterm.h"
32#endif 34#endif
33#include "frame.h" 35#include "frame.h"
diff --git a/src/window.c b/src/window.c
index 1f4815eba3e..e4ba54a4c68 100644
--- a/src/window.c
+++ b/src/window.c
@@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA. */
31#include "keyboard.h" 31#include "keyboard.h"
32#include "blockinput.h" 32#include "blockinput.h"
33#include "dispextern.h" 33#include "dispextern.h"
34#ifdef HAVE_WINDOW_SYSTEM 34#ifdef HAVE_X_WINDOWS
35#include "xterm.h" 35#include "xterm.h"
36#endif 36#endif
37 37
diff --git a/src/xdisp.c b/src/xdisp.c
index 6419c5b3aa0..2ac8e7d45b4 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -42,7 +42,7 @@ Boston, MA 02111-1307, USA. */
42#include "process.h" 42#include "process.h"
43#include "region-cache.h" 43#include "region-cache.h"
44 44
45#ifdef HAVE_WINDOW_SYSTEM 45#ifdef HAVE_X_WINDOWS
46#include "xterm.h" 46#include "xterm.h"
47#endif 47#endif
48 48