Mercurial > emacs
comparison src/buffer.c @ 31102:6a0caa788013
Include keyboard.h before frame.h.
| author | Andrew Innes <andrewi@gnu.org> |
|---|---|
| date | Tue, 22 Aug 2000 22:41:00 +0000 |
| parents | c1de0fc3a34b |
| children | 89c7c0e869af |
comparison
equal
deleted
inserted
replaced
| 31101:1a4f15527382 | 31102:6a0caa788013 |
|---|---|
| 24 #include <sys/types.h> | 24 #include <sys/types.h> |
| 25 #include <sys/stat.h> | 25 #include <sys/stat.h> |
| 26 #include <sys/param.h> | 26 #include <sys/param.h> |
| 27 #include <errno.h> | 27 #include <errno.h> |
| 28 | 28 |
| 29 #ifndef USE_CRT_DLL | |
| 29 extern int errno; | 30 extern int errno; |
| 31 #endif | |
| 30 | 32 |
| 31 #ifndef MAXPATHLEN | 33 #ifndef MAXPATHLEN |
| 32 /* in 4.1, param.h fails to define this. */ | 34 /* in 4.1, param.h fails to define this. */ |
| 33 #define MAXPATHLEN 1024 | 35 #define MAXPATHLEN 1024 |
| 34 #endif /* not MAXPATHLEN */ | 36 #endif /* not MAXPATHLEN */ |
| 43 #include "buffer.h" | 45 #include "buffer.h" |
| 44 #include "charset.h" | 46 #include "charset.h" |
| 45 #include "region-cache.h" | 47 #include "region-cache.h" |
| 46 #include "indent.h" | 48 #include "indent.h" |
| 47 #include "blockinput.h" | 49 #include "blockinput.h" |
| 50 #include "keyboard.h" | |
| 48 #include "frame.h" | 51 #include "frame.h" |
| 49 | 52 |
| 50 struct buffer *current_buffer; /* the current buffer */ | 53 struct buffer *current_buffer; /* the current buffer */ |
| 51 | 54 |
| 52 /* First buffer in chain of all buffers (in reverse order of creation). | 55 /* First buffer in chain of all buffers (in reverse order of creation). |
