diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-14 12:25:56 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-04-14 12:25:56 +0000 |
commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/xdisp.c | |
parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 069a73863fe..a6712aaf932 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -40,6 +40,11 @@ Boston, MA 02111-1307, USA. */ #include "keyboard.h" #include "coding.h" #include "process.h" +#include "region-cache.h" + +#ifdef HAVE_WINDOW_SYSTEM +#include "xterm.h" +#endif #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) extern void set_frame_menubar (); @@ -5468,6 +5473,7 @@ This commonly affects the minibuffer window, hence the name of the variable."); } /* initialize the window system */ +void init_xdisp () { Lisp_Object root_window; |