aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorMiles Bader2008-02-01 16:01:31 +0000
committerMiles Bader2008-02-01 16:01:31 +0000
commit6cc41fb06c37234822d5aedf7ce0f77b88bb450a (patch)
treea130326faf29d4410ed126e4f0d6a13f11a19df3 /src/window.c
parentb502217bd845bc6280fd2bb1eacce176ed4f7d90 (diff)
parentdd559368b0db67654f643320b1d84afdabe60e97 (diff)
downloademacs-6cc41fb06c37234822d5aedf7ce0f77b88bb450a.tar.gz
emacs-6cc41fb06c37234822d5aedf7ce0f77b88bb450a.zip
Merge unicode branch
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1037
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index 5b0d8f4375a..d1e3225e198 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3822,7 +3822,7 @@ displayed. */)
3822 window = call1 (Vsplit_window_preferred_function, window); 3822 window = call1 (Vsplit_window_preferred_function, window);
3823 else 3823 else
3824 { 3824 {
3825 Lisp_Object upper, lower, other; 3825 Lisp_Object upper, other;
3826 3826
3827 window = Fget_lru_window (frames, Qt); 3827 window = Fget_lru_window (frames, Qt);
3828 /* If the LRU window is tall enough, and either eligible for 3828 /* If the LRU window is tall enough, and either eligible for
@@ -3861,11 +3861,11 @@ displayed. */)
3861 window = Fframe_selected_window (call0 (Vpop_up_frame_function)); 3861 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
3862 /* If window appears above or below another, 3862 /* If window appears above or below another,
3863 even out their heights. */ 3863 even out their heights. */
3864 other = upper = lower = Qnil; 3864 other = upper = Qnil;
3865 if (!NILP (XWINDOW (window)->prev)) 3865 if (!NILP (XWINDOW (window)->prev))
3866 other = upper = XWINDOW (window)->prev, lower = window; 3866 other = upper = XWINDOW (window)->prev;
3867 if (!NILP (XWINDOW (window)->next)) 3867 if (!NILP (XWINDOW (window)->next))
3868 other = lower = XWINDOW (window)->next, upper = window; 3868 other = XWINDOW (window)->next, upper = window;
3869 if (!NILP (other) 3869 if (!NILP (other)
3870 && !NILP (Veven_window_heights) 3870 && !NILP (Veven_window_heights)
3871 /* Check that OTHER and WINDOW are vertically arrayed. */ 3871 /* Check that OTHER and WINDOW are vertically arrayed. */