aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-09-29 17:55:05 +0000
committerDave Love2003-09-29 17:55:05 +0000
commit7ab8da680b6d402bbcb5833ba2b9489703b0949a (patch)
tree4dd9fd7b1deaef43f6d0bc10e9d4d6500beeb7b9 /src
parent1a95ffe4c4bcd02ecd9ea04bcb39e30c181286f2 (diff)
downloademacs-7ab8da680b6d402bbcb5833ba2b9489703b0949a.tar.gz
emacs-7ab8da680b6d402bbcb5833ba2b9489703b0949a.zip
(Fdisplay_buffer, Fframe_selected_window): Remove
unsued vars.
Diffstat (limited to 'src')
-rw-r--r--src/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index b5df84b55ce..fd35ac8a9d8 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3243,7 +3243,7 @@ displayed. */)
3243 window = Fsplit_window (window, Qnil, Qnil); 3243 window = Fsplit_window (window, Qnil, Qnil);
3244 else 3244 else
3245 { 3245 {
3246 Lisp_Object upper, lower, other; 3246 Lisp_Object upper, other;
3247 3247
3248 window = Fget_lru_window (frames); 3248 window = Fget_lru_window (frames);
3249 /* If the LRU window is selected, and big enough, 3249 /* If the LRU window is selected, and big enough,
@@ -3276,11 +3276,11 @@ displayed. */)
3276 window = Fframe_selected_window (call0 (Vpop_up_frame_function)); 3276 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
3277 /* If window appears above or below another, 3277 /* If window appears above or below another,
3278 even out their heights. */ 3278 even out their heights. */
3279 other = upper = lower = Qnil; 3279 other = upper = Qnil;
3280 if (!NILP (XWINDOW (window)->prev)) 3280 if (!NILP (XWINDOW (window)->prev))
3281 other = upper = XWINDOW (window)->prev, lower = window; 3281 other = upper = XWINDOW (window)->prev;
3282 if (!NILP (XWINDOW (window)->next)) 3282 if (!NILP (XWINDOW (window)->next))
3283 other = lower = XWINDOW (window)->next, upper = window; 3283 other = XWINDOW (window)->next, upper = window;
3284 if (!NILP (other) 3284 if (!NILP (other)
3285 && !NILP (Veven_window_heights) 3285 && !NILP (Veven_window_heights)
3286 /* Check that OTHER and WINDOW are vertically arrayed. */ 3286 /* Check that OTHER and WINDOW are vertically arrayed. */