]> git.eshelyaron.com Git - emacs.git/commitdiff
(xg_frame_resized): Remove check if rows/columns have
authorJan Djärv <jan.h.d@swipnet.se>
Thu, 18 Dec 2008 17:45:28 +0000 (17:45 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Thu, 18 Dec 2008 17:45:28 +0000 (17:45 +0000)
changed.

src/ChangeLog
src/gtkutil.c

index ccda62889f70b643fca2bb86368616a74ef0fc75..ceff2a5305c4707c94ffbf4c5f6e730a5b044a42 100644 (file)
@@ -1,3 +1,8 @@
+2008-12-18  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
+       changed.
+
 2008-12-18  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * emacs.c (main): Print and error and exit when no data is read
index ce8308a4eeb4a9be159d493657a378fe5891fb1c..6b615539ffb6801e828b2a13d14f4ac43aed795e 100644 (file)
@@ -646,14 +646,9 @@ xg_frame_resized (f, pixelwidth, pixelheight)
       FRAME_PIXEL_WIDTH (f) = pixelwidth;
       FRAME_PIXEL_HEIGHT (f) = pixelheight;
 
-      if (rows != FRAME_LINES (f) || columns != FRAME_COLS (f)
-          || (f->new_text_lines != 0 && f->new_text_lines != rows)
-          || (f->new_text_cols != 0 && f->new_text_cols != columns))
-        {
-          change_frame_size (f, rows, columns, 0, 1, 0);
-          SET_FRAME_GARBAGED (f);
-          cancel_mouse_face (f);
-        }
+      change_frame_size (f, rows, columns, 0, 1, 0);
+      SET_FRAME_GARBAGED (f);
+      cancel_mouse_face (f);
     }
 }