diff options
author | Andrew Innes <andrewi@gnu.org> | 2000-08-22 22:41:00 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2000-08-22 22:41:00 +0000 |
commit | 2538fae4f8e5e7a82449dd904d471439c9eb6345 (patch) | |
tree | 3eb2c6bdc5fe15319a0764da29721cbd218054f3 /src/buffer.c | |
parent | e36ec798cc3811bf267219ebddd411e6c3ddb309 (diff) | |
download | emacs-2538fae4f8e5e7a82449dd904d471439c9eb6345.tar.gz |
Include keyboard.h before frame.h.
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index ea4d4699ceb..9e2142b0bfc 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -26,7 +26,9 @@ Boston, MA 02111-1307, USA. */ #include <sys/param.h> #include <errno.h> +#ifndef USE_CRT_DLL extern int errno; +#endif #ifndef MAXPATHLEN /* in 4.1, param.h fails to define this. */ @@ -45,6 +47,7 @@ extern int errno; #include "region-cache.h" #include "indent.h" #include "blockinput.h" +#include "keyboard.h" #include "frame.h" struct buffer *current_buffer; /* the current buffer */ |