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
2538fae4
Commit
2538fae4
authored
Aug 22, 2000
by
Andrew Innes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include keyboard.h before frame.h.
parent
e36ec798
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
14 additions
and
10 deletions
+14
-10
src/alloc.c
src/alloc.c
+1
-1
src/buffer.c
src/buffer.c
+3
-0
src/fontset.c
src/fontset.c
+1
-0
src/frame.c
src/frame.c
+4
-6
src/indent.c
src/indent.c
+1
-0
src/minibuf.c
src/minibuf.c
+1
-1
src/print.c
src/print.c
+1
-1
src/scroll.c
src/scroll.c
+1
-0
src/term.c
src/term.c
+1
-1
No files found.
src/alloc.c
View file @
2538fae4
...
...
@@ -36,9 +36,9 @@ Boston, MA 02111-1307, USA. */
#include "puresize.h"
#include "buffer.h"
#include "window.h"
#include "keyboard.h"
#include "frame.h"
#include "blockinput.h"
#include "keyboard.h"
#include "charset.h"
#include "syssignal.h"
#include <setjmp.h>
...
...
src/buffer.c
View file @
2538fae4
...
...
@@ -26,7 +26,9 @@ Boston, MA 02111-1307, USA. */
#include <sys/param.h>
#include <errno.h>
#ifndef USE_CRT_DLL
extern int errno;
#endif
#ifndef MAXPATHLEN
/* in 4.1, param.h fails to define this. */
...
...
@@ -45,6 +47,7 @@ extern int errno;
#include "region-cache.h"
#include "indent.h"
#include "blockinput.h"
#include "keyboard.h"
#include "frame.h"
struct buffer *current_buffer; /* the current buffer */
...
...
src/fontset.c
View file @
2538fae4
...
...
@@ -31,6 +31,7 @@ Boston, MA 02111-1307, USA. */
#include "buffer.h"
#include "charset.h"
#include "ccl.h"
#include "keyboard.h"
#include "frame.h"
#include "dispextern.h"
#include "fontset.h"
...
...
src/frame.c
View file @
2538fae4
...
...
@@ -29,6 +29,10 @@ Boston, MA 02111-1307, USA. */
#ifdef WINDOWSNT
#include "w32term.h"
#endif
#include "buffer.h"
/* These help us bind and responding to switch-frame events. */
#include "commands.h"
#include "keyboard.h"
#include "frame.h"
#ifdef HAVE_WINDOW_SYSTEM
#include "fontset.h"
...
...
@@ -222,12 +226,6 @@ set_menu_bar_lines (f, value, oldval)
}
}
#include "buffer.h"
/* These help us bind and responding to switch-frame events. */
#include "commands.h"
#include "keyboard.h"
Lisp_Object
Vemacs_iconified
;
Lisp_Object
Vframe_list
;
...
...
src/indent.c
View file @
2538fae4
...
...
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA. */
#include "charset.h"
#include "category.h"
#include "indent.h"
#include "keyboard.h"
#include "frame.h"
#include "window.h"
#include "termchar.h"
...
...
src/minibuf.c
View file @
2538fae4
...
...
@@ -27,10 +27,10 @@ Boston, MA 02111-1307, USA. */
#include "buffer.h"
#include "charset.h"
#include "dispextern.h"
#include "keyboard.h"
#include "frame.h"
#include "window.h"
#include "syntax.h"
#include "keyboard.h"
#define min(a, b) ((a) < (b) ? (a) : (b))
...
...
src/print.c
View file @
2538fae4
...
...
@@ -25,12 +25,12 @@ Boston, MA 02111-1307, USA. */
#include "lisp.h"
#include "buffer.h"
#include "charset.h"
#include "keyboard.h"
#include "frame.h"
#include "window.h"
#include "process.h"
#include "dispextern.h"
#include "termchar.h"
#include "keyboard.h"
#include "intervals.h"
Lisp_Object
Vstandard_output
,
Qstandard_output
;
...
...
src/scroll.c
View file @
2538fae4
...
...
@@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA. */
#include "termchar.h"
#include "lisp.h"
#include "dispextern.h"
#include "keyboard.h"
#include "frame.h"
#include "window.h"
...
...
src/term.c
View file @
2538fae4
...
...
@@ -31,10 +31,10 @@ Boston, MA 02111-1307, USA. */
#include "lisp.h"
#include "charset.h"
#include "coding.h"
#include "keyboard.h"
#include "frame.h"
#include "disptab.h"
#include "termhooks.h"
#include "keyboard.h"
#include "dispextern.h"
#include "window.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