From e35f6ff7931ff9d1ac4312c2e1cf7afefdd3dcc5 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 10 Oct 2001 16:05:21 +0000 Subject: [PATCH] Include keymap.h. --- src/ChangeLog | 7 ++++++- src/buffer.c | 1 + src/casefiddle.c | 1 + src/category.c | 1 + src/cmds.c | 1 + src/emacs.c | 1 + src/frame.c | 1 + src/macros.c | 1 + src/syntax.c | 1 + src/window.c | 1 + 10 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 7312e1b991..0aaecebaf7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-10-10 Stefan Monnier + + * window.c, syntax.c, macros.c, frame.c, emacs.c, cmds.c, category.c, + casefiddle.c, buffer.c: Include keymap.h. + 2001-10-10 Gerd Moellmann * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Add `-nointrinsics' @@ -11,7 +16,7 @@ * editfns.c (Fcurrent_time_zone): Cast isalnum() argument to unsigned char. From Hallvard B Furuseth . - + 2001-10-08 Andrew Innes * lisp.h [max]: Undef min and max before redefining them. diff --git a/src/buffer.c b/src/buffer.c index 198139019e..b5d1ab89c5 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -49,6 +49,7 @@ extern int errno; #include "indent.h" #include "blockinput.h" #include "keyboard.h" +#include "keymap.h" #include "frame.h" struct buffer *current_buffer; /* the current buffer */ diff --git a/src/casefiddle.c b/src/casefiddle.c index 887cce0c51..61928794ec 100644 --- a/src/casefiddle.c +++ b/src/casefiddle.c @@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA. */ #include "commands.h" #include "syntax.h" #include "composite.h" +#include "keymap.h" enum case_action {CASE_UP, CASE_DOWN, CASE_CAPITALIZE, CASE_CAPITALIZE_UP}; diff --git a/src/category.c b/src/category.c index e77d6f3b75..c09e32e8d4 100644 --- a/src/category.c +++ b/src/category.c @@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */ #include "buffer.h" #include "charset.h" #include "category.h" +#include "keymap.h" /* The version number of the latest category table. Each category table has a unique version number. It is assigned a new number diff --git a/src/cmds.c b/src/cmds.c index b3394c2fc4..f938cc133d 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */ #include "syntax.h" #include "window.h" #include "keyboard.h" +#include "keymap.h" #include "dispextern.h" Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; diff --git a/src/emacs.c b/src/emacs.c index ab9521cc4c..8f4cd6568c 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -51,6 +51,7 @@ Boston, MA 02111-1307, USA. */ #include "process.h" #include "termhooks.h" #include "keyboard.h" +#include "keymap.h" #ifdef HAVE_SETLOCALE #include diff --git a/src/frame.c b/src/frame.c index 3fb507b775..0e41812b80 100644 --- a/src/frame.c +++ b/src/frame.c @@ -37,6 +37,7 @@ Boston, MA 02111-1307, USA. */ /* These help us bind and responding to switch-frame events. */ #include "commands.h" #include "keyboard.h" +#include "keymap.h" #include "frame.h" #ifdef HAVE_WINDOW_SYSTEM #include "fontset.h" diff --git a/src/macros.c b/src/macros.c index c70e29d9db..c585685bc1 100644 --- a/src/macros.c +++ b/src/macros.c @@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA. */ #include "buffer.h" #include "window.h" #include "keyboard.h" +#include "keymap.h" Lisp_Object Qexecute_kbd_macro, Qkbd_macro_termination_hook; diff --git a/src/syntax.c b/src/syntax.c index b2799924a5..28ec964f87 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA. */ #include "commands.h" #include "buffer.h" #include "charset.h" +#include "keymap.h" /* Make syntax table lookup grant data in gl_state. */ #define SYNTAX_ENTRY_VIA_PROPERTY diff --git a/src/window.c b/src/window.c index b486a38b9d..11c56bbbe7 100644 --- a/src/window.c +++ b/src/window.c @@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */ #include "lisp.h" #include "buffer.h" #include "keyboard.h" +#include "keymap.h" #include "frame.h" #include "window.h" #include "commands.h" -- 2.20.1