aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.c
diff options
context:
space:
mode:
authorAndrew Innes1998-12-28 19:43:05 +0000
committerAndrew Innes1998-12-28 19:43:05 +0000
commit4934bcddb3b3fd2a79f37ee2c03d4137c3a35cec (patch)
treeb29496ec4414a39fb89474e66ef0366b8d3e84e8 /src/w32term.c
parent3ef68e6be28a206cc531b0fe113ad301b3447195 (diff)
downloademacs-4934bcddb3b3fd2a79f37ee2c03d4137c3a35cec.tar.gz
emacs-4934bcddb3b3fd2a79f37ee2c03d4137c3a35cec.zip
(x_iconify_frame): Wait for frame to be iconified; do
not set async_iconified flag though.
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/w32term.c b/src/w32term.c
index a88f3f7afc3..de2ee00c80d 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -4762,9 +4762,7 @@ x_iconify_frame (f)
4762 BLOCK_INPUT; 4762 BLOCK_INPUT;
4763 4763
4764 /* Simulate the user minimizing the frame. */ 4764 /* Simulate the user minimizing the frame. */
4765 PostMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0); 4765 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
4766
4767 f->async_iconified = 1;
4768 4766
4769 UNBLOCK_INPUT; 4767 UNBLOCK_INPUT;
4770} 4768}