]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdisplay_buffer, Fframe_selected_window): Remove
authorDave Love <fx@gnu.org>
Mon, 29 Sep 2003 17:55:05 +0000 (17:55 +0000)
committerDave Love <fx@gnu.org>
Mon, 29 Sep 2003 17:55:05 +0000 (17:55 +0000)
unsued vars.

src/window.c

index b5df84b55ce54556d18e830dbd59bf28ca77523d..fd35ac8a9d81c6a7244ba010b948dff1fa1acd79 100644 (file)
@@ -3243,7 +3243,7 @@ displayed.  */)
        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 @@ displayed.  */)
            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.  */