aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2001-10-10 16:05:21 +0000
committerStefan Monnier2001-10-10 16:05:21 +0000
commite35f6ff7931ff9d1ac4312c2e1cf7afefdd3dcc5 (patch)
tree0e39f1cb6e526797bd10beabdca930f114f6688c /src
parent07becdb1973bdeb055eedb959d7f10abe36b574b (diff)
downloademacs-e35f6ff7931ff9d1ac4312c2e1cf7afefdd3dcc5.tar.gz
emacs-e35f6ff7931ff9d1ac4312c2e1cf7afefdd3dcc5.zip
Include keymap.h.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/buffer.c1
-rw-r--r--src/casefiddle.c1
-rw-r--r--src/category.c1
-rw-r--r--src/cmds.c1
-rw-r--r--src/emacs.c1
-rw-r--r--src/frame.c1
-rw-r--r--src/macros.c1
-rw-r--r--src/syntax.c1
-rw-r--r--src/window.c1
10 files changed, 15 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7312e1b991e..0aaecebaf76 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12001-10-10 Stefan Monnier <monnier@cs.yale.edu>
2
3 * window.c, syntax.c, macros.c, frame.c, emacs.c, cmds.c, category.c,
4 casefiddle.c, buffer.c: Include keymap.h.
5
12001-10-10 Gerd Moellmann <gerd@gnu.org> 62001-10-10 Gerd Moellmann <gerd@gnu.org>
2 7
3 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Add `-nointrinsics' 8 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Add `-nointrinsics'
@@ -11,7 +16,7 @@
11 * editfns.c (Fcurrent_time_zone): Cast isalnum() argument to 16 * editfns.c (Fcurrent_time_zone): Cast isalnum() argument to
12 unsigned char. 17 unsigned char.
13 From Hallvard B Furuseth <h.b.furuseth@usit.uio.no>. 18 From Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
14 19
152001-10-08 Andrew Innes <andrewi@gnu.org> 202001-10-08 Andrew Innes <andrewi@gnu.org>
16 21
17 * lisp.h [max]: Undef min and max before redefining them. 22 * lisp.h [max]: Undef min and max before redefining them.
diff --git a/src/buffer.c b/src/buffer.c
index 198139019ea..b5d1ab89c5c 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -49,6 +49,7 @@ extern int errno;
49#include "indent.h" 49#include "indent.h"
50#include "blockinput.h" 50#include "blockinput.h"
51#include "keyboard.h" 51#include "keyboard.h"
52#include "keymap.h"
52#include "frame.h" 53#include "frame.h"
53 54
54struct buffer *current_buffer; /* the current buffer */ 55struct buffer *current_buffer; /* the current buffer */
diff --git a/src/casefiddle.c b/src/casefiddle.c
index 887cce0c51a..61928794ec1 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA. */
26#include "commands.h" 26#include "commands.h"
27#include "syntax.h" 27#include "syntax.h"
28#include "composite.h" 28#include "composite.h"
29#include "keymap.h"
29 30
30enum case_action {CASE_UP, CASE_DOWN, CASE_CAPITALIZE, CASE_CAPITALIZE_UP}; 31enum case_action {CASE_UP, CASE_DOWN, CASE_CAPITALIZE, CASE_CAPITALIZE_UP};
31 32
diff --git a/src/category.c b/src/category.c
index e77d6f3b753..c09e32e8d47 100644
--- a/src/category.c
+++ b/src/category.c
@@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */
29#include "buffer.h" 29#include "buffer.h"
30#include "charset.h" 30#include "charset.h"
31#include "category.h" 31#include "category.h"
32#include "keymap.h"
32 33
33/* The version number of the latest category table. Each category 34/* The version number of the latest category table. Each category
34 table has a unique version number. It is assigned a new number 35 table has a unique version number. It is assigned a new number
diff --git a/src/cmds.c b/src/cmds.c
index b3394c2fc4e..f938cc133db 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */
27#include "syntax.h" 27#include "syntax.h"
28#include "window.h" 28#include "window.h"
29#include "keyboard.h" 29#include "keyboard.h"
30#include "keymap.h"
30#include "dispextern.h" 31#include "dispextern.h"
31 32
32Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; 33Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function;
diff --git a/src/emacs.c b/src/emacs.c
index ab9521cc4c7..8f4cd6568c8 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -51,6 +51,7 @@ Boston, MA 02111-1307, USA. */
51#include "process.h" 51#include "process.h"
52#include "termhooks.h" 52#include "termhooks.h"
53#include "keyboard.h" 53#include "keyboard.h"
54#include "keymap.h"
54 55
55#ifdef HAVE_SETLOCALE 56#ifdef HAVE_SETLOCALE
56#include <locale.h> 57#include <locale.h>
diff --git a/src/frame.c b/src/frame.c
index 3fb507b7752..0e41812b800 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -37,6 +37,7 @@ Boston, MA 02111-1307, USA. */
37/* These help us bind and responding to switch-frame events. */ 37/* These help us bind and responding to switch-frame events. */
38#include "commands.h" 38#include "commands.h"
39#include "keyboard.h" 39#include "keyboard.h"
40#include "keymap.h"
40#include "frame.h" 41#include "frame.h"
41#ifdef HAVE_WINDOW_SYSTEM 42#ifdef HAVE_WINDOW_SYSTEM
42#include "fontset.h" 43#include "fontset.h"
diff --git a/src/macros.c b/src/macros.c
index c70e29d9db1..c585685bc1c 100644
--- a/src/macros.c
+++ b/src/macros.c
@@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA. */
26#include "buffer.h" 26#include "buffer.h"
27#include "window.h" 27#include "window.h"
28#include "keyboard.h" 28#include "keyboard.h"
29#include "keymap.h"
29 30
30Lisp_Object Qexecute_kbd_macro, Qkbd_macro_termination_hook; 31Lisp_Object Qexecute_kbd_macro, Qkbd_macro_termination_hook;
31 32
diff --git a/src/syntax.c b/src/syntax.c
index b2799924a5b..28ec964f877 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA. */
25#include "commands.h" 25#include "commands.h"
26#include "buffer.h" 26#include "buffer.h"
27#include "charset.h" 27#include "charset.h"
28#include "keymap.h"
28 29
29/* Make syntax table lookup grant data in gl_state. */ 30/* Make syntax table lookup grant data in gl_state. */
30#define SYNTAX_ENTRY_VIA_PROPERTY 31#define SYNTAX_ENTRY_VIA_PROPERTY
diff --git a/src/window.c b/src/window.c
index b486a38b9d2..11c56bbbe73 100644
--- a/src/window.c
+++ b/src/window.c
@@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */
24#include "lisp.h" 24#include "lisp.h"
25#include "buffer.h" 25#include "buffer.h"
26#include "keyboard.h" 26#include "keyboard.h"
27#include "keymap.h"
27#include "frame.h" 28#include "frame.h"
28#include "window.h" 29#include "window.h"
29#include "commands.h" 30#include "commands.h"