emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r104553: Some more window.h fixes mis


From: martin rudalics
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104553: Some more window.h fixes missing in revision 104551.
Date: Fri, 10 Jun 2011 15:18:13 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104553
committer: martin rudalics <address@hidden>
branch nick: trunk
timestamp: Fri 2011-06-10 15:18:13 +0200
message:
  Some more window.h fixes missing in revision 104551.
  
  * window.h (resize_proportionally, orig_total_lines)
  (orig_top_line): Remove from window structure.
  (set_window_height, set_window_width, change_window_heights)
  (Fdelete_window): Remove prototypes.
  (resize_frame_windows): Remove duplicate declaration.
modified:
  src/ChangeLog
  src/window.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-06-10 10:16:15 +0000
+++ b/src/ChangeLog     2011-06-10 13:18:13 +0000
@@ -1,3 +1,11 @@
+2011-06-10  Martin Rudalics  <address@hidden>
+
+       * window.h (resize_proportionally, orig_total_lines)
+       (orig_top_line): Remove from window structure.
+       (set_window_height, set_window_width, change_window_heights)
+       (Fdelete_window): Remove prototypes.
+       (resize_frame_windows): Remove duplicate declaration.
+
 2011-06-10  Eli Zaretskii  <address@hidden>
 
        * window.h (resize_frame_windows, resize_window_check)

=== modified file 'src/window.h'
--- a/src/window.h      2011-06-10 10:16:15 +0000
+++ b/src/window.h      2011-06-10 13:18:13 +0000
@@ -261,12 +261,6 @@
     /* If redisplay in this window goes beyond this buffer position,
        must run the redisplay-end-trigger-hook.  */
     Lisp_Object redisplay_end_trigger;
-    /* Non-nil means resizing windows will attempt to resize this window
-       proportionally.  */
-    Lisp_Object resize_proportionally;
-
-    /* Original window height and top before mini-window was enlarged. */
-    Lisp_Object orig_total_lines, orig_top_line;
 
     /* Non-nil means deleting or resizing this window distributes
        space among all windows in the same combination.  */
@@ -833,9 +827,6 @@
 extern Lisp_Object window_from_coordinates (struct frame *, int, int,
                                             enum window_part *, int);
 EXFUN (Fwindow_dedicated_p, 1);
-extern void set_window_height (Lisp_Object, int, int);
-extern void set_window_width (Lisp_Object, int, int);
-extern void change_window_heights (Lisp_Object, int);
 extern void delete_all_subwindows (Lisp_Object);
 extern void freeze_window_starts (struct frame *, int);
 extern void grow_mini_window (struct window *, int);
@@ -918,7 +909,6 @@
 EXFUN (Fframe_root_window, 1);
 EXFUN (Fframe_first_window, 1);
 EXFUN (Fset_frame_selected_window, 3);
-EXFUN (Fdelete_window, 1);
 EXFUN (Fset_window_configuration, 1);
 EXFUN (Fcurrent_window_configuration, 1);
 extern int compare_window_configurations (Lisp_Object, Lisp_Object, int);
@@ -938,7 +928,6 @@
 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 */


reply via email to

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