1 /* The portable interface to event streams.
2 Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
4 Copyright (C) 1995 Sun Microsystems, Inc.
5 Copyright (C) 1995, 1996 Ben Wing.
7 This file is part of XEmacs.
9 XEmacs is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2, or (at your option) any
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 You should have received a copy of the GNU General Public License
20 along with XEmacs; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 /* Synched up with: Not in FSF. */
28 Created 1991 by Jamie Zawinski.
29 A great deal of work over the ages by Ben Wing (Mule-ization for 19.12,
30 device abstraction for 19.12/19.13, async timers for 19.14,
31 rewriting of focus code for 19.12, pre-idle hook for 19.12,
32 redoing of signal and quit handling for 19.9 and 19.12,
33 misc-user events to clean up menu/scrollbar handling for 19.11,
34 function-key-map/key-translation-map/keyboard-translate-table for
35 19.13/19.14, open-dribble-file for 19.13, much other cleanup).
36 focus-follows-mouse from Chuck Thompson, 1995.
37 XIM stuff by Martin Buchholz, c. 1996?.
40 /* This file has been Mule-ized. */
45 * If you ever change ANYTHING in this file, you MUST run the
46 * testcases at the end to make sure that you haven't changed
47 * the semantics of recent-keys, last-input-char, or keyboard
48 * macros. You'd be surprised how easy it is to break this.
53 This stuff is way too hard to maintain - needs rework.
55 The command builder should deal only with key and button events.
56 Other command events should be able to come in the MIDDLE of a key
57 sequence, without disturbing the key sequence composition, or the
58 command builder structure representing it.
60 Someone should rethink universal-argument and figure out how an
61 arbitrary command can influence the next command (universal-argument
62 or universal-coding-system-argument) or the next key (hyperify).
64 Both C-h and Help in the middle of a key sequence should trigger
65 prefix-help-command. help-char is stupid. Maybe we need
66 keymap-of-last-resort?
68 After prefix-help is run, one should be able to CONTINUE TYPING,
69 instead of RETYPING, the key sequence.
75 #include "blocktype.h"
82 #include "insdel.h" /* for buffer_reset_changes */
85 #include "macros.h" /* for defining_keyboard_macro */
86 #include "menubar.h" /* #### for evil kludges. */
90 #include "sysdep.h" /* init_poll_for_quit() */
91 #include "syssignal.h" /* SIGCHLD, etc. */
93 #include "systime.h" /* to set Vlast_input_time */
95 #include "events-mod.h"
97 #include "file-coding.h"
102 /* The number of keystrokes between auto-saves. */
103 static Fixnum auto_save_interval;
105 Lisp_Object Qundefined_keystroke_sequence;
107 Lisp_Object Qcommand_event_p;
109 /* Hooks to run before and after each command. */
110 Lisp_Object Vpre_command_hook, Vpost_command_hook;
111 Lisp_Object Qpre_command_hook, Qpost_command_hook;
114 Lisp_Object Qhandle_pre_motion_command, Qhandle_post_motion_command;
116 /* Hook run when XEmacs is about to be idle. */
117 Lisp_Object Qpre_idle_hook, Vpre_idle_hook;
119 /* Control gratuitous keyboard focus throwing. */
120 int focus_follows_mouse;
122 /* When true, modifier keys are sticky. */
123 int modifier_keys_are_sticky;
124 /* Modifier keys are sticky for this many milliseconds. */
125 Lisp_Object Vmodifier_keys_sticky_time;
127 /* Here FSF Emacs 20.7 defines Vpost_command_idle_hook,
128 post_command_idle_delay, Vdeferred_action_list, and
129 Vdeferred_action_function, but we don't because that stuff is crap,
130 and we're smarter than them, and their momas are fat. */
132 /* FSF Emacs 20.7 also defines Vinput_method_function,
133 Qinput_method_exit_on_first_char and Qinput_method_use_echo_area.
134 I don't know this should be imported or not. */
136 /* Non-nil disable property on a command means
137 do not execute it; call disabled-command-hook's value instead. */
138 Lisp_Object Qdisabled, Vdisabled_command_hook;
140 EXFUN (Fnext_command_event, 2);
142 static void pre_command_hook (void);
143 static void post_command_hook (void);
145 /* Last keyboard or mouse input event read as a command. */
146 Lisp_Object Vlast_command_event;
148 /* The nearest ASCII equivalent of the above. */
149 Lisp_Object Vlast_command_char;
151 /* Last keyboard or mouse event read for any purpose. */
152 Lisp_Object Vlast_input_event;
154 /* The nearest ASCII equivalent of the above. */
155 Lisp_Object Vlast_input_char;
157 Lisp_Object Vcurrent_mouse_event;
159 /* This is fbound in cmdloop.el, see the commentary there */
160 Lisp_Object Qcancel_mode_internal;
162 /* If not Qnil, event objects to be read as the next command input */
163 Lisp_Object Vunread_command_events;
164 Lisp_Object Vunread_command_event; /* obsoleteness support */
166 static Lisp_Object Qunread_command_events, Qunread_command_event;
168 /* Previous command, represented by a Lisp object.
169 Does not include prefix commands and arg setting commands. */
170 Lisp_Object Vlast_command;
172 /* Contents of this-command-properties for the last command. */
173 Lisp_Object Vlast_command_properties;
175 /* If a command sets this, the value goes into
176 last-command for the next command. */
177 Lisp_Object Vthis_command;
179 /* If a command sets this, the value goes into
180 last-command-properties for the next command. */
181 Lisp_Object Vthis_command_properties;
183 /* The value of point when the last command was executed. */
184 Bufpos last_point_position;
186 /* The frame that was current when the last command was started. */
187 Lisp_Object Vlast_selected_frame;
189 /* The buffer that was current when the last command was started. */
190 Lisp_Object last_point_position_buffer;
192 /* A (16bit . 16bit) representation of the time of the last-command-event. */
193 Lisp_Object Vlast_input_time;
195 /* A (16bit 16bit usec) representation of the time
196 of the last-command-event. */
197 Lisp_Object Vlast_command_event_time;
199 /* Character to recognize as the help char. */
200 Lisp_Object Vhelp_char;
202 /* Form to execute when help char is typed. */
203 Lisp_Object Vhelp_form;
205 /* Command to run when the help character follows a prefix key. */
206 Lisp_Object Vprefix_help_command;
208 /* Flag to tell QUIT that some interesting occurrence (e.g. a keypress)
209 may have happened. */
210 volatile int something_happened;
212 /* Hash table to translate keysyms through */
213 Lisp_Object Vkeyboard_translate_table;
215 /* If control-meta-super-shift-X is undefined, try control-meta-super-x */
216 Lisp_Object Vretry_undefined_key_binding_unshifted;
217 Lisp_Object Qretry_undefined_key_binding_unshifted;
220 /* If composed input is undefined, use self-insert-char */
221 Lisp_Object Vcomposed_character_default_binding;
222 #endif /* HAVE_XIM */
224 /* Console that corresponds to our controlling terminal */
225 Lisp_Object Vcontrolling_terminal;
227 /* An event (actually an event chain linked through event_next) or Qnil.
229 Lisp_Object Vthis_command_keys;
230 Lisp_Object Vthis_command_keys_tail;
233 Lisp_Object Qauto_show_make_point_visible;
235 /* File in which we write all commands we read; an lstream */
236 static Lisp_Object Vdribble_file;
238 /* Recent keys ring location; a vector of events or nil-s */
239 Lisp_Object Vrecent_keys_ring;
240 int recent_keys_ring_size;
241 int recent_keys_ring_index;
243 /* Boolean specifying whether keystrokes should be added to
245 int inhibit_input_event_recording;
247 Lisp_Object Qself_insert_defer_undo;
249 /* this is in keymap.c */
250 extern Lisp_Object Fmake_keymap (Lisp_Object name);
253 Fixnum debug_emacs_events;
256 external_debugging_print_event (char *event_description, Lisp_Object event)
258 write_c_string ("(", Qexternal_debugging_output);
259 write_c_string (event_description, Qexternal_debugging_output);
260 write_c_string (") ", Qexternal_debugging_output);
261 print_internal (event, Qexternal_debugging_output, 1);
262 write_c_string ("\n", Qexternal_debugging_output);
264 #define DEBUG_PRINT_EMACS_EVENT(event_description, event) do { \
265 if (debug_emacs_events) \
266 external_debugging_print_event (event_description, event); \
269 #define DEBUG_PRINT_EMACS_EVENT(string, event)
273 /* The callback routines for the window system or terminal driver */
274 struct event_stream *event_stream;
276 static void echo_key_event (struct command_builder *, Lisp_Object event);
277 static void maybe_kbd_translate (Lisp_Object event);
279 /* This structure is basically a typeahead queue: things like
280 wait-reading-process-output will delay the execution of
281 keyboard and mouse events by pushing them here.
283 Chained through event_next()
284 command_event_queue_tail is a pointer to the last-added element.
286 static Lisp_Object command_event_queue;
287 static Lisp_Object command_event_queue_tail;
289 /* Nonzero means echo unfinished commands after this many seconds of pause. */
290 static Lisp_Object Vecho_keystrokes;
292 /* The number of keystrokes since the last auto-save. */
293 static int keystrokes_since_auto_save;
295 /* Used by the C-g signal handler so that it will never "hard quit"
296 when waiting for an event. Otherwise holding down C-g could
297 cause a suspension back to the shell, which is generally
298 undesirable. (#### This doesn't fully work.) */
300 int emacs_is_blocking;
302 /* Handlers which run during sit-for, sleep-for and accept-process-output
303 are not allowed to recursively call these routines. We record here
304 if we are in that situation. */
306 static Lisp_Object recursive_sit_for;
310 /**********************************************************************/
311 /* Command-builder object */
312 /**********************************************************************/
314 #define XCOMMAND_BUILDER(x) \
315 XRECORD (x, command_builder, struct command_builder)
316 #define XSETCOMMAND_BUILDER(x, p) XSETRECORD (x, p, command_builder)
317 #define COMMAND_BUILDERP(x) RECORDP (x, command_builder)
318 #define CHECK_COMMAND_BUILDER(x) CHECK_RECORD (x, command_builder)
321 mark_command_builder (Lisp_Object obj)
323 struct command_builder *builder = XCOMMAND_BUILDER (obj);
324 mark_object (builder->prefix_events);
325 mark_object (builder->current_events);
326 mark_object (builder->most_current_event);
327 mark_object (builder->last_non_munged_event);
328 mark_object (builder->munge_me[0].first_mungeable_event);
329 mark_object (builder->munge_me[1].first_mungeable_event);
330 return builder->console;
334 finalize_command_builder (void *header, int for_disksave)
338 xfree (((struct command_builder *) header)->echo_buf);
339 ((struct command_builder *) header)->echo_buf = 0;
343 DEFINE_LRECORD_IMPLEMENTATION ("command-builder", command_builder,
344 mark_command_builder, internal_object_printer,
345 finalize_command_builder, 0, 0, 0,
346 struct command_builder);
349 reset_command_builder_event_chain (struct command_builder *builder)
351 builder->prefix_events = Qnil;
352 builder->current_events = Qnil;
353 builder->most_current_event = Qnil;
354 builder->last_non_munged_event = Qnil;
355 builder->munge_me[0].first_mungeable_event = Qnil;
356 builder->munge_me[1].first_mungeable_event = Qnil;
360 allocate_command_builder (Lisp_Object console)
362 Lisp_Object builder_obj;
363 struct command_builder *builder =
364 alloc_lcrecord_type (struct command_builder, &lrecord_command_builder);
366 builder->console = console;
367 reset_command_builder_event_chain (builder);
368 builder->echo_buf_length = 300; /* #### Kludge */
369 builder->echo_buf = xnew_array (Bufbyte, builder->echo_buf_length);
370 builder->echo_buf[0] = 0;
371 builder->echo_buf_index = -1;
372 builder->echo_buf_index = -1;
373 builder->self_insert_countdown = 0;
375 XSETCOMMAND_BUILDER (builder_obj, builder);
380 command_builder_append_event (struct command_builder *builder,
383 assert (EVENTP (event));
385 if (EVENTP (builder->most_current_event))
386 XSET_EVENT_NEXT (builder->most_current_event, event);
388 builder->current_events = event;
390 builder->most_current_event = event;
391 if (NILP (builder->munge_me[0].first_mungeable_event))
392 builder->munge_me[0].first_mungeable_event = event;
393 if (NILP (builder->munge_me[1].first_mungeable_event))
394 builder->munge_me[1].first_mungeable_event = event;
398 /**********************************************************************/
399 /* Low-level interfaces onto event methods */
400 /**********************************************************************/
402 enum event_stream_operation
404 EVENT_STREAM_PROCESS,
405 EVENT_STREAM_TIMEOUT,
406 EVENT_STREAM_CONSOLE,
411 check_event_stream_ok (enum event_stream_operation op)
413 if (!event_stream && noninteractive)
417 case EVENT_STREAM_PROCESS:
418 error ("Can't start subprocesses in -batch mode");
419 case EVENT_STREAM_TIMEOUT:
420 error ("Can't add timeouts in -batch mode");
421 case EVENT_STREAM_CONSOLE:
422 error ("Can't add consoles in -batch mode");
423 case EVENT_STREAM_READ:
424 error ("Can't read events in -batch mode");
429 else if (!event_stream)
431 error ("event-stream callbacks not initialized (internal error?)");
436 event_stream_event_pending_p (int user)
438 return event_stream && event_stream->event_pending_p (user);
442 event_stream_force_event_pending (struct frame* f)
444 if (event_stream->force_event_pending)
445 event_stream->force_event_pending (f);
449 maybe_read_quit_event (Lisp_Event *event)
451 /* A C-g that came from `sigint_happened' will always come from the
452 controlling terminal. If that doesn't exist, however, then the
453 user manually sent us a SIGINT, and we pretend the C-g came from
454 the selected console. */
457 if (CONSOLEP (Vcontrolling_terminal) &&
458 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
459 con = XCONSOLE (Vcontrolling_terminal);
461 con = XCONSOLE (Fselected_console ());
465 int ch = CONSOLE_QUIT_CHAR (con);
468 character_to_event (ch, event, con, 1, 1);
469 event->channel = make_console (con);
476 event_stream_next_event (Lisp_Event *event)
478 Lisp_Object event_obj;
480 check_event_stream_ok (EVENT_STREAM_READ);
482 XSETEVENT (event_obj, event);
484 /* If C-g was pressed, treat it as a character to be read.
485 Note that if C-g was pressed while we were blocking,
486 the SIGINT signal handler will be called. It will
487 set Vquit_flag and write a byte on our "fake pipe",
488 which will unblock us. */
489 if (maybe_read_quit_event (event))
491 DEBUG_PRINT_EMACS_EVENT ("SIGINT", event_obj);
495 /* If a longjmp() happens in the callback, we're screwed.
496 Let's hope it doesn't. I think the code here is fairly
497 clean and doesn't do this. */
498 emacs_is_blocking = 1;
499 event_stream->next_event_cb (event);
500 emacs_is_blocking = 0;
503 /* timeout events have more info set later, so
504 print the event out in next_event_internal(). */
505 if (event->event_type != timeout_event)
506 DEBUG_PRINT_EMACS_EVENT ("real", event_obj);
508 maybe_kbd_translate (event_obj);
512 event_stream_handle_magic_event (Lisp_Event *event)
514 check_event_stream_ok (EVENT_STREAM_READ);
515 event_stream->handle_magic_event_cb (event);
519 event_stream_add_timeout (EMACS_TIME timeout)
521 check_event_stream_ok (EVENT_STREAM_TIMEOUT);
522 return event_stream->add_timeout_cb (timeout);
526 event_stream_remove_timeout (int id)
528 check_event_stream_ok (EVENT_STREAM_TIMEOUT);
529 event_stream->remove_timeout_cb (id);
533 event_stream_select_console (struct console *con)
535 check_event_stream_ok (EVENT_STREAM_CONSOLE);
536 if (!con->input_enabled)
538 event_stream->select_console_cb (con);
539 con->input_enabled = 1;
544 event_stream_unselect_console (struct console *con)
546 check_event_stream_ok (EVENT_STREAM_CONSOLE);
547 if (con->input_enabled)
549 event_stream->unselect_console_cb (con);
550 con->input_enabled = 0;
555 event_stream_select_process (Lisp_Process *proc)
557 check_event_stream_ok (EVENT_STREAM_PROCESS);
558 if (!get_process_selected_p (proc))
560 event_stream->select_process_cb (proc);
561 set_process_selected_p (proc, 1);
566 event_stream_unselect_process (Lisp_Process *proc)
568 check_event_stream_ok (EVENT_STREAM_PROCESS);
569 if (get_process_selected_p (proc))
571 event_stream->unselect_process_cb (proc);
572 set_process_selected_p (proc, 0);
577 event_stream_create_stream_pair (void* inhandle, void* outhandle,
578 Lisp_Object* instream, Lisp_Object* outstream, int flags)
580 check_event_stream_ok (EVENT_STREAM_PROCESS);
581 return event_stream->create_stream_pair_cb
582 (inhandle, outhandle, instream, outstream, flags);
586 event_stream_delete_stream_pair (Lisp_Object instream, Lisp_Object outstream)
588 check_event_stream_ok (EVENT_STREAM_PROCESS);
589 return event_stream->delete_stream_pair_cb (instream, outstream);
593 event_stream_quit_p (void)
596 event_stream->quit_p_cb ();
600 event_stream_current_event_timestamp (struct console *c)
602 if (event_stream && event_stream->current_event_timestamp_cb)
603 return event_stream->current_event_timestamp_cb (c);
609 /**********************************************************************/
610 /* Character prompting */
611 /**********************************************************************/
614 echo_key_event (struct command_builder *command_builder,
617 /* This function can GC */
619 Bytecount buf_index = command_builder->echo_buf_index;
625 buf_index = 0; /* We're echoing now */
626 clear_echo_area (selected_frame (), Qnil, 0);
629 format_event_object (buf, XEVENT (event), 1);
632 if (len + buf_index + 4 > command_builder->echo_buf_length)
634 e = command_builder->echo_buf + buf_index;
635 memcpy (e, buf, len);
643 command_builder->echo_buf_index = buf_index + len + 1;
647 regenerate_echo_keys_from_this_command_keys (struct command_builder *
652 builder->echo_buf_index = 0;
654 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
655 echo_key_event (builder, event);
659 maybe_echo_keys (struct command_builder *command_builder, int no_snooze)
661 /* This function can GC */
662 double echo_keystrokes;
663 struct frame *f = selected_frame ();
664 /* Message turns off echoing unless more keystrokes turn it on again. */
665 if (echo_area_active (f) && !EQ (Qcommand, echo_area_status (f)))
668 if (INTP (Vecho_keystrokes) || FLOATP (Vecho_keystrokes))
669 echo_keystrokes = extract_float (Vecho_keystrokes);
673 if (minibuf_level == 0
674 && echo_keystrokes > 0.0
675 #if defined (HAVE_X_WINDOWS) && defined (LWLIB_MENUBARS_LUCID)
676 && !x_kludge_lw_menu_active ()
682 /* #### C-g here will cause QUIT. Setting dont_check_for_quit
683 doesn't work. See check_quit. */
684 if (NILP (Fsit_for (Vecho_keystrokes, Qnil)))
685 /* input came in, so don't echo. */
689 echo_area_message (f, command_builder->echo_buf, Qnil, 0,
690 /* not echo_buf_index. That doesn't include
691 the terminating " - ". */
692 strlen ((char *) command_builder->echo_buf),
698 reset_key_echo (struct command_builder *command_builder,
699 int remove_echo_area_echo)
701 /* This function can GC */
702 struct frame *f = selected_frame ();
705 command_builder->echo_buf_index = -1;
707 if (remove_echo_area_echo)
708 clear_echo_area (f, Qcommand, 0);
712 /**********************************************************************/
714 /**********************************************************************/
717 maybe_kbd_translate (Lisp_Object event)
720 int did_translate = 0;
722 if (XEVENT_TYPE (event) != key_press_event)
724 if (!HASH_TABLEP (Vkeyboard_translate_table))
726 if (EQ (Fhash_table_count (Vkeyboard_translate_table), Qzero))
729 c = event_to_character (XEVENT (event), 0, 0, 0);
732 Lisp_Object traduit = Fgethash (make_char (c), Vkeyboard_translate_table,
734 if (!NILP (traduit) && SYMBOLP (traduit))
736 XEVENT (event)->event.key.keysym = traduit;
737 XEVENT (event)->event.key.modifiers = 0;
740 else if (CHARP (traduit))
744 /* This used to call Fcharacter_to_event() directly into EVENT,
745 but that can eradicate timestamps and other such stuff.
746 This way is safer. */
748 character_to_event (XCHAR (traduit), &ev2,
749 XCONSOLE (EVENT_CHANNEL (XEVENT (event))), 0, 1);
750 XEVENT (event)->event.key.keysym = ev2.event.key.keysym;
751 XEVENT (event)->event.key.modifiers = ev2.event.key.modifiers;
758 Lisp_Object traduit = Fgethash (XEVENT (event)->event.key.keysym,
759 Vkeyboard_translate_table, Qnil);
760 if (!NILP (traduit) && SYMBOLP (traduit))
762 XEVENT (event)->event.key.keysym = traduit;
765 else if (CHARP (traduit))
770 character_to_event (XCHAR (traduit), &ev2,
771 XCONSOLE (EVENT_CHANNEL (XEVENT (event))), 0, 1);
772 XEVENT (event)->event.key.keysym = ev2.event.key.keysym;
773 XEVENT (event)->event.key.modifiers |= ev2.event.key.modifiers;
780 DEBUG_PRINT_EMACS_EVENT ("->keyboard-translate-table", event);
784 /* NB: The following auto-save stuff is in keyboard.c in FSFmacs, and
785 keystrokes_since_auto_save is equivalent to the difference between
786 num_nonmacro_input_chars and last_auto_save. */
788 /* When an auto-save happens, record the number of keystrokes, and
789 don't do again soon. */
792 record_auto_save (void)
794 keystrokes_since_auto_save = 0;
797 /* Make an auto save happen as soon as possible at command level. */
800 force_auto_save_soon (void)
802 keystrokes_since_auto_save = 1 + max (auto_save_interval, 20);
806 maybe_do_auto_save (void)
808 /* This function can call lisp */
809 keystrokes_since_auto_save++;
810 if (auto_save_interval > 0 &&
811 keystrokes_since_auto_save > max (auto_save_interval, 20) &&
812 !detect_input_pending ())
814 Fdo_auto_save (Qnil, Qnil);
820 print_help (Lisp_Object object)
822 Fprinc (object, Qnil);
827 execute_help_form (struct command_builder *command_builder,
830 /* This function can GC */
831 Lisp_Object help = Qnil;
832 int speccount = specpdl_depth ();
833 Bytecount buf_index = command_builder->echo_buf_index;
834 Lisp_Object echo = ((buf_index <= 0)
836 : make_string (command_builder->echo_buf,
838 struct gcpro gcpro1, gcpro2;
841 record_unwind_protect (save_window_excursion_unwind,
842 Fcurrent_window_configuration (Qnil));
843 reset_key_echo (command_builder, 1);
845 help = Feval (Vhelp_form);
847 internal_with_output_to_temp_buffer (build_string ("*Help*"),
848 print_help, help, Qnil);
849 Fnext_command_event (event, Qnil);
850 /* Remove the help from the frame */
851 unbind_to (speccount, Qnil);
852 /* Hmmmm. Tricky. The unbind restores an old window configuration,
853 apparently bypassing any setting of windows_structure_changed.
854 So we need to set it so that things get redrawn properly. */
855 /* #### This is massive overkill. Look at doing it better once the
856 new redisplay is fully in place. */
858 Lisp_Object frmcons, devcons, concons;
859 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
861 struct frame *f = XFRAME (XCAR (frmcons));
862 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (f);
867 if (event_matches_key_specifier_p (XEVENT (event), make_char (' ')))
869 /* Discard next key if it is a space */
870 reset_key_echo (command_builder, 1);
871 Fnext_command_event (event, Qnil);
874 command_builder->echo_buf_index = buf_index;
876 memcpy (command_builder->echo_buf,
877 XSTRING_DATA (echo), buf_index + 1); /* terminating 0 */
882 /**********************************************************************/
884 /**********************************************************************/
887 detect_input_pending (void)
889 /* Always call the event_pending_p hook even if there's an unread
890 character, because that might do some needed ^G detection (on
891 systems without SIGIO, for example).
893 if (event_stream_event_pending_p (1))
895 if (!NILP (Vunread_command_events) || !NILP (Vunread_command_event))
897 if (!NILP (command_event_queue))
901 EVENT_CHAIN_LOOP (event, command_event_queue)
903 if (XEVENT_TYPE (event) != eval_event
904 && XEVENT_TYPE (event) != magic_eval_event)
911 DEFUN ("input-pending-p", Finput_pending_p, 0, 0, 0, /*
912 Return t if command input is currently available with no waiting.
913 Actually, the value is nil only if we can be sure that no input is available.
917 return detect_input_pending () ? Qt : Qnil;
921 /**********************************************************************/
923 /**********************************************************************/
925 /**** Low-level timeout functions. ****
927 These functions maintain a sorted list of one-shot timeouts (where
928 the timeouts are in absolute time). They are intended for use by
929 functions that need to convert a list of absolute timeouts into a
930 series of intervals to wait for. */
932 /* We ensure that 0 is never a valid ID, so that a value of 0 can be
933 used to indicate an absence of a timer. */
934 static int low_level_timeout_id_tick;
936 static struct low_level_timeout_blocktype
938 Blocktype_declare (struct low_level_timeout);
939 } *the_low_level_timeout_blocktype;
941 /* Add a one-shot timeout at time TIME to TIMEOUT_LIST. Return
942 a unique ID identifying the timeout. */
945 add_low_level_timeout (struct low_level_timeout **timeout_list,
948 struct low_level_timeout *tm;
949 struct low_level_timeout *t, **tt;
951 /* Allocate a new time struct. */
953 tm = Blocktype_alloc (the_low_level_timeout_blocktype);
955 if (low_level_timeout_id_tick == 0)
956 low_level_timeout_id_tick++;
957 tm->id = low_level_timeout_id_tick++;
960 /* Add it to the queue. */
964 while (t && EMACS_TIME_EQUAL_OR_GREATER (tm->time, t->time))
975 /* Remove the low-level timeout identified by ID from TIMEOUT_LIST.
976 If the timeout is not there, do nothing. */
979 remove_low_level_timeout (struct low_level_timeout **timeout_list, int id)
981 struct low_level_timeout *t, *prev;
985 for (t = *timeout_list, prev = NULL; t && t->id != id; t = t->next)
989 return; /* couldn't find it */
992 *timeout_list = t->next;
993 else prev->next = t->next;
995 Blocktype_free (the_low_level_timeout_blocktype, t);
998 /* If there are timeouts on TIMEOUT_LIST, store the relative time
999 interval to the first timeout on the list into INTERVAL and
1000 return 1. Otherwise, return 0. */
1003 get_low_level_timeout_interval (struct low_level_timeout *timeout_list,
1004 EMACS_TIME *interval)
1006 if (!timeout_list) /* no timer events; block indefinitely */
1010 EMACS_TIME current_time;
1012 /* The time to block is the difference between the first
1013 (earliest) timer on the queue and the current time.
1014 If that is negative, then the timer will fire immediately
1015 but we still have to call select(), with a zero-valued
1016 timeout: user events must have precedence over timer events. */
1017 EMACS_GET_TIME (current_time);
1018 if (EMACS_TIME_GREATER (timeout_list->time, current_time))
1019 EMACS_SUB_TIME (*interval, timeout_list->time,
1022 EMACS_SET_SECS_USECS (*interval, 0, 0);
1027 /* Pop the first (i.e. soonest) timeout off of TIMEOUT_LIST and return
1028 its ID. Also, if TIME_OUT is not 0, store the absolute time of the
1029 timeout into TIME_OUT. */
1032 pop_low_level_timeout (struct low_level_timeout **timeout_list,
1033 EMACS_TIME *time_out)
1035 struct low_level_timeout *tm = *timeout_list;
1041 *time_out = tm->time;
1042 *timeout_list = tm->next;
1043 Blocktype_free (the_low_level_timeout_blocktype, tm);
1048 /**** High-level timeout functions. ****/
1050 static int timeout_id_tick;
1052 static Lisp_Object pending_timeout_list, pending_async_timeout_list;
1054 static Lisp_Object Vtimeout_free_list;
1057 mark_timeout (Lisp_Object obj)
1059 Lisp_Timeout *tm = XTIMEOUT (obj);
1060 mark_object (tm->function);
1064 /* Should never, ever be called. (except by an external debugger) */
1066 print_timeout (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
1068 const Lisp_Timeout *t = XTIMEOUT (obj);
1071 sprintf (buf, "#<INTERNAL OBJECT (XEmacs bug?) (timeout) 0x%lx>",
1073 write_c_string (buf, printcharfun);
1076 static const struct lrecord_description timeout_description[] = {
1077 { XD_LISP_OBJECT, offsetof (Lisp_Timeout, function) },
1078 { XD_LISP_OBJECT, offsetof (Lisp_Timeout, object) },
1082 DEFINE_LRECORD_IMPLEMENTATION ("timeout", timeout,
1083 mark_timeout, print_timeout,
1084 0, 0, 0, timeout_description, Lisp_Timeout);
1086 /* Generate a timeout and return its ID. */
1089 event_stream_generate_wakeup (unsigned int milliseconds,
1090 unsigned int vanilliseconds,
1091 Lisp_Object function, Lisp_Object object,
1094 Lisp_Object op = allocate_managed_lcrecord (Vtimeout_free_list);
1095 Lisp_Timeout *timeout = XTIMEOUT (op);
1096 EMACS_TIME current_time;
1097 EMACS_TIME interval;
1099 timeout->id = timeout_id_tick++;
1100 timeout->resignal_msecs = vanilliseconds;
1101 timeout->function = function;
1102 timeout->object = object;
1104 EMACS_GET_TIME (current_time);
1105 EMACS_SET_SECS_USECS (interval, milliseconds / 1000,
1106 1000 * (milliseconds % 1000));
1107 EMACS_ADD_TIME (timeout->next_signal_time, current_time, interval);
1111 timeout->interval_id =
1112 event_stream_add_async_timeout (timeout->next_signal_time);
1113 pending_async_timeout_list = noseeum_cons (op,
1114 pending_async_timeout_list);
1118 timeout->interval_id =
1119 event_stream_add_timeout (timeout->next_signal_time);
1120 pending_timeout_list = noseeum_cons (op, pending_timeout_list);
1125 /* Given the INTERVAL-ID of a timeout just signalled, resignal the timeout
1126 as necessary and return the timeout's ID and function and object slots.
1128 This should be called as a result of receiving notice that a timeout
1129 has fired. INTERVAL-ID is *not* the timeout's ID, but is the ID that
1130 identifies this particular firing of the timeout. INTERVAL-ID's and
1131 timeout ID's are in separate number spaces and bear no relation to
1132 each other. The INTERVAL-ID is all that the event callback routines
1133 work with: they work only with one-shot intervals, not with timeouts
1134 that may fire repeatedly.
1136 NOTE: The returned FUNCTION and OBJECT are *not* GC-protected at all.
1140 event_stream_resignal_wakeup (int interval_id, int async_p,
1141 Lisp_Object *function, Lisp_Object *object)
1143 Lisp_Object op = Qnil, rest;
1144 Lisp_Timeout *timeout;
1145 Lisp_Object *timeout_list;
1146 struct gcpro gcpro1;
1149 GCPRO1 (op); /* just in case ... because it's removed from the list
1152 timeout_list = async_p ? &pending_async_timeout_list : &pending_timeout_list;
1154 /* Find the timeout on the list of pending ones. */
1155 LIST_LOOP (rest, *timeout_list)
1157 timeout = XTIMEOUT (XCAR (rest));
1158 if (timeout->interval_id == interval_id)
1162 assert (!NILP (rest));
1164 timeout = XTIMEOUT (op);
1165 /* We make sure to snarf the data out of the timeout object before
1166 we free it with free_managed_lcrecord(). */
1168 *function = timeout->function;
1169 *object = timeout->object;
1171 /* Remove this one from the list of pending timeouts */
1172 *timeout_list = delq_no_quit_and_free_cons (op, *timeout_list);
1174 /* If this timeout wants to be resignalled, do it now. */
1175 if (timeout->resignal_msecs)
1177 EMACS_TIME current_time;
1178 EMACS_TIME interval;
1180 /* Determine the time that the next resignalling should occur.
1181 We do that by adding the interval time to the last signalled
1182 time until we get a time that's current.
1184 (This way, it doesn't matter if the timeout was signalled
1185 exactly when we asked for it, or at some time later.)
1187 EMACS_GET_TIME (current_time);
1188 EMACS_SET_SECS_USECS (interval, timeout->resignal_msecs / 1000,
1189 1000 * (timeout->resignal_msecs % 1000));
1192 EMACS_ADD_TIME (timeout->next_signal_time, timeout->next_signal_time,
1194 } while (EMACS_TIME_GREATER (current_time, timeout->next_signal_time));
1197 timeout->interval_id =
1198 event_stream_add_async_timeout (timeout->next_signal_time);
1200 timeout->interval_id =
1201 event_stream_add_timeout (timeout->next_signal_time);
1202 /* Add back onto the list. Note that the effect of this
1203 is to move frequently-hit timeouts to the front of the
1204 list, which is a good thing. */
1205 *timeout_list = noseeum_cons (op, *timeout_list);
1208 free_managed_lcrecord (Vtimeout_free_list, op);
1215 event_stream_disable_wakeup (int id, int async_p)
1217 Lisp_Timeout *timeout = 0;
1219 Lisp_Object *timeout_list;
1222 timeout_list = &pending_async_timeout_list;
1224 timeout_list = &pending_timeout_list;
1226 /* Find the timeout on the list of pending ones, if it's still there. */
1227 LIST_LOOP (rest, *timeout_list)
1229 timeout = XTIMEOUT (XCAR (rest));
1230 if (timeout->id == id)
1234 /* If we found it, remove it from the list and disable the pending
1238 Lisp_Object op = XCAR (rest);
1240 delq_no_quit_and_free_cons (op, *timeout_list);
1242 event_stream_remove_async_timeout (timeout->interval_id);
1244 event_stream_remove_timeout (timeout->interval_id);
1245 free_managed_lcrecord (Vtimeout_free_list, op);
1250 event_stream_wakeup_pending_p (int id, int async_p)
1252 Lisp_Timeout *timeout;
1254 Lisp_Object timeout_list;
1259 timeout_list = pending_async_timeout_list;
1261 timeout_list = pending_timeout_list;
1263 /* Find the element on the list of pending ones, if it's still there. */
1264 LIST_LOOP (rest, timeout_list)
1266 timeout = XTIMEOUT (XCAR (rest));
1267 if (timeout->id == id)
1278 /**** Asynch. timeout functions (see also signal.c) ****/
1280 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
1281 extern int poll_for_quit_id;
1284 #if defined(HAVE_UNIX_PROCESSES) && !defined(SIGCHLD)
1285 extern int poll_for_sigchld_id;
1289 event_stream_deal_with_async_timeout (int interval_id)
1291 /* This function can GC */
1292 Lisp_Object humpty, dumpty;
1293 #if ((!defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)) \
1294 || defined(HAVE_UNIX_PROCESSES) && !defined(SIGCHLD))
1297 event_stream_resignal_wakeup (interval_id, 1, &humpty, &dumpty);
1299 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
1300 if (id == poll_for_quit_id)
1302 quit_check_signal_happened = 1;
1303 quit_check_signal_tick_count++;
1308 #if defined(HAVE_UNIX_PROCESSES) && !defined(SIGCHLD)
1309 if (id == poll_for_sigchld_id)
1311 kick_status_notify ();
1316 /* call1 GC-protects its arguments */
1317 call1_trapping_errors ("Error in asynchronous timeout callback",
1322 /**** Lisp-level timeout functions. ****/
1324 static unsigned long
1325 lisp_number_to_milliseconds (Lisp_Object secs, int allow_0)
1327 #ifdef LISP_FLOAT_TYPE
1329 CHECK_INT_OR_FLOAT (secs);
1330 fsecs = XFLOATINT (secs);
1334 fsecs = XINT (secs);
1337 signal_simple_error ("timeout is negative", secs);
1338 if (!allow_0 && fsecs == 0)
1339 signal_simple_error ("timeout is non-positive", secs);
1340 if (fsecs >= (((unsigned int) 0xFFFFFFFF) / 1000))
1342 ("timeout would exceed 32 bits when represented in milliseconds", secs);
1344 return (unsigned long) (1000 * fsecs);
1347 DEFUN ("add-timeout", Fadd_timeout, 3, 4, 0, /*
1348 Add a timeout, to be signaled after the timeout period has elapsed.
1349 SECS is a number of seconds, expressed as an integer or a float.
1350 FUNCTION will be called after that many seconds have elapsed, with one
1351 argument, the given OBJECT. If the optional RESIGNAL argument is provided,
1352 then after this timeout expires, `add-timeout' will automatically be called
1353 again with RESIGNAL as the first argument.
1355 This function returns an object which is the id number of this particular
1356 timeout. You can pass that object to `disable-timeout' to turn off the
1357 timeout before it has been signalled.
1359 NOTE: Id numbers as returned by this function are in a distinct namespace
1360 from those returned by `add-async-timeout'. This means that the same id
1361 number could refer to a pending synchronous timeout and a different pending
1362 asynchronous timeout, and that you cannot pass an id from `add-timeout'
1363 to `disable-async-timeout', or vice-versa.
1365 The number of seconds may be expressed as a floating-point number, in which
1366 case some fractional part of a second will be used. Caveat: the usable
1367 timeout granularity will vary from system to system.
1369 Adding a timeout causes a timeout event to be returned by `next-event', and
1370 the function will be invoked by `dispatch-event,' so if emacs is in a tight
1371 loop, the function will not be invoked until the next call to sit-for or
1372 until the return to top-level (the same is true of process filters).
1374 If you need to have a timeout executed even when XEmacs is in the midst of
1375 running Lisp code, use `add-async-timeout'.
1377 WARNING: if you are thinking of calling add-timeout from inside of a
1378 callback function as a way of resignalling a timeout, think again. There
1379 is a race condition. That's why the RESIGNAL argument exists.
1381 (secs, function, object, resignal))
1383 unsigned long msecs = lisp_number_to_milliseconds (secs, 0);
1384 unsigned long msecs2 = (NILP (resignal) ? 0 :
1385 lisp_number_to_milliseconds (resignal, 0));
1388 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 0);
1389 lid = make_int (id);
1390 if (id != XINT (lid)) abort ();
1394 DEFUN ("disable-timeout", Fdisable_timeout, 1, 1, 0, /*
1395 Disable a timeout from signalling any more.
1396 ID should be a timeout id number as returned by `add-timeout'. If ID
1397 corresponds to a one-shot timeout that has already signalled, nothing
1400 It will not work to call this function on an id number returned by
1401 `add-async-timeout'. Use `disable-async-timeout' for that.
1406 event_stream_disable_wakeup (XINT (id), 0);
1410 DEFUN ("add-async-timeout", Fadd_async_timeout, 3, 4, 0, /*
1411 Add an asynchronous timeout, to be signaled after an interval has elapsed.
1412 SECS is a number of seconds, expressed as an integer or a float.
1413 FUNCTION will be called after that many seconds have elapsed, with one
1414 argument, the given OBJECT. If the optional RESIGNAL argument is provided,
1415 then after this timeout expires, `add-async-timeout' will automatically be
1416 called again with RESIGNAL as the first argument.
1418 This function returns an object which is the id number of this particular
1419 timeout. You can pass that object to `disable-async-timeout' to turn off
1420 the timeout before it has been signalled.
1422 NOTE: Id numbers as returned by this function are in a distinct namespace
1423 from those returned by `add-timeout'. This means that the same id number
1424 could refer to a pending synchronous timeout and a different pending
1425 asynchronous timeout, and that you cannot pass an id from
1426 `add-async-timeout' to `disable-timeout', or vice-versa.
1428 The number of seconds may be expressed as a floating-point number, in which
1429 case some fractional part of a second will be used. Caveat: the usable
1430 timeout granularity will vary from system to system.
1432 Adding an asynchronous timeout causes the function to be invoked as soon
1433 as the timeout occurs, even if XEmacs is in the midst of executing some
1434 other code. (This is unlike the synchronous timeouts added with
1435 `add-timeout', where the timeout will only be signalled when XEmacs is
1436 waiting for events, i.e. the next return to top-level or invocation of
1437 `sit-for' or related functions.) This means that the function that is
1438 called *must* not signal an error or change any global state (e.g. switch
1439 buffers or windows) except when locking code is in place to make sure
1440 that race conditions don't occur in the interaction between the
1441 asynchronous timeout function and other code.
1443 Under most circumstances, you should use `add-timeout' instead, as it is
1444 much safer. Asynchronous timeouts should only be used when such behavior
1445 is really necessary.
1447 Asynchronous timeouts are blocked and will not occur when `inhibit-quit'
1448 is non-nil. As soon as `inhibit-quit' becomes nil again, any pending
1449 asynchronous timeouts will get called immediately. (Multiple occurrences
1450 of the same asynchronous timeout are not queued, however.) While the
1451 callback function of an asynchronous timeout is invoked, `inhibit-quit'
1452 is automatically bound to non-nil, and thus other asynchronous timeouts
1453 will be blocked unless the callback function explicitly sets `inhibit-quit'
1456 WARNING: if you are thinking of calling `add-async-timeout' from inside of a
1457 callback function as a way of resignalling a timeout, think again. There
1458 is a race condition. That's why the RESIGNAL argument exists.
1460 (secs, function, object, resignal))
1462 unsigned long msecs = lisp_number_to_milliseconds (secs, 0);
1463 unsigned long msecs2 = (NILP (resignal) ? 0 :
1464 lisp_number_to_milliseconds (resignal, 0));
1467 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 1);
1468 lid = make_int (id);
1469 if (id != XINT (lid)) abort ();
1473 DEFUN ("disable-async-timeout", Fdisable_async_timeout, 1, 1, 0, /*
1474 Disable an asynchronous timeout from signalling any more.
1475 ID should be a timeout id number as returned by `add-async-timeout'. If ID
1476 corresponds to a one-shot timeout that has already signalled, nothing
1479 It will not work to call this function on an id number returned by
1480 `add-timeout'. Use `disable-timeout' for that.
1485 event_stream_disable_wakeup (XINT (id), 1);
1490 /**********************************************************************/
1491 /* enqueuing and dequeuing events */
1492 /**********************************************************************/
1494 /* Add an event to the back of the command-event queue: it will be the next
1495 event read after all pending events. This only works on keyboard,
1496 mouse-click, misc-user, and eval events.
1499 enqueue_command_event (Lisp_Object event)
1501 enqueue_event (event, &command_event_queue, &command_event_queue_tail);
1505 dequeue_command_event (void)
1507 return dequeue_event (&command_event_queue, &command_event_queue_tail);
1510 /* put the event on the typeahead queue, unless
1511 the event is the quit char, in which case the `QUIT'
1512 which will occur on the next trip through this loop is
1513 all the processing we should do - leaving it on the queue
1514 would cause the quit to be processed twice.
1517 enqueue_command_event_1 (Lisp_Object event_to_copy)
1519 /* do not call check_quit() here. Vquit_flag was set in
1520 next_event_internal. */
1521 if (NILP (Vquit_flag))
1522 enqueue_command_event (Fcopy_event (event_to_copy, Qnil));
1526 enqueue_magic_eval_event (void (*fun) (Lisp_Object), Lisp_Object object)
1528 Lisp_Object event = Fmake_event (Qnil, Qnil);
1530 XEVENT (event)->event_type = magic_eval_event;
1531 /* channel for magic_eval events is nil */
1532 XEVENT (event)->event.magic_eval.internal_function = fun;
1533 XEVENT (event)->event.magic_eval.object = object;
1534 enqueue_command_event (event);
1537 DEFUN ("enqueue-eval-event", Fenqueue_eval_event, 2, 2, 0, /*
1538 Add an eval event to the back of the eval event queue.
1539 When this event is dispatched, FUNCTION (which should be a function
1540 of one argument) will be called with OBJECT as its argument.
1541 See `next-event' for a description of event types and how events
1546 Lisp_Object event = Fmake_event (Qnil, Qnil);
1548 XEVENT (event)->event_type = eval_event;
1549 /* channel for eval events is nil */
1550 XEVENT (event)->event.eval.function = function;
1551 XEVENT (event)->event.eval.object = object;
1552 enqueue_command_event (event);
1558 enqueue_misc_user_event (Lisp_Object channel, Lisp_Object function,
1561 Lisp_Object event = Fmake_event (Qnil, Qnil);
1563 XEVENT (event)->event_type = misc_user_event;
1564 XEVENT (event)->channel = channel;
1565 XEVENT (event)->event.misc.function = function;
1566 XEVENT (event)->event.misc.object = object;
1567 XEVENT (event)->event.misc.button = 0;
1568 XEVENT (event)->event.misc.modifiers = 0;
1569 XEVENT (event)->event.misc.x = -1;
1570 XEVENT (event)->event.misc.y = -1;
1571 enqueue_command_event (event);
1577 enqueue_misc_user_event_pos (Lisp_Object channel, Lisp_Object function,
1579 int button, int modifiers, int x, int y)
1581 Lisp_Object event = Fmake_event (Qnil, Qnil);
1583 XEVENT (event)->event_type = misc_user_event;
1584 XEVENT (event)->channel = channel;
1585 XEVENT (event)->event.misc.function = function;
1586 XEVENT (event)->event.misc.object = object;
1587 XEVENT (event)->event.misc.button = button;
1588 XEVENT (event)->event.misc.modifiers = modifiers;
1589 XEVENT (event)->event.misc.x = x;
1590 XEVENT (event)->event.misc.y = y;
1591 enqueue_command_event (event);
1597 /**********************************************************************/
1598 /* focus-event handling */
1599 /**********************************************************************/
1603 Ben's capsule lecture on focus:
1605 In FSFmacs `select-frame' never changes the window-manager frame
1606 focus. All it does is change the "selected frame". This is similar
1607 to what happens when we call `select-device' or `select-console'.
1608 Whenever an event comes in (including a keyboard event), its frame is
1609 selected; therefore, evaluating `select-frame' in *scratch* won't
1610 cause any effects because the next received event (in the same frame)
1611 will cause a switch back to the frame displaying *scratch*.
1613 Whenever a focus-change event is received from the window manager, it
1614 generates a `switch-frame' event, which causes the Lisp function
1615 `handle-switch-frame' to get run. This basically just runs
1616 `select-frame' (see below, however).
1618 In FSFmacs, if you want to have an operation run when a frame is
1619 selected, you supply an event binding for `switch-frame' (and then
1620 maybe call `handle-switch-frame', or something ...).
1622 In XEmacs, we *do* change the window-manager frame focus as a result
1623 of `select-frame', but not until the next time an event is received,
1624 so that a function that momentarily changes the selected frame won't
1625 cause WM focus flashing. (#### There's something not quite right here;
1626 this is causing the wrong-cursor-focus problems that you occasionally
1627 see. But the general idea is correct.) This approach is winning for
1628 people who use the explicit-focus model, but is trickier to implement.
1630 We also don't make the `switch-frame' event visible but instead have
1631 `select-frame-hook', which is a better approach.
1633 There is the problem of surrogate minibuffers, where when we enter the
1634 minibuffer, you essentially want to temporarily switch the WM focus to
1635 the frame with the minibuffer, and switch it back when you exit the
1638 FSFmacs solves this with the crockish `redirect-frame-focus', which
1639 says "for keyboard events received from FRAME, act like they're
1640 coming from FOCUS-FRAME". I think what this means is that, when
1641 a keyboard event comes in and the event manager is about to select the
1642 event's frame, if that frame has its focus redirected, the redirected-to
1643 frame is selected instead. That way, if you're in a minibufferless
1644 frame and enter the minibuffer, then all Lisp functions that run see
1645 the selected frame as the minibuffer's frame rather than the minibufferless
1646 frame you came from, so that (e.g.) your typing actually appears in
1647 the minibuffer's frame and things behave sanely.
1649 There's also some weird logic that switches the redirected frame focus
1650 from one frame to another if Lisp code explicitly calls `select-frame'
1651 \(but not if `handle-switch-frame' is called), and saves and restores
1652 the frame focus in window configurations, etc. etc. All of this logic
1653 is heavily #if 0'd, with lots of comments saying "No, this approach
1654 doesn't seem to work, so I'm trying this ... is it reasonable?
1655 Well, I'm not sure ..." that are a red flag indicating crockishness.
1657 Because of our way of doing things, we can avoid all this crock.
1658 Keyboard events never cause a select-frame (who cares what frame
1659 they're associated with? They come from a console, only). We change
1660 the actual WM focus to a surrogate minibuffer frame, so we don't have
1661 to do any internal redirection. In order to get the focus back,
1662 I took the approach in minibuf.el of just checking to see if the
1663 frame we moved to is still the selected frame, and move back to the
1664 old one if so. Conceivably we might have to do the weird "tracking"
1665 that FSFmacs does when `select-frame' is called, but I don't think
1666 so. If the selected frame moved from the minibuffer frame, then
1667 we just leave it there, figuring that someone knows what they're
1668 doing. Because we don't have any redirection recorded anywhere,
1669 it's safe to do this, and we don't end up with unwanted redirection.
1674 run_select_frame_hook (void)
1676 run_hook (Qselect_frame_hook);
1680 run_deselect_frame_hook (void)
1682 run_hook (Qdeselect_frame_hook);
1685 /* When select-frame is called and focus_follows_mouse is false, we want
1686 to tell the window system that the focus should be changed to point to
1687 the new frame. However,
1688 sometimes Lisp functions will temporarily change the selected frame
1689 (e.g. to call a function that operates on the selected frame),
1690 and it's annoying if this focus-change happens exactly when
1691 select-frame is called, because then you get some flickering of the
1692 window-manager border and perhaps other undesirable results. We
1693 really only want to change the focus when we're about to retrieve
1694 an event from the user. To do this, we keep track of the frame
1695 where the window-manager focus lies on, and just before waiting
1696 for user events, check the currently selected frame and change
1697 the focus as necessary.
1699 On the other hand, if focus_follows_mouse is true, we need to switch the
1700 selected frame back to the frame with window manager focus just before we
1701 execute the next command in Fcommand_loop_1, just as the selected buffer is
1702 reverted after a set-buffer.
1704 Both cases are handled by this function. It must be called as appropriate
1705 from these two places, depending on the value of focus_follows_mouse. */
1708 investigate_frame_change (void)
1710 Lisp_Object devcons, concons;
1712 /* if the selected frame was changed, change the window-system
1713 focus to the new frame. We don't do it when select-frame was
1714 called, to avoid flickering and other unwanted side effects when
1715 the frame is just changed temporarily. */
1716 DEVICE_LOOP_NO_BREAK (devcons, concons)
1718 struct device *d = XDEVICE (XCAR (devcons));
1719 Lisp_Object sel_frame = DEVICE_SELECTED_FRAME (d);
1721 /* You'd think that maybe we should use FRAME_WITH_FOCUS_REAL,
1722 but that can cause us to end up in an infinite loop focusing
1723 between two frames. It seems that since the call to `select-frame'
1724 in emacs_handle_focus_change_final() is based on the _FOR_HOOKS
1725 value, we need to do so too. */
1726 if (!NILP (sel_frame) &&
1727 !EQ (DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d), sel_frame) &&
1728 !NILP (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d)) &&
1729 !EQ (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d), sel_frame))
1731 /* At this point, we know that the frame has been changed. Now, if
1732 * focus_follows_mouse is not set, we finish off the frame change,
1733 * so that user events will now come from the new frame. Otherwise,
1734 * if focus_follows_mouse is set, no gratuitous frame changing
1735 * should take place. Set the focus back to the frame which was
1736 * originally selected for user input.
1738 if (!focus_follows_mouse)
1740 /* prevent us from issuing the same request more than once */
1741 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = sel_frame;
1742 MAYBE_DEVMETH (d, focus_on_frame, (XFRAME (sel_frame)));
1746 Lisp_Object old_frame = Qnil;
1748 /* #### Do we really want to check OUGHT ??
1749 * It seems to make sense, though I have never seen us
1750 * get here and have it be non-nil.
1752 if (FRAMEP (DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d)))
1753 old_frame = DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d);
1754 else if (FRAMEP (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d)))
1755 old_frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d);
1757 /* #### Can old_frame ever be NIL? play it safe.. */
1758 if (!NILP (old_frame))
1760 /* Fselect_frame is not really the right thing: it frobs the
1761 * buffer stack. But there's no easy way to do the right
1762 * thing, and this code already had this problem anyway.
1764 Fselect_frame (old_frame);
1772 cleanup_after_missed_defocusing (Lisp_Object frame)
1774 if (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)))
1775 Fselect_frame (frame);
1780 emacs_handle_focus_change_preliminary (Lisp_Object frame_inp_and_dev)
1782 Lisp_Object frame = Fcar (frame_inp_and_dev);
1783 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev));
1784 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev)));
1787 if (!DEVICE_LIVE_P (XDEVICE (device)))
1790 d = XDEVICE (device);
1792 /* Any received focus-change notifications render invalid any
1793 pending focus-change requests. */
1794 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = Qnil;
1797 Lisp_Object focus_frame;
1799 if (!FRAME_LIVE_P (XFRAME (frame)))
1802 focus_frame = DEVICE_FRAME_WITH_FOCUS_REAL (d);
1804 /* Mark the minibuffer as changed to make sure it gets updated
1805 properly if the echo area is active. */
1807 struct window *w = XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame)));
1808 MARK_WINDOWS_CHANGED (w);
1811 if (FRAMEP (focus_frame) && FRAME_LIVE_P (XFRAME (focus_frame))
1812 && !EQ (frame, focus_frame))
1814 /* Oops, we missed a focus-out event. */
1815 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil;
1816 redisplay_redraw_cursor (XFRAME (focus_frame), 1);
1818 DEVICE_FRAME_WITH_FOCUS_REAL (d) = frame;
1819 if (!EQ (frame, focus_frame))
1821 redisplay_redraw_cursor (XFRAME (frame), 1);
1826 /* We ignore the frame reported in the event. If it's different
1827 from where we think the focus was, oh well -- we messed up.
1828 Nonetheless, we pretend we were right, for sensible behavior. */
1829 frame = DEVICE_FRAME_WITH_FOCUS_REAL (d);
1832 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil;
1834 if (FRAME_LIVE_P (XFRAME (frame)))
1835 redisplay_redraw_cursor (XFRAME (frame), 1);
1840 /* Called from the window-system-specific code when we receive a
1841 notification that the focus lies on a particular frame.
1842 Argument is a cons: (frame . (device . in-p)) where in-p is non-nil
1846 emacs_handle_focus_change_final (Lisp_Object frame_inp_and_dev)
1848 Lisp_Object frame = Fcar (frame_inp_and_dev);
1849 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev));
1850 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev)));
1854 if (!DEVICE_LIVE_P (XDEVICE (device)))
1857 d = XDEVICE (device);
1861 Lisp_Object focus_frame;
1863 if (!FRAME_LIVE_P (XFRAME (frame)))
1866 focus_frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d);
1868 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = frame;
1869 if (FRAMEP (focus_frame) && !EQ (frame, focus_frame))
1871 /* Oops, we missed a focus-out event. */
1872 Fselect_frame (focus_frame);
1873 /* Do an unwind-protect in case an error occurs in
1874 the deselect-frame-hook */
1875 count = specpdl_depth ();
1876 record_unwind_protect (cleanup_after_missed_defocusing, frame);
1877 run_deselect_frame_hook ();
1878 unbind_to (count, Qnil);
1879 /* the cleanup method changed the focus frame to nil, so
1880 we need to reflect this */
1884 Fselect_frame (frame);
1885 if (!EQ (frame, focus_frame))
1886 run_select_frame_hook ();
1890 /* We ignore the frame reported in the event. If it's different
1891 from where we think the focus was, oh well -- we messed up.
1892 Nonetheless, we pretend we were right, for sensible behavior. */
1893 frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d);
1896 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = Qnil;
1897 run_deselect_frame_hook ();
1903 /**********************************************************************/
1904 /* retrieving the next event */
1905 /**********************************************************************/
1907 static int in_single_console;
1909 /* #### These functions don't currently do anything. */
1911 single_console_state (void)
1913 in_single_console = 1;
1917 any_console_state (void)
1919 in_single_console = 0;
1923 in_single_console_state (void)
1925 return in_single_console;
1928 /* the number of keyboard characters read. callint.c wants this. */
1929 Charcount num_input_chars;
1932 next_event_internal (Lisp_Object target_event, int allow_queued)
1934 struct gcpro gcpro1;
1935 /* QUIT; This is incorrect - the caller must do this because some
1936 callers (ie, Fnext_event()) do not want to QUIT. */
1938 assert (NILP (XEVENT_NEXT (target_event)));
1940 GCPRO1 (target_event);
1942 /* When focus_follows_mouse is nil, if a frame change took place, we need
1943 * to actually switch window manager focus to the selected window now.
1945 if (!focus_follows_mouse)
1946 investigate_frame_change ();
1948 if (allow_queued && !NILP (command_event_queue))
1950 Lisp_Object event = dequeue_command_event ();
1951 Fcopy_event (event, target_event);
1952 Fdeallocate_event (event);
1953 DEBUG_PRINT_EMACS_EVENT ("command event queue", target_event);
1957 Lisp_Event *e = XEVENT (target_event);
1959 /* The command_event_queue was empty. Wait for an event. */
1960 event_stream_next_event (e);
1961 /* If this was a timeout, then we need to extract some data
1962 out of the returned closure and might need to resignal
1964 if (e->event_type == timeout_event)
1966 Lisp_Object tristan, isolde;
1968 e->event.timeout.id_number =
1969 event_stream_resignal_wakeup (e->event.timeout.interval_id, 0,
1972 e->event.timeout.function = tristan;
1973 e->event.timeout.object = isolde;
1974 /* next_event_internal() doesn't print out timeout events
1975 because of the extra info we just set. */
1976 DEBUG_PRINT_EMACS_EVENT ("real, timeout", target_event);
1979 /* If we read a ^G, then set quit-flag but do not discard the ^G.
1980 The callers of next_event_internal() will do one of two things:
1982 -- set Vquit_flag to Qnil. (next-event does this.) This will
1983 cause the ^G to be treated as a normal keystroke.
1984 -- not change Vquit_flag but attempt to enqueue the ^G, at
1985 which point it will be discarded. The next time QUIT is
1986 called, it will notice that Vquit_flag was set.
1989 if (e->event_type == key_press_event &&
1990 event_matches_key_specifier_p
1991 (e, make_char (CONSOLE_QUIT_CHAR (XCONSOLE (EVENT_CHANNEL (e))))))
2001 run_pre_idle_hook (void)
2003 if (!NILP (Vpre_idle_hook)
2004 && !detect_input_pending ())
2005 safe_run_hook_trapping_errors
2006 ("Error in `pre-idle-hook' (setting hook to nil)",
2010 static void push_this_command_keys (Lisp_Object event);
2011 static void push_recent_keys (Lisp_Object event);
2012 static void dribble_out_event (Lisp_Object event);
2013 static void execute_internal_event (Lisp_Object event);
2014 static int is_scrollbar_event (Lisp_Object event);
2016 DEFUN ("next-event", Fnext_event, 0, 2, 0, /*
2017 Return the next available event.
2018 Pass this object to `dispatch-event' to handle it.
2019 In most cases, you will want to use `next-command-event', which returns
2020 the next available "user" event (i.e. keypress, button-press,
2021 button-release, or menu selection) instead of this function.
2023 If EVENT is non-nil, it should be an event object and will be filled in
2024 and returned; otherwise a new event object will be created and returned.
2025 If PROMPT is non-nil, it should be a string and will be displayed in the
2026 echo area while this function is waiting for an event.
2028 The next available event will be
2030 -- any events in `unread-command-events' or `unread-command-event'; else
2031 -- the next event in the currently executing keyboard macro, if any; else
2032 -- an event queued by `enqueue-eval-event', if any, or any similar event
2033 queued internally, such as a misc-user event. (For example, when an item
2034 is selected from a menu or from a `question'-type dialog box, the item's
2035 callback is not immediately executed, but instead a misc-user event
2036 is generated and placed onto this queue; when it is dispatched, the
2037 callback is executed.) Else
2038 -- the next available event from the window system or terminal driver.
2040 In the last case, this function will block until an event is available.
2042 The returned event will be one of the following types:
2044 -- a key-press event.
2045 -- a button-press or button-release event.
2046 -- a misc-user-event, meaning the user selected an item on a menu or used
2048 -- a process event, meaning that output from a subprocess is available.
2049 -- a timeout event, meaning that a timeout has elapsed.
2050 -- an eval event, which simply causes a function to be executed when the
2051 event is dispatched. Eval events are generated by `enqueue-eval-event'
2052 or by certain other conditions happening.
2053 -- a magic event, indicating that some window-system-specific event
2054 happened (such as a focus-change notification) that must be handled
2055 synchronously with other events. `dispatch-event' knows what to do with
2060 /* This function can call lisp */
2061 /* #### We start out using the selected console before an event
2062 is received, for echoing the partially completed command.
2063 This is most definitely wrong -- there needs to be a separate
2064 echo area for each console! */
2065 struct console *con = XCONSOLE (Vselected_console);
2066 struct command_builder *command_builder =
2067 XCOMMAND_BUILDER (con->command_builder);
2068 int store_this_key = 0;
2069 struct gcpro gcpro1;
2072 /* DO NOT do QUIT anywhere within this function or the functions it calls.
2073 We want to read the ^G as an event. */
2075 #ifdef LWLIB_MENUBARS_LUCID
2077 * #### Fix the menu code so this isn't necessary.
2079 * We cannot allow the lwmenu code to be reentered, because the
2080 * code is not written to be reentrant and will crash. Therefore
2081 * paths from the menu callbacks back into the menu code have to
2082 * be blocked. Fnext_event is the normal path into the menu code,
2083 * so we signal an error here.
2085 if (in_menu_callback)
2086 error ("Attempt to call next-event inside menu callback");
2087 #endif /* LWLIB_MENUBARS_LUCID */
2090 event = Fmake_event (Qnil, Qnil);
2092 CHECK_LIVE_EVENT (event);
2097 CHECK_STRING (prompt);
2099 len = XSTRING_LENGTH (prompt);
2100 if (command_builder->echo_buf_length < len)
2101 len = command_builder->echo_buf_length - 1;
2102 memcpy (command_builder->echo_buf, XSTRING_DATA (prompt), len);
2103 command_builder->echo_buf[len] = 0;
2104 command_builder->echo_buf_index = len;
2105 echo_area_message (XFRAME (CONSOLE_SELECTED_FRAME (con)),
2106 command_builder->echo_buf,
2108 command_builder->echo_buf_index,
2112 start_over_and_avoid_hosage:
2114 /* If there is something in unread-command-events, simply return it.
2115 But do some error checking to make sure the user hasn't put something
2116 in the unread-command-events that they shouldn't have.
2117 This does not update this-command-keys and recent-keys.
2119 if (!NILP (Vunread_command_events))
2121 if (!CONSP (Vunread_command_events))
2123 Vunread_command_events = Qnil;
2124 signal_error (Qwrong_type_argument,
2125 list3 (Qconsp, Vunread_command_events,
2126 Qunread_command_events));
2130 Lisp_Object e = XCAR (Vunread_command_events);
2131 Vunread_command_events = XCDR (Vunread_command_events);
2132 if (!EVENTP (e) || !command_event_p (e))
2133 signal_error (Qwrong_type_argument,
2134 list3 (Qcommand_event_p, e, Qunread_command_events));
2137 Fcopy_event (e, event);
2138 DEBUG_PRINT_EMACS_EVENT ("unread-command-events", event);
2142 /* Do similar for unread-command-event (obsoleteness support). */
2143 else if (!NILP (Vunread_command_event))
2145 Lisp_Object e = Vunread_command_event;
2146 Vunread_command_event = Qnil;
2148 if (!EVENTP (e) || !command_event_p (e))
2150 signal_error (Qwrong_type_argument,
2151 list3 (Qeventp, e, Qunread_command_event));
2154 Fcopy_event (e, event);
2156 DEBUG_PRINT_EMACS_EVENT ("unread-command-event", event);
2159 /* If we're executing a keyboard macro, take the next event from that,
2160 and update this-command-keys and recent-keys.
2161 Note that the unread-command-events take precedence over kbd macros.
2165 if (!NILP (Vexecuting_macro))
2168 pop_kbd_macro_event (event); /* This throws past us at
2171 DEBUG_PRINT_EMACS_EVENT ("keyboard macro", event);
2173 /* Otherwise, read a real event, possibly from the
2174 command_event_queue, and update this-command-keys and
2178 run_pre_idle_hook ();
2180 next_event_internal (event, 1);
2181 Vquit_flag = Qnil; /* Read C-g as an event. */
2186 status_notify (); /* Notice process change */
2189 alloca (0); /* Cause a garbage collection now */
2190 /* Since we can free the most stuff here
2191 * (since this is typically called from
2192 * the command-loop top-level). */
2193 #endif /* C_ALLOCA */
2195 if (object_dead_p (XEVENT (event)->channel))
2196 /* event_console_or_selected may crash if the channel is dead.
2197 Best just to eat it and get the next event. */
2198 goto start_over_and_avoid_hosage;
2200 /* OK, now we can stop the selected-console kludge and use the
2201 actual console from the event. */
2202 con = event_console_or_selected (event);
2203 command_builder = XCOMMAND_BUILDER (con->command_builder);
2205 switch (XEVENT_TYPE (event))
2207 case button_release_event:
2208 case misc_user_event:
2209 /* don't echo menu accelerator keys */
2210 reset_key_echo (command_builder, 1);
2212 case button_press_event: /* key or mouse input can trigger prompting */
2213 goto STORE_AND_EXECUTE_KEY;
2214 case key_press_event: /* any key input can trigger autosave */
2220 maybe_do_auto_save ();
2222 STORE_AND_EXECUTE_KEY:
2225 echo_key_event (command_builder, event);
2229 /* Store the last-input-event. The semantics of this is that it is
2230 the thing most recently returned by next-command-event. It need
2231 not have come from the keyboard or a keyboard macro, it may have
2232 come from unread-command-events. It's always a command-event (a
2233 key, click, or menu selection), never a motion or process event.
2235 if (!EVENTP (Vlast_input_event))
2236 Vlast_input_event = Fmake_event (Qnil, Qnil);
2237 if (XEVENT_TYPE (Vlast_input_event) == dead_event)
2239 Vlast_input_event = Fmake_event (Qnil, Qnil);
2240 error ("Someone deallocated last-input-event!");
2242 if (! EQ (event, Vlast_input_event))
2243 Fcopy_event (event, Vlast_input_event);
2245 /* last-input-char and last-input-time are derived from
2247 Note that last-input-char will never have its high-bit set, in an
2248 effort to sidestep the ambiguity between M-x and oslash.
2250 Vlast_input_char = Fevent_to_character (Vlast_input_event,
2255 if (!CONSP (Vlast_input_time))
2256 Vlast_input_time = Fcons (Qnil, Qnil);
2257 XCAR (Vlast_input_time) = make_int ((EMACS_SECS (t) >> 16) & 0xffff);
2258 XCDR (Vlast_input_time) = make_int ((EMACS_SECS (t) >> 0) & 0xffff);
2259 if (!CONSP (Vlast_command_event_time))
2260 Vlast_command_event_time = list3 (Qnil, Qnil, Qnil);
2261 XCAR (Vlast_command_event_time) =
2262 make_int ((EMACS_SECS (t) >> 16) & 0xffff);
2263 XCAR (XCDR (Vlast_command_event_time)) =
2264 make_int ((EMACS_SECS (t) >> 0) & 0xffff);
2265 XCAR (XCDR (XCDR (Vlast_command_event_time)))
2266 = make_int (EMACS_USECS (t));
2268 /* If this key came from the keyboard or from a keyboard macro, then
2269 it goes into the recent-keys and this-command-keys vectors.
2270 If this key came from the keyboard, and we're defining a keyboard
2271 macro, then it goes into the macro.
2275 if (!is_scrollbar_event (event)) /* #### not quite right, see
2276 comment in execute_command_event */
2277 push_this_command_keys (event);
2278 if (!inhibit_input_event_recording)
2279 push_recent_keys (event);
2280 dribble_out_event (event);
2281 if (!NILP (con->defining_kbd_macro) && NILP (Vexecuting_macro))
2283 if (!EVENTP (command_builder->current_events))
2284 finalize_kbd_macro_chars (con);
2285 store_kbd_macro_event (event);
2288 /* If this is the help char and there is a help form, then execute the
2289 help form and swallow this character. This is the only place where
2290 calling Fnext_event() can cause arbitrary lisp code to run. Note
2291 that execute_help_form() calls Fnext_command_event(), which calls
2292 this function, as well as Fdispatch_event.
2294 if (!NILP (Vhelp_form) &&
2295 event_matches_key_specifier_p (XEVENT (event), Vhelp_char))
2296 execute_help_form (command_builder, event);
2303 DEFUN ("next-command-event", Fnext_command_event, 0, 2, 0, /*
2304 Return the next available "user" event.
2305 Pass this object to `dispatch-event' to handle it.
2307 If EVENT is non-nil, it should be an event object and will be filled in
2308 and returned; otherwise a new event object will be created and returned.
2309 If PROMPT is non-nil, it should be a string and will be displayed in the
2310 echo area while this function is waiting for an event.
2312 The event returned will be a keyboard, mouse press, or mouse release event.
2313 If there are non-command events available (mouse motion, sub-process output,
2314 etc) then these will be executed (with `dispatch-event') and discarded. This
2315 function is provided as a convenience; it is roughly equivalent to the lisp code
2318 (next-event event prompt)
2319 (not (or (key-press-event-p event)
2320 (button-press-event-p event)
2321 (button-release-event-p event)
2322 (misc-user-event-p event))))
2323 (dispatch-event event))
2325 but it also makes a provision for displaying keystrokes in the echo area.
2329 /* This function can GC */
2330 struct gcpro gcpro1;
2332 maybe_echo_keys (XCOMMAND_BUILDER
2333 (XCONSOLE (Vselected_console)->
2334 command_builder), 0); /* #### This sucks bigtime */
2337 event = Fnext_event (event, prompt);
2338 if (command_event_p (event))
2341 execute_internal_event (event);
2347 DEFUN ("dispatch-non-command-events", Fdispatch_non_command_events, 0, 0, 0, /*
2348 Dispatch any pending "magic" events.
2350 This function is useful for forcing the redisplay of native
2351 widgets. Normally these are redisplayed through a native window-system
2352 event encoded as magic event, rather than by the redisplay code. This
2353 function does not call redisplay or do any of the other things that
2358 /* This function can GC */
2359 Lisp_Object event = Qnil;
2360 struct gcpro gcpro1;
2362 event = Fmake_event (Qnil, Qnil);
2364 /* Make sure that there will be something in the native event queue
2365 so that externally managed things (e.g. widgets) get some CPU
2367 event_stream_force_event_pending (selected_frame ());
2369 while (event_stream_event_pending_p (0))
2371 QUIT; /* next_event_internal() does not QUIT. */
2373 /* We're a generator of the command_event_queue, so we can't be a
2374 consumer as well. Also, we have no reason to consult the
2375 command_event_queue; there are only user and eval-events there,
2376 and we'd just have to put them back anyway.
2378 next_event_internal (event, 0); /* blocks */
2379 /* See the comment in accept-process-output about Vquit_flag */
2380 if (XEVENT_TYPE (event) == magic_event ||
2381 XEVENT_TYPE (event) == timeout_event ||
2382 XEVENT_TYPE (event) == process_event ||
2383 XEVENT_TYPE (event) == pointer_motion_event)
2384 execute_internal_event (event);
2387 enqueue_command_event_1 (event);
2392 Fdeallocate_event (event);
2398 reset_current_events (struct command_builder *command_builder)
2400 Lisp_Object event = command_builder->current_events;
2401 reset_command_builder_event_chain (command_builder);
2403 deallocate_event_chain (event);
2406 DEFUN ("discard-input", Fdiscard_input, 0, 0, 0, /*
2407 Discard any pending "user" events.
2408 Also cancel any kbd macro being defined.
2409 A user event is a key press, button press, button release, or
2410 "misc-user" event (menu selection or scrollbar action).
2414 /* This throws away user-input on the queue, but doesn't process any
2415 events. Calling dispatch_event() here leads to a race condition.
2417 Lisp_Object event = Fmake_event (Qnil, Qnil);
2418 Lisp_Object head = Qnil, tail = Qnil;
2419 Lisp_Object oiq = Vinhibit_quit;
2420 struct gcpro gcpro1, gcpro2;
2421 /* #### not correct here with Vselected_console? Should
2422 discard-input take a console argument, or maybe map over
2424 struct console *con = XCONSOLE (Vselected_console);
2426 /* next_event_internal() can cause arbitrary Lisp code to be evalled */
2427 GCPRO2 (event, oiq);
2429 /* If a macro was being defined then we have to mark the modeline
2430 has changed to ensure that it gets updated correctly. */
2431 if (!NILP (con->defining_kbd_macro))
2432 MARK_MODELINE_CHANGED;
2433 con->defining_kbd_macro = Qnil;
2434 reset_current_events (XCOMMAND_BUILDER (con->command_builder));
2436 while (!NILP (command_event_queue)
2437 || event_stream_event_pending_p (1))
2439 /* This will take stuff off the command_event_queue, or read it
2440 from the event_stream, but it will not block.
2442 next_event_internal (event, 1);
2443 Vquit_flag = Qnil; /* Treat C-g as a user event (ignore it).
2444 It is vitally important that we reset
2445 Vquit_flag here. Otherwise, if we're
2446 reading from a TTY console,
2447 maybe_read_quit_event() will notice
2448 that C-g has been set and send us
2449 another C-g. That will cause us
2450 to get right back here, and read
2451 another C-g, ad infinitum ... */
2453 /* If the event is a user event, ignore it. */
2454 if (!command_event_p (event))
2456 /* Otherwise, chain the event onto our list of events not to ignore,
2457 and keep reading until the queue is empty. This does not mean
2458 that if a subprocess is generating an infinite amount of output,
2459 we will never terminate (*provided* that the behavior of
2460 next_event_cb() is correct -- see the comment in events.h),
2461 because this loop ends as soon as there are no more user events
2462 on the command_event_queue or event_stream.
2464 enqueue_event (Fcopy_event (event, Qnil), &head, &tail);
2468 if (!NILP (command_event_queue) || !NILP (command_event_queue_tail))
2471 /* Now tack our chain of events back on to the front of the queue.
2472 Actually, since the queue is now drained, we can just replace it.
2473 The effect of this will be that we have deleted all user events
2474 from the input stream without changing the relative ordering of
2475 any other events. (Some events may have been taken from the
2476 event_stream and added to the command_event_queue, however.)
2478 At this time, the command_event_queue will contain only eval_events.
2481 command_event_queue = head;
2482 command_event_queue_tail = tail;
2484 Fdeallocate_event (event);
2487 Vinhibit_quit = oiq;
2492 /**********************************************************************/
2493 /* pausing until an action occurs */
2494 /**********************************************************************/
2496 /* This is used in accept-process-output, sleep-for and sit-for.
2497 Before running any process_events in these routines, we set
2498 recursive_sit_for to Qt, and use this unwind protect to reset it to
2499 Qnil upon exit. When recursive_sit_for is Qt, calling sit-for will
2500 cause it to return immediately.
2502 All of these routines install timeouts, so we clear the installed
2505 Note: It's very easy to break the desired behaviors of these
2506 3 routines. If you make any changes to anything in this area, run
2507 the regression tests at the bottom of the file. -- dmoore */
2511 sit_for_unwind (Lisp_Object timeout_id)
2513 if (!NILP(timeout_id))
2514 Fdisable_timeout (timeout_id);
2516 recursive_sit_for = Qnil;
2520 /* #### Is (accept-process-output nil 3) supposed to be like (sleep-for 3)?
2523 DEFUN ("accept-process-output", Faccept_process_output, 0, 3, 0, /*
2524 Allow any pending output from subprocesses to be read by Emacs.
2525 It is read into the process' buffers or given to their filter functions.
2526 Non-nil arg PROCESS means do not return until some output has been received
2527 from PROCESS. Nil arg PROCESS means do not return until some output has
2528 been received from any process.
2529 If the second arg is non-nil, it is the maximum number of seconds to wait:
2530 this function will return after that much time even if no input has arrived
2531 from PROCESS. This argument may be a float, meaning wait some fractional
2533 If the third arg is non-nil, it is a number of milliseconds that is added
2534 to the second arg. (This exists only for compatibility.)
2535 Return non-nil iff we received any output before the timeout expired.
2537 (process, timeout_secs, timeout_msecs))
2539 /* This function can GC */
2540 struct gcpro gcpro1, gcpro2;
2541 Lisp_Object event = Qnil;
2542 Lisp_Object result = Qnil;
2543 int timeout_id = -1;
2544 int timeout_enabled = 0;
2546 struct buffer *old_buffer = current_buffer;
2549 /* We preserve the current buffer but nothing else. If a focus
2550 change alters the selected window then the top level event loop
2551 will eventually alter current_buffer to match. In the mean time
2552 we don't want to mess up whatever called this function. */
2554 if (!NILP (process))
2555 CHECK_PROCESS (process);
2557 GCPRO2 (event, process);
2559 if (!NILP (timeout_secs) || !NILP (timeout_msecs))
2561 unsigned long msecs = 0;
2562 if (!NILP (timeout_secs))
2563 msecs = lisp_number_to_milliseconds (timeout_secs, 1);
2564 if (!NILP (timeout_msecs))
2566 CHECK_NATNUM (timeout_msecs);
2567 msecs += XINT (timeout_msecs);
2571 timeout_id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
2572 timeout_enabled = 1;
2576 event = Fmake_event (Qnil, Qnil);
2578 count = specpdl_depth ();
2579 record_unwind_protect (sit_for_unwind,
2580 timeout_enabled ? make_int (timeout_id) : Qnil);
2581 recursive_sit_for = Qt;
2584 ((NILP (process) && timeout_enabled) ||
2585 (NILP (process) && event_stream_event_pending_p (0)) ||
2587 /* Calling detect_input_pending() is the wrong thing here, because
2588 that considers the Vunread_command_events and command_event_queue.
2589 We don't need to look at the command_event_queue because we are
2590 only interested in process events, which don't go on that. In
2591 fact, we can't read from it anyway, because we put stuff on it.
2593 Note that event_stream->event_pending_p must be called in such
2594 a way that it says whether any events *of any kind* are ready,
2595 not just user events, or (accept-process-output nil) will fail
2596 to dispatch any process events that may be on the queue. It is
2597 not clear to me that this is important, because the top-level
2598 loop will process it, and I don't think that there is ever a
2599 time when one calls accept-process-output with a nil argument
2600 and really need the processes to be handled. */
2602 /* If our timeout has arrived, we move along. */
2603 if (timeout_enabled && !event_stream_wakeup_pending_p (timeout_id, 0))
2605 timeout_enabled = 0;
2606 done = 1; /* We're done. */
2607 continue; /* Don't call next_event_internal */
2610 QUIT; /* next_event_internal() does not QUIT, so check for ^G
2611 before reading output from the process - this makes it
2612 less likely that the filter will actually be aborted.
2615 next_event_internal (event, 0);
2616 /* If C-g was pressed while we were waiting, Vquit_flag got
2617 set and next_event_internal() also returns C-g. When
2618 we enqueue the C-g below, it will get discarded. The
2619 next time through, QUIT will be called and will signal a quit. */
2620 switch (XEVENT_TYPE (event))
2624 if (NILP (process) ||
2625 EQ (XEVENT (event)->event.process.process, process))
2628 /* RMS's version always returns nil when proc is nil,
2629 and only returns t if input ever arrived on proc. */
2633 execute_internal_event (event);
2637 /* We execute the event even if it's ours, and notice that it's
2639 case pointer_motion_event:
2642 execute_internal_event (event);
2647 enqueue_command_event_1 (event);
2653 unbind_to (count, timeout_enabled ? make_int (timeout_id) : Qnil);
2655 Fdeallocate_event (event);
2657 current_buffer = old_buffer;
2661 DEFUN ("sleep-for", Fsleep_for, 1, 1, 0, /*
2662 Pause, without updating display, for SECONDS seconds.
2663 SECONDS may be a float, allowing pauses for fractional parts of a second.
2665 It is recommended that you never call sleep-for from inside of a process
2666 filter function or timer event (either synchronous or asynchronous).
2670 /* This function can GC */
2671 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1);
2673 Lisp_Object event = Qnil;
2675 struct gcpro gcpro1;
2679 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
2680 event = Fmake_event (Qnil, Qnil);
2682 count = specpdl_depth ();
2683 record_unwind_protect (sit_for_unwind, make_int (id));
2684 recursive_sit_for = Qt;
2688 /* If our timeout has arrived, we move along. */
2689 if (!event_stream_wakeup_pending_p (id, 0))
2692 QUIT; /* next_event_internal() does not QUIT, so check for ^G
2693 before reading output from the process - this makes it
2694 less likely that the filter will actually be aborted.
2696 /* We're a generator of the command_event_queue, so we can't be a
2697 consumer as well. We don't care about command and eval-events
2700 next_event_internal (event, 0); /* blocks */
2701 /* See the comment in accept-process-output about Vquit_flag */
2702 switch (XEVENT_TYPE (event))
2705 /* We execute the event even if it's ours, and notice that it's
2708 case pointer_motion_event:
2711 execute_internal_event (event);
2716 enqueue_command_event_1 (event);
2722 unbind_to (count, make_int (id));
2723 Fdeallocate_event (event);
2728 DEFUN ("sit-for", Fsit_for, 1, 2, 0, /*
2729 Perform redisplay, then wait SECONDS seconds or until user input is available.
2730 SECONDS may be a float, meaning a fractional part of a second.
2731 Optional second arg NODISPLAY non-nil means don't redisplay; just wait.
2732 Redisplay is preempted as always if user input arrives, and does not
2733 happen if input is available before it starts.
2734 Value is t if waited the full time with no input arriving.
2736 If sit-for is called from within a process filter function or timer
2737 event (either synchronous or asynchronous) it will return immediately.
2739 (seconds, nodisplay))
2741 /* This function can GC */
2742 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1);
2743 Lisp_Object event, result;
2744 struct gcpro gcpro1;
2748 /* The unread-command-events count as pending input */
2749 if (!NILP (Vunread_command_events) || !NILP (Vunread_command_event))
2752 /* If the command-builder already has user-input on it (not eval events)
2753 then that means we're done too.
2755 if (!NILP (command_event_queue))
2757 EVENT_CHAIN_LOOP (event, command_event_queue)
2759 if (command_event_p (event))
2764 /* If we're in a macro, or noninteractive, or early in temacs, then
2766 if (noninteractive || !NILP (Vexecuting_macro))
2769 /* Recursive call from a filter function or timeout handler. */
2770 if (!NILP(recursive_sit_for))
2772 if (!event_stream_event_pending_p (1) && NILP (nodisplay))
2774 run_pre_idle_hook ();
2781 /* Otherwise, start reading events from the event_stream.
2782 Do this loop at least once even if (sit-for 0) so that we
2783 redisplay when no input pending.
2786 event = Fmake_event (Qnil, Qnil);
2788 /* Generate the wakeup even if MSECS is 0, so that existing timeout/etc.
2789 events get processed. The old (pre-19.12) code special-cased this
2790 and didn't generate a wakeup, but the resulting behavior was less than
2791 ideal; viz. the occurrence of (sit-for 0.001) scattered throughout
2792 the E-Lisp universe. */
2794 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
2796 count = specpdl_depth ();
2797 record_unwind_protect (sit_for_unwind, make_int (id));
2798 recursive_sit_for = Qt;
2802 /* If there is no user input pending, then redisplay.
2804 if (!event_stream_event_pending_p (1) && NILP (nodisplay))
2806 run_pre_idle_hook ();
2810 /* If our timeout has arrived, we move along. */
2811 if (!event_stream_wakeup_pending_p (id, 0))
2817 QUIT; /* next_event_internal() does not QUIT, so check for ^G
2818 before reading output from the process - this makes it
2819 less likely that the filter will actually be aborted.
2821 /* We're a generator of the command_event_queue, so we can't be a
2822 consumer as well. In fact, we know there's nothing on the
2823 command_event_queue that we didn't just put there.
2825 next_event_internal (event, 0); /* blocks */
2826 /* See the comment in accept-process-output about Vquit_flag */
2828 if (command_event_p (event))
2830 QUIT; /* If the command was C-g check it here
2831 so that we abort out of the sit-for,
2832 not the next command. sleep-for and
2833 accept-process-output continue looping
2834 so they check QUIT again implicitly.*/
2838 switch (XEVENT_TYPE (event))
2842 /* eval-events get delayed until later. */
2843 enqueue_command_event (Fcopy_event (event, Qnil));
2848 /* We execute the event even if it's ours, and notice that it's
2852 execute_internal_event (event);
2859 unbind_to (count, make_int (id));
2861 /* Put back the event (if any) that made Fsit_for() exit before the
2862 timeout. Note that it is being added to the back of the queue, which
2863 would be inappropriate if there were any user events on the queue
2864 already: we would be misordering them. But we know that there are
2865 no user-events on the queue, or else we would not have reached this
2869 enqueue_command_event (event);
2871 Fdeallocate_event (event);
2877 /* This handy little function is used by select-x.c to wait for replies
2878 from processes that aren't really processes (e.g. the X server) */
2880 wait_delaying_user_input (int (*predicate) (void *arg), void *predicate_arg)
2882 /* This function can GC */
2883 Lisp_Object event = Fmake_event (Qnil, Qnil);
2884 struct gcpro gcpro1;
2887 while (!(*predicate) (predicate_arg))
2889 QUIT; /* next_event_internal() does not QUIT. */
2891 /* We're a generator of the command_event_queue, so we can't be a
2892 consumer as well. Also, we have no reason to consult the
2893 command_event_queue; there are only user and eval-events there,
2894 and we'd just have to put them back anyway.
2896 next_event_internal (event, 0);
2897 /* See the comment in accept-process-output about Vquit_flag */
2898 if (command_event_p (event)
2899 || (XEVENT_TYPE (event) == eval_event)
2900 || (XEVENT_TYPE (event) == magic_eval_event))
2901 enqueue_command_event_1 (event);
2903 execute_internal_event (event);
2909 /**********************************************************************/
2910 /* dispatching events; command builder */
2911 /**********************************************************************/
2914 execute_internal_event (Lisp_Object event)
2916 /* events on dead channels get silently eaten */
2917 if (object_dead_p (XEVENT (event)->channel))
2920 /* This function can GC */
2921 switch (XEVENT_TYPE (event))
2928 call1 (XEVENT (event)->event.eval.function,
2929 XEVENT (event)->event.eval.object);
2933 case magic_eval_event:
2935 (XEVENT (event)->event.magic_eval.internal_function)
2936 (XEVENT (event)->event.magic_eval.object);
2940 case pointer_motion_event:
2942 if (!NILP (Vmouse_motion_handler))
2943 call1 (Vmouse_motion_handler, event);
2949 Lisp_Object p = XEVENT (event)->event.process.process;
2950 Charcount readstatus;
2952 assert (PROCESSP (p));
2953 while ((readstatus = read_process_output (p)) > 0)
2956 ; /* this clauses never gets executed but allows the #ifdefs
2959 else if (readstatus == -1 && errno == EWOULDBLOCK)
2961 #endif /* EWOULDBLOCK */
2963 else if (readstatus == -1 && errno == EAGAIN)
2966 else if ((readstatus == 0 &&
2967 /* Note that we cannot distinguish between no input
2968 available now and a closed pipe.
2969 With luck, a closed pipe will be accompanied by
2970 subprocess termination and SIGCHLD. */
2971 (!network_connection_p (p) ||
2973 When connected to ToolTalk (i.e.
2974 connected_via_filedesc_p()), it's not possible to
2975 reliably determine whether there is a message
2976 waiting for ToolTalk to receive. ToolTalk expects
2977 to have tt_message_receive() called exactly once
2978 every time the file descriptor becomes active, so
2979 the filter function forces this by returning 0.
2980 Emacs must not interpret this as a closed pipe. */
2981 connected_via_filedesc_p (XPROCESS (p))))
2983 /* On some OSs with ptys, when the process on one end of
2984 a pty exits, the other end gets an error reading with
2985 errno = EIO instead of getting an EOF (0 bytes read).
2986 Therefore, if we get an error reading and errno =
2987 EIO, just continue, because the child process has
2988 exited and should clean itself up soon (e.g. when we
2990 || (readstatus == -1 && errno == EIO)
2994 /* Currently, we rely on SIGCHLD to indicate that the
2995 process has terminated. Unfortunately, on some systems
2996 the SIGCHLD gets missed some of the time. So we put an
2997 additional check in status_notify() to see whether a
2998 process has terminated. We must tell status_notify()
2999 to enable that check, and we do so now. */
3000 kick_status_notify ();
3004 /* Deactivate network connection */
3005 Lisp_Object status = Fprocess_status (p);
3006 if (EQ (status, Qopen)
3007 /* In case somebody changes the theory of whether to
3008 return open as opposed to run for network connection
3010 || EQ (status, Qrun))
3011 update_process_status (p, Qexit, 256, 0);
3012 deactivate_process (p);
3015 /* We must call status_notify here to allow the
3016 event_stream->unselect_process_cb to be run if appropriate.
3017 Otherwise, dead fds may be selected for, and we will get a
3018 continuous stream of process events for them. Since we don't
3019 return until all process events have been flushed, we would
3020 get stuck here, processing events on a process whose status
3021 was 'exit. Call this after dispatch-event, or the fds will
3022 have been closed before we read the last data from them.
3023 It's safe for the filter to signal an error because
3024 status_notify() will be called on return to top-level.
3032 Lisp_Event *e = XEVENT (event);
3033 if (!NILP (e->event.timeout.function))
3034 call1 (e->event.timeout.function,
3035 e->event.timeout.object);
3040 event_stream_handle_magic_event (XEVENT (event));
3051 this_command_keys_replace_suffix (Lisp_Object suffix, Lisp_Object chain)
3053 Lisp_Object first_before_suffix =
3054 event_chain_find_previous (Vthis_command_keys, suffix);
3056 if (NILP (first_before_suffix))
3057 Vthis_command_keys = chain;
3059 XSET_EVENT_NEXT (first_before_suffix, chain);
3060 deallocate_event_chain (suffix);
3061 Vthis_command_keys_tail = event_chain_tail (chain);
3065 command_builder_replace_suffix (struct command_builder *builder,
3066 Lisp_Object suffix, Lisp_Object chain)
3068 Lisp_Object first_before_suffix =
3069 event_chain_find_previous (builder->current_events, suffix);
3071 if (NILP (first_before_suffix))
3072 builder->current_events = chain;
3074 XSET_EVENT_NEXT (first_before_suffix, chain);
3075 deallocate_event_chain (suffix);
3076 builder->most_current_event = event_chain_tail (chain);
3080 command_builder_find_leaf_1 (struct command_builder *builder)
3082 Lisp_Object event0 = builder->current_events;
3087 return event_binding (event0, 1);
3090 /* See if we can do function-key-map or key-translation-map translation
3091 on the current events in the command builder. If so, do this, and
3092 return the resulting binding, if any. */
3095 munge_keymap_translate (struct command_builder *builder,
3096 enum munge_me_out_the_door munge,
3097 int has_normal_binding_p)
3101 EVENT_CHAIN_LOOP (suffix, builder->munge_me[munge].first_mungeable_event)
3103 Lisp_Object result = munging_key_map_event_binding (suffix, munge);
3108 if (KEYMAPP (result))
3110 if (NILP (builder->last_non_munged_event)
3111 && !has_normal_binding_p)
3112 builder->last_non_munged_event = builder->most_current_event;
3115 builder->last_non_munged_event = Qnil;
3117 if (!KEYMAPP (result) &&
3118 !VECTORP (result) &&
3121 struct gcpro gcpro1;
3123 result = call1 (result, Qnil);
3129 if (KEYMAPP (result))
3132 if (VECTORP (result) || STRINGP (result))
3134 Lisp_Object new_chain = key_sequence_to_event_chain (result);
3138 /* If the first_mungeable_event of the other munger is
3139 within the events we're munging, then it will point to
3140 deallocated events afterwards, which is bad -- so make it
3141 point at the beginning of the munged events. */
3142 EVENT_CHAIN_LOOP (tempev, suffix)
3144 Lisp_Object *mungeable_event =
3145 &builder->munge_me[1 - munge].first_mungeable_event;
3146 if (EQ (tempev, *mungeable_event))
3148 *mungeable_event = new_chain;
3153 n = event_chain_count (suffix);
3154 command_builder_replace_suffix (builder, suffix, new_chain);
3155 builder->munge_me[munge].first_mungeable_event = Qnil;
3156 /* Now hork this-command-keys as well. */
3158 /* We just assume that the events we just replaced are
3159 sitting in copied form at the end of this-command-keys.
3160 If the user did weird things with `dispatch-event' this
3161 may not be the case, but at least we make sure we won't
3163 new_chain = copy_event_chain (new_chain);
3164 tckn = event_chain_count (Vthis_command_keys);
3167 this_command_keys_replace_suffix
3168 (event_chain_nth (Vthis_command_keys, tckn - n),
3172 result = command_builder_find_leaf_1 (builder);
3176 signal_simple_error ((munge == MUNGE_ME_FUNCTION_KEY ?
3177 "Invalid binding in function-key-map" :
3178 "Invalid binding in key-translation-map"),
3185 /* Compare the current state of the command builder against the local and
3186 global keymaps, and return the binding. If there is no match, try again,
3187 case-insensitively. The return value will be one of:
3188 -- nil (there is no binding)
3189 -- a keymap (part of a command has been specified)
3190 -- a command (anything that satisfies `commandp'; this includes
3191 some symbols, lists, subrs, strings, vectors, and
3192 compiled-function objects)
3195 command_builder_find_leaf (struct command_builder *builder,
3196 int allow_misc_user_events_p)
3198 /* This function can GC */
3200 Lisp_Object evee = builder->current_events;
3202 if (XEVENT_TYPE (evee) == misc_user_event)
3204 if (allow_misc_user_events_p && (NILP (XEVENT_NEXT (evee))))
3205 return list2 (XEVENT (evee)->event.eval.function,
3206 XEVENT (evee)->event.eval.object);
3211 /* if we're currently in a menu accelerator, check there for further
3213 /* #### fuck me! who wrote this crap? think "abstraction", baby. */
3214 #if defined(HAVE_X_WINDOWS) && defined(LWLIB_MENUBARS_LUCID)
3215 if (x_kludge_lw_menu_active ())
3217 return command_builder_operate_menu_accelerator (builder);
3222 if (EQ (Vmenu_accelerator_enabled, Qmenu_force))
3223 result = command_builder_find_menu_accelerator (builder);
3226 result = command_builder_find_leaf_1 (builder);
3227 #if defined(HAVE_X_WINDOWS) && defined(LWLIB_MENUBARS_LUCID)
3229 && EQ (Vmenu_accelerator_enabled, Qmenu_fallback))
3230 result = command_builder_find_menu_accelerator (builder);
3234 /* Check to see if we have a potential function-key-map match. */
3237 result = munge_keymap_translate (builder, MUNGE_ME_FUNCTION_KEY, 0);
3238 regenerate_echo_keys_from_this_command_keys (builder);
3240 /* Check to see if we have a potential key-translation-map match. */
3242 Lisp_Object key_translate_result =
3243 munge_keymap_translate (builder, MUNGE_ME_KEY_TRANSLATION,
3245 if (!NILP (key_translate_result))
3247 result = key_translate_result;
3248 regenerate_echo_keys_from_this_command_keys (builder);
3255 /* If key-sequence wasn't bound, we'll try some fallbacks. */
3257 /* If we didn't find a binding, and the last event in the sequence is
3258 a shifted character, then try again with the lowercase version. */
3260 if (XEVENT_TYPE (builder->most_current_event) == key_press_event
3261 && !NILP (Vretry_undefined_key_binding_unshifted))
3263 Lisp_Object terminal = builder->most_current_event;
3264 struct key_data* key = & XEVENT (terminal)->event.key;
3266 if ((key->modifiers & XEMACS_MOD_SHIFT)
3267 || (CHAR_OR_CHAR_INTP (key->keysym)
3268 && ((c = XCHAR_OR_CHAR_INT (key->keysym)), c >= 'A' && c <= 'Z')))
3270 Lisp_Event terminal_copy = *XEVENT (terminal);
3272 if (key->modifiers & XEMACS_MOD_SHIFT)
3273 key->modifiers &= (~ XEMACS_MOD_SHIFT);
3275 key->keysym = make_char (c + 'a' - 'A');
3277 result = command_builder_find_leaf (builder, allow_misc_user_events_p);
3280 /* If there was no match with the lower-case version either,
3281 then put back the upper-case event for the error
3282 message. But make sure that function-key-map didn't
3283 change things out from under us. */
3284 if (EQ (terminal, builder->most_current_event))
3285 *XEVENT (terminal) = terminal_copy;
3289 /* help-char is `auto-bound' in every keymap */
3290 if (!NILP (Vprefix_help_command) &&
3291 event_matches_key_specifier_p (XEVENT (builder->most_current_event),
3293 return Vprefix_help_command;
3296 /* If keysym is a non-ASCII char, bind it to self-insert-char by default. */
3297 if (XEVENT_TYPE (builder->most_current_event) == key_press_event
3298 && !NILP (Vcomposed_character_default_binding))
3300 Lisp_Object keysym = XEVENT (builder->most_current_event)->event.key.keysym;
3301 if (CHARP (keysym) && !CHAR_ASCII_P (XCHAR (keysym)))
3302 return Vcomposed_character_default_binding;
3304 #endif /* HAVE_XIM */
3306 /* If we read extra events attempting to match a function key but end
3307 up failing, then we release those events back to the command loop
3308 and fail on the original lookup. The released events will then be
3309 reprocessed in the context of the first part having failed. */
3310 if (!NILP (builder->last_non_munged_event))
3312 Lisp_Object event0 = builder->last_non_munged_event;
3314 /* Put the commands back on the event queue. */
3315 enqueue_event_chain (XEVENT_NEXT (event0),
3316 &command_event_queue,
3317 &command_event_queue_tail);
3319 /* Then remove them from the command builder. */
3320 XSET_EVENT_NEXT (event0, Qnil);
3321 builder->most_current_event = event0;
3322 builder->last_non_munged_event = Qnil;
3329 /* Every time a command-event (a key, button, or menu selection) is read by
3330 Fnext_event(), it is stored in the recent_keys_ring, in Vlast_input_event,
3331 and in Vthis_command_keys. (Eval-events are not stored there.)
3333 Every time a command is invoked, Vlast_command_event is set to the last
3334 event in the sequence.
3336 This means that Vthis_command_keys is really about "input read since the
3337 last command was executed" rather than about "what keys invoked this
3338 command." This is a little counterintuitive, but that's the way it
3341 As an extra kink, the function read-key-sequence resets/updates the
3342 last-command-event and this-command-keys. It doesn't append to the
3343 command-keys as read-char does. Such are the pitfalls of having to
3344 maintain compatibility with a program for which the only specification
3347 (We could implement recent_keys_ring and Vthis_command_keys as the same
3351 DEFUN ("recent-keys", Frecent_keys, 0, 1, 0, /*
3352 Return a vector of recent keyboard or mouse button events read.
3353 If NUMBER is non-nil, not more than NUMBER events will be returned.
3354 Change number of events stored using `set-recent-keys-ring-size'.
3356 This copies the event objects into a new vector; it is safe to keep and
3361 struct gcpro gcpro1;
3362 Lisp_Object val = Qnil;
3364 int start, nkeys, i, j;
3368 nwanted = recent_keys_ring_size;
3371 CHECK_NATNUM (number);
3372 nwanted = XINT (number);
3375 /* Create the keys ring vector, if none present. */
3376 if (NILP (Vrecent_keys_ring))
3378 Vrecent_keys_ring = make_vector (recent_keys_ring_size, Qnil);
3379 /* And return nothing in particular. */
3380 RETURN_UNGCPRO (make_vector (0, Qnil));
3383 if (NILP (XVECTOR_DATA (Vrecent_keys_ring)[recent_keys_ring_index]))
3384 /* This means the vector has not yet wrapped */
3386 nkeys = recent_keys_ring_index;
3391 nkeys = recent_keys_ring_size;
3392 start = ((recent_keys_ring_index == nkeys) ? 0 : recent_keys_ring_index);
3395 if (nwanted < nkeys)
3397 start += nkeys - nwanted;
3398 if (start >= recent_keys_ring_size)
3399 start -= recent_keys_ring_size;
3405 val = make_vector (nwanted, Qnil);
3407 for (i = 0, j = start; i < nkeys; i++)
3409 Lisp_Object e = XVECTOR_DATA (Vrecent_keys_ring)[j];
3413 XVECTOR_DATA (val)[i] = Fcopy_event (e, Qnil);
3414 if (++j >= recent_keys_ring_size)
3422 DEFUN ("recent-keys-ring-size", Frecent_keys_ring_size, 0, 0, 0, /*
3423 The maximum number of events `recent-keys' can return.
3427 return make_int (recent_keys_ring_size);
3430 DEFUN ("set-recent-keys-ring-size", Fset_recent_keys_ring_size, 1, 1, 0, /*
3431 Set the maximum number of events to be stored internally.
3435 Lisp_Object new_vector = Qnil;
3436 int i, j, nkeys, start, min;
3437 struct gcpro gcpro1;
3440 if (XINT (size) <= 0)
3441 error ("Recent keys ring size must be positive");
3442 if (XINT (size) == recent_keys_ring_size)
3445 GCPRO1 (new_vector);
3446 new_vector = make_vector (XINT (size), Qnil);
3448 if (NILP (Vrecent_keys_ring))
3450 Vrecent_keys_ring = new_vector;
3451 RETURN_UNGCPRO (size);
3454 if (NILP (XVECTOR_DATA (Vrecent_keys_ring)[recent_keys_ring_index]))
3455 /* This means the vector has not yet wrapped */
3457 nkeys = recent_keys_ring_index;
3462 nkeys = recent_keys_ring_size;
3463 start = ((recent_keys_ring_index == nkeys) ? 0 : recent_keys_ring_index);
3466 if (XINT (size) > nkeys)
3471 for (i = 0, j = start; i < min; i++)
3473 XVECTOR_DATA (new_vector)[i] = XVECTOR_DATA (Vrecent_keys_ring)[j];
3474 if (++j >= recent_keys_ring_size)
3477 recent_keys_ring_size = XINT (size);
3478 recent_keys_ring_index = (i < recent_keys_ring_size) ? i : 0;
3480 Vrecent_keys_ring = new_vector;
3486 /* Vthis_command_keys having value Qnil means that the next time
3487 push_this_command_keys is called, it should start over.
3488 The times at which the command-keys are reset
3489 (instead of merely being augmented) are pretty counterintuitive.
3492 -- We do not reset this-command-keys when we finish reading a
3493 command. This is because some commands (e.g. C-u) act
3494 like command prefixes; they signal this by setting prefix-arg
3496 -- Therefore, we reset this-command-keys when we finish
3497 executing a command, unless prefix-arg is set.
3498 -- However, if we ever do a non-local exit out of a command
3499 loop (e.g. an error in a command), we need to reset
3500 this-command-keys. We do this by calling reset_this_command_keys()
3501 from cmdloop.c, whenever an error causes an invocation of the
3502 default error handler, and whenever there's a throw to top-level.)
3506 reset_this_command_keys (Lisp_Object console, int clear_echo_area_p)
3508 if (!NILP (console))
3510 /* console is nil if we just deleted the console as a result of C-x 5
3511 0. Unfortunately things are currently in a messy situation where
3512 some stuff is console-local and other stuff isn't, so we need to
3513 do everything that's not console-local. */
3514 struct command_builder *command_builder =
3515 XCOMMAND_BUILDER (XCONSOLE (console)->command_builder);
3517 reset_key_echo (command_builder, clear_echo_area_p);
3518 reset_current_events (command_builder);
3521 reset_key_echo (0, clear_echo_area_p);
3523 deallocate_event_chain (Vthis_command_keys);
3524 Vthis_command_keys = Qnil;
3525 Vthis_command_keys_tail = Qnil;
3529 push_this_command_keys (Lisp_Object event)
3531 Lisp_Object new = Fmake_event (Qnil, Qnil);
3533 Fcopy_event (event, new);
3534 enqueue_event (new, &Vthis_command_keys, &Vthis_command_keys_tail);
3537 /* The following two functions are used in call-interactively,
3538 for the @ and e specifications. We used to just use
3539 `current-mouse-event' (i.e. the last mouse event in this-command-keys),
3540 but FSF does it more generally so we follow their lead. */
3543 extract_this_command_keys_nth_mouse_event (int n)
3547 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
3550 && (XEVENT_TYPE (event) == button_press_event
3551 || XEVENT_TYPE (event) == button_release_event
3552 || XEVENT_TYPE (event) == misc_user_event))
3556 /* must copy to avoid an abort() in next_event_internal() */
3557 if (!NILP (XEVENT_NEXT (event)))
3558 return Fcopy_event (event, Qnil);
3570 extract_vector_nth_mouse_event (Lisp_Object vector, int n)
3573 int len = XVECTOR_LENGTH (vector);
3575 for (i = 0; i < len; i++)
3577 Lisp_Object event = XVECTOR_DATA (vector)[i];
3579 switch (XEVENT_TYPE (event))
3581 case button_press_event :
3582 case button_release_event :
3583 case misc_user_event :
3597 push_recent_keys (Lisp_Object event)
3601 if (NILP (Vrecent_keys_ring))
3602 Vrecent_keys_ring = make_vector (recent_keys_ring_size, Qnil);
3604 e = XVECTOR_DATA (Vrecent_keys_ring) [recent_keys_ring_index];
3608 e = Fmake_event (Qnil, Qnil);
3609 XVECTOR_DATA (Vrecent_keys_ring) [recent_keys_ring_index] = e;
3611 Fcopy_event (event, e);
3612 if (++recent_keys_ring_index == recent_keys_ring_size)
3613 recent_keys_ring_index = 0;
3618 current_events_into_vector (struct command_builder *command_builder)
3622 int n = event_chain_count (command_builder->current_events);
3624 /* Copy the vector and the events in it. */
3625 /* No need to copy the events, since they're already copies, and
3626 nobody other than the command-builder has pointers to them */
3627 vector = make_vector (n, Qnil);
3629 EVENT_CHAIN_LOOP (event, command_builder->current_events)
3630 XVECTOR_DATA (vector)[n++] = event;
3631 reset_command_builder_event_chain (command_builder);
3637 Given the current state of the command builder and a new command event
3638 that has just been dispatched:
3640 -- add the event to the event chain forming the current command
3641 (doing meta-translation as necessary)
3642 -- return the binding of this event chain; this will be one of:
3643 -- nil (there is no binding)
3644 -- a keymap (part of a command has been specified)
3645 -- a command (anything that satisfies `commandp'; this includes
3646 some symbols, lists, subrs, strings, vectors, and
3647 compiled-function objects)
3650 lookup_command_event (struct command_builder *command_builder,
3651 Lisp_Object event, int allow_misc_user_events_p)
3653 /* This function can GC */
3654 struct frame *f = selected_frame ();
3655 /* Clear output from previous command execution */
3656 if (!EQ (Qcommand, echo_area_status (f))
3657 /* but don't let mouse-up clear what mouse-down just printed */
3658 && (XEVENT (event)->event_type != button_release_event))
3659 clear_echo_area (f, Qnil, 0);
3661 /* Add the given event to the command builder.
3662 Extra hack: this also updates the recent_keys_ring and Vthis_command_keys
3663 vectors to translate "ESC x" to "M-x" (for any "x" of course).
3666 Lisp_Object recent = command_builder->most_current_event;
3669 && event_matches_key_specifier_p (XEVENT (recent), Vmeta_prefix_char))
3672 /* When we see a sequence like "ESC x", pretend we really saw "M-x".
3673 DoubleThink the recent-keys and this-command-keys as well. */
3675 /* Modify the previous most-recently-pushed event on the command
3676 builder to be a copy of this one with the meta-bit set instead of
3677 pushing a new event.
3679 Fcopy_event (event, recent);
3680 e = XEVENT (recent);
3681 if (e->event_type == key_press_event)
3682 e->event.key.modifiers |= XEMACS_MOD_META;
3683 else if (e->event_type == button_press_event
3684 || e->event_type == button_release_event)
3685 e->event.button.modifiers |= XEMACS_MOD_META;
3690 int tckn = event_chain_count (Vthis_command_keys);
3692 /* ??? very strange if it's < 2. */
3693 this_command_keys_replace_suffix
3694 (event_chain_nth (Vthis_command_keys, tckn - 2),
3695 Fcopy_event (recent, Qnil));
3698 regenerate_echo_keys_from_this_command_keys (command_builder);
3702 event = Fcopy_event (event, Fmake_event (Qnil, Qnil));
3704 command_builder_append_event (command_builder, event);
3709 Lisp_Object leaf = command_builder_find_leaf (command_builder,
3710 allow_misc_user_events_p);
3711 struct gcpro gcpro1;
3716 #if defined (HAVE_X_WINDOWS) && defined (LWLIB_MENUBARS_LUCID)
3717 if (!x_kludge_lw_menu_active ())
3722 Lisp_Object prompt = Fkeymap_prompt (leaf, Qt);
3723 if (STRINGP (prompt))
3725 /* Append keymap prompt to key echo buffer */
3726 int buf_index = command_builder->echo_buf_index;
3727 Bytecount len = XSTRING_LENGTH (prompt);
3729 if (len + buf_index + 1 <= command_builder->echo_buf_length)
3731 Bufbyte *echo = command_builder->echo_buf + buf_index;
3732 memcpy (echo, XSTRING_DATA (prompt), len);
3735 maybe_echo_keys (command_builder, 1);
3738 maybe_echo_keys (command_builder, 0);
3740 else if (!NILP (Vquit_flag))
3742 Lisp_Object quit_event = Fmake_event (Qnil, Qnil);
3743 Lisp_Event *e = XEVENT (quit_event);
3744 /* if quit happened during menu acceleration, pretend we read it */
3745 struct console *con = XCONSOLE (Fselected_console ());
3746 int ch = CONSOLE_QUIT_CHAR (con);
3748 character_to_event (ch, e, con, 1, 1);
3749 e->channel = make_console (con);
3751 enqueue_command_event (quit_event);
3755 else if (!NILP (leaf))
3757 if (EQ (Qcommand, echo_area_status (f))
3758 && command_builder->echo_buf_index > 0)
3760 /* If we had been echoing keys, echo the last one (without
3761 the trailing dash) and redisplay before executing the
3763 command_builder->echo_buf[command_builder->echo_buf_index] = 0;
3764 maybe_echo_keys (command_builder, 1);
3765 Fsit_for (Qzero, Qt);
3768 RETURN_UNGCPRO (leaf);
3773 is_scrollbar_event (Lisp_Object event)
3775 #ifdef HAVE_SCROLLBARS
3778 if (XEVENT (event)->event_type != misc_user_event)
3780 fun = XEVENT (event)->event.misc.function;
3782 return (EQ (fun, Qscrollbar_line_up) ||
3783 EQ (fun, Qscrollbar_line_down) ||
3784 EQ (fun, Qscrollbar_page_up) ||
3785 EQ (fun, Qscrollbar_page_down) ||
3786 EQ (fun, Qscrollbar_to_top) ||
3787 EQ (fun, Qscrollbar_to_bottom) ||
3788 EQ (fun, Qscrollbar_vertical_drag) ||
3789 EQ (fun, Qscrollbar_char_left) ||
3790 EQ (fun, Qscrollbar_char_right) ||
3791 EQ (fun, Qscrollbar_page_left) ||
3792 EQ (fun, Qscrollbar_page_right) ||
3793 EQ (fun, Qscrollbar_to_left) ||
3794 EQ (fun, Qscrollbar_to_right) ||
3795 EQ (fun, Qscrollbar_horizontal_drag));
3798 #endif /* HAVE_SCROLLBARS */
3802 execute_command_event (struct command_builder *command_builder,
3805 /* This function can GC */
3806 struct console *con = XCONSOLE (command_builder->console);
3807 struct gcpro gcpro1;
3809 GCPRO1 (event); /* event may be freshly created */
3811 /* #### This call to is_scrollbar_event() isn't quite right, but
3812 fixing properly it requires more work than can go into 21.4.
3813 (We really need to split out menu, scrollbar, dialog, and other
3814 types of events from misc-user, and put the remaining ones in a
3815 new `user-eval' type that behaves like an eval event but is a
3816 user event and thus has all of its semantics -- e.g. being
3817 delayed during `accept-process-output' and similar wait states.)
3819 The real issue here is that "user events" and "command events"
3820 are not the same thing, but are very much confused in
3821 event-stream.c. User events are, essentially, any event that
3822 should be delayed by accept-process-output, should terminate a
3823 sit-for, etc. -- basically, any event that needs to be processed
3824 synchronously with key and mouse events. Command events are
3825 those that participate in command building; scrollbar events
3826 clearly don't belong because they should be transparent in a
3827 sequence like C-x @ h <scrollbar-drag> x, which used to cause a
3828 crash before checks similar to the is_scrollbar_event() call were
3829 added. Do other events belong with scrollbar events? I'm not
3830 sure; we need to categorize all misc-user events and see what
3831 their semantics are.
3833 (You might ask, why do scrollbar events need to be user events?
3834 That's a good question. The answer seems to be that they can
3835 change point, and having this happen asynchronously would be a
3836 very bad idea. According to the "proper" functioning of
3837 scrollbars, this should not happen, but XEmacs does not allow
3838 point to go outside of the window.)
3840 Scrollbar events and similar non-command events should obviously
3841 not be recorded in this-command-keys, so we need to check for
3844 #### We call reset_current_events() twice in this function --
3845 #### here, and later as a result of reset_this_command_keys().
3846 #### This is almost certainly wrong; need to figure out what's
3849 #### We need to figure out what's really correct w.r.t. scrollbar
3850 #### events. With these new fixes in, it actually works to do
3851 #### C-x <scrollbar-drag> 5 2, but the key echo gets messed up
3852 #### (starts over at 5). We really need to be special-casing
3853 #### scrollbar events at a lower level, and not really passing
3854 #### them through the command builder at all. (e.g. do scrollbar
3855 #### events belong in macros??? doubtful; probably only the
3856 #### point movement, if any, belongs, special-cased as a
3857 #### pseudo-issued M-x goto-char command). #### Need more work
3858 #### here. Do this when separating out scrollbar events.
3861 if (!is_scrollbar_event (event))
3862 reset_current_events (command_builder);
3864 switch (XEVENT (event)->event_type)
3866 case key_press_event:
3867 Vcurrent_mouse_event = Qnil;
3869 case button_press_event:
3870 case button_release_event:
3871 case misc_user_event:
3872 Vcurrent_mouse_event = Fcopy_event (event, Qnil);
3877 /* Store the last-command-event. The semantics of this is that it
3878 is the last event most recently involved in command-lookup. */
3879 if (!EVENTP (Vlast_command_event))
3880 Vlast_command_event = Fmake_event (Qnil, Qnil);
3881 if (XEVENT (Vlast_command_event)->event_type == dead_event)
3883 Vlast_command_event = Fmake_event (Qnil, Qnil);
3884 error ("Someone deallocated the last-command-event!");
3887 if (! EQ (event, Vlast_command_event))
3888 Fcopy_event (event, Vlast_command_event);
3890 /* Note that last-command-char will never have its high-bit set, in
3891 an effort to sidestep the ambiguity between M-x and oslash. */
3892 Vlast_command_char = Fevent_to_character (Vlast_command_event,
3895 /* Actually call the command, with all sorts of hair to preserve or clear
3896 the echo-area and region as appropriate and call the pre- and post-
3899 int old_kbd_macro = con->kbd_macro_end;
3900 struct window *w = XWINDOW (Fselected_window (Qnil));
3902 /* We're executing a new command, so the old value is irrelevant. */
3903 zmacs_region_stays = 0;
3905 /* If the previous command tried to force a specific window-start,
3906 reset the flag in case this command moves point far away from
3907 that position. Also, reset the window's buffer's change
3908 information so that we don't trigger an incremental update. */
3912 buffer_reset_changes (XBUFFER (w->buffer));
3915 pre_command_hook ();
3917 if (XEVENT (event)->event_type == misc_user_event)
3919 call1 (XEVENT (event)->event.eval.function,
3920 XEVENT (event)->event.eval.object);
3924 Fcommand_execute (Vthis_command, Qnil, Qnil);
3927 post_command_hook ();
3929 /* Console might have been deleted by command */
3930 if (CONSOLE_LIVE_P (con) && !NILP (con->prefix_arg))
3932 /* Commands that set the prefix arg don't update last-command, don't
3933 reset the echoing state, and don't go into keyboard macros unless
3934 followed by another command. Also don't quit here. */
3935 int speccount = specpdl_depth ();
3936 specbind (Qinhibit_quit, Qt);
3937 maybe_echo_keys (command_builder, 0);
3938 unbind_to (speccount, Qnil);
3940 /* If we're recording a keyboard macro, and the last command
3941 executed set a prefix argument, then decrement the pointer to
3942 the "last character really in the macro" to be just before this
3943 command. This is so that the ^U in "^U ^X )" doesn't go onto
3944 the end of macro. */
3945 if (!NILP (con->defining_kbd_macro))
3946 con->kbd_macro_end = old_kbd_macro;
3950 /* Start a new command next time */
3951 Vlast_command = Vthis_command;
3952 Vlast_command_properties = Vthis_command_properties;
3953 Vthis_command_properties = Qnil;
3955 /* Emacs 18 doesn't unconditionally clear the echoed keystrokes,
3956 so we don't either */
3958 if (!is_scrollbar_event (event))
3959 reset_this_command_keys (CONSOLE_LIVE_P (con) ? make_console (con)
3967 /* Run the pre command hook. */
3970 pre_command_hook (void)
3972 last_point_position = BUF_PT (current_buffer);
3973 XSETBUFFER (last_point_position_buffer, current_buffer);
3974 /* This function can GC */
3975 safe_run_hook_trapping_errors
3976 ("Error in `pre-command-hook' (setting hook to nil)",
3977 Qpre_command_hook, 1);
3979 /* This is a kludge, but necessary; see simple.el */
3980 call0 (Qhandle_pre_motion_command);
3983 /* Run the post command hook. */
3986 post_command_hook (void)
3988 /* This function can GC */
3989 /* Turn off region highlighting unless this command requested that
3990 it be left on, or we're in the minibuffer. We don't turn it off
3991 when we're in the minibuffer so that things like M-x write-region
3994 This could be done via a function on the post-command-hook, but
3995 we don't want the user to accidentally remove it.
3998 Lisp_Object win = Fselected_window (Qnil);
4000 /* If the last command deleted the frame, `win' might be nil.
4001 It seems safest to do nothing in this case. */
4002 /* Note: Someone added the following comment and put #if 0's around
4003 this code, not realizing that doing this invites a crash in the
4005 /* #### This doesn't really fix the problem,
4006 if delete-frame is called by some hook */
4010 /* This is a kludge, but necessary; see simple.el */
4011 call0 (Qhandle_post_motion_command);
4013 if (! zmacs_region_stays
4014 && (!MINI_WINDOW_P (XWINDOW (win))
4015 || EQ (zmacs_region_buffer (), WINDOW_BUFFER (XWINDOW (win)))))
4016 zmacs_deactivate_region ();
4018 zmacs_update_region ();
4020 safe_run_hook_trapping_errors
4021 ("Error in `post-command-hook' (setting hook to nil)",
4022 Qpost_command_hook, 1);
4024 /* #### Kludge!!! This is necessary to make sure that things
4025 are properly positioned even if post-command-hook moves point.
4026 #### There should be a cleaner way of handling this. */
4027 call0 (Qauto_show_make_point_visible);
4031 DEFUN ("dispatch-event", Fdispatch_event, 1, 1, 0, /*
4032 Given an event object EVENT as returned by `next-event', execute it.
4034 Key-press, button-press, and button-release events get accumulated
4035 until a complete key sequence (see `read-key-sequence') is reached,
4036 at which point the sequence is looked up in the current keymaps and
4039 Mouse motion events cause the low-level handling function stored in
4040 `mouse-motion-handler' to be called. (There are very few circumstances
4041 under which you should change this handler. Use `mode-motion-hook'
4044 Menu, timeout, and eval events cause the associated function or handler
4047 Process events cause the subprocess's output to be read and acted upon
4048 appropriately (see `start-process').
4050 Magic events are handled as necessary.
4054 /* This function can GC */
4055 struct command_builder *command_builder;
4057 Lisp_Object console;
4058 Lisp_Object channel;
4060 CHECK_LIVE_EVENT (event);
4061 ev = XEVENT (event);
4063 /* events on dead channels get silently eaten */
4064 channel = EVENT_CHANNEL (ev);
4065 if (object_dead_p (channel))
4068 /* Some events don't have channels (e.g. eval events). */
4069 console = CDFW_CONSOLE (channel);
4071 console = Vselected_console;
4072 else if (!EQ (console, Vselected_console))
4073 Fselect_console (console);
4075 command_builder = XCOMMAND_BUILDER (XCONSOLE (console)->command_builder);
4076 switch (XEVENT (event)->event_type)
4078 case button_press_event:
4079 case button_release_event:
4080 case key_press_event:
4082 Lisp_Object leaf = lookup_command_event (command_builder, event, 1);
4085 /* Incomplete key sequence */
4089 /* At this point, we know that the sequence is not bound to a
4090 command. Normally, we beep and print a message informing the
4091 user of this. But we do not beep or print a message when:
4093 o the last event in this sequence is a mouse-up event; or
4094 o the last event in this sequence is a mouse-down event and
4095 there is a binding for the mouse-up version.
4097 That is, if the sequence ``C-x button1'' is typed, and is not
4098 bound to a command, but the sequence ``C-x button1up'' is bound
4099 to a command, we do not complain about the ``C-x button1''
4100 sequence. If neither ``C-x button1'' nor ``C-x button1up'' is
4101 bound to a command, then we complain about the ``C-x button1''
4102 sequence, but later will *not* complain about the
4103 ``C-x button1up'' sequence, which would be redundant.
4105 This is pretty hairy, but I think it's the most intuitive
4108 Lisp_Object terminal = command_builder->most_current_event;
4110 if (XEVENT_TYPE (terminal) == button_press_event)
4113 /* Temporarily pretend the last event was an "up" instead of a
4114 "down", and look up its binding. */
4115 XEVENT_TYPE (terminal) = button_release_event;
4116 /* If the "up" version is bound, don't complain. */
4118 = !NILP (command_builder_find_leaf (command_builder, 0));
4119 /* Undo the temporary changes we just made. */
4120 XEVENT_TYPE (terminal) = button_press_event;
4123 /* Pretend this press was not seen (treat as a prefix) */
4124 if (EQ (command_builder->current_events, terminal))
4126 reset_current_events (command_builder);
4132 EVENT_CHAIN_LOOP (eve, command_builder->current_events)
4133 if (EQ (XEVENT_NEXT (eve), terminal))
4136 Fdeallocate_event (command_builder->
4137 most_current_event);
4138 XSET_EVENT_NEXT (eve, Qnil);
4139 command_builder->most_current_event = eve;
4141 maybe_echo_keys (command_builder, 1);
4146 /* Complain that the typed sequence is not defined, if this is the
4147 kind of sequence that warrants a complaint. */
4148 XCONSOLE (console)->defining_kbd_macro = Qnil;
4149 XCONSOLE (console)->prefix_arg = Qnil;
4150 /* Don't complain about undefined button-release events */
4151 if (XEVENT_TYPE (terminal) != button_release_event)
4153 Lisp_Object keys = current_events_into_vector (command_builder);
4154 struct gcpro gcpro1;
4156 /* Run the pre-command-hook before barfing about an undefined
4158 Vthis_command = Qnil;
4160 pre_command_hook ();
4162 /* The post-command-hook doesn't run. */
4163 Fsignal (Qundefined_keystroke_sequence, list1 (keys));
4165 /* Reset the command builder for reading the next sequence. */
4166 reset_this_command_keys (console, 1);
4168 else /* key sequence is bound to a command */
4171 int magic_undo_count = 20;
4173 Vthis_command = leaf;
4175 /* Don't push an undo boundary if the command set the prefix arg,
4176 or if we are executing a keyboard macro, or if in the
4177 minibuffer. If the command we are about to execute is
4178 self-insert, it's tricky: up to 20 consecutive self-inserts may
4179 be done without an undo boundary. This counter is reset as
4180 soon as a command other than self-insert-command is executed.
4182 Programmers can also use the `self-insert-defer-undo'
4183 property to install that behavior on functions other
4184 than `self-insert-command', or to change the magic
4185 number 20 to something else. #### DOCUMENT THIS! */
4189 Lisp_Object prop = Fget (leaf, Qself_insert_defer_undo, Qnil);
4191 magic_undo = 1, magic_undo_count = XINT (prop);
4192 else if (!NILP (prop))
4194 else if (EQ (leaf, Qself_insert_command))
4199 command_builder->self_insert_countdown = 0;
4200 if (NILP (XCONSOLE (console)->prefix_arg)
4201 && NILP (Vexecuting_macro)
4202 && command_builder->self_insert_countdown == 0)
4207 if (--command_builder->self_insert_countdown < 0)
4208 command_builder->self_insert_countdown = magic_undo_count;
4210 execute_command_event
4212 internal_equal (event, command_builder->most_current_event, 0)
4214 /* Use the translated event that was most recently seen.
4215 This way, last-command-event becomes f1 instead of
4216 the P from ESC O P. But we must copy it, else we'll
4217 lose when the command-builder events are deallocated. */
4218 : Fcopy_event (command_builder->most_current_event, Qnil));
4222 case misc_user_event:
4226 We could just always use the menu item entry, whatever it is, but
4227 this might break some Lisp code that expects `this-command' to
4228 always contain a symbol. So only store it if this is a simple
4229 `call-interactively' sort of menu item.
4231 But this is bogus. `this-command' could be a string or vector
4232 anyway (for keyboard macros). There's even one instance
4233 (in pending-del.el) of `this-command' getting set to a cons
4234 (a lambda expression). So in the `eval' case I'll just
4235 convert it into a lambda expression.
4237 if (EQ (XEVENT (event)->event.eval.function, Qcall_interactively)
4238 && SYMBOLP (XEVENT (event)->event.eval.object))
4239 Vthis_command = XEVENT (event)->event.eval.object;
4240 else if (EQ (XEVENT (event)->event.eval.function, Qeval))
4242 Fcons (Qlambda, Fcons (Qnil, XEVENT (event)->event.eval.object));
4243 else if (SYMBOLP (XEVENT (event)->event.eval.function))
4244 /* A scrollbar command or the like. */
4245 Vthis_command = XEVENT (event)->event.eval.function;
4248 Vthis_command = Qnil;
4250 /* clear the echo area */
4251 reset_key_echo (command_builder, 1);
4253 command_builder->self_insert_countdown = 0;
4254 if (NILP (XCONSOLE (console)->prefix_arg)
4255 && NILP (Vexecuting_macro)
4256 && !EQ (minibuf_window, Fselected_window (Qnil)))
4258 execute_command_event (command_builder, event);
4263 execute_internal_event (event);
4270 DEFUN ("read-key-sequence", Fread_key_sequence, 1, 3, 0, /*
4271 Read a sequence of keystrokes or mouse clicks.
4272 Returns a vector of the event objects read. The vector and the event
4273 objects it contains are freshly created (and so will not be side-effected
4274 by subsequent calls to this function).
4276 The sequence read is sufficient to specify a non-prefix command starting
4277 from the current local and global keymaps. A C-g typed while in this
4278 function is treated like any other character, and `quit-flag' is not set.
4280 First arg PROMPT is a prompt string. If nil, do not prompt specially.
4282 Second optional arg CONTINUE-ECHO non-nil means this key echoes as a
4283 continuation of the previous key.
4285 Third optional arg DONT-DOWNCASE-LAST non-nil means do not convert the
4286 last event to lower case. (Normally any upper case event is converted
4287 to lower case if the original event is undefined and the lower case
4288 equivalent is defined.) This argument is provided mostly for FSF
4289 compatibility; the equivalent effect can be achieved more generally by
4290 binding `retry-undefined-key-binding-unshifted' to nil around the call
4291 to `read-key-sequence'.
4293 If the user selects a menu item while we are prompting for a key-sequence,
4294 the returned value will be a vector of a single menu-selection event.
4295 An error will be signalled if you pass this value to `lookup-key' or a
4298 `read-key-sequence' checks `function-key-map' for function key
4299 sequences, where they wouldn't conflict with ordinary bindings.
4300 See `function-key-map' for more details.
4302 (prompt, continue_echo, dont_downcase_last))
4304 /* This function can GC */
4305 struct console *con = XCONSOLE (Vselected_console); /* #### correct?
4309 struct command_builder *command_builder =
4310 XCOMMAND_BUILDER (con->command_builder);
4312 Lisp_Object event = Fmake_event (Qnil, Qnil);
4313 int speccount = specpdl_depth ();
4314 struct gcpro gcpro1;
4317 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
4319 CHECK_STRING (prompt);
4320 /* else prompt = Fkeymap_prompt (current_buffer->keymap); may GC */
4323 if (NILP (continue_echo))
4324 reset_this_command_keys (make_console (con), 1);
4326 specbind (Qinhibit_quit, Qt);
4328 if (!NILP (dont_downcase_last))
4329 specbind (Qretry_undefined_key_binding_unshifted, Qnil);
4333 Fnext_event (event, prompt);
4334 /* restore the selected-console damage */
4335 con = event_console_or_selected (event);
4336 command_builder = XCOMMAND_BUILDER (con->command_builder);
4337 if (! command_event_p (event))
4338 execute_internal_event (event);
4341 if (XEVENT (event)->event_type == misc_user_event)
4342 reset_current_events (command_builder);
4343 result = lookup_command_event (command_builder, event, 1);
4344 if (!KEYMAPP (result))
4346 result = current_events_into_vector (command_builder);
4347 reset_key_echo (command_builder, 0);
4354 Vquit_flag = Qnil; /* In case we read a ^G; do not call check_quit() here */
4355 Fdeallocate_event (event);
4356 RETURN_UNGCPRO (unbind_to (speccount, result));
4359 DEFUN ("this-command-keys", Fthis_command_keys, 0, 0, 0, /*
4360 Return a vector of the keyboard or mouse button events that were used
4361 to invoke this command. This copies the vector and the events; it is safe
4362 to keep and modify them.
4370 if (NILP (Vthis_command_keys))
4371 return make_vector (0, Qnil);
4373 len = event_chain_count (Vthis_command_keys);
4375 result = make_vector (len, Qnil);
4377 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
4378 XVECTOR_DATA (result)[len++] = Fcopy_event (event, Qnil);
4382 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths, 0, 0, 0, /*
4383 Used for complicated reasons in `universal-argument-other-key'.
4385 `universal-argument-other-key' rereads the event just typed.
4386 It then gets translated through `function-key-map'.
4387 The translated event gets included in the echo area and in
4388 the value of `this-command-keys' in addition to the raw original event.
4391 Calling this function directs the translated event to replace
4392 the original event, so that only one version of the event actually
4393 appears in the echo area and in the value of `this-command-keys'.
4397 /* #### I don't understand this at all, so currently it does nothing.
4398 If there is ever a problem, maybe someone should investigate. */
4404 dribble_out_event (Lisp_Object event)
4406 if (NILP (Vdribble_file))
4409 if (XEVENT (event)->event_type == key_press_event &&
4410 !XEVENT (event)->event.key.modifiers)
4412 Lisp_Object keysym = XEVENT (event)->event.key.keysym;
4413 if (CHARP (XEVENT (event)->event.key.keysym))
4415 Emchar ch = XCHAR (keysym);
4416 Bufbyte str[MAX_EMCHAR_LEN];
4417 Bytecount len = set_charptr_emchar (str, ch);
4418 Lstream_write (XLSTREAM (Vdribble_file), str, len);
4420 else if (string_char_length (XSYMBOL (keysym)->name) == 1)
4421 /* one-char key events are printed with just the key name */
4422 Fprinc (keysym, Vdribble_file);
4423 else if (EQ (keysym, Qreturn))
4424 Lstream_putc (XLSTREAM (Vdribble_file), '\n');
4425 else if (EQ (keysym, Qspace))
4426 Lstream_putc (XLSTREAM (Vdribble_file), ' ');
4428 Fprinc (event, Vdribble_file);
4431 Fprinc (event, Vdribble_file);
4432 Lstream_flush (XLSTREAM (Vdribble_file));
4435 DEFUN ("open-dribble-file", Fopen_dribble_file, 1, 1,
4436 "FOpen dribble file: ", /*
4437 Start writing all keyboard characters to a dribble file called FILENAME.
4438 If FILENAME is nil, close any open dribble file.
4442 /* This function can GC */
4443 /* XEmacs change: always close existing dribble file. */
4444 /* FSFmacs uses FILE *'s here. With lstreams, that's unnecessary. */
4445 if (!NILP (Vdribble_file))
4447 Lstream_close (XLSTREAM (Vdribble_file));
4448 Vdribble_file = Qnil;
4450 if (!NILP (filename))
4454 filename = Fexpand_file_name (filename, Qnil);
4455 fd = open ((char*) XSTRING_DATA (filename),
4456 O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY,
4459 error ("Unable to create dribble file");
4460 Vdribble_file = make_filedesc_output_stream (fd, 0, 0, LSTR_CLOSING);
4463 make_encoding_output_stream (XLSTREAM (Vdribble_file),
4464 Fget_coding_system (Qescape_quoted));
4472 DEFUN ("current-event-timestamp", Fcurrent_event_timestamp, 0, 1, 0, /*
4473 Return the current event timestamp of the window system associated with CONSOLE.
4474 CONSOLE defaults to the selected console if omitted.
4478 struct console *c = decode_console (console);
4479 int tiempo = event_stream_current_event_timestamp (c);
4481 /* This junk is so that timestamps don't get to be negative, but contain
4482 as many bits as this particular emacs will allow.
4484 return make_int (((1L << (VALBITS - 1)) - 1) & tiempo);
4488 /************************************************************************/
4489 /* initialization */
4490 /************************************************************************/
4493 syms_of_event_stream (void)
4495 INIT_LRECORD_IMPLEMENTATION (command_builder);
4496 INIT_LRECORD_IMPLEMENTATION (timeout);
4498 defsymbol (&Qdisabled, "disabled");
4499 defsymbol (&Qcommand_event_p, "command-event-p");
4501 DEFERROR_STANDARD (Qundefined_keystroke_sequence, Qinvalid_argument);
4503 DEFSUBR (Frecent_keys);
4504 DEFSUBR (Frecent_keys_ring_size);
4505 DEFSUBR (Fset_recent_keys_ring_size);
4506 DEFSUBR (Finput_pending_p);
4507 DEFSUBR (Fenqueue_eval_event);
4508 DEFSUBR (Fnext_event);
4509 DEFSUBR (Fnext_command_event);
4510 DEFSUBR (Fdiscard_input);
4512 DEFSUBR (Fsleep_for);
4513 DEFSUBR (Faccept_process_output);
4514 DEFSUBR (Fadd_timeout);
4515 DEFSUBR (Fdisable_timeout);
4516 DEFSUBR (Fadd_async_timeout);
4517 DEFSUBR (Fdisable_async_timeout);
4518 DEFSUBR (Fdispatch_event);
4519 DEFSUBR (Fdispatch_non_command_events);
4520 DEFSUBR (Fread_key_sequence);
4521 DEFSUBR (Fthis_command_keys);
4522 DEFSUBR (Freset_this_command_lengths);
4523 DEFSUBR (Fopen_dribble_file);
4524 DEFSUBR (Fcurrent_event_timestamp);
4526 defsymbol (&Qpre_command_hook, "pre-command-hook");
4527 defsymbol (&Qpost_command_hook, "post-command-hook");
4528 defsymbol (&Qunread_command_events, "unread-command-events");
4529 defsymbol (&Qunread_command_event, "unread-command-event");
4530 defsymbol (&Qpre_idle_hook, "pre-idle-hook");
4531 defsymbol (&Qhandle_pre_motion_command, "handle-pre-motion-command");
4532 defsymbol (&Qhandle_post_motion_command, "handle-post-motion-command");
4533 defsymbol (&Qretry_undefined_key_binding_unshifted,
4534 "retry-undefined-key-binding-unshifted");
4535 defsymbol (&Qauto_show_make_point_visible,
4536 "auto-show-make-point-visible");
4538 defsymbol (&Qself_insert_defer_undo, "self-insert-defer-undo");
4539 defsymbol (&Qcancel_mode_internal, "cancel-mode-internal");
4543 reinit_vars_of_event_stream (void)
4545 recent_keys_ring_index = 0;
4546 recent_keys_ring_size = 100;
4547 num_input_chars = 0;
4548 Vtimeout_free_list = make_lcrecord_list (sizeof (Lisp_Timeout),
4550 staticpro_nodump (&Vtimeout_free_list);
4551 the_low_level_timeout_blocktype =
4552 Blocktype_new (struct low_level_timeout_blocktype);
4553 something_happened = 0;
4554 recursive_sit_for = Qnil;
4558 vars_of_event_stream (void)
4560 reinit_vars_of_event_stream ();
4561 Vrecent_keys_ring = Qnil;
4562 staticpro (&Vrecent_keys_ring);
4564 Vthis_command_keys = Qnil;
4565 staticpro (&Vthis_command_keys);
4566 Vthis_command_keys_tail = Qnil;
4567 dump_add_root_object (&Vthis_command_keys_tail);
4569 command_event_queue = Qnil;
4570 staticpro (&command_event_queue);
4571 command_event_queue_tail = Qnil;
4572 dump_add_root_object (&command_event_queue_tail);
4574 Vlast_selected_frame = Qnil;
4575 staticpro (&Vlast_selected_frame);
4577 pending_timeout_list = Qnil;
4578 staticpro (&pending_timeout_list);
4580 pending_async_timeout_list = Qnil;
4581 staticpro (&pending_async_timeout_list);
4583 last_point_position_buffer = Qnil;
4584 staticpro (&last_point_position_buffer);
4586 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes /*
4587 *Nonzero means echo unfinished commands after this many seconds of pause.
4589 Vecho_keystrokes = make_int (1);
4591 DEFVAR_INT ("auto-save-interval", &auto_save_interval /*
4592 *Number of keyboard input characters between auto-saves.
4593 Zero means disable autosaving due to number of characters typed.
4594 See also the variable `auto-save-timeout'.
4596 auto_save_interval = 300;
4598 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook /*
4599 Function or functions to run before every command.
4600 This may examine the `this-command' variable to find out what command
4601 is about to be run, or may change it to cause a different command to run.
4602 Function on this hook must be careful to avoid signalling errors!
4604 Vpre_command_hook = Qnil;
4606 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook /*
4607 Function or functions to run after every command.
4608 This may examine the `this-command' variable to find out what command
4611 Vpost_command_hook = Qnil;
4613 DEFVAR_LISP ("pre-idle-hook", &Vpre_idle_hook /*
4614 Normal hook run when XEmacs it about to be idle.
4615 This occurs whenever it is going to block, waiting for an event.
4616 This generally happens as a result of a call to `next-event',
4617 `next-command-event', `sit-for', `sleep-for', `accept-process-output',
4618 or `x-get-selection'.
4619 Errors running the hook are caught and ignored.
4621 Vpre_idle_hook = Qnil;
4623 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse /*
4624 *Variable to control XEmacs behavior with respect to focus changing.
4625 If this variable is set to t, then XEmacs will not gratuitously change
4626 the keyboard focus. XEmacs cannot in general detect when this mode is
4627 used by the window manager, so it is up to the user to set it.
4629 focus_follows_mouse = 0;
4631 DEFVAR_LISP ("last-command-event", &Vlast_command_event /*
4632 Last keyboard or mouse button event that was part of a command. This
4633 variable is off limits: you may not set its value or modify the event that
4634 is its value, as it is destructively modified by `read-key-sequence'. If
4635 you want to keep a pointer to this value, you must use `copy-event'.
4637 Vlast_command_event = Qnil;
4639 DEFVAR_LISP ("last-command-char", &Vlast_command_char /*
4640 If the value of `last-command-event' is a keyboard event, then
4641 this is the nearest ASCII equivalent to it. This is the value that
4642 `self-insert-command' will put in the buffer. Remember that there is
4643 NOT a 1:1 mapping between keyboard events and ASCII characters: the set
4644 of keyboard events is much larger, so writing code that examines this
4645 variable to determine what key has been typed is bad practice, unless
4646 you are certain that it will be one of a small set of characters.
4648 Vlast_command_char = Qnil;
4650 DEFVAR_LISP ("last-input-event", &Vlast_input_event /*
4651 Last keyboard or mouse button event received. This variable is off
4652 limits: you may not set its value or modify the event that is its value, as
4653 it is destructively modified by `next-event'. If you want to keep a pointer
4654 to this value, you must use `copy-event'.
4656 Vlast_input_event = Qnil;
4658 DEFVAR_LISP ("current-mouse-event", &Vcurrent_mouse_event /*
4659 The mouse-button event which invoked this command, or nil.
4660 This is usually what `(interactive "e")' returns.
4662 Vcurrent_mouse_event = Qnil;
4664 DEFVAR_LISP ("last-input-char", &Vlast_input_char /*
4665 If the value of `last-input-event' is a keyboard event, then
4666 this is the nearest ASCII equivalent to it. Remember that there is
4667 NOT a 1:1 mapping between keyboard events and ASCII characters: the set
4668 of keyboard events is much larger, so writing code that examines this
4669 variable to determine what key has been typed is bad practice, unless
4670 you are certain that it will be one of a small set of characters.
4672 Vlast_input_char = Qnil;
4674 DEFVAR_LISP ("last-input-time", &Vlast_input_time /*
4675 The time (in seconds since Jan 1, 1970) of the last-command-event,
4676 represented as a cons of two 16-bit integers. This is destructively
4677 modified, so copy it if you want to keep it.
4679 Vlast_input_time = Qnil;
4681 DEFVAR_LISP ("last-command-event-time", &Vlast_command_event_time /*
4682 The time (in seconds since Jan 1, 1970) of the last-command-event,
4683 represented as a list of three integers. The first integer contains
4684 the most significant 16 bits of the number of seconds, and the second
4685 integer contains the least significant 16 bits. The third integer
4686 contains the remainder number of microseconds, if the current system
4687 supports microsecond clock resolution. This list is destructively
4688 modified, so copy it if you want to keep it.
4690 Vlast_command_event_time = Qnil;
4692 DEFVAR_LISP ("unread-command-events", &Vunread_command_events /*
4693 List of event objects to be read as next command input events.
4694 This can be used to simulate the receipt of events from the user.
4695 Normally this is nil.
4696 Events are removed from the front of this list.
4698 Vunread_command_events = Qnil;
4700 DEFVAR_LISP ("unread-command-event", &Vunread_command_event /*
4701 Obsolete. Use `unread-command-events' instead.
4703 Vunread_command_event = Qnil;
4705 DEFVAR_LISP ("last-command", &Vlast_command /*
4706 The last command executed. Normally a symbol with a function definition,
4707 but can be whatever was found in the keymap, or whatever the variable
4708 `this-command' was set to by that command.
4710 Vlast_command = Qnil;
4712 DEFVAR_LISP ("this-command", &Vthis_command /*
4713 The command now being executed.
4714 The command can set this variable; whatever is put here
4715 will be in `last-command' during the following command.
4717 Vthis_command = Qnil;
4719 DEFVAR_LISP ("last-command-properties", &Vlast_command_properties /*
4720 Value of `this-command-properties' for the last command.
4721 Used by commands to help synchronize consecutive commands, in preference
4722 to looking at `last-command' directly.
4724 Vlast_command_properties = Qnil;
4726 DEFVAR_LISP ("this-command-properties", &Vthis_command_properties /*
4727 Properties set by the current command.
4728 At the beginning of each command, the current value of this variable is
4729 copied to `last-command-properties', and then it is set to nil. Use `putf'
4730 to add properties to this variable. Commands should use this to communicate
4731 with pre/post-command hooks, subsequent commands, wrapping commands, etc.
4732 in preference to looking at and/or setting `this-command'.
4734 Vthis_command_properties = Qnil;
4736 DEFVAR_LISP ("help-char", &Vhelp_char /*
4737 Character to recognize as meaning Help.
4738 When it is read, do `(eval help-form)', and display result if it's a string.
4739 If the value of `help-form' is nil, this char can be read normally.
4740 This can be any form recognized as a single key specifier.
4741 The help-char cannot be a negative number in XEmacs.
4743 Vhelp_char = make_char (8); /* C-h */
4745 DEFVAR_LISP ("help-form", &Vhelp_form /*
4746 Form to execute when character help-char is read.
4747 If the form returns a string, that string is displayed.
4748 If `help-form' is nil, the help char is not recognized.
4752 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command /*
4753 Command to run when `help-char' character follows a prefix key.
4754 This command is used only when there is no actual binding
4755 for that character after that prefix key.
4757 Vprefix_help_command = Qnil;
4759 DEFVAR_CONST_LISP ("keyboard-translate-table", &Vkeyboard_translate_table /*
4760 Hash table used as translate table for keyboard input.
4761 Use `keyboard-translate' to portably add entries to this table.
4762 Each key-press event is looked up in this table as follows:
4764 -- If an entry maps a symbol to a symbol, then a key-press event whose
4765 keysym is the former symbol (with any modifiers at all) gets its
4766 keysym changed and its modifiers left alone. This is useful for
4767 dealing with non-standard X keyboards, such as the grievous damage
4768 that Sun has inflicted upon the world.
4769 -- If an entry maps a symbol to a character, then a key-press event
4770 whose keysym is the former symbol (with any modifiers at all) gets
4771 changed into a key-press event matching the latter character, and the
4772 resulting modifiers are the union of the original and new modifiers.
4773 -- If an entry maps a character to a character, then a key-press event
4774 matching the former character gets converted to a key-press event
4775 matching the latter character. This is useful on ASCII terminals
4776 for (e.g.) making C-\\ look like C-s, to get around flow-control
4778 -- If an entry maps a character to a symbol, then a key-press event
4779 matching the character gets converted to a key-press event whose
4780 keysym is the given symbol and which has no modifiers.
4782 Here's an example: This makes typing parens and braces easier by rerouting
4783 their positions to eliminate the need to use the Shift key.
4785 (keyboard-translate ?[ ?()
4786 (keyboard-translate ?] ?))
4787 (keyboard-translate ?{ ?[)
4788 (keyboard-translate ?} ?])
4789 (keyboard-translate 'f11 ?{)
4790 (keyboard-translate 'f12 ?})
4793 DEFVAR_LISP ("retry-undefined-key-binding-unshifted",
4794 &Vretry_undefined_key_binding_unshifted /*
4795 If a key-sequence which ends with a shifted keystroke is undefined
4796 and this variable is non-nil then the command lookup is retried again
4797 with the last key unshifted. (e.g. C-X C-F would be retried as C-X C-f.)
4798 If lookup still fails, a normal error is signalled. In general,
4799 you should *bind* this, not set it.
4801 Vretry_undefined_key_binding_unshifted = Qt;
4803 DEFVAR_BOOL ("modifier-keys-are-sticky", &modifier_keys_are_sticky /*
4804 *Non-nil makes modifier keys sticky.
4805 This means that you can release the modifier key before pressing down
4806 the key that you wish to be modified. Although this is non-standard
4807 behavior, it is recommended because it reduces the strain on your hand,
4808 thus reducing the incidence of the dreaded Emacs-pinky syndrome.
4810 Modifier keys are sticky within the inverval specified by
4811 `modifier-keys-sticky-time'.
4813 modifier_keys_are_sticky = 0;
4815 DEFVAR_LISP ("modifier-keys-sticky-time", &Vmodifier_keys_sticky_time /*
4816 *Modifier keys are sticky within this many milliseconds.
4817 If you don't want modifier keys sticking to be bounded, set this to
4820 This variable has no effect when `modifier-keys-are-sticky' is nil.
4821 Currently only implemented under X Window System.
4823 Vmodifier_keys_sticky_time = make_int (500);
4826 DEFVAR_LISP ("composed-character-default-binding",
4827 &Vcomposed_character_default_binding /*
4828 The default keybinding to use for key events from composed input.
4829 Window systems frequently have ways to allow the user to compose
4830 single characters in a language using multiple keystrokes.
4831 XEmacs sees these as single character keypress events.
4833 Vcomposed_character_default_binding = Qself_insert_command;
4834 #endif /* HAVE_XIM */
4836 Vcontrolling_terminal = Qnil;
4837 staticpro (&Vcontrolling_terminal);
4839 Vdribble_file = Qnil;
4840 staticpro (&Vdribble_file);
4843 DEFVAR_INT ("debug-emacs-events", &debug_emacs_events /*
4844 If non-zero, display debug information about Emacs events that XEmacs sees.
4845 Information is displayed on stderr.
4847 Before the event, the source of the event is displayed in parentheses,
4848 and is one of the following:
4850 \(real) A real event from the window system or
4851 terminal driver, as far as XEmacs can tell.
4853 \(keyboard macro) An event generated from a keyboard macro.
4855 \(unread-command-events) An event taken from `unread-command-events'.
4857 \(unread-command-event) An event taken from `unread-command-event'.
4859 \(command event queue) An event taken from an internal queue.
4860 Events end up on this queue when
4861 `enqueue-eval-event' is called or when
4862 user or eval events are received while
4863 XEmacs is blocking (e.g. in `sit-for',
4864 `sleep-for', or `accept-process-output',
4865 or while waiting for the reply to an
4868 \(->keyboard-translate-table) The result of an event translated through
4869 keyboard-translate-table. Note that in
4870 this case, two events are printed even
4871 though only one is really generated.
4873 \(SIGINT) A faked C-g resulting when XEmacs receives
4874 a SIGINT (e.g. C-c was pressed in XEmacs'
4875 controlling terminal or the signal was
4876 explicitly sent to the XEmacs process).
4878 debug_emacs_events = 0;
4881 DEFVAR_BOOL ("inhibit-input-event-recording", &inhibit_input_event_recording /*
4882 Non-nil inhibits recording of input-events to recent-keys ring.
4884 inhibit_input_event_recording = 0;
4888 complex_vars_of_event_stream (void)
4890 Vkeyboard_translate_table =
4891 make_lisp_hash_table (100, HASH_TABLE_NON_WEAK, HASH_TABLE_EQ);
4895 init_event_stream (void)
4899 #ifdef HAVE_UNIXOID_EVENT_LOOP
4900 init_event_unixoid ();
4902 #ifdef HAVE_X_WINDOWS
4903 if (!strcmp (display_use, "x"))
4904 init_event_Xt_late ();
4908 if (!strcmp (display_use, "gtk"))
4909 init_event_gtk_late ();
4912 #ifdef HAVE_MS_WINDOWS
4913 if (!strcmp (display_use, "mswindows"))
4914 init_event_mswindows_late ();
4918 /* For TTY's, use the Xt event loop if we can; it allows
4919 us to later open an X connection. */
4920 #if defined (HAVE_MS_WINDOWS) && (!defined (HAVE_TTY) \
4921 || (defined (HAVE_MSG_SELECT) \
4922 && !defined (DEBUG_TTY_EVENT_STREAM)))
4923 init_event_mswindows_late ();
4924 #elif defined (HAVE_X_WINDOWS) && !defined (DEBUG_TTY_EVENT_STREAM)
4925 init_event_Xt_late ();
4926 #elif defined (HAVE_TTY)
4927 init_event_tty_late ();
4930 init_interrupts_late ();
4936 useful testcases for v18/v19 compatibility:
4940 (setq unread-command-event (character-to-event ?A (allocate-event)))
4941 (setq x (list (read-char)
4942 ; (read-key-sequence "") ; try it with and without this
4943 last-command-char last-input-char
4944 (recent-keys) (this-command-keys))))
4945 (global-set-key "\^Q" 'foo)
4947 without the read-key-sequence:
4948 ^Q ==> (?A ?\^Q ?A [... ^Q] [^Q])
4949 ^U^U^Q ==> (?A ?\^Q ?A [... ^U ^U ^Q] [^U ^U ^Q])
4950 ^U^U^U^G^Q ==> (?A ?\^Q ?A [... ^U ^U ^U ^G ^Q] [^Q])
4952 with the read-key-sequence:
4953 ^Qb ==> (?A [b] ?\^Q ?b [... ^Q b] [b])
4954 ^U^U^Qb ==> (?A [b] ?\^Q ?b [... ^U ^U ^Q b] [b])
4955 ^U^U^U^G^Qb ==> (?A [b] ?\^Q ?b [... ^U ^U ^U ^G ^Q b] [b])
4957 ;the evi-mode command "4dlj.j.j.j.j.j." is also a good testcase (gag)
4959 ;(setq x (list (read-char) quit-flag))^J^G
4960 ;(let ((inhibit-quit t)) (setq x (list (read-char) quit-flag)))^J^G
4961 ;for BOTH, x should get set to (7 t), but no result should be printed.
4962 ;; #### According to the doc of quit-flag, second test should return
4963 ;; (?\^G nil). Accidentaly XEmacs returns correct value. However,
4964 ;; XEmacs 21.1.12 and 21.2.36 both fails on first test.
4966 ;also do this: make two frames, one viewing "*scratch*", the other "foo".
4967 ;in *scratch*, type (sit-for 20)^J
4968 ;wait a couple of seconds, move cursor to foo, type "a"
4969 ;a should be inserted in foo. Cursor highlighting should not change in
4972 ;do it with sleep-for. move cursor into foo, then back into *scratch*
4974 ;repeat also with (accept-process-output nil 20)
4976 ;make sure ^G aborts sit-for, sleep-for and accept-process-output:
4979 (list (condition-case c
4984 (tst)^Ja^G ==> ((quit) ?a) with no signal
4985 (tst)^J^Ga ==> ((quit) ?a) with no signal
4986 (tst)^Jabc^G ==> ((quit) ?a) with no signal, and "bc" inserted in buffer
4988 ; with sit-for only do the 2nd test.
4989 ; Do all 3 tests with (accept-process-output nil 20)
4992 (setq enable-recursive-minibuffers t
4993 minibuffer-max-depth nil)
4994 ESC ESC ESC ESC - there are now two minibuffers active
4995 C-g C-g C-g - there should be active 0, not 1
4997 C-x C-f ~ / ? - wait for "Making completion list..." to display
4998 C-g - wait for "Quit" to display
4999 C-g - minibuffer should not be active
5000 however C-g before "Quit" is displayed should leave minibuffer active.
5002 ;do it all in both v18 and v19 and make sure all results are the same.
5003 ;all of these cases matter a lot, but some in quite subtle ways.
5007 Additional test cases for accept-process-output, sleep-for, sit-for.
5008 Be sure you do all of the above checking for C-g and focus, too!
5010 ; Make sure that timer handlers are run during, not after sit-for:
5011 (defun timer-check ()
5012 (add-timeout 2 '(lambda (ignore) (message "timer ran")) nil)
5014 (message "after sit-for"))
5016 ; The first message should appear after 2 seconds, and the final message
5017 ; 3 seconds after that.
5018 ; repeat above test with (sleep-for 5) and (accept-process-output nil 5)
5022 ; Make sure that process filters are run during, not after sit-for.
5024 (message "sit-for = %s" (sit-for 30)))
5025 (add-hook 'post-command-hook 'fubar)
5027 ; Now type M-x shell RET
5028 ; wait for the shell prompt then send: ls RET
5029 ; the output of ls should fill immediately, and not wait 30 seconds.
5031 ; repeat above test with (sleep-for 30) and (accept-process-output nil 30)
5035 ; Make sure that recursive invocations return immediately:
5036 (defmacro test-diff-time (start end)
5037 `(+ (* (- (car ,end) (car ,start)) 65536.0)
5038 (- (cadr ,end) (cadr ,start))
5039 (/ (- (caddr ,end) (caddr ,start)) 1000000.0)))
5041 (defun testee (ignore)
5045 (let ((start (current-time))
5047 (add-timeout 2 'testee nil)
5049 (add-timeout 2 'testee nil)
5051 (add-timeout 2 'testee nil)
5052 (accept-process-output nil 5)
5053 (setq end (current-time))
5054 (test-diff-time start end)))
5056 (test-them) should sit for 15 seconds.
5057 Repeat with testee set to sleep-for and accept-process-output.
5058 These should each delay 36 seconds.