emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 dc57bb4: * src/frame.c (adjust_frame_size): Set F


From: Martin Rudalics
Subject: [Emacs-diffs] emacs-25 dc57bb4: * src/frame.c (adjust_frame_size): Set FRAME_WINDOW_SIZES_CHANGED (Bug#21975).
Date: Mon, 23 Nov 2015 07:22:54 +0000

branch: emacs-25
commit dc57bb4d46b91ae1f21994432f41a1dd130413a4
Author: Martin Rudalics <address@hidden>
Commit: Martin Rudalics <address@hidden>

    * src/frame.c (adjust_frame_size): Set FRAME_WINDOW_SIZES_CHANGED 
(Bug#21975).
---
 src/frame.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/frame.c b/src/frame.c
index c388986..5bafc6e 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -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.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]