diff options
author | Andrew Innes <andrewi@gnu.org> | 1998-06-22 17:33:05 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 1998-06-22 17:33:05 +0000 |
commit | c1e06681496ac075b1f8ce5e893f2dd10e099eb7 (patch) | |
tree | fd41a1bf33fad7d2774ce63cb4ee7cb160584c25 /src/w32console.c | |
parent | 3ce36200dd3b2404ec0a0f0ef31adeb4eeb84536 (diff) | |
download | emacs-c1e06681496ac075b1f8ce5e893f2dd10e099eb7.tar.gz |
(initialize_w32_display): Call init_crit to initialize
interrupt_handle (referenced by sys_select).
Diffstat (limited to 'src/w32console.c')
-rw-r--r-- | src/w32console.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/w32console.c b/src/w32console.c index 8aec92389f2..eef845fe020 100644 --- a/src/w32console.c +++ b/src/w32console.c @@ -528,6 +528,9 @@ initialize_w32_display (void) read_socket_hook = w32_console_read_socket; mouse_position_hook = w32_console_mouse_position; + /* Initialize interrupt_handle. */ + init_crit (); + /* Remember original console settings. */ keyboard_handle = GetStdHandle (STD_INPUT_HANDLE); GetConsoleMode (keyboard_handle, &prev_console_mode); |