]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compiler warnings about missing prototypes of window.c functions.
authorEli Zaretskii <eliz@gnu.org>
Fri, 10 Jun 2011 10:16:15 +0000 (13:16 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 10 Jun 2011 10:16:15 +0000 (13:16 +0300)
 src/window.h (resize_frame_windows, resize_window_check)
 (delete_deletable_window, resize_root_window)
 (resize_frame_windows): Declare prototypes.
 src/ window.c (resize_window_apply): Make definition be "static" to
 match the prototype.

src/ChangeLog
src/window.c
src/window.h

index 1643be47a1ac129070adf0ac680de2f2716b0e4f..93e64744d58f73c26f9843a06cca9450e98b771e 100644 (file)
@@ -1,3 +1,12 @@
+2011-06-10  Eli Zaretskii  <eliz@gnu.org>
+
+       * window.h (resize_frame_windows, resize_window_check)
+       (delete_deletable_window, resize_root_window)
+       (resize_frame_windows): Declare prototypes.
+
+       * window.c (resize_window_apply): Make definition be "static" to
+       match the prototype.
+
 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
 
        * window.c: Remove declarations of Qwindow_size_fixed,
index 3ee220e1d279d93b82bf8346e1a6925c5639b344..265dafa6b80adc6ade03425eebe202c2e9e77369 100644 (file)
@@ -3614,7 +3614,7 @@ resize_window_check (struct window *w, int horflag)
 
    This function does not perform any error checks.  Make sure you have
    run resize_window_check on W before applying this function.  */
-void
+static void
 resize_window_apply (struct window *w, int horflag)
 {
   struct window *c, *p;
index c33179de9ba352b6883b8c9805575dabc32f19b1..158203dc911cfe220f388842446f715cd1c80d21 100644 (file)
@@ -933,5 +933,12 @@ extern void init_window_once (void);
 extern void init_window (void);
 extern void syms_of_window (void);
 extern void keys_of_window (void);
+extern void resize_frame_windows (struct frame *, int, int);
+extern int resize_window_check (struct window *, int);
+extern Lisp_Object delete_deletable_window (Lisp_Object);
+extern Lisp_Object resize_root_window (Lisp_Object, Lisp_Object, Lisp_Object,
+                                      Lisp_Object);
+extern void resize_frame_windows (struct frame *, int, int);
+
 
 #endif /* not WINDOW_H_INCLUDED */