diff options
author | Kim F. Storm <storm@cua.dk> | 2004-10-13 22:05:40 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-10-13 22:05:40 +0000 |
commit | 7ba426fb285aa6abc6f6657ad8d02a8e55907715 (patch) | |
tree | 0b82d948420c42da236c5d1bc812a6e57114530f /src/xterm.h | |
parent | 329a7be22c90266a5655490418389a9f2d3f1d8c (diff) | |
download | emacs-7ba426fb285aa6abc6f6657ad8d02a8e55907715.tar.gz |
Include Xutil.h after keysym.h to work around bug
(incorrectly recognising AltGr key) in some X versions.
Diffstat (limited to 'src/xterm.h')
-rw-r--r-- | src/xterm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.h b/src/xterm.h index 1ff0201928d..ad5374ace6f 100644 --- a/src/xterm.h +++ b/src/xterm.h @@ -21,8 +21,8 @@ Boston, MA 02111-1307, USA. */ #include <X11/Xlib.h> #include <X11/cursorfont.h> -#include <X11/Xutil.h> #include <X11/keysym.h> +#include <X11/Xutil.h> #include <X11/Xatom.h> #include <X11/Xresource.h> |