aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Brown2017-02-28 11:59:12 -0500
committerKen Brown2017-02-28 11:59:12 -0500
commitf8e36e04c4a11912d9f996a1fbf2870cf822151f (patch)
tree4836e486cdb9e686688382d2318358e060d4e16c /src
parent57f5ab8c4057d82c8fbc6a414169a44f5e181280 (diff)
downloademacs-f8e36e04c4a11912d9f996a1fbf2870cf822151f.tar.gz
emacs-f8e36e04c4a11912d9f996a1fbf2870cf822151f.zip
; * src/w32fns.c (w32_wnd_proc): Adjust comment.
Diffstat (limited to 'src')
-rw-r--r--src/w32fns.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index 1b628b0b42e..dd16d74439f 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -4801,7 +4801,11 @@ w32_wnd_proc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
4801 4801
4802 case WM_ENDSESSION: 4802 case WM_ENDSESSION:
4803 my_post_msg (&wmsg, hwnd, msg, wParam, lParam); 4803 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
4804 /* If we return, the process will be terminated immediately. */ 4804 /* Allow time for Emacs to attempt an orderly shutdown. If we
4805 return, the process will be terminated immediately. FIXME:
4806 1000 seconds is too long to sleep if the shutdown attempt
4807 fails (see bug#25875). But if it fails, we want to find out
4808 about it, so let's leave 1000 for now. */
4805 sleep (1000); 4809 sleep (1000);
4806 4810
4807 case WM_WINDOWPOSCHANGING: 4811 case WM_WINDOWPOSCHANGING: