aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-08-19 06:31:34 +0000
committerJim Blandy1992-08-19 06:31:34 +0000
commit8ea0a72039d74ed3bddc5d184d9990462a032e08 (patch)
tree52b0e95379c9b31eb7b407f8f7c4a46945ceb4b6 /src
parent804518aaebf92912408e88dc39abb43589f983b1 (diff)
downloademacs-8ea0a72039d74ed3bddc5d184d9990462a032e08.tar.gz
emacs-8ea0a72039d74ed3bddc5d184d9990462a032e08.zip
* keyboard.c (init_keyboard): Changed "#endif SIGIO" to
"#endif /* SIGIO */" * keyboard.c (Fexecute_mouse_event): dyked-out function deleted. We're not going to use this mouse interface. (Vmouse_window, Vmouse_event, Vmouse_event_function, Vmouse_left_hook, Vmap_frame_hook, Vunmap_frame_hook, Vmouse_motion_handler): Variables deleted; they were to be used by Fexecute_mouse_event. (syms_of_keyboard): Same. (command_loop_1): Remove dyked-out code to support Fexecute_mouse_event. (read_char): Same. * keyboard.c (Vlast_event_frame): Don't define this window if MULTI_FRAME is not #defined. (syms_of_keyboard): Same. (kbd_buffer_store_event): Don't try to work with Vlast_event_frame if MULTI_FRAME is not #defined. (kbd_buffer_get_event): Same. * keyboard.c (Fdiscard_input): Removed dyked-out code from when unread_command_char's quiescent value was -1, not nil.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 914721e4894..96b940a8309 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -3298,7 +3298,7 @@ init_keyboard ()
3298/* Note SIGIO has been undef'd if FIONREAD is missing. */ 3298/* Note SIGIO has been undef'd if FIONREAD is missing. */
3299#ifdef SIGIO 3299#ifdef SIGIO
3300 signal (SIGIO, input_available_signal); 3300 signal (SIGIO, input_available_signal);
3301#endif SIGIO 3301#endif /* SIGIO */
3302 } 3302 }
3303 3303
3304/* Use interrupt input by default, if it works and noninterrupt input 3304/* Use interrupt input by default, if it works and noninterrupt input