changeset 89542:2785238e3aea

(Fdisplay_buffer, Fframe_selected_window): Remove unsued vars.
author Dave Love <fx@gnu.org>
date Mon, 29 Sep 2003 17:55:05 +0000
parents 148a846dccfd
children a280c29e9b8d
files src/window.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/window.c	Mon Sep 29 17:50:08 2003 +0000
+++ b/src/window.c	Mon Sep 29 17:55:05 2003 +0000
@@ -3243,7 +3243,7 @@
 	window = Fsplit_window (window, Qnil, Qnil);
       else
 	{
-	  Lisp_Object upper, lower, other;
+	  Lisp_Object upper, other;
 
 	  window = Fget_lru_window (frames);
 	  /* If the LRU window is selected, and big enough,
@@ -3276,11 +3276,11 @@
 	    window = Fframe_selected_window (call0 (Vpop_up_frame_function));
 	  /* If window appears above or below another,
 	     even out their heights.  */
-	  other = upper = lower = Qnil;
+	  other = upper = Qnil;
 	  if (!NILP (XWINDOW (window)->prev))
-	    other = upper = XWINDOW (window)->prev, lower = window;
+	    other = upper = XWINDOW (window)->prev;
 	  if (!NILP (XWINDOW (window)->next))
-	    other = lower = XWINDOW (window)->next, upper = window;
+	    other = XWINDOW (window)->next, upper = window;
 	  if (!NILP (other)
 	      && !NILP (Veven_window_heights)
 	      /* Check that OTHER and WINDOW are vertically arrayed.  */