Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e35f6ff7
Commit
e35f6ff7
authored
Oct 10, 2001
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include keymap.h.
parent
07becdb1
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
15 additions
and
1 deletion
+15
-1
src/ChangeLog
src/ChangeLog
+6
-1
src/buffer.c
src/buffer.c
+1
-0
src/casefiddle.c
src/casefiddle.c
+1
-0
src/category.c
src/category.c
+1
-0
src/cmds.c
src/cmds.c
+1
-0
src/emacs.c
src/emacs.c
+1
-0
src/frame.c
src/frame.c
+1
-0
src/macros.c
src/macros.c
+1
-0
src/syntax.c
src/syntax.c
+1
-0
src/window.c
src/window.c
+1
-0
No files found.
src/ChangeLog
View file @
e35f6ff7
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.
...
...
src/buffer.c
View file @
e35f6ff7
...
...
@@ -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 */
...
...
src/casefiddle.c
View file @
e35f6ff7
...
...
@@ -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
};
...
...
src/category.c
View file @
e35f6ff7
...
...
@@ -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
...
...
src/cmds.c
View file @
e35f6ff7
...
...
@@ -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
;
...
...
src/emacs.c
View file @
e35f6ff7
...
...
@@ -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 <locale.h>
...
...
src/frame.c
View file @
e35f6ff7
...
...
@@ -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"
...
...
src/macros.c
View file @
e35f6ff7
...
...
@@ -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
;
...
...
src/syntax.c
View file @
e35f6ff7
...
...
@@ -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
...
...
src/window.c
View file @
e35f6ff7
...
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment