diff src/widget.c @ 14907:b906d04998c8

(EmacsFrameResize): We may be called from an interrupt, so delay the resize operation.
author Richard M. Stallman <rms@gnu.org>
date Thu, 28 Mar 1996 19:56:02 +0000
parents 1c8e58bf36fe
children 8704666feefd
line wrap: on
line diff
--- a/src/widget.c	Thu Mar 28 19:31:28 1996 +0000
+++ b/src/widget.c	Thu Mar 28 19:56:02 1996 +0000
@@ -781,7 +781,7 @@
   int rows;
 
   pixel_to_char_size (ew, ew->core.width, ew->core.height, &columns, &rows);
-  change_frame_size (f, rows, columns, 1, 0);
+  change_frame_size (f, rows, columns, 0, 1);
   update_wm_hints (ew); 
   update_various_frame_slots (ew);
 }