aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/keyboard.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 280d430dbd8..c6ab6985ed0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12005-02-12 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * keyboard.c: If HAVE_FCNTL_H include fcntl.h.
4
12005-02-12 Kim F. Storm <storm@cua.dk> 52005-02-12 Kim F. Storm <storm@cua.dk>
2 6
3 * xdisp.c (expose_window): Don't fix overlaps for mode lines. 7 * xdisp.c (expose_window): Don't fix overlaps for mode lines.
diff --git a/src/keyboard.c b/src/keyboard.c
index 3b7d2aac981..996aad15b30 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -65,6 +65,10 @@ Boston, MA 02111-1307, USA. */
65#include <unistd.h> 65#include <unistd.h>
66#endif 66#endif
67 67
68#ifdef HAVE_FCNTL_H
69#include <fcntl.h>
70#endif
71
68/* This is to get the definitions of the XK_ symbols. */ 72/* This is to get the definitions of the XK_ symbols. */
69#ifdef HAVE_X_WINDOWS 73#ifdef HAVE_X_WINDOWS
70#include "xterm.h" 74#include "xterm.h"