diff options
| author | Andrew Innes | 2000-08-22 22:23:58 +0000 |
|---|---|---|
| committer | Andrew Innes | 2000-08-22 22:23:58 +0000 |
| commit | 026396097f5d5f831523aba048a70f0aa9ae671e (patch) | |
| tree | 1bc6a91b3804ea77e9a8dbd32078d79b9197e420 /src | |
| parent | f12ef5ebfd680c9aeeab106d0de5966ee3bf2075 (diff) | |
| download | emacs-026396097f5d5f831523aba048a70f0aa9ae671e.tar.gz emacs-026396097f5d5f831523aba048a70f0aa9ae671e.zip | |
Include keyboard.h before frame.h.
[USE_CRT_DLL]: Remove unnecessary extern, which
screws up dllimport attributes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 0dfae2f76d7..6c25c3d99ee 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 27 | #include "lisp.h" | 27 | #include "lisp.h" |
| 28 | #include "termhooks.h" | 28 | #include "termhooks.h" |
| 29 | #include "macros.h" | 29 | #include "macros.h" |
| 30 | #include "keyboard.h" | ||
| 30 | #include "frame.h" | 31 | #include "frame.h" |
| 31 | #include "window.h" | 32 | #include "window.h" |
| 32 | #include "commands.h" | 33 | #include "commands.h" |
| @@ -34,7 +35,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 34 | #include "charset.h" | 35 | #include "charset.h" |
| 35 | #include "disptab.h" | 36 | #include "disptab.h" |
| 36 | #include "dispextern.h" | 37 | #include "dispextern.h" |
| 37 | #include "keyboard.h" | ||
| 38 | #include "syntax.h" | 38 | #include "syntax.h" |
| 39 | #include "intervals.h" | 39 | #include "intervals.h" |
| 40 | #include "blockinput.h" | 40 | #include "blockinput.h" |
| @@ -73,7 +73,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 73 | /* Include systime.h after xterm.h to avoid double inclusion of time.h. */ | 73 | /* Include systime.h after xterm.h to avoid double inclusion of time.h. */ |
| 74 | #include "systime.h" | 74 | #include "systime.h" |
| 75 | 75 | ||
| 76 | #ifndef USE_CRT_DLL | ||
| 76 | extern int errno; | 77 | extern int errno; |
| 78 | #endif | ||
| 77 | 79 | ||
| 78 | /* Variables for blockinput.h: */ | 80 | /* Variables for blockinput.h: */ |
| 79 | 81 | ||