]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_frame_height): Call do_pending_window_change.
authorRichard M. Stallman <rms@gnu.org>
Mon, 2 Aug 1999 00:01:27 +0000 (00:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 2 Aug 1999 00:01:27 +0000 (00:01 +0000)
(Fset_frame_width, Fset_frame_size): Likewise.

src/frame.c

index fa276cb38ef948b07bd4c6c366378875f837a6ea..831721201cc5b62c359e941047314e42aa7e78ab 100644 (file)
@@ -2189,6 +2189,7 @@ but that the idea of the actual height of the frame should not be changed.")
     {
       if (XINT (lines) != f->height)
        x_set_window_size (f, 1, f->width, XINT (lines));
+      do_pending_window_change ();
     }
   else
 #endif
@@ -2219,6 +2220,7 @@ but that the idea of the actual width of the frame should not be changed.")
     {
       if (XINT (cols) != f->width)
        x_set_window_size (f, 1, XINT (cols), f->height);
+      do_pending_window_change ();
     }
   else
 #endif
@@ -2246,6 +2248,7 @@ DEFUN ("set-frame-size", Fset_frame_size, Sset_frame_size, 3, 3, 0,
       if (XINT (rows) != f->height || XINT (cols) != f->width
          || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
        x_set_window_size (f, 1, XINT (cols), XINT (rows));
+      do_pending_window_change ();
     }
   else
 #endif