aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorAndreas Schwab1998-04-14 12:25:56 +0000
committerAndreas Schwab1998-04-14 12:25:56 +0000
commitdfcf069d565c347abf3cb7cec80e6ed8432037ba (patch)
treecd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/window.c
parent0f94f94657ad7a6a68e64c612285a5e06152def2 (diff)
downloademacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz
emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip
Fix -Wimplicit warnings.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c
index 1f4db424b2b..221eac63ec0 100644
--- a/src/window.c
+++ b/src/window.c
@@ -30,6 +30,10 @@ Boston, MA 02111-1307, USA. */
30#include "disptab.h" 30#include "disptab.h"
31#include "keyboard.h" 31#include "keyboard.h"
32#include "blockinput.h" 32#include "blockinput.h"
33#include "dispextern.h"
34#ifdef HAVE_WINDOW_SYSTEM
35#include "xterm.h"
36#endif
33 37
34Lisp_Object Qwindowp, Qwindow_live_p; 38Lisp_Object Qwindowp, Qwindow_live_p;
35 39
@@ -723,7 +727,7 @@ DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_displa
723 727
724/* Record info on buffer window w is displaying 728/* Record info on buffer window w is displaying
725 when it is about to cease to display that buffer. */ 729 when it is about to cease to display that buffer. */
726static 730static void
727unshow_buffer (w) 731unshow_buffer (w)
728 register struct window *w; 732 register struct window *w;
729{ 733{
@@ -767,7 +771,7 @@ unshow_buffer (w)
767} 771}
768 772
769/* Put replacement into the window structure in place of old. */ 773/* Put replacement into the window structure in place of old. */
770static 774static void
771replace_window (old, replacement) 775replace_window (old, replacement)
772 Lisp_Object old, replacement; 776 Lisp_Object old, replacement;
773{ 777{
@@ -2365,7 +2369,7 @@ temp_output_buffer_show (buf)
2365 } 2369 }
2366} 2370}
2367 2371
2368static 2372static void
2369make_dummy_parent (window) 2373make_dummy_parent (window)
2370 Lisp_Object window; 2374 Lisp_Object window;
2371{ 2375{
@@ -3799,6 +3803,7 @@ and scrolling positions.")
3799 return Qnil; 3803 return Qnil;
3800} 3804}
3801 3805
3806void
3802init_window_once () 3807init_window_once ()
3803{ 3808{
3804 selected_frame = make_terminal_frame (); 3809 selected_frame = make_terminal_frame ();
@@ -3810,6 +3815,7 @@ init_window_once ()
3810 window_initialized = 1; 3815 window_initialized = 1;
3811} 3816}
3812 3817
3818void
3813syms_of_window () 3819syms_of_window ()
3814{ 3820{
3815 staticpro (&Qwindow_configuration_change_hook); 3821 staticpro (&Qwindow_configuration_change_hook);
@@ -4029,6 +4035,7 @@ The selected frame is the one whose configuration has changed.");
4029 defsubr (&Scompare_window_configurations); 4035 defsubr (&Scompare_window_configurations);
4030} 4036}
4031 4037
4038void
4032keys_of_window () 4039keys_of_window ()
4033{ 4040{
4034 initial_define_key (control_x_map, '1', "delete-other-windows"); 4041 initial_define_key (control_x_map, '1', "delete-other-windows");