aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-10-08 11:39:52 +0000
committerStefan Monnier2001-10-08 11:39:52 +0000
commit8feddab4e024ab610b6e7c3399bfcd2f63b4a6f9 (patch)
treedcae62fc4f26f73909e023530f445e8f1e98e270
parent0c5b23f8ef29d76dd955986e0094549cb7c1aadf (diff)
downloademacs-8feddab4e024ab610b6e7c3399bfcd2f63b4a6f9.tar.gz
emacs-8feddab4e024ab610b6e7c3399bfcd2f63b4a6f9.zip
Include keymap.h.
-rw-r--r--src/callint.c1
-rw-r--r--src/doc.c1
-rw-r--r--src/fns.c1
-rw-r--r--src/intervals.c1
-rw-r--r--src/keymap.c1
-rw-r--r--src/minibuf.c1
-rw-r--r--src/term.c1
-rw-r--r--src/w32term.c1
-rw-r--r--src/xterm.c1
9 files changed, 9 insertions, 0 deletions
diff --git a/src/callint.c b/src/callint.c
index df3ada4f04a..caacef7565a 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */
27#include "keyboard.h" 27#include "keyboard.h"
28#include "window.h" 28#include "window.h"
29#include "mocklisp.h" 29#include "mocklisp.h"
30#include "keymap.h"
30 31
31#ifdef HAVE_INDEX 32#ifdef HAVE_INDEX
32extern char *index P_ ((const char *, int)); 33extern char *index P_ ((const char *, int));
diff --git a/src/doc.c b/src/doc.c
index f98303a30de..09f377bb1af 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -40,6 +40,7 @@ Boston, MA 02111-1307, USA. */
40#include "buffer.h" 40#include "buffer.h"
41#include "keyboard.h" 41#include "keyboard.h"
42#include "charset.h" 42#include "charset.h"
43#include "keymap.h"
43 44
44#ifdef HAVE_INDEX 45#ifdef HAVE_INDEX
45extern char *index P_ ((const char *, int)); 46extern char *index P_ ((const char *, int));
diff --git a/src/fns.c b/src/fns.c
index 8497b065bfd..162bc16ad2b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -38,6 +38,7 @@ Boston, MA 02111-1307, USA. */
38 38
39#include "buffer.h" 39#include "buffer.h"
40#include "keyboard.h" 40#include "keyboard.h"
41#include "keymap.h"
41#include "intervals.h" 42#include "intervals.h"
42#include "frame.h" 43#include "frame.h"
43#include "window.h" 44#include "window.h"
diff --git a/src/intervals.c b/src/intervals.c
index 731a0f99121..06d6d5995bd 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -45,6 +45,7 @@ Boston, MA 02111-1307, USA. */
45#include "buffer.h" 45#include "buffer.h"
46#include "puresize.h" 46#include "puresize.h"
47#include "keyboard.h" 47#include "keyboard.h"
48#include "keymap.h"
48 49
49/* Test for membership, allowing for t (actually any non-cons) to mean the 50/* Test for membership, allowing for t (actually any non-cons) to mean the
50 universal set. */ 51 universal set. */
diff --git a/src/keymap.c b/src/keymap.c
index ac2727a623e..d4f23bb3dab 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -31,6 +31,7 @@ Boston, MA 02111-1307, USA. */
31#include "blockinput.h" 31#include "blockinput.h"
32#include "puresize.h" 32#include "puresize.h"
33#include "intervals.h" 33#include "intervals.h"
34#include "keymap.h"
34 35
35/* The number of elements in keymap vectors. */ 36/* The number of elements in keymap vectors. */
36#define DENSE_TABLE_SIZE (0200) 37#define DENSE_TABLE_SIZE (0200)
diff --git a/src/minibuf.c b/src/minibuf.c
index 8a1923d0ef6..c9b20a2e3f5 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. */
32#include "window.h" 32#include "window.h"
33#include "syntax.h" 33#include "syntax.h"
34#include "intervals.h" 34#include "intervals.h"
35#include "keymap.h"
35 36
36extern int quit_char; 37extern int quit_char;
37 38
diff --git a/src/term.c b/src/term.c
index dcdbe9dddac..9f281db0182 100644
--- a/src/term.c
+++ b/src/term.c
@@ -36,6 +36,7 @@ Boston, MA 02111-1307, USA. */
36#include "termhooks.h" 36#include "termhooks.h"
37#include "dispextern.h" 37#include "dispextern.h"
38#include "window.h" 38#include "window.h"
39#include "keymap.h"
39 40
40/* For now, don't try to include termcap.h. On some systems, 41/* For now, don't try to include termcap.h. On some systems,
41 configure finds a non-standard termcap.h that the main build 42 configure finds a non-standard termcap.h that the main build
diff --git a/src/w32term.c b/src/w32term.c
index ba4326f94e6..42a8fdd957f 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -35,6 +35,7 @@ Boston, MA 02111-1307, USA. */
35#include "systty.h" 35#include "systty.h"
36#include "systime.h" 36#include "systime.h"
37#include "atimer.h" 37#include "atimer.h"
38#include "keymap.h"
38 39
39#include <ctype.h> 40#include <ctype.h>
40#include <errno.h> 41#include <errno.h>
diff --git a/src/xterm.c b/src/xterm.c
index 1dffe8da1b5..b977fa6db36 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -84,6 +84,7 @@ Boston, MA 02111-1307, USA. */
84#include "intervals.h" 84#include "intervals.h"
85#include "process.h" 85#include "process.h"
86#include "atimer.h" 86#include "atimer.h"
87#include "keymap.h"
87 88
88#ifdef USE_X_TOOLKIT 89#ifdef USE_X_TOOLKIT
89#include <X11/Shell.h> 90#include <X11/Shell.h>