+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
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);
}
}