]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/frame.c (adjust_frame_size): Set FRAME_WINDOW_SIZES_CHANGED (Bug#21975).
authorMartin Rudalics <rudalics@gmx.at>
Mon, 23 Nov 2015 07:19:58 +0000 (08:19 +0100)
committerMartin Rudalics <rudalics@gmx.at>
Mon, 23 Nov 2015 07:19:58 +0000 (08:19 +0100)
src/frame.c

index c388986e3519a177bc3c40bf93bb1cb1b8e4cd26..5bafc6ed8d9792490f836f3f143c665bcf05ec91 100644 (file)
@@ -518,6 +518,7 @@ adjust_frame_size (struct frame *f, int new_width, int new_height, int inhibit,
   if (new_windows_width != old_windows_width)
     {
       resize_frame_windows (f, new_windows_width, 1, 1);
+      FRAME_WINDOW_SIZES_CHANGED (f) = true;
 
       /* MSDOS frames cannot PRETEND, as they change frame size by
         manipulating video hardware.  */
@@ -543,6 +544,7 @@ adjust_frame_size (struct frame *f, int new_width, int new_height, int inhibit,
       || WINDOW_TOP_PIXEL_EDGE (r) != FRAME_TOP_MARGIN_HEIGHT (f))
     {
       resize_frame_windows (f, new_windows_height, 0, 1);
+      FRAME_WINDOW_SIZES_CHANGED (f) = true;
 
       /* MSDOS frames cannot PRETEND, as they change frame size by
         manipulating video hardware.  */