aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-10-15 15:09:58 +0000
committerKim F. Storm2004-10-15 15:09:58 +0000
commitdbb37962f96acdd8af6abf530b178f3a7a51b401 (patch)
tree30bf5e93e665d240e326d0014bee833f9418736f /src
parent3584d95d9dbc791526e4cd84187176861fe5963d (diff)
downloademacs-dbb37962f96acdd8af6abf530b178f3a7a51b401.tar.gz
emacs-dbb37962f96acdd8af6abf530b178f3a7a51b401.zip
Add comment.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/xterm.h5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e92e6b96eec..509add7e1d5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -15,7 +15,7 @@
152004-10-14 Kim F. Storm <storm@cua.dk> 152004-10-14 Kim F. Storm <storm@cua.dk>
16 16
17 * xterm.h: Include Xutil.h after keysym.h to work around bug 17 * xterm.h: Include Xutil.h after keysym.h to work around bug
18 (incorrectly recognising AltGr key) in some X versions. 18 in some X versions.
19 19
202004-10-13 Stefan Monnier <monnier@iro.umontreal.ca> 202004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
21 21
diff --git a/src/xterm.h b/src/xterm.h
index ad5374ace6f..d3f5cee1277 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -21,8 +21,13 @@ Boston, MA 02111-1307, USA. */
21 21
22#include <X11/Xlib.h> 22#include <X11/Xlib.h>
23#include <X11/cursorfont.h> 23#include <X11/cursorfont.h>
24
25/* Include Xutil.h after keysym.h to work around a bug that prevents
26 correct recognition of AltGr key in some X versions. */
27
24#include <X11/keysym.h> 28#include <X11/keysym.h>
25#include <X11/Xutil.h> 29#include <X11/Xutil.h>
30
26#include <X11/Xatom.h> 31#include <X11/Xatom.h>
27#include <X11/Xresource.h> 32#include <X11/Xresource.h>
28 33