diff options
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 8 |
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. */ |