Mercurial > emacs
changeset 16753:ab63a77c3a23
(x_iconify_frame): Clear visible when we set iconified.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 26 Dec 1996 21:07:30 +0000 |
parents | 6409ef81a2a8 |
children | 6ca8ed287a53 |
files | src/xterm.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xterm.c Thu Dec 26 21:06:19 1996 +0000 +++ b/src/xterm.c Thu Dec 26 21:07:30 1996 +0000 @@ -5527,7 +5527,9 @@ that an invisible frame was changed to an icon, so we have to record it here. */ f->iconified = 1; + f->visible = 1; f->async_iconified = 1; + f->async_visible = 0; UNBLOCK_INPUT; return; } @@ -5541,6 +5543,8 @@ error ("Can't notify window manager of iconification"); f->async_iconified = 1; + f->async_visible = 0; + BLOCK_INPUT; XFlush (FRAME_X_DISPLAY (f)); @@ -5588,6 +5592,7 @@ } f->async_iconified = 1; + f->async_visible = 0; XFlush (FRAME_X_DISPLAY (f)); UNBLOCK_INPUT;