Mercurial > emacs
changeset 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 | 70388277dac0 |
children | 4b99e1ffa095 |
files | src/widget.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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); }