Mercurial > emacs
changeset 39748:42b7a798ff79
Include keymap.h.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 10 Oct 2001 16:05:21 +0000 |
parents | 38acb74fef5f |
children | d1b30da5bcfc |
files | src/ChangeLog src/buffer.c src/casefiddle.c src/category.c src/cmds.c src/emacs.c src/frame.c src/macros.c src/syntax.c src/window.c |
diffstat | 10 files changed, 15 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Wed Oct 10 14:39:23 2001 +0000 +++ b/src/ChangeLog Wed Oct 10 16:05:21 2001 +0000 @@ -1,3 +1,8 @@ +2001-10-10 Stefan Monnier <monnier@cs.yale.edu> + + * 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 <gerd@gnu.org> * 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 <h.b.furuseth@usit.uio.no>. - + 2001-10-08 Andrew Innes <andrewi@gnu.org> * lisp.h [max]: Undef min and max before redefining them.
--- a/src/buffer.c Wed Oct 10 14:39:23 2001 +0000 +++ b/src/buffer.c Wed Oct 10 16:05:21 2001 +0000 @@ -49,6 +49,7 @@ #include "indent.h" #include "blockinput.h" #include "keyboard.h" +#include "keymap.h" #include "frame.h" struct buffer *current_buffer; /* the current buffer */
--- a/src/casefiddle.c Wed Oct 10 14:39:23 2001 +0000 +++ b/src/casefiddle.c Wed Oct 10 16:05:21 2001 +0000 @@ -26,6 +26,7 @@ #include "commands.h" #include "syntax.h" #include "composite.h" +#include "keymap.h" enum case_action {CASE_UP, CASE_DOWN, CASE_CAPITALIZE, CASE_CAPITALIZE_UP};
--- a/src/category.c Wed Oct 10 14:39:23 2001 +0000 +++ b/src/category.c Wed Oct 10 16:05:21 2001 +0000 @@ -29,6 +29,7 @@ #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
--- a/src/cmds.c Wed Oct 10 14:39:23 2001 +0000 +++ b/src/cmds.c Wed Oct 10 16:05:21 2001 +0000 @@ -27,6 +27,7 @@ #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;
--- a/src/emacs.c Wed Oct 10 14:39:23 2001 +0000 +++ b/src/emacs.c Wed Oct 10 16:05:21 2001 +0000 @@ -51,6 +51,7 @@ #include "process.h" #include "termhooks.h" #include "keyboard.h" +#include "keymap.h" #ifdef HAVE_SETLOCALE #include <locale.h>
--- a/src/frame.c Wed Oct 10 14:39:23 2001 +0000 +++ b/src/frame.c Wed Oct 10 16:05:21 2001 +0000 @@ -37,6 +37,7 @@ /* 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"
--- a/src/macros.c Wed Oct 10 14:39:23 2001 +0000 +++ b/src/macros.c Wed Oct 10 16:05:21 2001 +0000 @@ -26,6 +26,7 @@ #include "buffer.h" #include "window.h" #include "keyboard.h" +#include "keymap.h" Lisp_Object Qexecute_kbd_macro, Qkbd_macro_termination_hook;