emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112080: * window.c (window_resize_ch


From: Dmitry Antipov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112080: * window.c (window_resize_check, window_resize_apply)
Date: Mon, 18 Mar 2013 17:21:12 +0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112080
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Mon 2013-03-18 17:21:12 +0400
message:
  * window.c (window_resize_check, window_resize_apply)
  (window_from_coordinates, recombine_windows, set_window_buffer)
  (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
  (Fsplit_window_internal, Fdelete_window_internal)
  (freeze_window_starts): Use bool for booleans.
  * window.h (window_frame_coordinates, resize_frame_windows)
  (freeze_window_starts, set_window_buffer): Adjust prototypes.
modified:
  src/ChangeLog
  src/window.c
  src/window.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-03-17 22:49:50 +0000
+++ b/src/ChangeLog     2013-03-18 13:21:12 +0000
@@ -1,3 +1,13 @@
+2013-03-18  Dmitry Antipov  <address@hidden>
+
+       * window.c (window_resize_check, window_resize_apply)
+       (window_from_coordinates, recombine_windows, set_window_buffer)
+       (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
+       (Fsplit_window_internal, Fdelete_window_internal)
+       (freeze_window_starts): Use bool for booleans.
+       * window.h (window_frame_coordinates, resize_frame_windows)
+       (freeze_window_starts, set_window_buffer): Adjust prototypes.
+
 2013-03-17  Stefan Monnier  <address@hidden>
 
        * dispnew.c (bitch_at_user): Use `user-error'.

=== modified file 'src/window.c'
--- a/src/window.c      2013-03-13 15:41:54 +0000
+++ b/src/window.c      2013-03-18 13:21:12 +0000
@@ -84,8 +84,8 @@
                              int (* fn) (struct window *, void *),
                              void *);
 static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object);
-static int window_resize_check (struct window *, int);
-static void window_resize_apply (struct window *, int);
+static int window_resize_check (struct window *, bool);
+static void window_resize_apply (struct window *, bool);
 static Lisp_Object select_window (Lisp_Object, Lisp_Object, int);
 static void select_window_1 (Lisp_Object, bool);
 
@@ -1368,7 +1368,7 @@
 
 Lisp_Object
 window_from_coordinates (struct frame *f, int x, int y,
-                        enum window_part *part, int tool_bar_p)
+                        enum window_part *part, bool tool_bar_p)
 {
   Lisp_Object window;
   struct check_window_data cw;
@@ -2055,7 +2055,7 @@
 {
   struct window *w, *p, *c;
   Lisp_Object parent, child;
-  int horflag;
+  bool horflag;
 
   w = XWINDOW (window);
   parent = w->parent;
@@ -3148,7 +3148,8 @@
    reset from the buffer's local settings.  */
 
 void
-set_window_buffer (Lisp_Object window, Lisp_Object buffer, int run_hooks_p, 
int keep_margins_p)
+set_window_buffer (Lisp_Object window, Lisp_Object buffer,
+                  bool run_hooks_p, bool keep_margins_p)
 {
   struct window *w = XWINDOW (window);
   struct buffer *b = XBUFFER (buffer);
@@ -3406,7 +3407,7 @@
    WINDOW its only vertical child (HORFLAG 1 means make WINDOW its only
    horizontal child).   */
 static void
-make_parent_window (Lisp_Object window, int horflag)
+make_parent_window (Lisp_Object window, bool horflag)
 {
   Lisp_Object parent;
   register struct window *o, *p;
@@ -3519,7 +3520,7 @@
    `window-min-height' or `window-min-width'.  It does check that window
    sizes do not drop below one line (two columns). */
 static int
-window_resize_check (struct window *w, int horflag)
+window_resize_check (struct window *w, bool horflag)
 {
   struct window *c;
 
@@ -3600,7 +3601,7 @@
    This function does not perform any error checks.  Make sure you have
    run window_resize_check on W before applying this function.  */
 static void
-window_resize_apply (struct window *w, int horflag)
+window_resize_apply (struct window *w, bool horflag)
 {
   struct window *c;
   int pos;
@@ -3681,7 +3682,7 @@
 {
   struct frame *f = decode_live_frame (frame);
   struct window *r = XWINDOW (FRAME_ROOT_WINDOW (f));
-  int horflag = !NILP (horizontal);
+  bool horflag = !NILP (horizontal);
 
   if (!window_resize_check (r, horflag)
       || ! EQ (r->new_total,
@@ -3711,7 +3712,7 @@
    satisfy the request.  The result will be meaningful if and only if
    F's windows have meaningful sizes when you call this.  */
 void
-resize_frame_windows (struct frame *f, int size, int horflag)
+resize_frame_windows (struct frame *f, int size, bool horflag)
 {
   Lisp_Object root = f->root_window;
   struct window *r = XWINDOW (root);
@@ -3825,7 +3826,7 @@
   register Lisp_Object new, frame, reference;
   register struct window *o, *p, *n, *r;
   struct frame *f;
-  int horflag
+  bool horflag
     /* HORFLAG is 1 when we split side-by-side, 0 otherwise.  */
     = EQ (side, Qt) || EQ (side, Qleft) || EQ (side, Qright);
   int combination_limit = 0;
@@ -3994,7 +3995,7 @@
   register Lisp_Object parent, sibling, frame, root;
   struct window *w, *p, *s, *r;
   struct frame *f;
-  int horflag;
+  bool horflag;
   int before_sibling = 0;
 
   w = decode_any_window (window);
@@ -6527,7 +6528,7 @@
    means freeze the window start.  */
 
 void
-freeze_window_starts (struct frame *f, int freeze_p)
+freeze_window_starts (struct frame *f, bool freeze_p)
 {
   foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
 }

=== modified file 'src/window.h'
--- a/src/window.h      2013-02-12 16:36:55 +0000
+++ b/src/window.h      2013-03-18 13:21:12 +0000
@@ -891,10 +891,10 @@
 
 extern Lisp_Object make_window (void);
 extern Lisp_Object window_from_coordinates (struct frame *, int, int,
-                                            enum window_part *, int);
-extern void resize_frame_windows (struct frame *, int, int);
+                                            enum window_part *, bool);
+extern void resize_frame_windows (struct frame *, int, bool);
 extern void delete_all_child_windows (Lisp_Object);
-extern void freeze_window_starts (struct frame *, int);
+extern void freeze_window_starts (struct frame *, bool);
 extern void grow_mini_window (struct window *, int);
 extern void shrink_mini_window (struct window *);
 extern int window_relative_x_coord (struct window *, enum window_part, int);
@@ -906,7 +906,7 @@
    it's not allowed.  */
 
 void set_window_buffer (Lisp_Object window, Lisp_Object buffer,
-                        int run_hooks_p, int keep_margins_p);
+                        bool run_hooks_p, bool keep_margins_p);
 
 /* This is the window where the echo area message was displayed.  It
    is always a minibuffer window, but it may not be the same window


reply via email to

[Prev in Thread] Current Thread [Next in Thread]