From: Richard M. Stallman Date: Thu, 28 Mar 1996 19:56:02 +0000 (+0000) Subject: (EmacsFrameResize): We may be called from an interrupt, X-Git-Tag: emacs-19.34~953 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=231108d096a0a850a0384e5545b66ac1c5e899ca;p=emacs.git (EmacsFrameResize): We may be called from an interrupt, so delay the resize operation. --- diff --git a/src/widget.c b/src/widget.c index 650dd583de7..23c5729f69b 100644 --- a/src/widget.c +++ b/src/widget.c @@ -781,7 +781,7 @@ EmacsFrameResize (widget) 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); }