Remove check for struct timezone, its result is never used.
[emacs.git] / src / keyboard.c
blob01c4d181f66883039fded0d1bb46f5a7163af135
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995,
3 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #include <config.h>
24 #include <signal.h>
25 #include <stdio.h>
26 #include "termchar.h"
27 #include "termopts.h"
28 #include "lisp.h"
29 #include "termhooks.h"
30 #include "macros.h"
31 #include "keyboard.h"
32 #include "frame.h"
33 #include "window.h"
34 #include "commands.h"
35 #include "buffer.h"
36 #include "charset.h"
37 #include "disptab.h"
38 #include "dispextern.h"
39 #include "syntax.h"
40 #include "intervals.h"
41 #include "keymap.h"
42 #include "blockinput.h"
43 #include "puresize.h"
44 #include "systime.h"
45 #include "atimer.h"
46 #include <setjmp.h>
47 #include <errno.h>
49 #ifdef HAVE_GTK_AND_PTHREAD
50 #include <pthread.h>
51 #endif
52 #ifdef MSDOS
53 #include "msdos.h"
54 #include <time.h>
55 #else /* not MSDOS */
56 #ifndef VMS
57 #include <sys/ioctl.h>
58 #endif
59 #endif /* not MSDOS */
61 #include "syssignal.h"
62 #include "systty.h"
64 #include <sys/types.h>
65 #ifdef HAVE_UNISTD_H
66 #include <unistd.h>
67 #endif
69 #ifdef HAVE_FCNTL_H
70 #include <fcntl.h>
71 #endif
73 /* This is to get the definitions of the XK_ symbols. */
74 #ifdef HAVE_X_WINDOWS
75 #include "xterm.h"
76 #endif
78 #ifdef HAVE_NTGUI
79 #include "w32term.h"
80 #endif /* HAVE_NTGUI */
82 #ifdef MAC_OS
83 #include "macterm.h"
84 #endif
86 #ifndef USE_CRT_DLL
87 extern int errno;
88 #endif
90 /* Variables for blockinput.h: */
92 /* Non-zero if interrupt input is blocked right now. */
93 int interrupt_input_blocked;
95 /* Nonzero means an input interrupt has arrived
96 during the current critical section. */
97 int interrupt_input_pending;
100 /* File descriptor to use for input. */
101 extern int input_fd;
103 #ifdef HAVE_WINDOW_SYSTEM
104 /* Make all keyboard buffers much bigger when using X windows. */
105 #ifdef MAC_OS8
106 /* But not too big (local data > 32K error) if on Mac OS Classic. */
107 #define KBD_BUFFER_SIZE 512
108 #else
109 #define KBD_BUFFER_SIZE 4096
110 #endif
111 #else /* No X-windows, character input */
112 #define KBD_BUFFER_SIZE 4096
113 #endif /* No X-windows */
115 #define abs(x) ((x) >= 0 ? (x) : -(x))
117 /* Following definition copied from eval.c */
119 struct backtrace
121 struct backtrace *next;
122 Lisp_Object *function;
123 Lisp_Object *args; /* Points to vector of args. */
124 int nargs; /* length of vector. If nargs is UNEVALLED,
125 args points to slot holding list of
126 unevalled args */
127 char evalargs;
128 /* Nonzero means call value of debugger when done with this operation. */
129 char debug_on_exit;
132 #ifdef MULTI_KBOARD
133 KBOARD *initial_kboard;
134 KBOARD *current_kboard;
135 KBOARD *all_kboards;
136 int single_kboard;
137 #else
138 KBOARD the_only_kboard;
139 #endif
141 /* Non-nil disable property on a command means
142 do not execute it; call disabled-command-function's value instead. */
143 Lisp_Object Qdisabled, Qdisabled_command_function;
145 #define NUM_RECENT_KEYS (100)
146 int recent_keys_index; /* Index for storing next element into recent_keys */
147 int total_keys; /* Total number of elements stored into recent_keys */
148 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
150 /* Vector holding the key sequence that invoked the current command.
151 It is reused for each command, and it may be longer than the current
152 sequence; this_command_key_count indicates how many elements
153 actually mean something.
154 It's easier to staticpro a single Lisp_Object than an array. */
155 Lisp_Object this_command_keys;
156 int this_command_key_count;
158 /* 1 after calling Freset_this_command_lengths.
159 Usually it is 0. */
160 int this_command_key_count_reset;
162 /* This vector is used as a buffer to record the events that were actually read
163 by read_key_sequence. */
164 Lisp_Object raw_keybuf;
165 int raw_keybuf_count;
167 #define GROW_RAW_KEYBUF \
168 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
170 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
171 Lisp_Object new; \
172 new = Fmake_vector (make_number (newsize), Qnil); \
173 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
174 raw_keybuf_count * sizeof (Lisp_Object)); \
175 raw_keybuf = new; \
178 /* Number of elements of this_command_keys
179 that precede this key sequence. */
180 int this_single_command_key_start;
182 /* Record values of this_command_key_count and echo_length ()
183 before this command was read. */
184 static int before_command_key_count;
185 static int before_command_echo_length;
187 extern int minbuf_level;
189 extern int message_enable_multibyte;
191 extern struct backtrace *backtrace_list;
193 /* If non-nil, the function that implements the display of help.
194 It's called with one argument, the help string to display. */
196 Lisp_Object Vshow_help_function;
198 /* If a string, the message displayed before displaying a help-echo
199 in the echo area. */
201 Lisp_Object Vpre_help_message;
203 /* Nonzero means do menu prompting. */
205 static int menu_prompting;
207 /* Character to see next line of menu prompt. */
209 static Lisp_Object menu_prompt_more_char;
211 /* For longjmp to where kbd input is being done. */
213 static jmp_buf getcjmp;
215 /* True while doing kbd input. */
216 int waiting_for_input;
218 /* True while displaying for echoing. Delays C-g throwing. */
220 int echoing;
222 /* Non-null means we can start echoing at the next input pause even
223 though there is something in the echo area. */
225 static struct kboard *ok_to_echo_at_next_pause;
227 /* The kboard last echoing, or null for none. Reset to 0 in
228 cancel_echoing. If non-null, and a current echo area message
229 exists, and echo_message_buffer is eq to the current message
230 buffer, we know that the message comes from echo_kboard. */
232 struct kboard *echo_kboard;
234 /* The buffer used for echoing. Set in echo_now, reset in
235 cancel_echoing. */
237 Lisp_Object echo_message_buffer;
239 /* Nonzero means disregard local maps for the menu bar. */
240 static int inhibit_local_menu_bar_menus;
242 /* Nonzero means C-g should cause immediate error-signal. */
243 int immediate_quit;
245 /* The user's hook function for outputting an error message. */
246 Lisp_Object Vcommand_error_function;
248 /* The user's ERASE setting. */
249 Lisp_Object Vtty_erase_char;
251 /* Character to recognize as the help char. */
252 Lisp_Object Vhelp_char;
254 /* List of other event types to recognize as meaning "help". */
255 Lisp_Object Vhelp_event_list;
257 /* Form to execute when help char is typed. */
258 Lisp_Object Vhelp_form;
260 /* Command to run when the help character follows a prefix key. */
261 Lisp_Object Vprefix_help_command;
263 /* List of items that should move to the end of the menu bar. */
264 Lisp_Object Vmenu_bar_final_items;
266 /* Non-nil means show the equivalent key-binding for
267 any M-x command that has one.
268 The value can be a length of time to show the message for.
269 If the value is non-nil and not a number, we wait 2 seconds. */
270 Lisp_Object Vsuggest_key_bindings;
272 /* How long to display an echo-area message when the minibuffer is active.
273 If the value is not a number, such messages don't time out. */
274 Lisp_Object Vminibuffer_message_timeout;
276 /* Character that causes a quit. Normally C-g.
278 If we are running on an ordinary terminal, this must be an ordinary
279 ASCII char, since we want to make it our interrupt character.
281 If we are not running on an ordinary terminal, it still needs to be
282 an ordinary ASCII char. This character needs to be recognized in
283 the input interrupt handler. At this point, the keystroke is
284 represented as a struct input_event, while the desired quit
285 character is specified as a lispy event. The mapping from struct
286 input_events to lispy events cannot run in an interrupt handler,
287 and the reverse mapping is difficult for anything but ASCII
288 keystrokes.
290 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
291 ASCII character. */
292 int quit_char;
294 extern Lisp_Object current_global_map;
295 extern int minibuf_level;
297 /* If non-nil, this is a map that overrides all other local maps. */
298 Lisp_Object Voverriding_local_map;
300 /* If non-nil, Voverriding_local_map applies to the menu bar. */
301 Lisp_Object Voverriding_local_map_menu_flag;
303 /* Keymap that defines special misc events that should
304 be processed immediately at a low level. */
305 Lisp_Object Vspecial_event_map;
307 /* Current depth in recursive edits. */
308 int command_loop_level;
310 /* Total number of times command_loop has read a key sequence. */
311 EMACS_INT num_input_keys;
313 /* Last input character read as a command. */
314 Lisp_Object last_command_char;
316 /* Last input character read as a command, not counting menus
317 reached by the mouse. */
318 Lisp_Object last_nonmenu_event;
320 /* Last input character read for any purpose. */
321 Lisp_Object last_input_char;
323 /* If not Qnil, a list of objects to be read as subsequent command input. */
324 Lisp_Object Vunread_command_events;
326 /* If not Qnil, a list of objects to be read as subsequent command input
327 including input method processing. */
328 Lisp_Object Vunread_input_method_events;
330 /* If not Qnil, a list of objects to be read as subsequent command input
331 but NOT including input method processing. */
332 Lisp_Object Vunread_post_input_method_events;
334 /* If not -1, an event to be read as subsequent command input. */
335 EMACS_INT unread_command_char;
337 /* If not Qnil, this is a switch-frame event which we decided to put
338 off until the end of a key sequence. This should be read as the
339 next command input, after any unread_command_events.
341 read_key_sequence uses this to delay switch-frame events until the
342 end of the key sequence; Fread_char uses it to put off switch-frame
343 events until a non-ASCII event is acceptable as input. */
344 Lisp_Object unread_switch_frame;
346 /* A mask of extra modifier bits to put into every keyboard char. */
347 EMACS_INT extra_keyboard_modifiers;
349 /* Char to use as prefix when a meta character is typed in.
350 This is bound on entry to minibuffer in case ESC is changed there. */
352 Lisp_Object meta_prefix_char;
354 /* Last size recorded for a current buffer which is not a minibuffer. */
355 static int last_non_minibuf_size;
357 /* Number of idle seconds before an auto-save and garbage collection. */
358 static Lisp_Object Vauto_save_timeout;
360 /* Total number of times read_char has returned. */
361 int num_input_events;
363 /* Total number of times read_char has returned, outside of macros. */
364 EMACS_INT num_nonmacro_input_events;
366 /* Auto-save automatically when this many characters have been typed
367 since the last time. */
369 static EMACS_INT auto_save_interval;
371 /* Value of num_nonmacro_input_events as of last auto save. */
373 int last_auto_save;
375 /* The command being executed by the command loop.
376 Commands may set this, and the value set will be copied into
377 current_kboard->Vlast_command instead of the actual command. */
378 Lisp_Object Vthis_command;
380 /* This is like Vthis_command, except that commands never set it. */
381 Lisp_Object real_this_command;
383 /* If the lookup of the command returns a binding, the original
384 command is stored in this-original-command. It is nil otherwise. */
385 Lisp_Object Vthis_original_command;
387 /* The value of point when the last command was started. */
388 int last_point_position;
390 /* The buffer that was current when the last command was started. */
391 Lisp_Object last_point_position_buffer;
393 /* The window that was selected when the last command was started. */
394 Lisp_Object last_point_position_window;
396 /* The frame in which the last input event occurred, or Qmacro if the
397 last event came from a macro. We use this to determine when to
398 generate switch-frame events. This may be cleared by functions
399 like Fselect_frame, to make sure that a switch-frame event is
400 generated by the next character. */
401 Lisp_Object internal_last_event_frame;
403 /* A user-visible version of the above, intended to allow users to
404 figure out where the last event came from, if the event doesn't
405 carry that information itself (i.e. if it was a character). */
406 Lisp_Object Vlast_event_frame;
408 /* The timestamp of the last input event we received from the X server.
409 X Windows wants this for selection ownership. */
410 unsigned long last_event_timestamp;
412 Lisp_Object Qself_insert_command;
413 Lisp_Object Qforward_char;
414 Lisp_Object Qbackward_char;
415 Lisp_Object Qundefined;
416 Lisp_Object Qtimer_event_handler;
418 /* read_key_sequence stores here the command definition of the
419 key sequence that it reads. */
420 Lisp_Object read_key_sequence_cmd;
422 /* Echo unfinished commands after this many seconds of pause. */
423 Lisp_Object Vecho_keystrokes;
425 /* Form to evaluate (if non-nil) when Emacs is started. */
426 Lisp_Object Vtop_level;
428 /* User-supplied table to translate input characters. */
429 Lisp_Object Vkeyboard_translate_table;
431 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
432 extern Lisp_Object Vfunction_key_map;
434 /* Another keymap that maps key sequences into key sequences.
435 This one takes precedence over ordinary definitions. */
436 extern Lisp_Object Vkey_translation_map;
438 /* If non-nil, this implements the current input method. */
439 Lisp_Object Vinput_method_function;
440 Lisp_Object Qinput_method_function;
442 /* When we call Vinput_method_function,
443 this holds the echo area message that was just erased. */
444 Lisp_Object Vinput_method_previous_message;
446 /* Non-nil means deactivate the mark at end of this command. */
447 Lisp_Object Vdeactivate_mark;
449 /* Menu bar specified in Lucid Emacs fashion. */
451 Lisp_Object Vlucid_menu_bar_dirty_flag;
452 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
454 Lisp_Object Qecho_area_clear_hook;
456 /* Hooks to run before and after each command. */
457 Lisp_Object Qpre_command_hook, Vpre_command_hook;
458 Lisp_Object Qpost_command_hook, Vpost_command_hook;
459 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
461 /* List of deferred actions to be performed at a later time.
462 The precise format isn't relevant here; we just check whether it is nil. */
463 Lisp_Object Vdeferred_action_list;
465 /* Function to call to handle deferred actions, when there are any. */
466 Lisp_Object Vdeferred_action_function;
467 Lisp_Object Qdeferred_action_function;
469 Lisp_Object Qinput_method_exit_on_first_char;
470 Lisp_Object Qinput_method_use_echo_area;
472 /* File in which we write all commands we read. */
473 FILE *dribble;
475 /* Nonzero if input is available. */
476 int input_pending;
478 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
479 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
481 int meta_key;
483 extern char *pending_malloc_warning;
485 /* Circular buffer for pre-read keyboard input. */
487 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
489 /* Pointer to next available character in kbd_buffer.
490 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
491 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
492 next available char is in kbd_buffer[0]. */
493 static struct input_event *kbd_fetch_ptr;
495 /* Pointer to next place to store character in kbd_buffer. This
496 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
497 character should go in kbd_buffer[0]. */
498 static struct input_event * volatile kbd_store_ptr;
500 /* The above pair of variables forms a "queue empty" flag. When we
501 enqueue a non-hook event, we increment kbd_store_ptr. When we
502 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
503 there is input available iff the two pointers are not equal.
505 Why not just have a flag set and cleared by the enqueuing and
506 dequeuing functions? Such a flag could be screwed up by interrupts
507 at inopportune times. */
509 /* If this flag is non-nil, we check mouse_moved to see when the
510 mouse moves, and motion events will appear in the input stream.
511 Otherwise, mouse motion is ignored. */
512 Lisp_Object do_mouse_tracking;
514 /* Symbols to head events. */
515 Lisp_Object Qmouse_movement;
516 Lisp_Object Qscroll_bar_movement;
517 Lisp_Object Qswitch_frame;
518 Lisp_Object Qdelete_frame;
519 Lisp_Object Qiconify_frame;
520 Lisp_Object Qmake_frame_visible;
521 Lisp_Object Qselect_window;
522 Lisp_Object Qhelp_echo;
524 #ifdef HAVE_MOUSE
525 Lisp_Object Qmouse_fixup_help_message;
526 #endif
528 /* Symbols to denote kinds of events. */
529 Lisp_Object Qfunction_key;
530 Lisp_Object Qmouse_click;
531 #if defined (WINDOWSNT) || defined (MAC_OS)
532 Lisp_Object Qlanguage_change;
533 #endif
534 Lisp_Object Qdrag_n_drop;
535 Lisp_Object Qsave_session;
536 #ifdef MAC_OS
537 Lisp_Object Qmac_apple_event;
538 #endif
540 /* Lisp_Object Qmouse_movement; - also an event header */
542 /* Properties of event headers. */
543 Lisp_Object Qevent_kind;
544 Lisp_Object Qevent_symbol_elements;
546 /* menu item parts */
547 Lisp_Object Qmenu_alias;
548 Lisp_Object Qmenu_enable;
549 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
550 Lisp_Object QCbutton, QCtoggle, QCradio;
551 extern Lisp_Object Vdefine_key_rebound_commands;
552 extern Lisp_Object Qmenu_item;
554 /* An event header symbol HEAD may have a property named
555 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
556 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
557 mask of modifiers applied to it. If present, this is used to help
558 speed up parse_modifiers. */
559 Lisp_Object Qevent_symbol_element_mask;
561 /* An unmodified event header BASE may have a property named
562 Qmodifier_cache, which is an alist mapping modifier masks onto
563 modified versions of BASE. If present, this helps speed up
564 apply_modifiers. */
565 Lisp_Object Qmodifier_cache;
567 /* Symbols to use for parts of windows. */
568 Lisp_Object Qmode_line;
569 Lisp_Object Qvertical_line;
570 Lisp_Object Qvertical_scroll_bar;
571 Lisp_Object Qmenu_bar;
572 extern Lisp_Object Qleft_margin, Qright_margin;
573 extern Lisp_Object Qleft_fringe, Qright_fringe;
574 extern Lisp_Object QCmap;
576 Lisp_Object recursive_edit_unwind (), command_loop ();
577 Lisp_Object Fthis_command_keys ();
578 Lisp_Object Qextended_command_history;
579 EMACS_TIME timer_check ();
581 extern Lisp_Object Vhistory_length, Vtranslation_table_for_input;
583 extern char *x_get_keysym_name ();
585 static void record_menu_key ();
586 static int echo_length ();
588 Lisp_Object Qpolling_period;
590 /* List of absolute timers. Appears in order of next scheduled event. */
591 Lisp_Object Vtimer_list;
593 /* List of idle time timers. Appears in order of next scheduled event. */
594 Lisp_Object Vtimer_idle_list;
596 /* Incremented whenever a timer is run. */
597 int timers_run;
599 extern Lisp_Object Vprint_level, Vprint_length;
601 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
602 happens. */
603 EMACS_TIME *input_available_clear_time;
605 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
606 Default is 1 if INTERRUPT_INPUT is defined. */
607 int interrupt_input;
609 /* Nonzero while interrupts are temporarily deferred during redisplay. */
610 int interrupts_deferred;
612 /* Nonzero means use ^S/^Q for flow control. */
613 int flow_control;
615 /* Allow m- file to inhibit use of FIONREAD. */
616 #ifdef BROKEN_FIONREAD
617 #undef FIONREAD
618 #endif
620 /* We are unable to use interrupts if FIONREAD is not available,
621 so flush SIGIO so we won't try. */
622 #if !defined (FIONREAD)
623 #ifdef SIGIO
624 #undef SIGIO
625 #endif
626 #endif
628 /* If we support a window system, turn on the code to poll periodically
629 to detect C-g. It isn't actually used when doing interrupt input. */
630 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
631 #define POLL_FOR_INPUT
632 #endif
634 /* After a command is executed, if point is moved into a region that
635 has specific properties (e.g. composition, display), we adjust
636 point to the boundary of the region. But, if a command sets this
637 variable to non-nil, we suppress this point adjustment. This
638 variable is set to nil before reading a command. */
640 Lisp_Object Vdisable_point_adjustment;
642 /* If non-nil, always disable point adjustment. */
644 Lisp_Object Vglobal_disable_point_adjustment;
646 /* The time when Emacs started being idle. */
648 static EMACS_TIME timer_idleness_start_time;
650 /* After Emacs stops being idle, this saves the last value
651 of timer_idleness_start_time from when it was idle. */
653 static EMACS_TIME timer_last_idleness_start_time;
655 /* If non-nil, events produced by disabled menu items and tool-bar
656 buttons are not ignored. Help functions bind this to allow help on
657 those items and buttons. */
658 Lisp_Object Venable_disabled_menus_and_buttons;
661 /* Global variable declarations. */
663 /* Flags for readable_events. */
664 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
665 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
666 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
668 /* Function for init_keyboard to call with no args (if nonzero). */
669 void (*keyboard_init_hook) ();
671 static int read_avail_input P_ ((int));
672 static void get_input_pending P_ ((int *, int));
673 static int readable_events P_ ((int));
674 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
675 Lisp_Object, int *));
676 static Lisp_Object read_char_x_menu_prompt ();
677 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
678 Lisp_Object *));
679 static Lisp_Object make_lispy_event P_ ((struct input_event *));
680 #ifdef HAVE_MOUSE
681 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
682 enum scroll_bar_part,
683 Lisp_Object, Lisp_Object,
684 unsigned long));
685 #endif
686 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
687 Lisp_Object, char **,
688 Lisp_Object *, unsigned));
689 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
690 static int parse_solitary_modifier P_ ((Lisp_Object));
691 static int parse_solitary_modifier ();
692 static void save_getcjmp P_ ((jmp_buf));
693 static void save_getcjmp ();
694 static void restore_getcjmp P_ ((jmp_buf));
695 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
696 static void clear_event P_ ((struct input_event *));
697 static void any_kboard_state P_ ((void));
698 static SIGTYPE interrupt_signal P_ ((int signalnum));
699 static void timer_start_idle P_ ((void));
700 static void timer_stop_idle P_ ((void));
701 static void timer_resume_idle P_ ((void));
703 /* Nonzero means don't try to suspend even if the operating system seems
704 to support it. */
705 static int cannot_suspend;
707 extern Lisp_Object Qidentity, Qonly;
709 /* Install the string STR as the beginning of the string of echoing,
710 so that it serves as a prompt for the next character.
711 Also start echoing. */
713 void
714 echo_prompt (str)
715 Lisp_Object str;
717 current_kboard->echo_string = str;
718 current_kboard->echo_after_prompt = SCHARS (str);
719 echo_now ();
722 /* Add C to the echo string, if echoing is going on.
723 C can be a character, which is printed prettily ("M-C-x" and all that
724 jazz), or a symbol, whose name is printed. */
726 void
727 echo_char (c)
728 Lisp_Object c;
730 if (current_kboard->immediate_echo)
732 int size = KEY_DESCRIPTION_SIZE + 100;
733 char *buffer = (char *) alloca (size);
734 char *ptr = buffer;
735 Lisp_Object echo_string;
737 echo_string = current_kboard->echo_string;
739 /* If someone has passed us a composite event, use its head symbol. */
740 c = EVENT_HEAD (c);
742 if (INTEGERP (c))
744 ptr = push_key_description (XINT (c), ptr, 1);
746 else if (SYMBOLP (c))
748 Lisp_Object name = SYMBOL_NAME (c);
749 int nbytes = SBYTES (name);
751 if (size - (ptr - buffer) < nbytes)
753 int offset = ptr - buffer;
754 size = max (2 * size, size + nbytes);
755 buffer = (char *) alloca (size);
756 ptr = buffer + offset;
759 ptr += copy_text (SDATA (name), ptr, nbytes,
760 STRING_MULTIBYTE (name), 1);
763 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
764 && help_char_p (c))
766 const char *text = " (Type ? for further options)";
767 int len = strlen (text);
769 if (size - (ptr - buffer) < len)
771 int offset = ptr - buffer;
772 size += len;
773 buffer = (char *) alloca (size);
774 ptr = buffer + offset;
777 bcopy (text, ptr, len);
778 ptr += len;
781 /* Replace a dash from echo_dash with a space, otherwise
782 add a space at the end as a separator between keys. */
783 if (STRINGP (echo_string)
784 && SCHARS (echo_string) > 1)
786 Lisp_Object last_char, prev_char, idx;
788 idx = make_number (SCHARS (echo_string) - 2);
789 prev_char = Faref (echo_string, idx);
791 idx = make_number (SCHARS (echo_string) - 1);
792 last_char = Faref (echo_string, idx);
794 /* We test PREV_CHAR to make sure this isn't the echoing
795 of a minus-sign. */
796 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
797 Faset (echo_string, idx, make_number (' '));
798 else
799 echo_string = concat2 (echo_string, build_string (" "));
801 else if (STRINGP (echo_string))
802 echo_string = concat2 (echo_string, build_string (" "));
804 current_kboard->echo_string
805 = concat2 (echo_string, make_string (buffer, ptr - buffer));
807 echo_now ();
811 /* Temporarily add a dash to the end of the echo string if it's not
812 empty, so that it serves as a mini-prompt for the very next character. */
814 void
815 echo_dash ()
817 /* Do nothing if not echoing at all. */
818 if (NILP (current_kboard->echo_string))
819 return;
821 if (!current_kboard->immediate_echo
822 && SCHARS (current_kboard->echo_string) == 0)
823 return;
825 /* Do nothing if we just printed a prompt. */
826 if (current_kboard->echo_after_prompt
827 == SCHARS (current_kboard->echo_string))
828 return;
830 /* Do nothing if we have already put a dash at the end. */
831 if (SCHARS (current_kboard->echo_string) > 1)
833 Lisp_Object last_char, prev_char, idx;
835 idx = make_number (SCHARS (current_kboard->echo_string) - 2);
836 prev_char = Faref (current_kboard->echo_string, idx);
838 idx = make_number (SCHARS (current_kboard->echo_string) - 1);
839 last_char = Faref (current_kboard->echo_string, idx);
841 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
842 return;
845 /* Put a dash at the end of the buffer temporarily,
846 but make it go away when the next character is added. */
847 current_kboard->echo_string = concat2 (current_kboard->echo_string,
848 build_string ("-"));
849 echo_now ();
852 /* Display the current echo string, and begin echoing if not already
853 doing so. */
855 void
856 echo_now ()
858 if (!current_kboard->immediate_echo)
860 int i;
861 current_kboard->immediate_echo = 1;
863 for (i = 0; i < this_command_key_count; i++)
865 Lisp_Object c;
867 /* Set before_command_echo_length to the value that would
868 have been saved before the start of this subcommand in
869 command_loop_1, if we had already been echoing then. */
870 if (i == this_single_command_key_start)
871 before_command_echo_length = echo_length ();
873 c = XVECTOR (this_command_keys)->contents[i];
874 if (! (EVENT_HAS_PARAMETERS (c)
875 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
876 echo_char (c);
879 /* Set before_command_echo_length to the value that would
880 have been saved before the start of this subcommand in
881 command_loop_1, if we had already been echoing then. */
882 if (this_command_key_count == this_single_command_key_start)
883 before_command_echo_length = echo_length ();
885 /* Put a dash at the end to invite the user to type more. */
886 echo_dash ();
889 echoing = 1;
890 message3_nolog (current_kboard->echo_string,
891 SBYTES (current_kboard->echo_string),
892 STRING_MULTIBYTE (current_kboard->echo_string));
893 echoing = 0;
895 /* Record in what buffer we echoed, and from which kboard. */
896 echo_message_buffer = echo_area_buffer[0];
897 echo_kboard = current_kboard;
899 if (waiting_for_input && !NILP (Vquit_flag))
900 quit_throw_to_read_char ();
903 /* Turn off echoing, for the start of a new command. */
905 void
906 cancel_echoing ()
908 current_kboard->immediate_echo = 0;
909 current_kboard->echo_after_prompt = -1;
910 current_kboard->echo_string = Qnil;
911 ok_to_echo_at_next_pause = NULL;
912 echo_kboard = NULL;
913 echo_message_buffer = Qnil;
916 /* Return the length of the current echo string. */
918 static int
919 echo_length ()
921 return (STRINGP (current_kboard->echo_string)
922 ? SCHARS (current_kboard->echo_string)
923 : 0);
926 /* Truncate the current echo message to its first LEN chars.
927 This and echo_char get used by read_key_sequence when the user
928 switches frames while entering a key sequence. */
930 static void
931 echo_truncate (nchars)
932 int nchars;
934 if (STRINGP (current_kboard->echo_string))
935 current_kboard->echo_string
936 = Fsubstring (current_kboard->echo_string,
937 make_number (0), make_number (nchars));
938 truncate_echo_area (nchars);
942 /* Functions for manipulating this_command_keys. */
943 static void
944 add_command_key (key)
945 Lisp_Object key;
947 #if 0 /* Not needed after we made Freset_this_command_lengths
948 do the job immediately. */
949 /* If reset-this-command-length was called recently, obey it now.
950 See the doc string of that function for an explanation of why. */
951 if (before_command_restore_flag)
953 this_command_key_count = before_command_key_count_1;
954 if (this_command_key_count < this_single_command_key_start)
955 this_single_command_key_start = this_command_key_count;
956 echo_truncate (before_command_echo_length_1);
957 before_command_restore_flag = 0;
959 #endif
961 if (this_command_key_count >= ASIZE (this_command_keys))
962 this_command_keys = larger_vector (this_command_keys,
963 2 * ASIZE (this_command_keys),
964 Qnil);
966 AREF (this_command_keys, this_command_key_count) = key;
967 ++this_command_key_count;
971 Lisp_Object
972 recursive_edit_1 ()
974 int count = SPECPDL_INDEX ();
975 Lisp_Object val;
977 if (command_loop_level > 0)
979 specbind (Qstandard_output, Qt);
980 specbind (Qstandard_input, Qt);
983 #ifdef HAVE_X_WINDOWS
984 /* The command loop has started an hourglass timer, so we have to
985 cancel it here, otherwise it will fire because the recursive edit
986 can take some time. Do not check for display_hourglass_p here,
987 because it could already be nil. */
988 cancel_hourglass ();
989 #endif
991 /* This function may have been called from a debugger called from
992 within redisplay, for instance by Edebugging a function called
993 from fontification-functions. We want to allow redisplay in
994 the debugging session.
996 The recursive edit is left with a `(throw exit ...)'. The `exit'
997 tag is not caught anywhere in redisplay, i.e. when we leave the
998 recursive edit, the original redisplay leading to the recursive
999 edit will be unwound. The outcome should therefore be safe. */
1000 specbind (Qinhibit_redisplay, Qnil);
1001 redisplaying_p = 0;
1003 val = command_loop ();
1004 if (EQ (val, Qt))
1005 Fsignal (Qquit, Qnil);
1006 /* Handle throw from read_minibuf when using minibuffer
1007 while it's active but we're in another window. */
1008 if (STRINGP (val))
1009 xsignal1 (Qerror, val);
1011 return unbind_to (count, Qnil);
1014 /* When an auto-save happens, record the "time", and don't do again soon. */
1016 void
1017 record_auto_save ()
1019 last_auto_save = num_nonmacro_input_events;
1022 /* Make an auto save happen as soon as possible at command level. */
1024 void
1025 force_auto_save_soon ()
1027 last_auto_save = - auto_save_interval - 1;
1029 record_asynch_buffer_change ();
1032 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
1033 doc: /* Invoke the editor command loop recursively.
1034 To get out of the recursive edit, a command can do `(throw 'exit nil)';
1035 that tells this function to return.
1036 Alternatively, `(throw 'exit t)' makes this function signal an error.
1037 This function is called by the editor initialization to begin editing. */)
1040 int count = SPECPDL_INDEX ();
1041 Lisp_Object buffer;
1043 /* If we enter while input is blocked, don't lock up here.
1044 This may happen through the debugger during redisplay. */
1045 if (INPUT_BLOCKED_P)
1046 return Qnil;
1048 command_loop_level++;
1049 update_mode_lines = 1;
1051 if (command_loop_level
1052 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1053 buffer = Fcurrent_buffer ();
1054 else
1055 buffer = Qnil;
1057 /* If we leave recursive_edit_1 below with a `throw' for instance,
1058 like it is done in the splash screen display, we have to
1059 make sure that we restore single_kboard as command_loop_1
1060 would have done if it were left normally. */
1061 record_unwind_protect (recursive_edit_unwind,
1062 Fcons (buffer, single_kboard ? Qt : Qnil));
1064 recursive_edit_1 ();
1065 return unbind_to (count, Qnil);
1068 Lisp_Object
1069 recursive_edit_unwind (info)
1070 Lisp_Object info;
1072 if (BUFFERP (XCAR (info)))
1073 Fset_buffer (XCAR (info));
1075 if (NILP (XCDR (info)))
1076 any_kboard_state ();
1077 else
1078 single_kboard_state ();
1080 command_loop_level--;
1081 update_mode_lines = 1;
1082 return Qnil;
1086 static void
1087 any_kboard_state ()
1089 #ifdef MULTI_KBOARD
1090 #if 0 /* Theory: if there's anything in Vunread_command_events,
1091 it will right away be read by read_key_sequence,
1092 and then if we do switch KBOARDS, it will go into the side
1093 queue then. So we don't need to do anything special here -- rms. */
1094 if (CONSP (Vunread_command_events))
1096 current_kboard->kbd_queue
1097 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1098 current_kboard->kbd_queue_has_data = 1;
1100 Vunread_command_events = Qnil;
1101 #endif
1102 single_kboard = 0;
1103 #endif
1106 /* Switch to the single-kboard state, making current_kboard
1107 the only KBOARD from which further input is accepted. */
1109 void
1110 single_kboard_state ()
1112 #ifdef MULTI_KBOARD
1113 single_kboard = 1;
1114 #endif
1117 /* If we're in single_kboard state for kboard KBOARD,
1118 get out of it. */
1120 void
1121 not_single_kboard_state (kboard)
1122 KBOARD *kboard;
1124 #ifdef MULTI_KBOARD
1125 if (kboard == current_kboard)
1126 single_kboard = 0;
1127 #endif
1130 /* Maintain a stack of kboards, so other parts of Emacs
1131 can switch temporarily to the kboard of a given frame
1132 and then revert to the previous status. */
1134 struct kboard_stack
1136 KBOARD *kboard;
1137 struct kboard_stack *next;
1140 static struct kboard_stack *kboard_stack;
1142 void
1143 push_frame_kboard (f)
1144 FRAME_PTR f;
1146 #ifdef MULTI_KBOARD
1147 struct kboard_stack *p
1148 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1150 p->next = kboard_stack;
1151 p->kboard = current_kboard;
1152 kboard_stack = p;
1154 current_kboard = FRAME_KBOARD (f);
1155 #endif
1158 void
1159 pop_frame_kboard ()
1161 #ifdef MULTI_KBOARD
1162 struct kboard_stack *p = kboard_stack;
1163 current_kboard = p->kboard;
1164 kboard_stack = p->next;
1165 xfree (p);
1166 #endif
1169 /* Handle errors that are not handled at inner levels
1170 by printing an error message and returning to the editor command loop. */
1172 Lisp_Object
1173 cmd_error (data)
1174 Lisp_Object data;
1176 Lisp_Object old_level, old_length;
1177 char macroerror[50];
1179 #ifdef HAVE_X_WINDOWS
1180 if (display_hourglass_p)
1181 cancel_hourglass ();
1182 #endif
1184 if (!NILP (executing_kbd_macro))
1186 if (executing_kbd_macro_iterations == 1)
1187 sprintf (macroerror, "After 1 kbd macro iteration: ");
1188 else
1189 sprintf (macroerror, "After %d kbd macro iterations: ",
1190 executing_kbd_macro_iterations);
1192 else
1193 *macroerror = 0;
1195 Vstandard_output = Qt;
1196 Vstandard_input = Qt;
1197 Vexecuting_kbd_macro = Qnil;
1198 executing_kbd_macro = Qnil;
1199 current_kboard->Vprefix_arg = Qnil;
1200 current_kboard->Vlast_prefix_arg = Qnil;
1201 cancel_echoing ();
1203 /* Avoid unquittable loop if data contains a circular list. */
1204 old_level = Vprint_level;
1205 old_length = Vprint_length;
1206 XSETFASTINT (Vprint_level, 10);
1207 XSETFASTINT (Vprint_length, 10);
1208 cmd_error_internal (data, macroerror);
1209 Vprint_level = old_level;
1210 Vprint_length = old_length;
1212 Vquit_flag = Qnil;
1214 Vinhibit_quit = Qnil;
1215 #ifdef MULTI_KBOARD
1216 if (command_loop_level == 0 && minibuf_level == 0)
1217 any_kboard_state ();
1218 #endif
1220 return make_number (0);
1223 /* Take actions on handling an error. DATA is the data that describes
1224 the error.
1226 CONTEXT is a C-string containing ASCII characters only which
1227 describes the context in which the error happened. If we need to
1228 generalize CONTEXT to allow multibyte characters, make it a Lisp
1229 string. */
1231 void
1232 cmd_error_internal (data, context)
1233 Lisp_Object data;
1234 char *context;
1236 struct frame *sf = SELECTED_FRAME ();
1238 /* The immediate context is not interesting for Quits,
1239 since they are asyncronous. */
1240 if (EQ (XCAR (data), Qquit))
1241 Vsignaling_function = Qnil;
1243 Vquit_flag = Qnil;
1244 Vinhibit_quit = Qt;
1246 /* Use user's specified output function if any. */
1247 if (!NILP (Vcommand_error_function))
1248 call3 (Vcommand_error_function, data,
1249 build_string (context ? context : ""),
1250 Vsignaling_function);
1251 /* If the window system or terminal frame hasn't been initialized
1252 yet, or we're not interactive, write the message to stderr and exit. */
1253 else if (!sf->glyphs_initialized_p
1254 /* This is the case of the frame dumped with Emacs, when we're
1255 running under a window system. */
1256 || (!NILP (Vwindow_system)
1257 && !inhibit_window_system
1258 && FRAME_TERMCAP_P (sf))
1259 || noninteractive)
1261 print_error_message (data, Qexternal_debugging_output,
1262 context, Vsignaling_function);
1263 Fterpri (Qexternal_debugging_output);
1264 Fkill_emacs (make_number (-1));
1266 else
1268 clear_message (1, 0);
1269 Fdiscard_input ();
1270 message_log_maybe_newline ();
1271 bitch_at_user ();
1273 print_error_message (data, Qt, context, Vsignaling_function);
1276 Vsignaling_function = Qnil;
1279 Lisp_Object command_loop_1 ();
1280 Lisp_Object command_loop_2 ();
1281 Lisp_Object top_level_1 ();
1283 /* Entry to editor-command-loop.
1284 This level has the catches for exiting/returning to editor command loop.
1285 It returns nil to exit recursive edit, t to abort it. */
1287 Lisp_Object
1288 command_loop ()
1290 if (command_loop_level > 0 || minibuf_level > 0)
1292 Lisp_Object val;
1293 val = internal_catch (Qexit, command_loop_2, Qnil);
1294 executing_kbd_macro = Qnil;
1295 return val;
1297 else
1298 while (1)
1300 internal_catch (Qtop_level, top_level_1, Qnil);
1301 /* Reset single_kboard in case top-level set it while
1302 evaluating an -f option, or we are stuck there for some
1303 other reason. */
1304 any_kboard_state ();
1305 internal_catch (Qtop_level, command_loop_2, Qnil);
1306 executing_kbd_macro = Qnil;
1308 /* End of file in -batch run causes exit here. */
1309 if (noninteractive)
1310 Fkill_emacs (Qt);
1314 /* Here we catch errors in execution of commands within the
1315 editing loop, and reenter the editing loop.
1316 When there is an error, cmd_error runs and returns a non-nil
1317 value to us. A value of nil means that command_loop_1 itself
1318 returned due to end of file (or end of kbd macro). */
1320 Lisp_Object
1321 command_loop_2 ()
1323 register Lisp_Object val;
1326 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1327 while (!NILP (val));
1329 return Qnil;
1332 Lisp_Object
1333 top_level_2 ()
1335 return Feval (Vtop_level);
1338 Lisp_Object
1339 top_level_1 ()
1341 /* On entry to the outer level, run the startup file */
1342 if (!NILP (Vtop_level))
1343 internal_condition_case (top_level_2, Qerror, cmd_error);
1344 else if (!NILP (Vpurify_flag))
1345 message ("Bare impure Emacs (standard Lisp code not loaded)");
1346 else
1347 message ("Bare Emacs (standard Lisp code not loaded)");
1348 return Qnil;
1351 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1352 doc: /* Exit all recursive editing levels. */)
1355 #ifdef HAVE_X_WINDOWS
1356 if (display_hourglass_p)
1357 cancel_hourglass ();
1358 #endif
1360 /* Unblock input if we enter with input blocked. This may happen if
1361 redisplay traps e.g. during tool-bar update with input blocked. */
1362 while (INPUT_BLOCKED_P)
1363 UNBLOCK_INPUT;
1365 return Fthrow (Qtop_level, Qnil);
1368 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1369 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1372 if (command_loop_level > 0 || minibuf_level > 0)
1373 Fthrow (Qexit, Qnil);
1375 error ("No recursive edit is in progress");
1376 return Qnil;
1379 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1380 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1383 if (command_loop_level > 0 || minibuf_level > 0)
1384 Fthrow (Qexit, Qt);
1386 error ("No recursive edit is in progress");
1387 return Qnil;
1390 #ifdef HAVE_MOUSE
1392 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1393 of this function. */
1395 static Lisp_Object
1396 tracking_off (old_value)
1397 Lisp_Object old_value;
1399 do_mouse_tracking = old_value;
1400 if (NILP (old_value))
1402 /* Redisplay may have been preempted because there was input
1403 available, and it assumes it will be called again after the
1404 input has been processed. If the only input available was
1405 the sort that we have just disabled, then we need to call
1406 redisplay. */
1407 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
1409 redisplay_preserve_echo_area (6);
1410 get_input_pending (&input_pending,
1411 READABLE_EVENTS_DO_TIMERS_NOW);
1414 return Qnil;
1417 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1418 doc: /* Evaluate BODY with mouse movement events enabled.
1419 Within a `track-mouse' form, mouse motion generates input events that
1420 you can read with `read-event'.
1421 Normally, mouse motion is ignored.
1422 usage: (track-mouse BODY ...) */)
1423 (args)
1424 Lisp_Object args;
1426 int count = SPECPDL_INDEX ();
1427 Lisp_Object val;
1429 record_unwind_protect (tracking_off, do_mouse_tracking);
1431 do_mouse_tracking = Qt;
1433 val = Fprogn (args);
1434 return unbind_to (count, val);
1437 /* If mouse has moved on some frame, return one of those frames.
1438 Return 0 otherwise. */
1440 static FRAME_PTR
1441 some_mouse_moved ()
1443 Lisp_Object tail, frame;
1445 FOR_EACH_FRAME (tail, frame)
1447 if (XFRAME (frame)->mouse_moved)
1448 return XFRAME (frame);
1451 return 0;
1454 #endif /* HAVE_MOUSE */
1456 /* This is the actual command reading loop,
1457 sans error-handling encapsulation. */
1459 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1460 int, int, int));
1461 void safe_run_hooks P_ ((Lisp_Object));
1462 static void adjust_point_for_property P_ ((int, int));
1464 /* Cancel hourglass from protect_unwind.
1465 ARG is not used. */
1466 #ifdef HAVE_X_WINDOWS
1467 static Lisp_Object
1468 cancel_hourglass_unwind (arg)
1469 Lisp_Object arg;
1471 cancel_hourglass ();
1472 return Qnil;
1474 #endif
1476 Lisp_Object
1477 command_loop_1 ()
1479 Lisp_Object cmd;
1480 int lose;
1481 int nonundocount;
1482 Lisp_Object keybuf[30];
1483 int i;
1484 int no_direct;
1485 int prev_modiff = 0;
1486 struct buffer *prev_buffer = NULL;
1487 #ifdef MULTI_KBOARD
1488 int was_locked = single_kboard;
1489 #endif
1490 int already_adjusted;
1492 current_kboard->Vprefix_arg = Qnil;
1493 current_kboard->Vlast_prefix_arg = Qnil;
1494 Vdeactivate_mark = Qnil;
1495 waiting_for_input = 0;
1496 cancel_echoing ();
1498 nonundocount = 0;
1499 this_command_key_count = 0;
1500 this_command_key_count_reset = 0;
1501 this_single_command_key_start = 0;
1503 if (NILP (Vmemory_full))
1505 /* Make sure this hook runs after commands that get errors and
1506 throw to top level. */
1507 /* Note that the value cell will never directly contain nil
1508 if the symbol is a local variable. */
1509 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1510 safe_run_hooks (Qpost_command_hook);
1512 /* If displaying a message, resize the echo area window to fit
1513 that message's size exactly. */
1514 if (!NILP (echo_area_buffer[0]))
1515 resize_echo_area_exactly ();
1517 if (!NILP (Vdeferred_action_list))
1518 safe_run_hooks (Qdeferred_action_function);
1521 /* Do this after running Vpost_command_hook, for consistency. */
1522 current_kboard->Vlast_command = Vthis_command;
1523 current_kboard->Vreal_last_command = real_this_command;
1525 while (1)
1527 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1528 Fkill_emacs (Qnil);
1530 /* Make sure the current window's buffer is selected. */
1531 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1532 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1534 /* Display any malloc warning that just came out. Use while because
1535 displaying one warning can cause another. */
1537 while (pending_malloc_warning)
1538 display_malloc_warning ();
1540 no_direct = 0;
1542 Vdeactivate_mark = Qnil;
1544 /* If minibuffer on and echo area in use,
1545 wait a short time and redraw minibuffer. */
1547 if (minibuf_level
1548 && !NILP (echo_area_buffer[0])
1549 && EQ (minibuf_window, echo_area_window))
1551 /* Bind inhibit-quit to t so that C-g gets read in
1552 rather than quitting back to the minibuffer. */
1553 int count = SPECPDL_INDEX ();
1554 specbind (Qinhibit_quit, Qt);
1556 if (NUMBERP (Vminibuffer_message_timeout))
1557 sit_for (Vminibuffer_message_timeout, 0, 2);
1558 else
1559 sit_for (Qt, 0, 2);
1561 /* Clear the echo area. */
1562 message2 (0, 0, 0);
1563 safe_run_hooks (Qecho_area_clear_hook);
1565 unbind_to (count, Qnil);
1567 /* If a C-g came in before, treat it as input now. */
1568 if (!NILP (Vquit_flag))
1570 Vquit_flag = Qnil;
1571 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1575 #ifdef C_ALLOCA
1576 alloca (0); /* Cause a garbage collection now */
1577 /* Since we can free the most stuff here. */
1578 #endif /* C_ALLOCA */
1580 #if 0
1581 /* Select the frame that the last event came from. Usually,
1582 switch-frame events will take care of this, but if some lisp
1583 code swallows a switch-frame event, we'll fix things up here.
1584 Is this a good idea? */
1585 if (FRAMEP (internal_last_event_frame)
1586 && !EQ (internal_last_event_frame, selected_frame))
1587 Fselect_frame (internal_last_event_frame);
1588 #endif
1589 /* If it has changed current-menubar from previous value,
1590 really recompute the menubar from the value. */
1591 if (! NILP (Vlucid_menu_bar_dirty_flag)
1592 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1593 call0 (Qrecompute_lucid_menubar);
1595 before_command_key_count = this_command_key_count;
1596 before_command_echo_length = echo_length ();
1598 Vthis_command = Qnil;
1599 real_this_command = Qnil;
1600 Vthis_original_command = Qnil;
1602 /* Read next key sequence; i gets its length. */
1603 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1604 Qnil, 0, 1, 1);
1606 /* A filter may have run while we were reading the input. */
1607 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1608 Fkill_emacs (Qnil);
1609 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1610 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1612 ++num_input_keys;
1614 /* Now we have read a key sequence of length I,
1615 or else I is 0 and we found end of file. */
1617 if (i == 0) /* End of file -- happens only in */
1618 return Qnil; /* a kbd macro, at the end. */
1619 /* -1 means read_key_sequence got a menu that was rejected.
1620 Just loop around and read another command. */
1621 if (i == -1)
1623 cancel_echoing ();
1624 this_command_key_count = 0;
1625 this_command_key_count_reset = 0;
1626 this_single_command_key_start = 0;
1627 goto finalize;
1630 last_command_char = keybuf[i - 1];
1632 /* If the previous command tried to force a specific window-start,
1633 forget about that, in case this command moves point far away
1634 from that position. But also throw away beg_unchanged and
1635 end_unchanged information in that case, so that redisplay will
1636 update the whole window properly. */
1637 if (!NILP (XWINDOW (selected_window)->force_start))
1639 struct buffer *b;
1640 XWINDOW (selected_window)->force_start = Qnil;
1641 b = XBUFFER (XWINDOW (selected_window)->buffer);
1642 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1645 cmd = read_key_sequence_cmd;
1646 if (!NILP (Vexecuting_kbd_macro))
1648 if (!NILP (Vquit_flag))
1650 Vexecuting_kbd_macro = Qt;
1651 QUIT; /* Make some noise. */
1652 /* Will return since macro now empty. */
1656 /* Do redisplay processing after this command except in special
1657 cases identified below. */
1658 prev_buffer = current_buffer;
1659 prev_modiff = MODIFF;
1660 last_point_position = PT;
1661 last_point_position_window = selected_window;
1662 XSETBUFFER (last_point_position_buffer, prev_buffer);
1664 /* By default, we adjust point to a boundary of a region that
1665 has such a property that should be treated intangible
1666 (e.g. composition, display). But, some commands will set
1667 this variable differently. */
1668 Vdisable_point_adjustment = Qnil;
1670 /* Process filters and timers may have messed with deactivate-mark.
1671 reset it before we execute the command. */
1672 Vdeactivate_mark = Qnil;
1674 /* Remap command through active keymaps */
1675 Vthis_original_command = cmd;
1676 if (SYMBOLP (cmd))
1678 Lisp_Object cmd1;
1679 if (cmd1 = Fcommand_remapping (cmd, Qnil), !NILP (cmd1))
1680 cmd = cmd1;
1683 /* Execute the command. */
1685 Vthis_command = cmd;
1686 real_this_command = cmd;
1687 /* Note that the value cell will never directly contain nil
1688 if the symbol is a local variable. */
1689 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1690 safe_run_hooks (Qpre_command_hook);
1692 already_adjusted = 0;
1694 if (NILP (Vthis_command))
1696 /* nil means key is undefined. */
1697 Lisp_Object keys = Fvector (i, keybuf);
1698 keys = Fkey_description (keys, Qnil);
1699 bitch_at_user ();
1700 message_with_string ("%s is undefined", keys, 0);
1701 current_kboard->defining_kbd_macro = Qnil;
1702 update_mode_lines = 1;
1703 current_kboard->Vprefix_arg = Qnil;
1705 else
1707 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1709 /* In case we jump to directly_done. */
1710 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1712 /* Recognize some common commands in common situations and
1713 do them directly. */
1714 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1716 struct Lisp_Char_Table *dp
1717 = window_display_table (XWINDOW (selected_window));
1718 lose = FETCH_CHAR (PT_BYTE);
1719 SET_PT (PT + 1);
1720 if (! NILP (Vpost_command_hook))
1721 /* Put this before calling adjust_point_for_property
1722 so it will only get called once in any case. */
1723 goto directly_done;
1724 if (current_buffer == prev_buffer
1725 && last_point_position != PT
1726 && NILP (Vdisable_point_adjustment)
1727 && NILP (Vglobal_disable_point_adjustment))
1728 adjust_point_for_property (last_point_position, 0);
1729 already_adjusted = 1;
1730 if (PT == last_point_position + 1
1731 && (dp
1732 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1733 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1734 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1735 && (lose >= 0x20 && lose < 0x7f)))
1736 : (lose >= 0x20 && lose < 0x7f))
1737 /* To extract the case of continuation on
1738 wide-column characters. */
1739 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1740 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1741 >= MODIFF)
1742 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1743 >= OVERLAY_MODIFF)
1744 && (XFASTINT (XWINDOW (selected_window)->last_point)
1745 == PT - 1)
1746 && !windows_or_buffers_changed
1747 && EQ (current_buffer->selective_display, Qnil)
1748 && !detect_input_pending ()
1749 && NILP (XWINDOW (selected_window)->column_number_displayed)
1750 && NILP (Vexecuting_kbd_macro))
1751 direct_output_forward_char (1);
1752 goto directly_done;
1754 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1756 struct Lisp_Char_Table *dp
1757 = window_display_table (XWINDOW (selected_window));
1758 SET_PT (PT - 1);
1759 lose = FETCH_CHAR (PT_BYTE);
1760 if (! NILP (Vpost_command_hook))
1761 goto directly_done;
1762 if (current_buffer == prev_buffer
1763 && last_point_position != PT
1764 && NILP (Vdisable_point_adjustment)
1765 && NILP (Vglobal_disable_point_adjustment))
1766 adjust_point_for_property (last_point_position, 0);
1767 already_adjusted = 1;
1768 if (PT == last_point_position - 1
1769 && (dp
1770 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1771 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1772 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1773 && (lose >= 0x20 && lose < 0x7f)))
1774 : (lose >= 0x20 && lose < 0x7f))
1775 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1776 >= MODIFF)
1777 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1778 >= OVERLAY_MODIFF)
1779 && (XFASTINT (XWINDOW (selected_window)->last_point)
1780 == PT + 1)
1781 && !windows_or_buffers_changed
1782 && EQ (current_buffer->selective_display, Qnil)
1783 && !detect_input_pending ()
1784 && NILP (XWINDOW (selected_window)->column_number_displayed)
1785 && NILP (Vexecuting_kbd_macro))
1786 direct_output_forward_char (-1);
1787 goto directly_done;
1789 else if (EQ (Vthis_command, Qself_insert_command)
1790 /* Try this optimization only on char keystrokes. */
1791 && NATNUMP (last_command_char)
1792 && CHAR_VALID_P (XFASTINT (last_command_char), 0))
1794 unsigned int c
1795 = translate_char (Vtranslation_table_for_input,
1796 XFASTINT (last_command_char), 0, 0, 0);
1797 int value;
1798 if (NILP (Vexecuting_kbd_macro)
1799 && !EQ (minibuf_window, selected_window))
1801 if (!nonundocount || nonundocount >= 20)
1803 Fundo_boundary ();
1804 nonundocount = 0;
1806 nonundocount++;
1809 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1810 < MODIFF)
1811 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1812 < OVERLAY_MODIFF)
1813 || (XFASTINT (XWINDOW (selected_window)->last_point)
1814 != PT)
1815 || MODIFF <= SAVE_MODIFF
1816 || windows_or_buffers_changed
1817 || !EQ (current_buffer->selective_display, Qnil)
1818 || detect_input_pending ()
1819 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1820 || !NILP (Vexecuting_kbd_macro));
1822 value = internal_self_insert (c, 0);
1824 if (value == 2)
1825 nonundocount = 0;
1827 if (! NILP (Vpost_command_hook))
1828 /* Put this before calling adjust_point_for_property
1829 so it will only get called once in any case. */
1830 goto directly_done;
1832 /* VALUE == 1 when AFTER-CHANGE functions are
1833 installed which is the case most of the time
1834 because FONT-LOCK installs one. */
1835 if (!lose && !value)
1836 direct_output_for_insert (c);
1837 goto directly_done;
1841 /* Here for a command that isn't executed directly */
1844 #ifdef HAVE_X_WINDOWS
1845 int scount = SPECPDL_INDEX ();
1847 if (display_hourglass_p
1848 && NILP (Vexecuting_kbd_macro))
1850 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1851 start_hourglass ();
1853 #endif
1855 nonundocount = 0;
1856 if (NILP (current_kboard->Vprefix_arg))
1857 Fundo_boundary ();
1858 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1860 #ifdef HAVE_X_WINDOWS
1861 /* Do not check display_hourglass_p here, because
1862 Fcommand_execute could change it, but we should cancel
1863 hourglass cursor anyway.
1864 But don't cancel the hourglass within a macro
1865 just because a command in the macro finishes. */
1866 if (NILP (Vexecuting_kbd_macro))
1867 unbind_to (scount, Qnil);
1868 #endif
1871 directly_done: ;
1872 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1874 /* Note that the value cell will never directly contain nil
1875 if the symbol is a local variable. */
1876 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1877 safe_run_hooks (Qpost_command_hook);
1879 /* If displaying a message, resize the echo area window to fit
1880 that message's size exactly. */
1881 if (!NILP (echo_area_buffer[0]))
1882 resize_echo_area_exactly ();
1884 if (!NILP (Vdeferred_action_list))
1885 safe_run_hooks (Qdeferred_action_function);
1887 /* If there is a prefix argument,
1888 1) We don't want Vlast_command to be ``universal-argument''
1889 (that would be dumb), so don't set Vlast_command,
1890 2) we want to leave echoing on so that the prefix will be
1891 echoed as part of this key sequence, so don't call
1892 cancel_echoing, and
1893 3) we want to leave this_command_key_count non-zero, so that
1894 read_char will realize that it is re-reading a character, and
1895 not echo it a second time.
1897 If the command didn't actually create a prefix arg,
1898 but is merely a frame event that is transparent to prefix args,
1899 then the above doesn't apply. */
1900 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1902 current_kboard->Vlast_command = Vthis_command;
1903 current_kboard->Vreal_last_command = real_this_command;
1904 cancel_echoing ();
1905 this_command_key_count = 0;
1906 this_command_key_count_reset = 0;
1907 this_single_command_key_start = 0;
1910 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1912 /* Setting transient-mark-mode to `only' is a way of
1913 turning it on for just one command. */
1915 if (EQ (Vtransient_mark_mode, Qidentity))
1916 Vtransient_mark_mode = Qnil;
1917 if (EQ (Vtransient_mark_mode, Qonly))
1918 Vtransient_mark_mode = Qidentity;
1920 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1922 /* We could also call `deactivate'mark'. */
1923 if (EQ (Vtransient_mark_mode, Qlambda))
1924 Vtransient_mark_mode = Qnil;
1925 else
1927 current_buffer->mark_active = Qnil;
1928 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1931 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1932 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1935 finalize:
1937 if (current_buffer == prev_buffer
1938 && last_point_position != PT
1939 && NILP (Vdisable_point_adjustment)
1940 && NILP (Vglobal_disable_point_adjustment)
1941 && !already_adjusted)
1942 adjust_point_for_property (last_point_position, MODIFF != prev_modiff);
1944 /* Install chars successfully executed in kbd macro. */
1946 if (!NILP (current_kboard->defining_kbd_macro)
1947 && NILP (current_kboard->Vprefix_arg))
1948 finalize_kbd_macro_chars ();
1950 #ifdef MULTI_KBOARD
1951 if (!was_locked)
1952 any_kboard_state ();
1953 #endif
1957 extern Lisp_Object Qcomposition, Qdisplay;
1959 /* Adjust point to a boundary of a region that has such a property
1960 that should be treated intangible. For the moment, we check
1961 `composition', `display' and `invisible' properties.
1962 LAST_PT is the last position of point. */
1964 extern Lisp_Object Qafter_string, Qbefore_string;
1965 extern Lisp_Object get_pos_property P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
1967 static void
1968 adjust_point_for_property (last_pt, modified)
1969 int last_pt;
1970 int modified;
1972 int beg, end;
1973 Lisp_Object val, overlay, tmp;
1974 int check_composition = 1, check_display = 1, check_invisible = 1;
1975 int orig_pt = PT;
1977 /* FIXME: cycling is probably not necessary because these properties
1978 can't be usefully combined anyway. */
1979 while (check_composition || check_display || check_invisible)
1981 if (check_composition
1982 && PT > BEGV && PT < ZV
1983 && get_property_and_range (PT, Qcomposition, &val, &beg, &end, Qnil)
1984 && COMPOSITION_VALID_P (beg, end, val)
1985 && beg < PT /* && end > PT <- It's always the case. */
1986 && (last_pt <= beg || last_pt >= end))
1988 xassert (end > PT);
1989 SET_PT (PT < last_pt ? beg : end);
1990 check_display = check_invisible = 1;
1992 check_composition = 0;
1993 if (check_display
1994 && PT > BEGV && PT < ZV
1995 && !NILP (val = get_char_property_and_overlay
1996 (make_number (PT), Qdisplay, Qnil, &overlay))
1997 && display_prop_intangible_p (val)
1998 && (!OVERLAYP (overlay)
1999 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
2000 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
2001 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
2002 && (beg < PT /* && end > PT <- It's always the case. */
2003 || (beg <= PT && STRINGP (val) && SCHARS (val) == 0)))
2005 xassert (end > PT);
2006 SET_PT (PT < last_pt
2007 ? (STRINGP (val) && SCHARS (val) == 0 ? beg - 1 : beg)
2008 : end);
2009 check_composition = check_invisible = 1;
2011 check_display = 0;
2012 if (check_invisible && PT > BEGV && PT < ZV)
2014 int inv, ellipsis = 0;
2015 beg = end = PT;
2017 /* Find boundaries `beg' and `end' of the invisible area, if any. */
2018 while (end < ZV
2019 && !NILP (val = get_char_property_and_overlay
2020 (make_number (end), Qinvisible, Qnil, &overlay))
2021 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
2023 ellipsis = ellipsis || inv > 1
2024 || (OVERLAYP (overlay)
2025 && (!NILP (Foverlay_get (overlay, Qafter_string))
2026 || !NILP (Foverlay_get (overlay, Qbefore_string))));
2027 tmp = Fnext_single_char_property_change
2028 (make_number (end), Qinvisible, Qnil, Qnil);
2029 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
2031 while (beg > BEGV
2032 && !NILP (val = get_char_property_and_overlay
2033 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
2034 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
2036 ellipsis = ellipsis || inv > 1
2037 || (OVERLAYP (overlay)
2038 && (!NILP (Foverlay_get (overlay, Qafter_string))
2039 || !NILP (Foverlay_get (overlay, Qbefore_string))));
2040 tmp = Fprevious_single_char_property_change
2041 (make_number (beg), Qinvisible, Qnil, Qnil);
2042 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
2045 /* Move away from the inside area. */
2046 if (beg < PT && end > PT)
2048 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
2049 /* We haven't moved yet (so we don't need to fear
2050 infinite-looping) and we were outside the range
2051 before (so either end of the range still corresponds
2052 to a move in the right direction): pretend we moved
2053 less than we actually did, so that we still have
2054 more freedom below in choosing which end of the range
2055 to go to. */
2056 ? (orig_pt = -1, PT < last_pt ? end : beg)
2057 /* We either have moved already or the last point
2058 was already in the range: we don't get to choose
2059 which end of the range we have to go to. */
2060 : (PT < last_pt ? beg : end));
2061 check_composition = check_display = 1;
2063 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
2064 the point to something other than its argument, due to
2065 point-motion hooks, intangibility, etc. */
2066 xassert (PT == beg || PT == end);
2067 #endif
2069 /* Pretend the area doesn't exist if the buffer is not
2070 modified. */
2071 if (!modified && !ellipsis && beg < end)
2073 if (last_pt == beg && PT == end && end < ZV)
2074 (check_composition = check_display = 1, SET_PT (end + 1));
2075 else if (last_pt == end && PT == beg && beg > BEGV)
2076 (check_composition = check_display = 1, SET_PT (beg - 1));
2077 else if (PT == ((PT < last_pt) ? beg : end))
2078 /* We've already moved as far as we can. Trying to go
2079 to the other end would mean moving backwards and thus
2080 could lead to an infinite loop. */
2082 else if (val = get_pos_property (make_number (PT),
2083 Qinvisible, Qnil),
2084 TEXT_PROP_MEANS_INVISIBLE (val)
2085 && (val = get_pos_property
2086 (make_number (PT == beg ? end : beg),
2087 Qinvisible, Qnil),
2088 !TEXT_PROP_MEANS_INVISIBLE (val)))
2089 (check_composition = check_display = 1,
2090 SET_PT (PT == beg ? end : beg));
2093 check_invisible = 0;
2097 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2099 static Lisp_Object
2100 safe_run_hooks_1 (hook)
2101 Lisp_Object hook;
2103 if (NILP (Vrun_hooks))
2104 return Qnil;
2105 return call1 (Vrun_hooks, Vinhibit_quit);
2108 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2110 static Lisp_Object
2111 safe_run_hooks_error (data)
2112 Lisp_Object data;
2114 Lisp_Object args[3];
2115 args[0] = build_string ("Error in %s: %s");
2116 args[1] = Vinhibit_quit;
2117 args[2] = data;
2118 Fmessage (3, args);
2119 return Fset (Vinhibit_quit, Qnil);
2122 /* If we get an error while running the hook, cause the hook variable
2123 to be nil. Also inhibit quits, so that C-g won't cause the hook
2124 to mysteriously evaporate. */
2126 void
2127 safe_run_hooks (hook)
2128 Lisp_Object hook;
2130 int count = SPECPDL_INDEX ();
2131 specbind (Qinhibit_quit, hook);
2133 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
2135 unbind_to (count, Qnil);
2139 /* Number of seconds between polling for input. This is a Lisp
2140 variable that can be bound. */
2142 EMACS_INT polling_period;
2144 /* Nonzero means polling for input is temporarily suppressed. */
2146 int poll_suppress_count;
2148 /* Asynchronous timer for polling. */
2150 struct atimer *poll_timer;
2153 #ifdef POLL_FOR_INPUT
2155 /* Poll for input, so what we catch a C-g if it comes in. This
2156 function is called from x_make_frame_visible, see comment
2157 there. */
2159 void
2160 poll_for_input_1 ()
2162 if (interrupt_input_blocked == 0
2163 && !waiting_for_input)
2164 read_avail_input (0);
2167 /* Timer callback function for poll_timer. TIMER is equal to
2168 poll_timer. */
2170 void
2171 poll_for_input (timer)
2172 struct atimer *timer;
2174 if (poll_suppress_count == 0)
2175 #ifdef SYNC_INPUT
2176 interrupt_input_pending = 1;
2177 #else
2178 poll_for_input_1 ();
2179 #endif
2182 #endif /* POLL_FOR_INPUT */
2184 /* Begin signals to poll for input, if they are appropriate.
2185 This function is called unconditionally from various places. */
2187 void
2188 start_polling ()
2190 #ifdef POLL_FOR_INPUT
2191 if (read_socket_hook && !interrupt_input)
2193 /* Turn alarm handling on unconditionally. It might have
2194 been turned off in process.c. */
2195 turn_on_atimers (1);
2197 /* If poll timer doesn't exist, are we need one with
2198 a different interval, start a new one. */
2199 if (poll_timer == NULL
2200 || EMACS_SECS (poll_timer->interval) != polling_period)
2202 EMACS_TIME interval;
2204 if (poll_timer)
2205 cancel_atimer (poll_timer);
2207 EMACS_SET_SECS_USECS (interval, polling_period, 0);
2208 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2209 poll_for_input, NULL);
2212 /* Let the timer's callback function poll for input
2213 if this becomes zero. */
2214 --poll_suppress_count;
2216 #endif
2219 /* Nonzero if we are using polling to handle input asynchronously. */
2222 input_polling_used ()
2224 #ifdef POLL_FOR_INPUT
2225 return read_socket_hook && !interrupt_input;
2226 #else
2227 return 0;
2228 #endif
2231 /* Turn off polling. */
2233 void
2234 stop_polling ()
2236 #ifdef POLL_FOR_INPUT
2237 if (read_socket_hook && !interrupt_input)
2238 ++poll_suppress_count;
2239 #endif
2242 /* Set the value of poll_suppress_count to COUNT
2243 and start or stop polling accordingly. */
2245 void
2246 set_poll_suppress_count (count)
2247 int count;
2249 #ifdef POLL_FOR_INPUT
2250 if (count == 0 && poll_suppress_count != 0)
2252 poll_suppress_count = 1;
2253 start_polling ();
2255 else if (count != 0 && poll_suppress_count == 0)
2257 stop_polling ();
2259 poll_suppress_count = count;
2260 #endif
2263 /* Bind polling_period to a value at least N.
2264 But don't decrease it. */
2266 void
2267 bind_polling_period (n)
2268 int n;
2270 #ifdef POLL_FOR_INPUT
2271 int new = polling_period;
2273 if (n > new)
2274 new = n;
2276 stop_other_atimers (poll_timer);
2277 stop_polling ();
2278 specbind (Qpolling_period, make_number (new));
2279 /* Start a new alarm with the new period. */
2280 start_polling ();
2281 #endif
2284 /* Apply the control modifier to CHARACTER. */
2287 make_ctrl_char (c)
2288 int c;
2290 /* Save the upper bits here. */
2291 int upper = c & ~0177;
2293 c &= 0177;
2295 /* Everything in the columns containing the upper-case letters
2296 denotes a control character. */
2297 if (c >= 0100 && c < 0140)
2299 int oc = c;
2300 c &= ~0140;
2301 /* Set the shift modifier for a control char
2302 made from a shifted letter. But only for letters! */
2303 if (oc >= 'A' && oc <= 'Z')
2304 c |= shift_modifier;
2307 /* The lower-case letters denote control characters too. */
2308 else if (c >= 'a' && c <= 'z')
2309 c &= ~0140;
2311 /* Include the bits for control and shift
2312 only if the basic ASCII code can't indicate them. */
2313 else if (c >= ' ')
2314 c |= ctrl_modifier;
2316 /* Replace the high bits. */
2317 c |= (upper & ~ctrl_modifier);
2319 return c;
2322 /* Display the help-echo property of the character after the mouse pointer.
2323 Either show it in the echo area, or call show-help-function to display
2324 it by other means (maybe in a tooltip).
2326 If HELP is nil, that means clear the previous help echo.
2328 If HELP is a string, display that string. If HELP is a function,
2329 call it with OBJECT and POS as arguments; the function should
2330 return a help string or nil for none. For all other types of HELP,
2331 evaluate it to obtain a string.
2333 WINDOW is the window in which the help was generated, if any.
2334 It is nil if not in a window.
2336 If OBJECT is a buffer, POS is the position in the buffer where the
2337 `help-echo' text property was found.
2339 If OBJECT is an overlay, that overlay has a `help-echo' property,
2340 and POS is the position in the overlay's buffer under the mouse.
2342 If OBJECT is a string (an overlay string or a string displayed with
2343 the `display' property). POS is the position in that string under
2344 the mouse.
2346 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2347 echo overwrites a keystroke echo currently displayed in the echo
2348 area.
2350 Note: this function may only be called with HELP nil or a string
2351 from X code running asynchronously. */
2353 void
2354 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2355 Lisp_Object help, window, object, pos;
2356 int ok_to_overwrite_keystroke_echo;
2358 if (!NILP (help) && !STRINGP (help))
2360 if (FUNCTIONP (help))
2362 Lisp_Object args[4];
2363 args[0] = help;
2364 args[1] = window;
2365 args[2] = object;
2366 args[3] = pos;
2367 help = safe_call (4, args);
2369 else
2370 help = safe_eval (help);
2372 if (!STRINGP (help))
2373 return;
2376 #ifdef HAVE_MOUSE
2377 if (!noninteractive && STRINGP (help))
2379 /* The mouse-fixup-help-message Lisp function can call
2380 mouse_position_hook, which resets the mouse_moved flags.
2381 This causes trouble if we are trying to read a mouse motion
2382 event (i.e., if we are inside a `track-mouse' form), so we
2383 restore the mouse_moved flag. */
2384 FRAME_PTR f = NILP (do_mouse_tracking) ? NULL : some_mouse_moved ();
2385 help = call1 (Qmouse_fixup_help_message, help);
2386 if (f)
2387 f->mouse_moved = 1;
2389 #endif
2391 if (STRINGP (help) || NILP (help))
2393 if (!NILP (Vshow_help_function))
2394 call1 (Vshow_help_function, help);
2395 else if (/* Don't overwrite minibuffer contents. */
2396 !MINI_WINDOW_P (XWINDOW (selected_window))
2397 /* Don't overwrite a keystroke echo. */
2398 && (NILP (echo_message_buffer)
2399 || ok_to_overwrite_keystroke_echo)
2400 /* Don't overwrite a prompt. */
2401 && !cursor_in_echo_area)
2403 if (STRINGP (help))
2405 int count = SPECPDL_INDEX ();
2407 if (!help_echo_showing_p)
2408 Vpre_help_message = current_message ();
2410 specbind (Qmessage_truncate_lines, Qt);
2411 message3_nolog (help, SBYTES (help),
2412 STRING_MULTIBYTE (help));
2413 unbind_to (count, Qnil);
2415 else if (STRINGP (Vpre_help_message))
2417 message3_nolog (Vpre_help_message,
2418 SBYTES (Vpre_help_message),
2419 STRING_MULTIBYTE (Vpre_help_message));
2420 Vpre_help_message = Qnil;
2422 else
2423 message (0);
2426 help_echo_showing_p = STRINGP (help);
2432 /* Input of single characters from keyboard */
2434 Lisp_Object print_help ();
2435 static Lisp_Object kbd_buffer_get_event ();
2436 static void record_char ();
2438 #ifdef MULTI_KBOARD
2439 static jmp_buf wrong_kboard_jmpbuf;
2440 #endif
2442 #define STOP_POLLING \
2443 do { if (! polling_stopped_here) stop_polling (); \
2444 polling_stopped_here = 1; } while (0)
2446 #define RESUME_POLLING \
2447 do { if (polling_stopped_here) start_polling (); \
2448 polling_stopped_here = 0; } while (0)
2450 /* read a character from the keyboard; call the redisplay if needed */
2451 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2452 -1 means do not do redisplay, but do do autosaving.
2453 1 means do both. */
2455 /* The arguments MAPS and NMAPS are for menu prompting.
2456 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2458 PREV_EVENT is the previous input event, or nil if we are reading
2459 the first event of a key sequence (or not reading a key sequence).
2460 If PREV_EVENT is t, that is a "magic" value that says
2461 not to run input methods, but in other respects to act as if
2462 not reading a key sequence.
2464 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2465 if we used a mouse menu to read the input, or zero otherwise. If
2466 USED_MOUSE_MENU is null, we don't dereference it.
2468 If END_TIME is non-null, it is a pointer to an EMACS_TIME
2469 specifying the maximum time to wait until. If no input arrives by
2470 that time, stop waiting and return nil.
2472 Value is t if we showed a menu and the user rejected it. */
2474 Lisp_Object
2475 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu, end_time)
2476 int commandflag;
2477 int nmaps;
2478 Lisp_Object *maps;
2479 Lisp_Object prev_event;
2480 int *used_mouse_menu;
2481 EMACS_TIME *end_time;
2483 volatile Lisp_Object c;
2484 int count, jmpcount;
2485 jmp_buf local_getcjmp;
2486 jmp_buf save_jump;
2487 volatile int key_already_recorded = 0;
2488 Lisp_Object tem, save;
2489 volatile Lisp_Object previous_echo_area_message;
2490 volatile Lisp_Object also_record;
2491 volatile int reread;
2492 struct gcpro gcpro1, gcpro2;
2493 int polling_stopped_here = 0;
2495 also_record = Qnil;
2497 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2498 before_command_key_count = this_command_key_count;
2499 before_command_echo_length = echo_length ();
2500 #endif
2501 c = Qnil;
2502 previous_echo_area_message = Qnil;
2504 GCPRO2 (c, previous_echo_area_message);
2506 retry:
2508 reread = 0;
2509 if (CONSP (Vunread_post_input_method_events))
2511 c = XCAR (Vunread_post_input_method_events);
2512 Vunread_post_input_method_events
2513 = XCDR (Vunread_post_input_method_events);
2515 /* Undo what read_char_x_menu_prompt did when it unread
2516 additional keys returned by Fx_popup_menu. */
2517 if (CONSP (c)
2518 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2519 && NILP (XCDR (c)))
2520 c = XCAR (c);
2522 reread = 1;
2523 goto reread_first;
2526 if (unread_command_char != -1)
2528 XSETINT (c, unread_command_char);
2529 unread_command_char = -1;
2531 reread = 1;
2532 goto reread_first;
2535 if (CONSP (Vunread_command_events))
2537 c = XCAR (Vunread_command_events);
2538 Vunread_command_events = XCDR (Vunread_command_events);
2540 reread = 1;
2542 /* Undo what sit-for did when it unread additional keys
2543 inside universal-argument. */
2545 if (CONSP (c)
2546 && EQ (XCAR (c), Qt))
2548 reread = 0;
2549 c = XCDR (c);
2552 /* Undo what read_char_x_menu_prompt did when it unread
2553 additional keys returned by Fx_popup_menu. */
2554 if (CONSP (c)
2555 && EQ (XCDR (c), Qdisabled)
2556 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2557 c = XCAR (c);
2559 /* If the queued event is something that used the mouse,
2560 set used_mouse_menu accordingly. */
2561 if (used_mouse_menu
2562 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2563 *used_mouse_menu = 1;
2565 goto reread_for_input_method;
2568 if (CONSP (Vunread_input_method_events))
2570 c = XCAR (Vunread_input_method_events);
2571 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2573 /* Undo what read_char_x_menu_prompt did when it unread
2574 additional keys returned by Fx_popup_menu. */
2575 if (CONSP (c)
2576 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2577 && NILP (XCDR (c)))
2578 c = XCAR (c);
2579 reread = 1;
2580 goto reread_for_input_method;
2583 this_command_key_count_reset = 0;
2585 if (!NILP (Vexecuting_kbd_macro))
2587 /* We set this to Qmacro; since that's not a frame, nobody will
2588 try to switch frames on us, and the selected window will
2589 remain unchanged.
2591 Since this event came from a macro, it would be misleading to
2592 leave internal_last_event_frame set to wherever the last
2593 real event came from. Normally, a switch-frame event selects
2594 internal_last_event_frame after each command is read, but
2595 events read from a macro should never cause a new frame to be
2596 selected. */
2597 Vlast_event_frame = internal_last_event_frame = Qmacro;
2599 /* Exit the macro if we are at the end.
2600 Also, some things replace the macro with t
2601 to force an early exit. */
2602 if (EQ (Vexecuting_kbd_macro, Qt)
2603 || executing_kbd_macro_index >= XFASTINT (Flength (Vexecuting_kbd_macro)))
2605 XSETINT (c, -1);
2606 goto exit;
2609 c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index));
2610 if (STRINGP (Vexecuting_kbd_macro)
2611 && (XINT (c) & 0x80) && (XUINT (c) <= 0xff))
2612 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2614 executing_kbd_macro_index++;
2616 goto from_macro;
2619 if (!NILP (unread_switch_frame))
2621 c = unread_switch_frame;
2622 unread_switch_frame = Qnil;
2624 /* This event should make it into this_command_keys, and get echoed
2625 again, so we do not set `reread'. */
2626 goto reread_first;
2629 /* if redisplay was requested */
2630 if (commandflag >= 0)
2632 /* If there is pending input, process any events which are not
2633 user-visible, such as X selection_request events. */
2634 if (input_pending
2635 || detect_input_pending_run_timers (0))
2636 swallow_events (0); /* may clear input_pending */
2638 /* Redisplay if no pending input. */
2639 while (!input_pending)
2641 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2642 redisplay_preserve_echo_area (5);
2643 else
2644 redisplay ();
2646 if (!input_pending)
2647 /* Normal case: no input arrived during redisplay. */
2648 break;
2650 /* Input arrived and pre-empted redisplay.
2651 Process any events which are not user-visible. */
2652 swallow_events (0);
2653 /* If that cleared input_pending, try again to redisplay. */
2657 /* Message turns off echoing unless more keystrokes turn it on again.
2659 The code in 20.x for the condition was
2661 1. echo_area_glyphs && *echo_area_glyphs
2662 2. && echo_area_glyphs != current_kboard->echobuf
2663 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2665 (1) means there's a current message displayed
2667 (2) means it's not the message from echoing from the current
2668 kboard.
2670 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2671 is set to a non-null value. This is done in read_char and it is
2672 set to echo_area_glyphs after a call to echo_char. That means
2673 ok_to_echo_at_next_pause is either null or
2674 current_kboard->echobuf with the appropriate current_kboard at
2675 that time.
2677 So, condition (3) means in clear text ok_to_echo_at_next_pause
2678 must be either null, or the current message isn't from echoing at
2679 all, or it's from echoing from a different kboard than the
2680 current one. */
2682 if (/* There currently is something in the echo area. */
2683 !NILP (echo_area_buffer[0])
2684 && (/* And it's either not from echoing. */
2685 !EQ (echo_area_buffer[0], echo_message_buffer)
2686 /* Or it's an echo from a different kboard. */
2687 || echo_kboard != current_kboard
2688 /* Or we explicitly allow overwriting whatever there is. */
2689 || ok_to_echo_at_next_pause == NULL))
2690 cancel_echoing ();
2691 else
2692 echo_dash ();
2694 /* Try reading a character via menu prompting in the minibuf.
2695 Try this before the sit-for, because the sit-for
2696 would do the wrong thing if we are supposed to do
2697 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2698 after a mouse event so don't try a minibuf menu. */
2699 c = Qnil;
2700 if (nmaps > 0 && INTERACTIVE
2701 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2702 /* Don't bring up a menu if we already have another event. */
2703 && NILP (Vunread_command_events)
2704 && unread_command_char < 0
2705 && !detect_input_pending_run_timers (0))
2707 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2708 if (! NILP (c))
2710 key_already_recorded = 1;
2711 goto non_reread_1;
2715 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2716 We will do that below, temporarily for short sections of code,
2717 when appropriate. local_getcjmp must be in effect
2718 around any call to sit_for or kbd_buffer_get_event;
2719 it *must not* be in effect when we call redisplay. */
2721 jmpcount = SPECPDL_INDEX ();
2722 if (_setjmp (local_getcjmp))
2724 /* We must have saved the outer value of getcjmp here,
2725 so restore it now. */
2726 restore_getcjmp (save_jump);
2727 unbind_to (jmpcount, Qnil);
2728 XSETINT (c, quit_char);
2729 internal_last_event_frame = selected_frame;
2730 Vlast_event_frame = internal_last_event_frame;
2731 /* If we report the quit char as an event,
2732 don't do so more than once. */
2733 if (!NILP (Vinhibit_quit))
2734 Vquit_flag = Qnil;
2736 #ifdef MULTI_KBOARD
2738 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2739 if (kb != current_kboard)
2741 Lisp_Object link = kb->kbd_queue;
2742 /* We shouldn't get here if we were in single-kboard mode! */
2743 if (single_kboard)
2744 abort ();
2745 if (CONSP (link))
2747 while (CONSP (XCDR (link)))
2748 link = XCDR (link);
2749 if (!NILP (XCDR (link)))
2750 abort ();
2752 if (!CONSP (link))
2753 kb->kbd_queue = Fcons (c, Qnil);
2754 else
2755 XSETCDR (link, Fcons (c, Qnil));
2756 kb->kbd_queue_has_data = 1;
2757 current_kboard = kb;
2758 /* This is going to exit from read_char
2759 so we had better get rid of this frame's stuff. */
2760 UNGCPRO;
2761 longjmp (wrong_kboard_jmpbuf, 1);
2764 #endif
2765 goto non_reread;
2768 /* Start idle timers if no time limit is supplied. We don't do it
2769 if a time limit is supplied to avoid an infinite recursion in the
2770 situation where an idle timer calls `sit-for'. */
2772 if (!end_time)
2773 timer_start_idle ();
2775 /* If in middle of key sequence and minibuffer not active,
2776 start echoing if enough time elapses. */
2778 if (minibuf_level == 0
2779 && !end_time
2780 && !current_kboard->immediate_echo
2781 && this_command_key_count > 0
2782 && ! noninteractive
2783 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2784 && NILP (Fzerop (Vecho_keystrokes))
2785 && (/* No message. */
2786 NILP (echo_area_buffer[0])
2787 /* Or empty message. */
2788 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2789 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2790 /* Or already echoing from same kboard. */
2791 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2792 /* Or not echoing before and echoing allowed. */
2793 || (!echo_kboard && ok_to_echo_at_next_pause)))
2795 /* After a mouse event, start echoing right away.
2796 This is because we are probably about to display a menu,
2797 and we don't want to delay before doing so. */
2798 if (EVENT_HAS_PARAMETERS (prev_event))
2799 echo_now ();
2800 else
2802 Lisp_Object tem0;
2804 save_getcjmp (save_jump);
2805 restore_getcjmp (local_getcjmp);
2806 tem0 = sit_for (Vecho_keystrokes, 1, 1);
2807 restore_getcjmp (save_jump);
2808 if (EQ (tem0, Qt)
2809 && ! CONSP (Vunread_command_events))
2810 echo_now ();
2814 /* Maybe auto save due to number of keystrokes. */
2816 if (commandflag != 0
2817 && auto_save_interval > 0
2818 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2819 && !detect_input_pending_run_timers (0))
2821 Fdo_auto_save (Qnil, Qnil);
2822 /* Hooks can actually change some buffers in auto save. */
2823 redisplay ();
2826 /* Try reading using an X menu.
2827 This is never confused with reading using the minibuf
2828 because the recursive call of read_char in read_char_minibuf_menu_prompt
2829 does not pass on any keymaps. */
2831 if (nmaps > 0 && INTERACTIVE
2832 && !NILP (prev_event)
2833 && EVENT_HAS_PARAMETERS (prev_event)
2834 && !EQ (XCAR (prev_event), Qmenu_bar)
2835 && !EQ (XCAR (prev_event), Qtool_bar)
2836 /* Don't bring up a menu if we already have another event. */
2837 && NILP (Vunread_command_events)
2838 && unread_command_char < 0)
2840 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2842 /* Now that we have read an event, Emacs is not idle. */
2843 if (!end_time)
2844 timer_stop_idle ();
2846 goto exit;
2849 /* Maybe autosave and/or garbage collect due to idleness. */
2851 if (INTERACTIVE && NILP (c))
2853 int delay_level, buffer_size;
2855 /* Slow down auto saves logarithmically in size of current buffer,
2856 and garbage collect while we're at it. */
2857 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2858 last_non_minibuf_size = Z - BEG;
2859 buffer_size = (last_non_minibuf_size >> 8) + 1;
2860 delay_level = 0;
2861 while (buffer_size > 64)
2862 delay_level++, buffer_size -= buffer_size >> 2;
2863 if (delay_level < 4) delay_level = 4;
2864 /* delay_level is 4 for files under around 50k, 7 at 100k,
2865 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2867 /* Auto save if enough time goes by without input. */
2868 if (commandflag != 0
2869 && num_nonmacro_input_events > last_auto_save
2870 && INTEGERP (Vauto_save_timeout)
2871 && XINT (Vauto_save_timeout) > 0)
2873 Lisp_Object tem0;
2874 int timeout = delay_level * XFASTINT (Vauto_save_timeout) / 4;
2876 save_getcjmp (save_jump);
2877 restore_getcjmp (local_getcjmp);
2878 tem0 = sit_for (make_number (timeout), 1, 1);
2879 restore_getcjmp (save_jump);
2881 if (EQ (tem0, Qt)
2882 && ! CONSP (Vunread_command_events))
2884 Fdo_auto_save (Qnil, Qnil);
2886 /* If we have auto-saved and there is still no input
2887 available, garbage collect if there has been enough
2888 consing going on to make it worthwhile. */
2889 if (!detect_input_pending_run_timers (0)
2890 && consing_since_gc > gc_cons_threshold / 2)
2891 Fgarbage_collect ();
2893 redisplay ();
2898 /* If this has become non-nil here, it has been set by a timer
2899 or sentinel or filter. */
2900 if (CONSP (Vunread_command_events))
2902 c = XCAR (Vunread_command_events);
2903 Vunread_command_events = XCDR (Vunread_command_events);
2906 /* Read something from current KBOARD's side queue, if possible. */
2908 if (NILP (c))
2910 if (current_kboard->kbd_queue_has_data)
2912 if (!CONSP (current_kboard->kbd_queue))
2913 abort ();
2914 c = XCAR (current_kboard->kbd_queue);
2915 current_kboard->kbd_queue
2916 = XCDR (current_kboard->kbd_queue);
2917 if (NILP (current_kboard->kbd_queue))
2918 current_kboard->kbd_queue_has_data = 0;
2919 input_pending = readable_events (0);
2920 if (EVENT_HAS_PARAMETERS (c)
2921 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2922 internal_last_event_frame = XCAR (XCDR (c));
2923 Vlast_event_frame = internal_last_event_frame;
2927 #ifdef MULTI_KBOARD
2928 /* If current_kboard's side queue is empty check the other kboards.
2929 If one of them has data that we have not yet seen here,
2930 switch to it and process the data waiting for it.
2932 Note: if the events queued up for another kboard
2933 have already been seen here, and therefore are not a complete command,
2934 the kbd_queue_has_data field is 0, so we skip that kboard here.
2935 That's to avoid an infinite loop switching between kboards here. */
2936 if (NILP (c) && !single_kboard)
2938 KBOARD *kb;
2939 for (kb = all_kboards; kb; kb = kb->next_kboard)
2940 if (kb->kbd_queue_has_data)
2942 current_kboard = kb;
2943 /* This is going to exit from read_char
2944 so we had better get rid of this frame's stuff. */
2945 UNGCPRO;
2946 longjmp (wrong_kboard_jmpbuf, 1);
2949 #endif
2951 wrong_kboard:
2953 STOP_POLLING;
2955 /* Finally, we read from the main queue,
2956 and if that gives us something we can't use yet, we put it on the
2957 appropriate side queue and try again. */
2959 if (NILP (c))
2961 KBOARD *kb;
2963 if (end_time)
2965 EMACS_TIME now;
2966 EMACS_GET_TIME (now);
2967 if (EMACS_TIME_GE (now, *end_time))
2968 goto exit;
2971 /* Actually read a character, waiting if necessary. */
2972 save_getcjmp (save_jump);
2973 restore_getcjmp (local_getcjmp);
2974 if (!end_time)
2975 timer_start_idle ();
2976 c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time);
2977 restore_getcjmp (save_jump);
2979 #ifdef MULTI_KBOARD
2980 if (! NILP (c) && (kb != current_kboard))
2982 Lisp_Object link = kb->kbd_queue;
2983 if (CONSP (link))
2985 while (CONSP (XCDR (link)))
2986 link = XCDR (link);
2987 if (!NILP (XCDR (link)))
2988 abort ();
2990 if (!CONSP (link))
2991 kb->kbd_queue = Fcons (c, Qnil);
2992 else
2993 XSETCDR (link, Fcons (c, Qnil));
2994 kb->kbd_queue_has_data = 1;
2995 c = Qnil;
2996 if (single_kboard)
2997 goto wrong_kboard;
2998 current_kboard = kb;
2999 /* This is going to exit from read_char
3000 so we had better get rid of this frame's stuff. */
3001 UNGCPRO;
3002 longjmp (wrong_kboard_jmpbuf, 1);
3004 #endif
3007 /* Terminate Emacs in batch mode if at eof. */
3008 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
3009 Fkill_emacs (make_number (1));
3011 if (INTEGERP (c))
3013 /* Add in any extra modifiers, where appropriate. */
3014 if ((extra_keyboard_modifiers & CHAR_CTL)
3015 || ((extra_keyboard_modifiers & 0177) < ' '
3016 && (extra_keyboard_modifiers & 0177) != 0))
3017 XSETINT (c, make_ctrl_char (XINT (c)));
3019 /* Transfer any other modifier bits directly from
3020 extra_keyboard_modifiers to c. Ignore the actual character code
3021 in the low 16 bits of extra_keyboard_modifiers. */
3022 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
3025 non_reread:
3027 if (!end_time)
3028 timer_stop_idle ();
3029 RESUME_POLLING;
3031 if (NILP (c))
3033 if (commandflag >= 0
3034 && !input_pending && !detect_input_pending_run_timers (0))
3035 redisplay ();
3037 goto wrong_kboard;
3040 non_reread_1:
3042 /* Buffer switch events are only for internal wakeups
3043 so don't show them to the user.
3044 Also, don't record a key if we already did. */
3045 if (BUFFERP (c) || key_already_recorded)
3046 goto exit;
3048 /* Process special events within read_char
3049 and loop around to read another event. */
3050 save = Vquit_flag;
3051 Vquit_flag = Qnil;
3052 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
3053 Vquit_flag = save;
3055 if (!NILP (tem))
3057 int was_locked = single_kboard;
3059 last_input_char = c;
3060 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
3062 if (CONSP (c) && EQ (XCAR (c), Qselect_window) && !end_time)
3063 /* We stopped being idle for this event; undo that. This
3064 prevents automatic window selection (under
3065 mouse_autoselect_window from acting as a real input event, for
3066 example banishing the mouse under mouse-avoidance-mode. */
3067 timer_resume_idle ();
3069 /* Resume allowing input from any kboard, if that was true before. */
3070 if (!was_locked)
3071 any_kboard_state ();
3073 goto retry;
3076 /* Handle things that only apply to characters. */
3077 if (INTEGERP (c))
3079 /* If kbd_buffer_get_event gave us an EOF, return that. */
3080 if (XINT (c) == -1)
3081 goto exit;
3083 if ((STRINGP (Vkeyboard_translate_table)
3084 && SCHARS (Vkeyboard_translate_table) > (unsigned) XFASTINT (c))
3085 || (VECTORP (Vkeyboard_translate_table)
3086 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
3087 || (CHAR_TABLE_P (Vkeyboard_translate_table)
3088 && CHAR_VALID_P (XINT (c), 0)))
3090 Lisp_Object d;
3091 d = Faref (Vkeyboard_translate_table, c);
3092 /* nil in keyboard-translate-table means no translation. */
3093 if (!NILP (d))
3094 c = d;
3098 /* If this event is a mouse click in the menu bar,
3099 return just menu-bar for now. Modify the mouse click event
3100 so we won't do this twice, then queue it up. */
3101 if (EVENT_HAS_PARAMETERS (c)
3102 && CONSP (XCDR (c))
3103 && CONSP (EVENT_START (c))
3104 && CONSP (XCDR (EVENT_START (c))))
3106 Lisp_Object posn;
3108 posn = POSN_POSN (EVENT_START (c));
3109 /* Handle menu-bar events:
3110 insert the dummy prefix event `menu-bar'. */
3111 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
3113 /* Change menu-bar to (menu-bar) as the event "position". */
3114 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
3116 also_record = c;
3117 Vunread_command_events = Fcons (c, Vunread_command_events);
3118 c = posn;
3122 /* Store these characters into recent_keys, the dribble file if any,
3123 and the keyboard macro being defined, if any. */
3124 record_char (c);
3125 if (! NILP (also_record))
3126 record_char (also_record);
3128 /* Wipe the echo area.
3129 But first, if we are about to use an input method,
3130 save the echo area contents for it to refer to. */
3131 if (INTEGERP (c)
3132 && ! NILP (Vinput_method_function)
3133 && (unsigned) XINT (c) >= ' '
3134 && (unsigned) XINT (c) != 127
3135 && (unsigned) XINT (c) < 256)
3137 previous_echo_area_message = Fcurrent_message ();
3138 Vinput_method_previous_message = previous_echo_area_message;
3141 /* Now wipe the echo area, except for help events which do their
3142 own stuff with the echo area. */
3143 if (!CONSP (c)
3144 || (!(EQ (Qhelp_echo, XCAR (c)))
3145 && !(EQ (Qswitch_frame, XCAR (c)))))
3147 if (!NILP (echo_area_buffer[0]))
3148 safe_run_hooks (Qecho_area_clear_hook);
3149 clear_message (1, 0);
3152 reread_for_input_method:
3153 from_macro:
3154 /* Pass this to the input method, if appropriate. */
3155 if (INTEGERP (c)
3156 && ! NILP (Vinput_method_function)
3157 /* Don't run the input method within a key sequence,
3158 after the first event of the key sequence. */
3159 && NILP (prev_event)
3160 && (unsigned) XINT (c) >= ' '
3161 && (unsigned) XINT (c) != 127
3162 && (unsigned) XINT (c) < 256)
3164 Lisp_Object keys;
3165 int key_count, key_count_reset;
3166 struct gcpro gcpro1;
3167 int count = SPECPDL_INDEX ();
3169 /* Save the echo status. */
3170 int saved_immediate_echo = current_kboard->immediate_echo;
3171 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
3172 Lisp_Object saved_echo_string = current_kboard->echo_string;
3173 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
3175 #if 0
3176 if (before_command_restore_flag)
3178 this_command_key_count = before_command_key_count_1;
3179 if (this_command_key_count < this_single_command_key_start)
3180 this_single_command_key_start = this_command_key_count;
3181 echo_truncate (before_command_echo_length_1);
3182 before_command_restore_flag = 0;
3184 #endif
3186 /* Save the this_command_keys status. */
3187 key_count = this_command_key_count;
3188 key_count_reset = this_command_key_count_reset;
3190 if (key_count > 0)
3191 keys = Fcopy_sequence (this_command_keys);
3192 else
3193 keys = Qnil;
3194 GCPRO1 (keys);
3196 /* Clear out this_command_keys. */
3197 this_command_key_count = 0;
3198 this_command_key_count_reset = 0;
3200 /* Now wipe the echo area. */
3201 if (!NILP (echo_area_buffer[0]))
3202 safe_run_hooks (Qecho_area_clear_hook);
3203 clear_message (1, 0);
3204 echo_truncate (0);
3206 /* If we are not reading a key sequence,
3207 never use the echo area. */
3208 if (maps == 0)
3210 specbind (Qinput_method_use_echo_area, Qt);
3213 /* Call the input method. */
3214 tem = call1 (Vinput_method_function, c);
3216 tem = unbind_to (count, tem);
3218 /* Restore the saved echoing state
3219 and this_command_keys state. */
3220 this_command_key_count = key_count;
3221 this_command_key_count_reset = key_count_reset;
3222 if (key_count > 0)
3223 this_command_keys = keys;
3225 cancel_echoing ();
3226 ok_to_echo_at_next_pause = saved_ok_to_echo;
3227 current_kboard->echo_string = saved_echo_string;
3228 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3229 if (saved_immediate_echo)
3230 echo_now ();
3232 UNGCPRO;
3234 /* The input method can return no events. */
3235 if (! CONSP (tem))
3237 /* Bring back the previous message, if any. */
3238 if (! NILP (previous_echo_area_message))
3239 message_with_string ("%s", previous_echo_area_message, 0);
3240 goto retry;
3242 /* It returned one event or more. */
3243 c = XCAR (tem);
3244 Vunread_post_input_method_events
3245 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3248 reread_first:
3250 /* Display help if not echoing. */
3251 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3253 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3254 Lisp_Object help, object, position, window, tem;
3256 tem = Fcdr (XCDR (c));
3257 help = Fcar (tem);
3258 tem = Fcdr (tem);
3259 window = Fcar (tem);
3260 tem = Fcdr (tem);
3261 object = Fcar (tem);
3262 tem = Fcdr (tem);
3263 position = Fcar (tem);
3265 show_help_echo (help, window, object, position, 0);
3267 /* We stopped being idle for this event; undo that. */
3268 if (!end_time)
3269 timer_resume_idle ();
3270 goto retry;
3273 if ((! reread || this_command_key_count == 0
3274 || this_command_key_count_reset)
3275 && !end_time)
3278 /* Don't echo mouse motion events. */
3279 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3280 && NILP (Fzerop (Vecho_keystrokes))
3281 && ! (EVENT_HAS_PARAMETERS (c)
3282 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3284 echo_char (c);
3285 if (! NILP (also_record))
3286 echo_char (also_record);
3287 /* Once we reread a character, echoing can happen
3288 the next time we pause to read a new one. */
3289 ok_to_echo_at_next_pause = current_kboard;
3292 /* Record this character as part of the current key. */
3293 add_command_key (c);
3294 if (! NILP (also_record))
3295 add_command_key (also_record);
3298 last_input_char = c;
3299 num_input_events++;
3301 /* Process the help character specially if enabled */
3302 if (!NILP (Vhelp_form) && help_char_p (c))
3304 Lisp_Object tem0;
3305 count = SPECPDL_INDEX ();
3307 record_unwind_protect (Fset_window_configuration,
3308 Fcurrent_window_configuration (Qnil));
3310 tem0 = Feval (Vhelp_form);
3311 if (STRINGP (tem0))
3312 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3314 cancel_echoing ();
3316 c = read_char (0, 0, 0, Qnil, 0, NULL);
3317 while (BUFFERP (c));
3318 /* Remove the help from the frame */
3319 unbind_to (count, Qnil);
3321 redisplay ();
3322 if (EQ (c, make_number (040)))
3324 cancel_echoing ();
3326 c = read_char (0, 0, 0, Qnil, 0, NULL);
3327 while (BUFFERP (c));
3331 exit:
3332 RESUME_POLLING;
3333 RETURN_UNGCPRO (c);
3336 /* Record a key that came from a mouse menu.
3337 Record it for echoing, for this-command-keys, and so on. */
3339 static void
3340 record_menu_key (c)
3341 Lisp_Object c;
3343 /* Wipe the echo area. */
3344 clear_message (1, 0);
3346 record_char (c);
3348 #if 0
3349 before_command_key_count = this_command_key_count;
3350 before_command_echo_length = echo_length ();
3351 #endif
3353 /* Don't echo mouse motion events. */
3354 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3355 && NILP (Fzerop (Vecho_keystrokes)))
3357 echo_char (c);
3359 /* Once we reread a character, echoing can happen
3360 the next time we pause to read a new one. */
3361 ok_to_echo_at_next_pause = 0;
3364 /* Record this character as part of the current key. */
3365 add_command_key (c);
3367 /* Re-reading in the middle of a command */
3368 last_input_char = c;
3369 num_input_events++;
3372 /* Return 1 if should recognize C as "the help character". */
3375 help_char_p (c)
3376 Lisp_Object c;
3378 Lisp_Object tail;
3380 if (EQ (c, Vhelp_char))
3381 return 1;
3382 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3383 if (EQ (c, XCAR (tail)))
3384 return 1;
3385 return 0;
3388 /* Record the input event C in various ways. */
3390 static void
3391 record_char (c)
3392 Lisp_Object c;
3394 int recorded = 0;
3396 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3398 /* To avoid filling recent_keys with help-echo and mouse-movement
3399 events, we filter out repeated help-echo events, only store the
3400 first and last in a series of mouse-movement events, and don't
3401 store repeated help-echo events which are only separated by
3402 mouse-movement events. */
3404 Lisp_Object ev1, ev2, ev3;
3405 int ix1, ix2, ix3;
3407 if ((ix1 = recent_keys_index - 1) < 0)
3408 ix1 = NUM_RECENT_KEYS - 1;
3409 ev1 = AREF (recent_keys, ix1);
3411 if ((ix2 = ix1 - 1) < 0)
3412 ix2 = NUM_RECENT_KEYS - 1;
3413 ev2 = AREF (recent_keys, ix2);
3415 if ((ix3 = ix2 - 1) < 0)
3416 ix3 = NUM_RECENT_KEYS - 1;
3417 ev3 = AREF (recent_keys, ix3);
3419 if (EQ (XCAR (c), Qhelp_echo))
3421 /* Don't record `help-echo' in recent_keys unless it shows some help
3422 message, and a different help than the previously recorded
3423 event. */
3424 Lisp_Object help, last_help;
3426 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3427 if (!STRINGP (help))
3428 recorded = 1;
3429 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3430 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3431 recorded = 1;
3432 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3433 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3434 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3435 recorded = -1;
3436 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3437 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3438 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3439 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3440 recorded = -2;
3442 else if (EQ (XCAR (c), Qmouse_movement))
3444 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3445 So additional mouse movement events replace the last element. */
3446 Lisp_Object last_window, window;
3448 window = Fcar_safe (Fcar_safe (XCDR (c)));
3449 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3450 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3451 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3452 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3454 ASET (recent_keys, ix1, c);
3455 recorded = 1;
3459 else
3460 store_kbd_macro_char (c);
3462 if (!recorded)
3464 total_keys++;
3465 ASET (recent_keys, recent_keys_index, c);
3466 if (++recent_keys_index >= NUM_RECENT_KEYS)
3467 recent_keys_index = 0;
3469 else if (recorded < 0)
3471 /* We need to remove one or two events from recent_keys.
3472 To do this, we simply put nil at those events and move the
3473 recent_keys_index backwards over those events. Usually,
3474 users will never see those nil events, as they will be
3475 overwritten by the command keys entered to see recent_keys
3476 (e.g. C-h l). */
3478 while (recorded++ < 0 && total_keys > 0)
3480 if (total_keys < NUM_RECENT_KEYS)
3481 total_keys--;
3482 if (--recent_keys_index < 0)
3483 recent_keys_index = NUM_RECENT_KEYS - 1;
3484 ASET (recent_keys, recent_keys_index, Qnil);
3488 num_nonmacro_input_events++;
3490 /* Write c to the dribble file. If c is a lispy event, write
3491 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3492 If you, dear reader, have a better idea, you've got the source. :-) */
3493 if (dribble)
3495 if (INTEGERP (c))
3497 if (XUINT (c) < 0x100)
3498 putc (XINT (c), dribble);
3499 else
3500 fprintf (dribble, " 0x%x", (int) XUINT (c));
3502 else
3504 Lisp_Object dribblee;
3506 /* If it's a structured event, take the event header. */
3507 dribblee = EVENT_HEAD (c);
3509 if (SYMBOLP (dribblee))
3511 putc ('<', dribble);
3512 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3513 SBYTES (SYMBOL_NAME (dribblee)),
3514 dribble);
3515 putc ('>', dribble);
3519 fflush (dribble);
3523 Lisp_Object
3524 print_help (object)
3525 Lisp_Object object;
3527 struct buffer *old = current_buffer;
3528 Fprinc (object, Qnil);
3529 set_buffer_internal (XBUFFER (Vstandard_output));
3530 call0 (intern ("help-mode"));
3531 set_buffer_internal (old);
3532 return Qnil;
3535 /* Copy out or in the info on where C-g should throw to.
3536 This is used when running Lisp code from within get_char,
3537 in case get_char is called recursively.
3538 See read_process_output. */
3540 static void
3541 save_getcjmp (temp)
3542 jmp_buf temp;
3544 bcopy (getcjmp, temp, sizeof getcjmp);
3547 static void
3548 restore_getcjmp (temp)
3549 jmp_buf temp;
3551 bcopy (temp, getcjmp, sizeof getcjmp);
3554 /* Low level keyboard/mouse input.
3555 kbd_buffer_store_event places events in kbd_buffer, and
3556 kbd_buffer_get_event retrieves them. */
3558 /* Return true iff there are any events in the queue that read-char
3559 would return. If this returns false, a read-char would block. */
3560 static int
3561 readable_events (flags)
3562 int flags;
3564 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3565 timer_check (1);
3567 /* If the buffer contains only FOCUS_IN_EVENT events, and
3568 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3569 if (kbd_fetch_ptr != kbd_store_ptr)
3571 if (flags & (READABLE_EVENTS_FILTER_EVENTS
3572 #ifdef USE_TOOLKIT_SCROLL_BARS
3573 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3574 #endif
3577 struct input_event *event;
3579 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3580 ? kbd_fetch_ptr
3581 : kbd_buffer);
3585 if (!(
3586 #ifdef USE_TOOLKIT_SCROLL_BARS
3587 (flags & READABLE_EVENTS_FILTER_EVENTS) &&
3588 #endif
3589 event->kind == FOCUS_IN_EVENT)
3590 #ifdef USE_TOOLKIT_SCROLL_BARS
3591 && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3592 && event->kind == SCROLL_BAR_CLICK_EVENT
3593 && event->part == scroll_bar_handle
3594 && event->modifiers == 0)
3595 #endif
3597 return 1;
3598 event++;
3599 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3600 event = kbd_buffer;
3602 while (event != kbd_store_ptr);
3604 else
3605 return 1;
3608 #ifdef HAVE_MOUSE
3609 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3610 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3611 return 1;
3612 #endif
3613 if (single_kboard)
3615 if (current_kboard->kbd_queue_has_data)
3616 return 1;
3618 else
3620 KBOARD *kb;
3621 for (kb = all_kboards; kb; kb = kb->next_kboard)
3622 if (kb->kbd_queue_has_data)
3623 return 1;
3625 return 0;
3628 /* Set this for debugging, to have a way to get out */
3629 int stop_character;
3631 #ifdef MULTI_KBOARD
3632 static KBOARD *
3633 event_to_kboard (event)
3634 struct input_event *event;
3636 Lisp_Object frame;
3637 frame = event->frame_or_window;
3638 if (CONSP (frame))
3639 frame = XCAR (frame);
3640 else if (WINDOWP (frame))
3641 frame = WINDOW_FRAME (XWINDOW (frame));
3643 /* There are still some events that don't set this field.
3644 For now, just ignore the problem.
3645 Also ignore dead frames here. */
3646 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3647 return 0;
3648 else
3649 return FRAME_KBOARD (XFRAME (frame));
3651 #endif
3654 Lisp_Object Vthrow_on_input;
3656 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3658 void
3659 kbd_buffer_store_event (event)
3660 register struct input_event *event;
3662 kbd_buffer_store_event_hold (event, 0);
3665 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3667 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3668 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3669 Else, if EVENT is a quit event, store the quit event
3670 in HOLD_QUIT, and return (thus ignoring further events).
3672 This is used in read_avail_input to postpone the processing
3673 of the quit event until all subsequent input events have been
3674 parsed (and discarded).
3677 void
3678 kbd_buffer_store_event_hold (event, hold_quit)
3679 register struct input_event *event;
3680 struct input_event *hold_quit;
3682 if (event->kind == NO_EVENT)
3683 abort ();
3685 if (hold_quit && hold_quit->kind != NO_EVENT)
3686 return;
3688 if (event->kind == ASCII_KEYSTROKE_EVENT)
3690 register int c = event->code & 0377;
3692 if (event->modifiers & ctrl_modifier)
3693 c = make_ctrl_char (c);
3695 c |= (event->modifiers
3696 & (meta_modifier | alt_modifier
3697 | hyper_modifier | super_modifier));
3699 if (c == quit_char)
3701 #ifdef MULTI_KBOARD
3702 KBOARD *kb;
3703 struct input_event *sp;
3705 if (single_kboard
3706 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3707 kb != current_kboard))
3709 kb->kbd_queue
3710 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3711 Fcons (make_number (c), Qnil));
3712 kb->kbd_queue_has_data = 1;
3713 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3715 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3716 sp = kbd_buffer;
3718 if (event_to_kboard (sp) == kb)
3720 sp->kind = NO_EVENT;
3721 sp->frame_or_window = Qnil;
3722 sp->arg = Qnil;
3725 return;
3727 #endif
3729 if (hold_quit)
3731 bcopy (event, (char *) hold_quit, sizeof (*event));
3732 return;
3735 /* If this results in a quit_char being returned to Emacs as
3736 input, set Vlast_event_frame properly. If this doesn't
3737 get returned to Emacs as an event, the next event read
3738 will set Vlast_event_frame again, so this is safe to do. */
3740 Lisp_Object focus;
3742 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3743 if (NILP (focus))
3744 focus = event->frame_or_window;
3745 internal_last_event_frame = focus;
3746 Vlast_event_frame = focus;
3749 last_event_timestamp = event->timestamp;
3750 interrupt_signal (0 /* dummy */);
3751 return;
3754 if (c && c == stop_character)
3756 sys_suspend ();
3757 return;
3760 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3761 Just ignore the second one. */
3762 else if (event->kind == BUFFER_SWITCH_EVENT
3763 && kbd_fetch_ptr != kbd_store_ptr
3764 && ((kbd_store_ptr == kbd_buffer
3765 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3766 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3767 return;
3769 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3770 kbd_store_ptr = kbd_buffer;
3772 /* Don't let the very last slot in the buffer become full,
3773 since that would make the two pointers equal,
3774 and that is indistinguishable from an empty buffer.
3775 Discard the event if it would fill the last slot. */
3776 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3778 *kbd_store_ptr = *event;
3779 ++kbd_store_ptr;
3782 /* If we're inside while-no-input, and this event qualifies
3783 as input, set quit-flag to cause an interrupt. */
3784 if (!NILP (Vthrow_on_input)
3785 && event->kind != FOCUS_IN_EVENT
3786 && event->kind != HELP_EVENT
3787 && event->kind != DEICONIFY_EVENT
3788 && !(event->kind == USER_SIGNAL_EVENT && event->code == 0))
3790 Vquit_flag = Vthrow_on_input;
3791 /* If we're inside a function that wants immediate quits,
3792 do it now. */
3793 if (immediate_quit && NILP (Vinhibit_quit))
3795 immediate_quit = 0;
3796 sigfree ();
3797 QUIT;
3803 /* Put an input event back in the head of the event queue. */
3805 void
3806 kbd_buffer_unget_event (event)
3807 register struct input_event *event;
3809 if (kbd_fetch_ptr == kbd_buffer)
3810 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3812 /* Don't let the very last slot in the buffer become full, */
3813 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3815 --kbd_fetch_ptr;
3816 *kbd_fetch_ptr = *event;
3821 /* Generate HELP_EVENT input_events in BUFP which has room for
3822 SIZE events. If there's not enough room in BUFP, ignore this
3823 event.
3825 HELP is the help form.
3827 FRAME is the frame on which the help is generated. OBJECT is the
3828 Lisp object where the help was found (a buffer, a string, an
3829 overlay, or nil if neither from a string nor from a buffer. POS is
3830 the position within OBJECT where the help was found.
3832 Value is the number of input_events generated. */
3834 void
3835 gen_help_event (help, frame, window, object, pos)
3836 Lisp_Object help, frame, object, window;
3837 int pos;
3839 struct input_event event;
3841 EVENT_INIT (event);
3843 event.kind = HELP_EVENT;
3844 event.frame_or_window = frame;
3845 event.arg = object;
3846 event.x = WINDOWP (window) ? window : frame;
3847 event.y = help;
3848 event.code = pos;
3849 kbd_buffer_store_event (&event);
3853 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3855 void
3856 kbd_buffer_store_help_event (frame, help)
3857 Lisp_Object frame, help;
3859 struct input_event event;
3861 event.kind = HELP_EVENT;
3862 event.frame_or_window = frame;
3863 event.arg = Qnil;
3864 event.x = Qnil;
3865 event.y = help;
3866 event.code = 0;
3867 kbd_buffer_store_event (&event);
3871 /* Discard any mouse events in the event buffer by setting them to
3872 NO_EVENT. */
3873 void
3874 discard_mouse_events ()
3876 struct input_event *sp;
3877 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3879 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3880 sp = kbd_buffer;
3882 if (sp->kind == MOUSE_CLICK_EVENT
3883 || sp->kind == WHEEL_EVENT
3884 #ifdef WINDOWSNT
3885 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
3886 #endif
3887 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3889 sp->kind = NO_EVENT;
3895 /* Return non-zero if there are any real events waiting in the event
3896 buffer, not counting `NO_EVENT's.
3898 If DISCARD is non-zero, discard NO_EVENT events at the front of
3899 the input queue, possibly leaving the input queue empty if there
3900 are no real input events. */
3903 kbd_buffer_events_waiting (discard)
3904 int discard;
3906 struct input_event *sp;
3908 for (sp = kbd_fetch_ptr;
3909 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3910 ++sp)
3912 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3913 sp = kbd_buffer;
3916 if (discard)
3917 kbd_fetch_ptr = sp;
3919 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3923 /* Clear input event EVENT. */
3925 static INLINE void
3926 clear_event (event)
3927 struct input_event *event;
3929 event->kind = NO_EVENT;
3933 /* Read one event from the event buffer, waiting if necessary.
3934 The value is a Lisp object representing the event.
3935 The value is nil for an event that should be ignored,
3936 or that was handled here.
3937 We always read and discard one event. */
3939 static Lisp_Object
3940 kbd_buffer_get_event (kbp, used_mouse_menu, end_time)
3941 KBOARD **kbp;
3942 int *used_mouse_menu;
3943 EMACS_TIME *end_time;
3945 register int c;
3946 Lisp_Object obj;
3948 if (noninteractive)
3950 c = getchar ();
3951 XSETINT (obj, c);
3952 *kbp = current_kboard;
3953 return obj;
3956 /* Wait until there is input available. */
3957 for (;;)
3959 if (kbd_fetch_ptr != kbd_store_ptr)
3960 break;
3961 #ifdef HAVE_MOUSE
3962 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3963 break;
3964 #endif
3966 /* If the quit flag is set, then read_char will return
3967 quit_char, so that counts as "available input." */
3968 if (!NILP (Vquit_flag))
3969 quit_throw_to_read_char ();
3971 /* One way or another, wait until input is available; then, if
3972 interrupt handlers have not read it, read it now. */
3974 #ifdef OLDVMS
3975 wait_for_kbd_input ();
3976 #else
3977 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3978 #ifdef SIGIO
3979 gobble_input (0);
3980 #endif /* SIGIO */
3981 if (kbd_fetch_ptr != kbd_store_ptr)
3982 break;
3983 #ifdef HAVE_MOUSE
3984 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3985 break;
3986 #endif
3987 if (end_time)
3989 EMACS_TIME duration;
3990 EMACS_GET_TIME (duration);
3991 if (EMACS_TIME_GE (duration, *end_time))
3992 return Qnil; /* finished waiting */
3993 else
3995 EMACS_SUB_TIME (duration, *end_time, duration);
3996 wait_reading_process_output (EMACS_SECS (duration),
3997 EMACS_USECS (duration),
3998 -1, 1, Qnil, NULL, 0);
4001 else
4002 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0);
4004 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
4005 /* Pass 1 for EXPECT since we just waited to have input. */
4006 read_avail_input (1);
4007 #endif /* not VMS */
4010 if (CONSP (Vunread_command_events))
4012 Lisp_Object first;
4013 first = XCAR (Vunread_command_events);
4014 Vunread_command_events = XCDR (Vunread_command_events);
4015 *kbp = current_kboard;
4016 return first;
4019 /* At this point, we know that there is a readable event available
4020 somewhere. If the event queue is empty, then there must be a
4021 mouse movement enabled and available. */
4022 if (kbd_fetch_ptr != kbd_store_ptr)
4024 struct input_event *event;
4026 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4027 ? kbd_fetch_ptr
4028 : kbd_buffer);
4030 last_event_timestamp = event->timestamp;
4032 #ifdef MULTI_KBOARD
4033 *kbp = event_to_kboard (event);
4034 if (*kbp == 0)
4035 *kbp = current_kboard; /* Better than returning null ptr? */
4036 #else
4037 *kbp = &the_only_kboard;
4038 #endif
4040 obj = Qnil;
4042 /* These two kinds of events get special handling
4043 and don't actually appear to the command loop.
4044 We return nil for them. */
4045 if (event->kind == SELECTION_REQUEST_EVENT
4046 || event->kind == SELECTION_CLEAR_EVENT)
4048 #ifdef HAVE_X11
4049 struct input_event copy;
4051 /* Remove it from the buffer before processing it,
4052 since otherwise swallow_events will see it
4053 and process it again. */
4054 copy = *event;
4055 kbd_fetch_ptr = event + 1;
4056 input_pending = readable_events (0);
4057 x_handle_selection_event (&copy);
4058 #else
4059 /* We're getting selection request events, but we don't have
4060 a window system. */
4061 abort ();
4062 #endif
4065 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4066 else if (event->kind == DELETE_WINDOW_EVENT)
4068 /* Make an event (delete-frame (FRAME)). */
4069 obj = Fcons (event->frame_or_window, Qnil);
4070 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
4071 kbd_fetch_ptr = event + 1;
4073 #endif
4074 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4075 else if (event->kind == ICONIFY_EVENT)
4077 /* Make an event (iconify-frame (FRAME)). */
4078 obj = Fcons (event->frame_or_window, Qnil);
4079 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
4080 kbd_fetch_ptr = event + 1;
4082 else if (event->kind == DEICONIFY_EVENT)
4084 /* Make an event (make-frame-visible (FRAME)). */
4085 obj = Fcons (event->frame_or_window, Qnil);
4086 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
4087 kbd_fetch_ptr = event + 1;
4089 #endif
4090 else if (event->kind == BUFFER_SWITCH_EVENT)
4092 /* The value doesn't matter here; only the type is tested. */
4093 XSETBUFFER (obj, current_buffer);
4094 kbd_fetch_ptr = event + 1;
4096 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
4097 || defined (USE_GTK)
4098 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
4100 kbd_fetch_ptr = event + 1;
4101 input_pending = readable_events (0);
4102 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
4103 x_activate_menubar (XFRAME (event->frame_or_window));
4105 #endif
4106 #if defined (WINDOWSNT) || defined (MAC_OS)
4107 else if (event->kind == LANGUAGE_CHANGE_EVENT)
4109 #ifdef MAC_OS
4110 /* Make an event (language-change (KEY_SCRIPT)). */
4111 obj = Fcons (make_number (event->code), Qnil);
4112 #else
4113 /* Make an event (language-change (FRAME CHARSET LCID)). */
4114 obj = Fcons (event->frame_or_window, Qnil);
4115 #endif
4116 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
4117 kbd_fetch_ptr = event + 1;
4119 #endif
4120 else if (event->kind == SAVE_SESSION_EVENT)
4122 obj = Fcons (Qsave_session, Qnil);
4123 kbd_fetch_ptr = event + 1;
4125 /* Just discard these, by returning nil.
4126 With MULTI_KBOARD, these events are used as placeholders
4127 when we need to randomly delete events from the queue.
4128 (They shouldn't otherwise be found in the buffer,
4129 but on some machines it appears they do show up
4130 even without MULTI_KBOARD.) */
4131 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4132 mouse events during a popup-menu call. */
4133 else if (event->kind == NO_EVENT)
4134 kbd_fetch_ptr = event + 1;
4135 else if (event->kind == HELP_EVENT)
4137 Lisp_Object object, position, help, frame, window;
4139 frame = event->frame_or_window;
4140 object = event->arg;
4141 position = make_number (event->code);
4142 window = event->x;
4143 help = event->y;
4144 clear_event (event);
4146 kbd_fetch_ptr = event + 1;
4147 if (!WINDOWP (window))
4148 window = Qnil;
4149 obj = Fcons (Qhelp_echo,
4150 list5 (frame, help, window, object, position));
4152 else if (event->kind == FOCUS_IN_EVENT)
4154 /* Notification of a FocusIn event. The frame receiving the
4155 focus is in event->frame_or_window. Generate a
4156 switch-frame event if necessary. */
4157 Lisp_Object frame, focus;
4159 frame = event->frame_or_window;
4160 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4161 if (FRAMEP (focus))
4162 frame = focus;
4164 if (!EQ (frame, internal_last_event_frame)
4165 && !EQ (frame, selected_frame))
4166 obj = make_lispy_switch_frame (frame);
4167 internal_last_event_frame = frame;
4168 kbd_fetch_ptr = event + 1;
4170 else
4172 /* If this event is on a different frame, return a switch-frame this
4173 time, and leave the event in the queue for next time. */
4174 Lisp_Object frame;
4175 Lisp_Object focus;
4177 frame = event->frame_or_window;
4178 if (CONSP (frame))
4179 frame = XCAR (frame);
4180 else if (WINDOWP (frame))
4181 frame = WINDOW_FRAME (XWINDOW (frame));
4183 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4184 if (! NILP (focus))
4185 frame = focus;
4187 if (! EQ (frame, internal_last_event_frame)
4188 && !EQ (frame, selected_frame))
4189 obj = make_lispy_switch_frame (frame);
4190 internal_last_event_frame = frame;
4192 /* If we didn't decide to make a switch-frame event, go ahead
4193 and build a real event from the queue entry. */
4195 if (NILP (obj))
4197 obj = make_lispy_event (event);
4199 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4200 || defined (USE_GTK)
4201 /* If this was a menu selection, then set the flag to inhibit
4202 writing to last_nonmenu_event. Don't do this if the event
4203 we're returning is (menu-bar), though; that indicates the
4204 beginning of the menu sequence, and we might as well leave
4205 that as the `event with parameters' for this selection. */
4206 if (used_mouse_menu
4207 && !EQ (event->frame_or_window, event->arg)
4208 && (event->kind == MENU_BAR_EVENT
4209 || event->kind == TOOL_BAR_EVENT))
4210 *used_mouse_menu = 1;
4211 #endif
4213 /* Wipe out this event, to catch bugs. */
4214 clear_event (event);
4215 kbd_fetch_ptr = event + 1;
4219 #ifdef HAVE_MOUSE
4220 /* Try generating a mouse motion event. */
4221 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4223 FRAME_PTR f = some_mouse_moved ();
4224 Lisp_Object bar_window;
4225 enum scroll_bar_part part;
4226 Lisp_Object x, y;
4227 unsigned long time;
4229 *kbp = current_kboard;
4230 /* Note that this uses F to determine which display to look at.
4231 If there is no valid info, it does not store anything
4232 so x remains nil. */
4233 x = Qnil;
4234 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
4236 obj = Qnil;
4238 /* Decide if we should generate a switch-frame event. Don't
4239 generate switch-frame events for motion outside of all Emacs
4240 frames. */
4241 if (!NILP (x) && f)
4243 Lisp_Object frame;
4245 frame = FRAME_FOCUS_FRAME (f);
4246 if (NILP (frame))
4247 XSETFRAME (frame, f);
4249 if (! EQ (frame, internal_last_event_frame)
4250 && !EQ (frame, selected_frame))
4251 obj = make_lispy_switch_frame (frame);
4252 internal_last_event_frame = frame;
4255 /* If we didn't decide to make a switch-frame event, go ahead and
4256 return a mouse-motion event. */
4257 if (!NILP (x) && NILP (obj))
4258 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4260 #endif /* HAVE_MOUSE */
4261 else
4262 /* We were promised by the above while loop that there was
4263 something for us to read! */
4264 abort ();
4266 input_pending = readable_events (0);
4268 Vlast_event_frame = internal_last_event_frame;
4270 return (obj);
4273 /* Process any events that are not user-visible,
4274 then return, without reading any user-visible events. */
4276 void
4277 swallow_events (do_display)
4278 int do_display;
4280 int old_timers_run;
4282 while (kbd_fetch_ptr != kbd_store_ptr)
4284 struct input_event *event;
4286 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4287 ? kbd_fetch_ptr
4288 : kbd_buffer);
4290 last_event_timestamp = event->timestamp;
4292 /* These two kinds of events get special handling
4293 and don't actually appear to the command loop. */
4294 if (event->kind == SELECTION_REQUEST_EVENT
4295 || event->kind == SELECTION_CLEAR_EVENT)
4297 #ifdef HAVE_X11
4298 struct input_event copy;
4300 /* Remove it from the buffer before processing it,
4301 since otherwise swallow_events called recursively could see it
4302 and process it again. */
4303 copy = *event;
4304 kbd_fetch_ptr = event + 1;
4305 input_pending = readable_events (0);
4306 x_handle_selection_event (&copy);
4307 #else
4308 /* We're getting selection request events, but we don't have
4309 a window system. */
4310 abort ();
4311 #endif
4313 else
4314 break;
4317 old_timers_run = timers_run;
4318 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
4320 if (timers_run != old_timers_run && do_display)
4321 redisplay_preserve_echo_area (7);
4324 /* Record the start of when Emacs is idle,
4325 for the sake of running idle-time timers. */
4327 static void
4328 timer_start_idle ()
4330 Lisp_Object timers;
4332 /* If we are already in the idle state, do nothing. */
4333 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4334 return;
4336 EMACS_GET_TIME (timer_idleness_start_time);
4338 timer_last_idleness_start_time = timer_idleness_start_time;
4340 /* Mark all idle-time timers as once again candidates for running. */
4341 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4343 Lisp_Object timer;
4345 timer = XCAR (timers);
4347 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4348 continue;
4349 XVECTOR (timer)->contents[0] = Qnil;
4353 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4355 static void
4356 timer_stop_idle ()
4358 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4361 /* Resume idle timer from last idle start time. */
4363 static void
4364 timer_resume_idle ()
4366 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4367 return;
4369 timer_idleness_start_time = timer_last_idleness_start_time;
4372 /* This is only for debugging. */
4373 struct input_event last_timer_event;
4375 /* Check whether a timer has fired. To prevent larger problems we simply
4376 disregard elements that are not proper timers. Do not make a circular
4377 timer list for the time being.
4379 Returns the number of seconds to wait until the next timer fires. If a
4380 timer is triggering now, return zero seconds.
4381 If no timer is active, return -1 seconds.
4383 If a timer is ripe, we run it, with quitting turned off.
4385 DO_IT_NOW is now ignored. It used to mean that we should
4386 run the timer directly instead of queueing a timer-event.
4387 Now we always run timers directly. */
4389 EMACS_TIME
4390 timer_check (do_it_now)
4391 int do_it_now;
4393 EMACS_TIME nexttime;
4394 EMACS_TIME now, idleness_now;
4395 Lisp_Object timers, idle_timers, chosen_timer;
4396 struct gcpro gcpro1, gcpro2, gcpro3;
4398 EMACS_SET_SECS (nexttime, -1);
4399 EMACS_SET_USECS (nexttime, -1);
4401 /* Always consider the ordinary timers. */
4402 timers = Vtimer_list;
4403 /* Consider the idle timers only if Emacs is idle. */
4404 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4405 idle_timers = Vtimer_idle_list;
4406 else
4407 idle_timers = Qnil;
4408 chosen_timer = Qnil;
4409 GCPRO3 (timers, idle_timers, chosen_timer);
4411 if (CONSP (timers) || CONSP (idle_timers))
4413 EMACS_GET_TIME (now);
4414 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4415 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4418 while (CONSP (timers) || CONSP (idle_timers))
4420 Lisp_Object *vector;
4421 Lisp_Object timer = Qnil, idle_timer = Qnil;
4422 EMACS_TIME timer_time, idle_timer_time;
4423 EMACS_TIME difference, timer_difference, idle_timer_difference;
4425 /* Skip past invalid timers and timers already handled. */
4426 if (!NILP (timers))
4428 timer = XCAR (timers);
4429 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4431 timers = XCDR (timers);
4432 continue;
4434 vector = XVECTOR (timer)->contents;
4436 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4437 || !INTEGERP (vector[3])
4438 || ! NILP (vector[0]))
4440 timers = XCDR (timers);
4441 continue;
4444 if (!NILP (idle_timers))
4446 timer = XCAR (idle_timers);
4447 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4449 idle_timers = XCDR (idle_timers);
4450 continue;
4452 vector = XVECTOR (timer)->contents;
4454 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4455 || !INTEGERP (vector[3])
4456 || ! NILP (vector[0]))
4458 idle_timers = XCDR (idle_timers);
4459 continue;
4463 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4464 based on the next ordinary timer.
4465 TIMER_DIFFERENCE is the distance in time from NOW to when
4466 this timer becomes ripe (negative if it's already ripe). */
4467 if (!NILP (timers))
4469 timer = XCAR (timers);
4470 vector = XVECTOR (timer)->contents;
4471 EMACS_SET_SECS (timer_time,
4472 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4473 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4474 EMACS_SUB_TIME (timer_difference, timer_time, now);
4477 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4478 based on the next idle timer. */
4479 if (!NILP (idle_timers))
4481 idle_timer = XCAR (idle_timers);
4482 vector = XVECTOR (idle_timer)->contents;
4483 EMACS_SET_SECS (idle_timer_time,
4484 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4485 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4486 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4489 /* Decide which timer is the next timer,
4490 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4491 Also step down the list where we found that timer. */
4493 if (! NILP (timers) && ! NILP (idle_timers))
4495 EMACS_TIME temp;
4496 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4497 if (EMACS_TIME_NEG_P (temp))
4499 chosen_timer = timer;
4500 timers = XCDR (timers);
4501 difference = timer_difference;
4503 else
4505 chosen_timer = idle_timer;
4506 idle_timers = XCDR (idle_timers);
4507 difference = idle_timer_difference;
4510 else if (! NILP (timers))
4512 chosen_timer = timer;
4513 timers = XCDR (timers);
4514 difference = timer_difference;
4516 else
4518 chosen_timer = idle_timer;
4519 idle_timers = XCDR (idle_timers);
4520 difference = idle_timer_difference;
4522 vector = XVECTOR (chosen_timer)->contents;
4524 /* If timer is ripe, run it if it hasn't been run. */
4525 if (EMACS_TIME_NEG_P (difference)
4526 || (EMACS_SECS (difference) == 0
4527 && EMACS_USECS (difference) == 0))
4529 if (NILP (vector[0]))
4531 int was_locked = single_kboard;
4532 int count = SPECPDL_INDEX ();
4533 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4535 /* Mark the timer as triggered to prevent problems if the lisp
4536 code fails to reschedule it right. */
4537 vector[0] = Qt;
4539 specbind (Qinhibit_quit, Qt);
4541 call1 (Qtimer_event_handler, chosen_timer);
4542 Vdeactivate_mark = old_deactivate_mark;
4543 timers_run++;
4544 unbind_to (count, Qnil);
4546 /* Resume allowing input from any kboard, if that was true before. */
4547 if (!was_locked)
4548 any_kboard_state ();
4550 /* Since we have handled the event,
4551 we don't need to tell the caller to wake up and do it. */
4554 else
4555 /* When we encounter a timer that is still waiting,
4556 return the amount of time to wait before it is ripe. */
4558 UNGCPRO;
4559 return difference;
4563 /* No timers are pending in the future. */
4564 /* Return 0 if we generated an event, and -1 if not. */
4565 UNGCPRO;
4566 return nexttime;
4569 DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0,
4570 doc: /* Return the current length of Emacs idleness.
4571 The value is returned as a list of three integers. The first has the
4572 most significant 16 bits of the seconds, while the second has the
4573 least significant 16 bits. The third integer gives the microsecond
4574 count.
4576 The microsecond count is zero on systems that do not provide
4577 resolution finer than a second. */)
4580 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4582 EMACS_TIME now, idleness_now;
4584 EMACS_GET_TIME (now);
4585 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4587 return list3 (make_number ((EMACS_SECS (idleness_now) >> 16) & 0xffff),
4588 make_number ((EMACS_SECS (idleness_now) >> 0) & 0xffff),
4589 make_number (EMACS_USECS (idleness_now)));
4592 return Qnil;
4595 /* Caches for modify_event_symbol. */
4596 static Lisp_Object accent_key_syms;
4597 static Lisp_Object func_key_syms;
4598 static Lisp_Object mouse_syms;
4599 static Lisp_Object wheel_syms;
4600 static Lisp_Object drag_n_drop_syms;
4602 /* This is a list of keysym codes for special "accent" characters.
4603 It parallels lispy_accent_keys. */
4605 static int lispy_accent_codes[] =
4607 #ifdef XK_dead_circumflex
4608 XK_dead_circumflex,
4609 #else
4611 #endif
4612 #ifdef XK_dead_grave
4613 XK_dead_grave,
4614 #else
4616 #endif
4617 #ifdef XK_dead_tilde
4618 XK_dead_tilde,
4619 #else
4621 #endif
4622 #ifdef XK_dead_diaeresis
4623 XK_dead_diaeresis,
4624 #else
4626 #endif
4627 #ifdef XK_dead_macron
4628 XK_dead_macron,
4629 #else
4631 #endif
4632 #ifdef XK_dead_degree
4633 XK_dead_degree,
4634 #else
4636 #endif
4637 #ifdef XK_dead_acute
4638 XK_dead_acute,
4639 #else
4641 #endif
4642 #ifdef XK_dead_cedilla
4643 XK_dead_cedilla,
4644 #else
4646 #endif
4647 #ifdef XK_dead_breve
4648 XK_dead_breve,
4649 #else
4651 #endif
4652 #ifdef XK_dead_ogonek
4653 XK_dead_ogonek,
4654 #else
4656 #endif
4657 #ifdef XK_dead_caron
4658 XK_dead_caron,
4659 #else
4661 #endif
4662 #ifdef XK_dead_doubleacute
4663 XK_dead_doubleacute,
4664 #else
4666 #endif
4667 #ifdef XK_dead_abovedot
4668 XK_dead_abovedot,
4669 #else
4671 #endif
4672 #ifdef XK_dead_abovering
4673 XK_dead_abovering,
4674 #else
4676 #endif
4677 #ifdef XK_dead_iota
4678 XK_dead_iota,
4679 #else
4681 #endif
4682 #ifdef XK_dead_belowdot
4683 XK_dead_belowdot,
4684 #else
4686 #endif
4687 #ifdef XK_dead_voiced_sound
4688 XK_dead_voiced_sound,
4689 #else
4691 #endif
4692 #ifdef XK_dead_semivoiced_sound
4693 XK_dead_semivoiced_sound,
4694 #else
4696 #endif
4697 #ifdef XK_dead_hook
4698 XK_dead_hook,
4699 #else
4701 #endif
4702 #ifdef XK_dead_horn
4703 XK_dead_horn,
4704 #else
4706 #endif
4709 /* This is a list of Lisp names for special "accent" characters.
4710 It parallels lispy_accent_codes. */
4712 static char *lispy_accent_keys[] =
4714 "dead-circumflex",
4715 "dead-grave",
4716 "dead-tilde",
4717 "dead-diaeresis",
4718 "dead-macron",
4719 "dead-degree",
4720 "dead-acute",
4721 "dead-cedilla",
4722 "dead-breve",
4723 "dead-ogonek",
4724 "dead-caron",
4725 "dead-doubleacute",
4726 "dead-abovedot",
4727 "dead-abovering",
4728 "dead-iota",
4729 "dead-belowdot",
4730 "dead-voiced-sound",
4731 "dead-semivoiced-sound",
4732 "dead-hook",
4733 "dead-horn",
4736 #ifdef HAVE_NTGUI
4737 #define FUNCTION_KEY_OFFSET 0x0
4739 char *lispy_function_keys[] =
4741 0, /* 0 */
4743 0, /* VK_LBUTTON 0x01 */
4744 0, /* VK_RBUTTON 0x02 */
4745 "cancel", /* VK_CANCEL 0x03 */
4746 0, /* VK_MBUTTON 0x04 */
4748 0, 0, 0, /* 0x05 .. 0x07 */
4750 "backspace", /* VK_BACK 0x08 */
4751 "tab", /* VK_TAB 0x09 */
4753 0, 0, /* 0x0A .. 0x0B */
4755 "clear", /* VK_CLEAR 0x0C */
4756 "return", /* VK_RETURN 0x0D */
4758 0, 0, /* 0x0E .. 0x0F */
4760 0, /* VK_SHIFT 0x10 */
4761 0, /* VK_CONTROL 0x11 */
4762 0, /* VK_MENU 0x12 */
4763 "pause", /* VK_PAUSE 0x13 */
4764 "capslock", /* VK_CAPITAL 0x14 */
4766 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4768 "escape", /* VK_ESCAPE 0x1B */
4770 0, 0, 0, 0, /* 0x1C .. 0x1F */
4772 0, /* VK_SPACE 0x20 */
4773 "prior", /* VK_PRIOR 0x21 */
4774 "next", /* VK_NEXT 0x22 */
4775 "end", /* VK_END 0x23 */
4776 "home", /* VK_HOME 0x24 */
4777 "left", /* VK_LEFT 0x25 */
4778 "up", /* VK_UP 0x26 */
4779 "right", /* VK_RIGHT 0x27 */
4780 "down", /* VK_DOWN 0x28 */
4781 "select", /* VK_SELECT 0x29 */
4782 "print", /* VK_PRINT 0x2A */
4783 "execute", /* VK_EXECUTE 0x2B */
4784 "snapshot", /* VK_SNAPSHOT 0x2C */
4785 "insert", /* VK_INSERT 0x2D */
4786 "delete", /* VK_DELETE 0x2E */
4787 "help", /* VK_HELP 0x2F */
4789 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4791 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4793 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4795 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4797 0, 0, 0, 0, 0, 0, 0, 0, 0,
4798 0, 0, 0, 0, 0, 0, 0, 0, 0,
4799 0, 0, 0, 0, 0, 0, 0, 0,
4801 "lwindow", /* VK_LWIN 0x5B */
4802 "rwindow", /* VK_RWIN 0x5C */
4803 "apps", /* VK_APPS 0x5D */
4805 0, 0, /* 0x5E .. 0x5F */
4807 "kp-0", /* VK_NUMPAD0 0x60 */
4808 "kp-1", /* VK_NUMPAD1 0x61 */
4809 "kp-2", /* VK_NUMPAD2 0x62 */
4810 "kp-3", /* VK_NUMPAD3 0x63 */
4811 "kp-4", /* VK_NUMPAD4 0x64 */
4812 "kp-5", /* VK_NUMPAD5 0x65 */
4813 "kp-6", /* VK_NUMPAD6 0x66 */
4814 "kp-7", /* VK_NUMPAD7 0x67 */
4815 "kp-8", /* VK_NUMPAD8 0x68 */
4816 "kp-9", /* VK_NUMPAD9 0x69 */
4817 "kp-multiply", /* VK_MULTIPLY 0x6A */
4818 "kp-add", /* VK_ADD 0x6B */
4819 "kp-separator", /* VK_SEPARATOR 0x6C */
4820 "kp-subtract", /* VK_SUBTRACT 0x6D */
4821 "kp-decimal", /* VK_DECIMAL 0x6E */
4822 "kp-divide", /* VK_DIVIDE 0x6F */
4823 "f1", /* VK_F1 0x70 */
4824 "f2", /* VK_F2 0x71 */
4825 "f3", /* VK_F3 0x72 */
4826 "f4", /* VK_F4 0x73 */
4827 "f5", /* VK_F5 0x74 */
4828 "f6", /* VK_F6 0x75 */
4829 "f7", /* VK_F7 0x76 */
4830 "f8", /* VK_F8 0x77 */
4831 "f9", /* VK_F9 0x78 */
4832 "f10", /* VK_F10 0x79 */
4833 "f11", /* VK_F11 0x7A */
4834 "f12", /* VK_F12 0x7B */
4835 "f13", /* VK_F13 0x7C */
4836 "f14", /* VK_F14 0x7D */
4837 "f15", /* VK_F15 0x7E */
4838 "f16", /* VK_F16 0x7F */
4839 "f17", /* VK_F17 0x80 */
4840 "f18", /* VK_F18 0x81 */
4841 "f19", /* VK_F19 0x82 */
4842 "f20", /* VK_F20 0x83 */
4843 "f21", /* VK_F21 0x84 */
4844 "f22", /* VK_F22 0x85 */
4845 "f23", /* VK_F23 0x86 */
4846 "f24", /* VK_F24 0x87 */
4848 0, 0, 0, 0, /* 0x88 .. 0x8B */
4849 0, 0, 0, 0, /* 0x8C .. 0x8F */
4851 "kp-numlock", /* VK_NUMLOCK 0x90 */
4852 "scroll", /* VK_SCROLL 0x91 */
4854 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4855 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4856 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4857 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4858 "kp-end", /* VK_NUMPAD_END 0x96 */
4859 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4860 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4861 "kp-up", /* VK_NUMPAD_UP 0x99 */
4862 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4863 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4864 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4865 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4867 0, 0, /* 0x9E .. 0x9F */
4870 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4871 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4872 * No other API or message will distinguish left and right keys this way.
4874 /* 0xA0 .. 0xEF */
4876 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4877 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4878 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4880 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4882 /* 0xF0 .. 0xF5 */
4884 0, 0, 0, 0, 0, 0,
4886 "attn", /* VK_ATTN 0xF6 */
4887 "crsel", /* VK_CRSEL 0xF7 */
4888 "exsel", /* VK_EXSEL 0xF8 */
4889 "ereof", /* VK_EREOF 0xF9 */
4890 "play", /* VK_PLAY 0xFA */
4891 "zoom", /* VK_ZOOM 0xFB */
4892 "noname", /* VK_NONAME 0xFC */
4893 "pa1", /* VK_PA1 0xFD */
4894 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4895 0 /* 0xFF */
4898 #else /* not HAVE_NTGUI */
4900 /* This should be dealt with in XTread_socket now, and that doesn't
4901 depend on the client system having the Kana syms defined. See also
4902 the XK_kana_A case below. */
4903 #if 0
4904 #ifdef XK_kana_A
4905 static char *lispy_kana_keys[] =
4907 /* X Keysym value */
4908 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4909 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4910 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4911 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4912 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4913 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4914 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4915 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4916 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4917 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4918 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4919 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4920 "kana-i", "kana-u", "kana-e", "kana-o",
4921 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4922 "prolongedsound", "kana-A", "kana-I", "kana-U",
4923 "kana-E", "kana-O", "kana-KA", "kana-KI",
4924 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4925 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4926 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4927 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4928 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4929 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4930 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4931 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4932 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4933 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4934 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4935 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4937 #endif /* XK_kana_A */
4938 #endif /* 0 */
4940 #define FUNCTION_KEY_OFFSET 0xff00
4942 /* You'll notice that this table is arranged to be conveniently
4943 indexed by X Windows keysym values. */
4944 static char *lispy_function_keys[] =
4946 /* X Keysym value */
4948 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4949 "backspace", "tab", "linefeed", "clear",
4950 0, "return", 0, 0,
4951 0, 0, 0, "pause", /* 0xff10...1f */
4952 0, 0, 0, 0, 0, 0, 0, "escape",
4953 0, 0, 0, 0,
4954 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4955 "romaji", "hiragana", "katakana", "hiragana-katakana",
4956 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4957 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4958 "eisu-toggle", /* 0xff30...3f */
4959 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4960 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4962 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4963 "down", "prior", "next", "end",
4964 "begin", 0, 0, 0, 0, 0, 0, 0,
4965 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4966 "print",
4967 "execute",
4968 "insert",
4969 0, /* 0xff64 */
4970 "undo",
4971 "redo",
4972 "menu",
4973 "find",
4974 "cancel",
4975 "help",
4976 "break", /* 0xff6b */
4978 0, 0, 0, 0,
4979 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4980 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4981 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4982 0, 0, 0, 0, 0, 0, 0, 0,
4983 "kp-tab", /* 0xff89 */
4984 0, 0, 0,
4985 "kp-enter", /* 0xff8d */
4986 0, 0, 0,
4987 "kp-f1", /* 0xff91 */
4988 "kp-f2",
4989 "kp-f3",
4990 "kp-f4",
4991 "kp-home", /* 0xff95 */
4992 "kp-left",
4993 "kp-up",
4994 "kp-right",
4995 "kp-down",
4996 "kp-prior", /* kp-page-up */
4997 "kp-next", /* kp-page-down */
4998 "kp-end",
4999 "kp-begin",
5000 "kp-insert",
5001 "kp-delete",
5002 0, /* 0xffa0 */
5003 0, 0, 0, 0, 0, 0, 0, 0, 0,
5004 "kp-multiply", /* 0xffaa */
5005 "kp-add",
5006 "kp-separator",
5007 "kp-subtract",
5008 "kp-decimal",
5009 "kp-divide", /* 0xffaf */
5010 "kp-0", /* 0xffb0 */
5011 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5012 0, /* 0xffba */
5013 0, 0,
5014 "kp-equal", /* 0xffbd */
5015 "f1", /* 0xffbe */ /* IsFunctionKey */
5016 "f2",
5017 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5018 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5019 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5020 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5021 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5022 0, 0, 0, 0, 0, 0, 0, 0,
5023 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5024 0, 0, 0, 0, 0, 0, 0, "delete"
5027 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5028 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5030 static char *iso_lispy_function_keys[] =
5032 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5033 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5034 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5035 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5036 "iso-lefttab", /* 0xfe20 */
5037 "iso-move-line-up", "iso-move-line-down",
5038 "iso-partial-line-up", "iso-partial-line-down",
5039 "iso-partial-space-left", "iso-partial-space-right",
5040 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5041 "iso-release-margin-left", "iso-release-margin-right",
5042 "iso-release-both-margins",
5043 "iso-fast-cursor-left", "iso-fast-cursor-right",
5044 "iso-fast-cursor-up", "iso-fast-cursor-down",
5045 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5046 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5049 #endif /* not HAVE_NTGUI */
5051 Lisp_Object Vlispy_mouse_stem;
5053 static char *lispy_wheel_names[] =
5055 "wheel-up", "wheel-down"
5058 /* drag-n-drop events are generated when a set of selected files are
5059 dragged from another application and dropped onto an Emacs window. */
5060 static char *lispy_drag_n_drop_names[] =
5062 "drag-n-drop"
5065 /* Scroll bar parts. */
5066 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
5067 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
5068 Lisp_Object Qtop, Qratio;
5070 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
5071 Lisp_Object *scroll_bar_parts[] = {
5072 &Qabove_handle, &Qhandle, &Qbelow_handle,
5073 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
5076 /* User signal events. */
5077 Lisp_Object Qsignal;
5079 /* A vector, indexed by button number, giving the down-going location
5080 of currently depressed buttons, both scroll bar and non-scroll bar.
5082 The elements have the form
5083 (BUTTON-NUMBER MODIFIER-MASK . REST)
5084 where REST is the cdr of a position as it would be reported in the event.
5086 The make_lispy_event function stores positions here to tell the
5087 difference between click and drag events, and to store the starting
5088 location to be included in drag events. */
5090 static Lisp_Object button_down_location;
5092 /* Information about the most recent up-going button event: Which
5093 button, what location, and what time. */
5095 static int last_mouse_button;
5096 static int last_mouse_x;
5097 static int last_mouse_y;
5098 static unsigned long button_down_time;
5100 /* The maximum time between clicks to make a double-click, or Qnil to
5101 disable double-click detection, or Qt for no time limit. */
5103 Lisp_Object Vdouble_click_time;
5105 /* Maximum number of pixels the mouse may be moved between clicks
5106 to make a double-click. */
5108 EMACS_INT double_click_fuzz;
5110 /* The number of clicks in this multiple-click. */
5112 int double_click_count;
5114 /* Return position of a mouse click or wheel event */
5116 static Lisp_Object
5117 make_lispy_position (f, x, y, time)
5118 struct frame *f;
5119 Lisp_Object *x, *y;
5120 unsigned long time;
5122 Lisp_Object window;
5123 enum window_part part;
5124 Lisp_Object posn = Qnil;
5125 Lisp_Object extra_info = Qnil;
5126 int wx, wy;
5128 /* Set `window' to the window under frame pixel coordinates (x,y) */
5129 if (f)
5130 window = window_from_coordinates (f, XINT (*x), XINT (*y),
5131 &part, &wx, &wy, 0);
5132 else
5133 window = Qnil;
5135 if (WINDOWP (window))
5137 /* It's a click in window window at frame coordinates (x,y) */
5138 struct window *w = XWINDOW (window);
5139 Lisp_Object string_info = Qnil;
5140 int textpos = -1, rx = -1, ry = -1;
5141 int dx = -1, dy = -1;
5142 int width = -1, height = -1;
5143 Lisp_Object object = Qnil;
5145 /* Set event coordinates to window-relative coordinates
5146 for constructing the Lisp event below. */
5147 XSETINT (*x, wx);
5148 XSETINT (*y, wy);
5150 if (part == ON_TEXT)
5152 wx += WINDOW_LEFT_MARGIN_WIDTH (w);
5154 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5156 /* Mode line or header line. Look for a string under
5157 the mouse that may have a `local-map' property. */
5158 Lisp_Object string;
5159 int charpos;
5161 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5162 rx = wx, ry = wy;
5163 string = mode_line_string (w, part, &rx, &ry, &charpos,
5164 &object, &dx, &dy, &width, &height);
5165 if (STRINGP (string))
5166 string_info = Fcons (string, make_number (charpos));
5167 if (w == XWINDOW (selected_window))
5168 textpos = PT;
5169 else
5170 textpos = XMARKER (w->pointm)->charpos;
5172 else if (part == ON_VERTICAL_BORDER)
5174 posn = Qvertical_line;
5175 wx = -1;
5176 dx = 0;
5177 width = 1;
5179 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5181 Lisp_Object string;
5182 int charpos;
5184 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5185 rx = wx, ry = wy;
5186 string = marginal_area_string (w, part, &rx, &ry, &charpos,
5187 &object, &dx, &dy, &width, &height);
5188 if (STRINGP (string))
5189 string_info = Fcons (string, make_number (charpos));
5190 if (part == ON_LEFT_MARGIN)
5191 wx = 0;
5192 else
5193 wx = window_box_right_offset (w, TEXT_AREA) - 1;
5195 else if (part == ON_LEFT_FRINGE)
5197 posn = Qleft_fringe;
5198 rx = 0;
5199 dx = wx;
5200 wx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5202 : window_box_width (w, LEFT_MARGIN_AREA));
5203 dx -= wx;
5205 else if (part == ON_RIGHT_FRINGE)
5207 posn = Qright_fringe;
5208 rx = 0;
5209 dx = wx;
5210 wx = (window_box_width (w, LEFT_MARGIN_AREA)
5211 + window_box_width (w, TEXT_AREA)
5212 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5213 ? window_box_width (w, RIGHT_MARGIN_AREA)
5214 : 0));
5215 dx -= wx;
5217 else
5219 /* Note: We have no special posn for part == ON_SCROLL_BAR. */
5220 wx = max (WINDOW_LEFT_MARGIN_WIDTH (w), wx);
5223 if (textpos < 0)
5225 Lisp_Object string2, object2 = Qnil;
5226 struct display_pos p;
5227 int dx2, dy2;
5228 int width2, height2;
5229 string2 = buffer_posn_from_coords (w, &wx, &wy, &p,
5230 &object2, &dx2, &dy2,
5231 &width2, &height2);
5232 textpos = CHARPOS (p.pos);
5233 if (rx < 0) rx = wx;
5234 if (ry < 0) ry = wy;
5235 if (dx < 0) dx = dx2;
5236 if (dy < 0) dy = dy2;
5237 if (width < 0) width = width2;
5238 if (height < 0) height = height2;
5240 if (NILP (posn))
5242 posn = make_number (textpos);
5243 if (STRINGP (string2))
5244 string_info = Fcons (string2,
5245 make_number (CHARPOS (p.string_pos)));
5247 if (NILP (object))
5248 object = object2;
5251 #ifdef HAVE_WINDOW_SYSTEM
5252 if (IMAGEP (object))
5254 Lisp_Object image_map, hotspot;
5255 if ((image_map = Fplist_get (XCDR (object), QCmap),
5256 !NILP (image_map))
5257 && (hotspot = find_hot_spot (image_map, dx, dy),
5258 CONSP (hotspot))
5259 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5260 posn = XCAR (hotspot);
5262 #endif
5264 /* Object info */
5265 extra_info = Fcons (object,
5266 Fcons (Fcons (make_number (dx),
5267 make_number (dy)),
5268 Fcons (Fcons (make_number (width),
5269 make_number (height)),
5270 Qnil)));
5272 /* String info */
5273 extra_info = Fcons (string_info,
5274 Fcons (make_number (textpos),
5275 Fcons (Fcons (make_number (rx),
5276 make_number (ry)),
5277 extra_info)));
5279 else if (f != 0)
5281 XSETFRAME (window, f);
5283 else
5285 window = Qnil;
5286 XSETFASTINT (*x, 0);
5287 XSETFASTINT (*y, 0);
5290 return Fcons (window,
5291 Fcons (posn,
5292 Fcons (Fcons (*x, *y),
5293 Fcons (make_number (time),
5294 extra_info))));
5297 /* Given a struct input_event, build the lisp event which represents
5298 it. If EVENT is 0, build a mouse movement event from the mouse
5299 movement buffer, which should have a movement event in it.
5301 Note that events must be passed to this function in the order they
5302 are received; this function stores the location of button presses
5303 in order to build drag events when the button is released. */
5305 static Lisp_Object
5306 make_lispy_event (event)
5307 struct input_event *event;
5309 int i;
5311 switch (SWITCH_ENUM_CAST (event->kind))
5313 /* A simple keystroke. */
5314 case ASCII_KEYSTROKE_EVENT:
5316 Lisp_Object lispy_c;
5317 int c = event->code & 0377;
5318 /* Turn ASCII characters into control characters
5319 when proper. */
5320 if (event->modifiers & ctrl_modifier)
5321 c = make_ctrl_char (c);
5323 /* Add in the other modifier bits. We took care of ctrl_modifier
5324 just above, and the shift key was taken care of by the X code,
5325 and applied to control characters by make_ctrl_char. */
5326 c |= (event->modifiers
5327 & (meta_modifier | alt_modifier
5328 | hyper_modifier | super_modifier));
5329 /* Distinguish Shift-SPC from SPC. */
5330 if ((event->code & 0377) == 040
5331 && event->modifiers & shift_modifier)
5332 c |= shift_modifier;
5333 button_down_time = 0;
5334 XSETFASTINT (lispy_c, c);
5335 return lispy_c;
5338 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5340 Lisp_Object lispy_c;
5341 int c = event->code;
5343 /* Add in the other modifier bits. We took care of ctrl_modifier
5344 just above, and the shift key was taken care of by the X code,
5345 and applied to control characters by make_ctrl_char. */
5346 c |= (event->modifiers
5347 & (meta_modifier | alt_modifier
5348 | hyper_modifier | super_modifier | ctrl_modifier));
5349 /* What about the `shift' modifier ? */
5350 button_down_time = 0;
5351 XSETFASTINT (lispy_c, c);
5352 return lispy_c;
5355 /* A function key. The symbol may need to have modifier prefixes
5356 tacked onto it. */
5357 case NON_ASCII_KEYSTROKE_EVENT:
5358 button_down_time = 0;
5360 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5361 if (event->code == lispy_accent_codes[i])
5362 return modify_event_symbol (i,
5363 event->modifiers,
5364 Qfunction_key, Qnil,
5365 lispy_accent_keys, &accent_key_syms,
5366 (sizeof (lispy_accent_keys)
5367 / sizeof (lispy_accent_keys[0])));
5369 #if 0
5370 #ifdef XK_kana_A
5371 if (event->code >= 0x400 && event->code < 0x500)
5372 return modify_event_symbol (event->code - 0x400,
5373 event->modifiers & ~shift_modifier,
5374 Qfunction_key, Qnil,
5375 lispy_kana_keys, &func_key_syms,
5376 (sizeof (lispy_kana_keys)
5377 / sizeof (lispy_kana_keys[0])));
5378 #endif /* XK_kana_A */
5379 #endif /* 0 */
5381 #ifdef ISO_FUNCTION_KEY_OFFSET
5382 if (event->code < FUNCTION_KEY_OFFSET
5383 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5384 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5385 event->modifiers,
5386 Qfunction_key, Qnil,
5387 iso_lispy_function_keys, &func_key_syms,
5388 (sizeof (iso_lispy_function_keys)
5389 / sizeof (iso_lispy_function_keys[0])));
5390 #endif
5392 /* Handle system-specific or unknown keysyms. */
5393 if (event->code & (1 << 28)
5394 || event->code - FUNCTION_KEY_OFFSET < 0
5395 || (event->code - FUNCTION_KEY_OFFSET
5396 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5397 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5399 /* We need to use an alist rather than a vector as the cache
5400 since we can't make a vector long enuf. */
5401 if (NILP (current_kboard->system_key_syms))
5402 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5403 return modify_event_symbol (event->code,
5404 event->modifiers,
5405 Qfunction_key,
5406 current_kboard->Vsystem_key_alist,
5407 0, &current_kboard->system_key_syms,
5408 (unsigned) -1);
5411 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5412 event->modifiers,
5413 Qfunction_key, Qnil,
5414 lispy_function_keys, &func_key_syms,
5415 (sizeof (lispy_function_keys)
5416 / sizeof (lispy_function_keys[0])));
5418 #ifdef HAVE_MOUSE
5419 /* A mouse click. Figure out where it is, decide whether it's
5420 a press, click or drag, and build the appropriate structure. */
5421 case MOUSE_CLICK_EVENT:
5422 #ifndef USE_TOOLKIT_SCROLL_BARS
5423 case SCROLL_BAR_CLICK_EVENT:
5424 #endif
5426 int button = event->code;
5427 int is_double;
5428 Lisp_Object position;
5429 Lisp_Object *start_pos_ptr;
5430 Lisp_Object start_pos;
5432 position = Qnil;
5434 /* Build the position as appropriate for this mouse click. */
5435 if (event->kind == MOUSE_CLICK_EVENT)
5437 struct frame *f = XFRAME (event->frame_or_window);
5438 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5439 int row, column;
5440 #endif
5442 /* Ignore mouse events that were made on frame that
5443 have been deleted. */
5444 if (! FRAME_LIVE_P (f))
5445 return Qnil;
5447 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5448 /* EVENT->x and EVENT->y are frame-relative pixel
5449 coordinates at this place. Under old redisplay, COLUMN
5450 and ROW are set to frame relative glyph coordinates
5451 which are then used to determine whether this click is
5452 in a menu (non-toolkit version). */
5453 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5454 &column, &row, NULL, 1);
5456 /* In the non-toolkit version, clicks on the menu bar
5457 are ordinary button events in the event buffer.
5458 Distinguish them, and invoke the menu.
5460 (In the toolkit version, the toolkit handles the menu bar
5461 and Emacs doesn't know about it until after the user
5462 makes a selection.) */
5463 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5464 && (event->modifiers & down_modifier))
5466 Lisp_Object items, item;
5467 int hpos;
5468 int i;
5470 #if 0
5471 /* Activate the menu bar on the down event. If the
5472 up event comes in before the menu code can deal with it,
5473 just ignore it. */
5474 if (! (event->modifiers & down_modifier))
5475 return Qnil;
5476 #endif
5478 /* Find the menu bar item under `column'. */
5479 item = Qnil;
5480 items = FRAME_MENU_BAR_ITEMS (f);
5481 for (i = 0; i < XVECTOR (items)->size; i += 4)
5483 Lisp_Object pos, string;
5484 string = AREF (items, i + 1);
5485 pos = AREF (items, i + 3);
5486 if (NILP (string))
5487 break;
5488 if (column >= XINT (pos)
5489 && column < XINT (pos) + SCHARS (string))
5491 item = AREF (items, i);
5492 break;
5496 /* ELisp manual 2.4b says (x y) are window relative but
5497 code says they are frame-relative. */
5498 position
5499 = Fcons (event->frame_or_window,
5500 Fcons (Qmenu_bar,
5501 Fcons (Fcons (event->x, event->y),
5502 Fcons (make_number (event->timestamp),
5503 Qnil))));
5505 return Fcons (item, Fcons (position, Qnil));
5507 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5509 position = make_lispy_position (f, &event->x, &event->y,
5510 event->timestamp);
5512 #ifndef USE_TOOLKIT_SCROLL_BARS
5513 else
5515 /* It's a scrollbar click. */
5516 Lisp_Object window;
5517 Lisp_Object portion_whole;
5518 Lisp_Object part;
5520 window = event->frame_or_window;
5521 portion_whole = Fcons (event->x, event->y);
5522 part = *scroll_bar_parts[(int) event->part];
5524 position
5525 = Fcons (window,
5526 Fcons (Qvertical_scroll_bar,
5527 Fcons (portion_whole,
5528 Fcons (make_number (event->timestamp),
5529 Fcons (part, Qnil)))));
5531 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5533 if (button >= ASIZE (button_down_location))
5535 button_down_location = larger_vector (button_down_location,
5536 button + 1, Qnil);
5537 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5540 start_pos_ptr = &AREF (button_down_location, button);
5541 start_pos = *start_pos_ptr;
5542 *start_pos_ptr = Qnil;
5545 /* On window-system frames, use the value of
5546 double-click-fuzz as is. On other frames, interpret it
5547 as a multiple of 1/8 characters. */
5548 struct frame *f;
5549 int fuzz;
5551 if (WINDOWP (event->frame_or_window))
5552 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5553 else if (FRAMEP (event->frame_or_window))
5554 f = XFRAME (event->frame_or_window);
5555 else
5556 abort ();
5558 if (FRAME_WINDOW_P (f))
5559 fuzz = double_click_fuzz;
5560 else
5561 fuzz = double_click_fuzz / 8;
5563 is_double = (button == last_mouse_button
5564 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5565 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5566 && button_down_time != 0
5567 && (EQ (Vdouble_click_time, Qt)
5568 || (INTEGERP (Vdouble_click_time)
5569 && ((int)(event->timestamp - button_down_time)
5570 < XINT (Vdouble_click_time)))));
5573 last_mouse_button = button;
5574 last_mouse_x = XINT (event->x);
5575 last_mouse_y = XINT (event->y);
5577 /* If this is a button press, squirrel away the location, so
5578 we can decide later whether it was a click or a drag. */
5579 if (event->modifiers & down_modifier)
5581 if (is_double)
5583 double_click_count++;
5584 event->modifiers |= ((double_click_count > 2)
5585 ? triple_modifier
5586 : double_modifier);
5588 else
5589 double_click_count = 1;
5590 button_down_time = event->timestamp;
5591 *start_pos_ptr = Fcopy_alist (position);
5594 /* Now we're releasing a button - check the co-ordinates to
5595 see if this was a click or a drag. */
5596 else if (event->modifiers & up_modifier)
5598 /* If we did not see a down before this up, ignore the up.
5599 Probably this happened because the down event chose a
5600 menu item. It would be an annoyance to treat the
5601 release of the button that chose the menu item as a
5602 separate event. */
5604 if (!CONSP (start_pos))
5605 return Qnil;
5607 event->modifiers &= ~up_modifier;
5608 #if 0 /* Formerly we treated an up with no down as a click event. */
5609 if (!CONSP (start_pos))
5610 event->modifiers |= click_modifier;
5611 else
5612 #endif
5614 Lisp_Object down;
5615 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5617 /* The third element of every position
5618 should be the (x,y) pair. */
5619 down = Fcar (Fcdr (Fcdr (start_pos)));
5620 if (CONSP (down)
5621 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5623 xdiff = XINT (event->x) - XINT (XCAR (down));
5624 ydiff = XINT (event->y) - XINT (XCDR (down));
5627 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5628 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5629 /* Maybe the mouse has moved a lot, caused scrolling, and
5630 eventually ended up at the same screen position (but
5631 not buffer position) in which case it is a drag, not
5632 a click. */
5633 /* FIXME: OTOH if the buffer position has changed
5634 because of a timer or process filter rather than
5635 because of mouse movement, it should be considered as
5636 a click. But mouse-drag-region completely ignores
5637 this case and it hasn't caused any real problem, so
5638 it's probably OK to ignore it as well. */
5639 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5640 /* Mouse hasn't moved (much). */
5641 event->modifiers |= click_modifier;
5642 else
5644 button_down_time = 0;
5645 event->modifiers |= drag_modifier;
5648 /* Don't check is_double; treat this as multiple
5649 if the down-event was multiple. */
5650 if (double_click_count > 1)
5651 event->modifiers |= ((double_click_count > 2)
5652 ? triple_modifier
5653 : double_modifier);
5656 else
5657 /* Every mouse event should either have the down_modifier or
5658 the up_modifier set. */
5659 abort ();
5662 /* Get the symbol we should use for the mouse click. */
5663 Lisp_Object head;
5665 head = modify_event_symbol (button,
5666 event->modifiers,
5667 Qmouse_click, Vlispy_mouse_stem,
5668 NULL,
5669 &mouse_syms,
5670 XVECTOR (mouse_syms)->size);
5671 if (event->modifiers & drag_modifier)
5672 return Fcons (head,
5673 Fcons (start_pos,
5674 Fcons (position,
5675 Qnil)));
5676 else if (event->modifiers & (double_modifier | triple_modifier))
5677 return Fcons (head,
5678 Fcons (position,
5679 Fcons (make_number (double_click_count),
5680 Qnil)));
5681 else
5682 return Fcons (head,
5683 Fcons (position,
5684 Qnil));
5688 case WHEEL_EVENT:
5690 Lisp_Object position;
5691 Lisp_Object head;
5693 /* Build the position as appropriate for this mouse click. */
5694 struct frame *f = XFRAME (event->frame_or_window);
5696 /* Ignore wheel events that were made on frame that have been
5697 deleted. */
5698 if (! FRAME_LIVE_P (f))
5699 return Qnil;
5701 position = make_lispy_position (f, &event->x, &event->y,
5702 event->timestamp);
5704 /* Set double or triple modifiers to indicate the wheel speed. */
5706 /* On window-system frames, use the value of
5707 double-click-fuzz as is. On other frames, interpret it
5708 as a multiple of 1/8 characters. */
5709 struct frame *f;
5710 int fuzz;
5711 int is_double;
5713 if (WINDOWP (event->frame_or_window))
5714 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5715 else if (FRAMEP (event->frame_or_window))
5716 f = XFRAME (event->frame_or_window);
5717 else
5718 abort ();
5720 if (FRAME_WINDOW_P (f))
5721 fuzz = double_click_fuzz;
5722 else
5723 fuzz = double_click_fuzz / 8;
5725 is_double = (last_mouse_button < 0
5726 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5727 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5728 && button_down_time != 0
5729 && (EQ (Vdouble_click_time, Qt)
5730 || (INTEGERP (Vdouble_click_time)
5731 && ((int)(event->timestamp - button_down_time)
5732 < XINT (Vdouble_click_time)))));
5733 if (is_double)
5735 double_click_count++;
5736 event->modifiers |= ((double_click_count > 2)
5737 ? triple_modifier
5738 : double_modifier);
5740 else
5742 double_click_count = 1;
5743 event->modifiers |= click_modifier;
5746 button_down_time = event->timestamp;
5747 /* Use a negative value to distinguish wheel from mouse button. */
5748 last_mouse_button = -1;
5749 last_mouse_x = XINT (event->x);
5750 last_mouse_y = XINT (event->y);
5754 int symbol_num;
5756 if (event->modifiers & up_modifier)
5758 /* Emit a wheel-up event. */
5759 event->modifiers &= ~up_modifier;
5760 symbol_num = 0;
5762 else if (event->modifiers & down_modifier)
5764 /* Emit a wheel-down event. */
5765 event->modifiers &= ~down_modifier;
5766 symbol_num = 1;
5768 else
5769 /* Every wheel event should either have the down_modifier or
5770 the up_modifier set. */
5771 abort ();
5773 /* Get the symbol we should use for the wheel event. */
5774 head = modify_event_symbol (symbol_num,
5775 event->modifiers,
5776 Qmouse_click,
5777 Qnil,
5778 lispy_wheel_names,
5779 &wheel_syms,
5780 ASIZE (wheel_syms));
5783 if (event->modifiers & (double_modifier | triple_modifier))
5784 return Fcons (head,
5785 Fcons (position,
5786 Fcons (make_number (double_click_count),
5787 Qnil)));
5788 else
5789 return Fcons (head,
5790 Fcons (position,
5791 Qnil));
5795 #ifdef USE_TOOLKIT_SCROLL_BARS
5797 /* We don't have down and up events if using toolkit scroll bars,
5798 so make this always a click event. Store in the `part' of
5799 the Lisp event a symbol which maps to the following actions:
5801 `above_handle' page up
5802 `below_handle' page down
5803 `up' line up
5804 `down' line down
5805 `top' top of buffer
5806 `bottom' bottom of buffer
5807 `handle' thumb has been dragged.
5808 `end-scroll' end of interaction with scroll bar
5810 The incoming input_event contains in its `part' member an
5811 index of type `enum scroll_bar_part' which we can use as an
5812 index in scroll_bar_parts to get the appropriate symbol. */
5814 case SCROLL_BAR_CLICK_EVENT:
5816 Lisp_Object position, head, window, portion_whole, part;
5818 window = event->frame_or_window;
5819 portion_whole = Fcons (event->x, event->y);
5820 part = *scroll_bar_parts[(int) event->part];
5822 position
5823 = Fcons (window,
5824 Fcons (Qvertical_scroll_bar,
5825 Fcons (portion_whole,
5826 Fcons (make_number (event->timestamp),
5827 Fcons (part, Qnil)))));
5829 /* Always treat scroll bar events as clicks. */
5830 event->modifiers |= click_modifier;
5831 event->modifiers &= ~up_modifier;
5833 if (event->code >= ASIZE (mouse_syms))
5834 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5836 /* Get the symbol we should use for the mouse click. */
5837 head = modify_event_symbol (event->code,
5838 event->modifiers,
5839 Qmouse_click,
5840 Vlispy_mouse_stem,
5841 NULL, &mouse_syms,
5842 XVECTOR (mouse_syms)->size);
5843 return Fcons (head, Fcons (position, Qnil));
5846 #endif /* USE_TOOLKIT_SCROLL_BARS */
5848 #ifdef WINDOWSNT
5849 case W32_SCROLL_BAR_CLICK_EVENT:
5851 int button = event->code;
5852 int is_double;
5853 Lisp_Object position;
5854 Lisp_Object *start_pos_ptr;
5855 Lisp_Object start_pos;
5858 Lisp_Object window;
5859 Lisp_Object portion_whole;
5860 Lisp_Object part;
5862 window = event->frame_or_window;
5863 portion_whole = Fcons (event->x, event->y);
5864 part = *scroll_bar_parts[(int) event->part];
5866 position
5867 = Fcons (window,
5868 Fcons (Qvertical_scroll_bar,
5869 Fcons (portion_whole,
5870 Fcons (make_number (event->timestamp),
5871 Fcons (part, Qnil)))));
5874 /* Always treat W32 scroll bar events as clicks. */
5875 event->modifiers |= click_modifier;
5878 /* Get the symbol we should use for the mouse click. */
5879 Lisp_Object head;
5881 head = modify_event_symbol (button,
5882 event->modifiers,
5883 Qmouse_click,
5884 Vlispy_mouse_stem,
5885 NULL, &mouse_syms,
5886 XVECTOR (mouse_syms)->size);
5887 return Fcons (head,
5888 Fcons (position,
5889 Qnil));
5892 #endif /* WINDOWSNT */
5894 case DRAG_N_DROP_EVENT:
5896 FRAME_PTR f;
5897 Lisp_Object head, position;
5898 Lisp_Object files;
5900 f = XFRAME (event->frame_or_window);
5901 files = event->arg;
5903 /* Ignore mouse events that were made on frames that
5904 have been deleted. */
5905 if (! FRAME_LIVE_P (f))
5906 return Qnil;
5908 position = make_lispy_position (f, &event->x, &event->y,
5909 event->timestamp);
5911 head = modify_event_symbol (0, event->modifiers,
5912 Qdrag_n_drop, Qnil,
5913 lispy_drag_n_drop_names,
5914 &drag_n_drop_syms, 1);
5915 return Fcons (head,
5916 Fcons (position,
5917 Fcons (files,
5918 Qnil)));
5920 #endif /* HAVE_MOUSE */
5922 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5923 || defined (USE_GTK)
5924 case MENU_BAR_EVENT:
5925 if (EQ (event->arg, event->frame_or_window))
5926 /* This is the prefix key. We translate this to
5927 `(menu_bar)' because the code in keyboard.c for menu
5928 events, which we use, relies on this. */
5929 return Fcons (Qmenu_bar, Qnil);
5930 return event->arg;
5931 #endif
5933 case SELECT_WINDOW_EVENT:
5934 /* Make an event (select-window (WINDOW)). */
5935 return Fcons (Qselect_window,
5936 Fcons (Fcons (event->frame_or_window, Qnil),
5937 Qnil));
5939 case TOOL_BAR_EVENT:
5940 if (EQ (event->arg, event->frame_or_window))
5941 /* This is the prefix key. We translate this to
5942 `(tool_bar)' because the code in keyboard.c for tool bar
5943 events, which we use, relies on this. */
5944 return Fcons (Qtool_bar, Qnil);
5945 else if (SYMBOLP (event->arg))
5946 return apply_modifiers (event->modifiers, event->arg);
5947 return event->arg;
5949 case USER_SIGNAL_EVENT:
5950 /* A user signal. */
5951 switch (event->code)
5953 case 0:
5954 return Qsignal;
5955 #ifdef SIGUSR1
5956 case SIGUSR1:
5957 return intern ("usr1");
5958 #endif
5959 #ifdef SIGUSR2
5960 case SIGUSR2:
5961 return intern ("usr2");
5962 #endif
5963 default:
5964 return make_number (event->code);
5967 case SAVE_SESSION_EVENT:
5968 return Qsave_session;
5970 #ifdef MAC_OS
5971 case MAC_APPLE_EVENT:
5973 Lisp_Object spec[2];
5975 spec[0] = event->x;
5976 spec[1] = event->y;
5977 return Fcons (Qmac_apple_event,
5978 Fcons (Fvector (2, spec),
5979 Fcons (event->arg, Qnil)));
5981 #endif
5983 /* The 'kind' field of the event is something we don't recognize. */
5984 default:
5985 abort ();
5989 #ifdef HAVE_MOUSE
5991 static Lisp_Object
5992 make_lispy_movement (frame, bar_window, part, x, y, time)
5993 FRAME_PTR frame;
5994 Lisp_Object bar_window;
5995 enum scroll_bar_part part;
5996 Lisp_Object x, y;
5997 unsigned long time;
5999 /* Is it a scroll bar movement? */
6000 if (frame && ! NILP (bar_window))
6002 Lisp_Object part_sym;
6004 part_sym = *scroll_bar_parts[(int) part];
6005 return Fcons (Qscroll_bar_movement,
6006 (Fcons (Fcons (bar_window,
6007 Fcons (Qvertical_scroll_bar,
6008 Fcons (Fcons (x, y),
6009 Fcons (make_number (time),
6010 Fcons (part_sym,
6011 Qnil))))),
6012 Qnil)));
6015 /* Or is it an ordinary mouse movement? */
6016 else
6018 Lisp_Object position;
6020 position = make_lispy_position (frame, &x, &y, time);
6022 return Fcons (Qmouse_movement,
6023 Fcons (position,
6024 Qnil));
6028 #endif /* HAVE_MOUSE */
6030 /* Construct a switch frame event. */
6031 static Lisp_Object
6032 make_lispy_switch_frame (frame)
6033 Lisp_Object frame;
6035 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
6038 /* Manipulating modifiers. */
6040 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6042 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6043 SYMBOL's name of the end of the modifiers; the string from this
6044 position is the unmodified symbol name.
6046 This doesn't use any caches. */
6048 static int
6049 parse_modifiers_uncached (symbol, modifier_end)
6050 Lisp_Object symbol;
6051 int *modifier_end;
6053 Lisp_Object name;
6054 int i;
6055 int modifiers;
6057 CHECK_SYMBOL (symbol);
6059 modifiers = 0;
6060 name = SYMBOL_NAME (symbol);
6062 for (i = 0; i+2 <= SBYTES (name); )
6064 int this_mod_end = 0;
6065 int this_mod = 0;
6067 /* See if the name continues with a modifier word.
6068 Check that the word appears, but don't check what follows it.
6069 Set this_mod and this_mod_end to record what we find. */
6071 switch (SREF (name, i))
6073 #define SINGLE_LETTER_MOD(BIT) \
6074 (this_mod_end = i + 1, this_mod = BIT)
6076 case 'A':
6077 SINGLE_LETTER_MOD (alt_modifier);
6078 break;
6080 case 'C':
6081 SINGLE_LETTER_MOD (ctrl_modifier);
6082 break;
6084 case 'H':
6085 SINGLE_LETTER_MOD (hyper_modifier);
6086 break;
6088 case 'M':
6089 SINGLE_LETTER_MOD (meta_modifier);
6090 break;
6092 case 'S':
6093 SINGLE_LETTER_MOD (shift_modifier);
6094 break;
6096 case 's':
6097 SINGLE_LETTER_MOD (super_modifier);
6098 break;
6100 #undef SINGLE_LETTER_MOD
6102 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6103 if (i + LEN + 1 <= SBYTES (name) \
6104 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
6106 this_mod_end = i + LEN; \
6107 this_mod = BIT; \
6110 case 'd':
6111 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6112 MULTI_LETTER_MOD (down_modifier, "down", 4);
6113 MULTI_LETTER_MOD (double_modifier, "double", 6);
6114 break;
6116 case 't':
6117 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6118 break;
6119 #undef MULTI_LETTER_MOD
6123 /* If we found no modifier, stop looking for them. */
6124 if (this_mod_end == 0)
6125 break;
6127 /* Check there is a dash after the modifier, so that it
6128 really is a modifier. */
6129 if (this_mod_end >= SBYTES (name)
6130 || SREF (name, this_mod_end) != '-')
6131 break;
6133 /* This modifier is real; look for another. */
6134 modifiers |= this_mod;
6135 i = this_mod_end + 1;
6138 /* Should we include the `click' modifier? */
6139 if (! (modifiers & (down_modifier | drag_modifier
6140 | double_modifier | triple_modifier))
6141 && i + 7 == SBYTES (name)
6142 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
6143 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6144 modifiers |= click_modifier;
6146 if (modifier_end)
6147 *modifier_end = i;
6149 return modifiers;
6152 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6153 prepended to the string BASE[0..BASE_LEN-1].
6154 This doesn't use any caches. */
6155 static Lisp_Object
6156 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
6157 int modifiers;
6158 char *base;
6159 int base_len, base_len_byte;
6161 /* Since BASE could contain nulls, we can't use intern here; we have
6162 to use Fintern, which expects a genuine Lisp_String, and keeps a
6163 reference to it. */
6164 char *new_mods
6165 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6166 int mod_len;
6169 char *p = new_mods;
6171 /* Only the event queue may use the `up' modifier; it should always
6172 be turned into a click or drag event before presented to lisp code. */
6173 if (modifiers & up_modifier)
6174 abort ();
6176 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6177 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6178 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6179 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6180 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6181 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6182 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
6183 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
6184 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
6185 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
6186 /* The click modifier is denoted by the absence of other modifiers. */
6188 *p = '\0';
6190 mod_len = p - new_mods;
6194 Lisp_Object new_name;
6196 new_name = make_uninit_multibyte_string (mod_len + base_len,
6197 mod_len + base_len_byte);
6198 bcopy (new_mods, SDATA (new_name), mod_len);
6199 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
6201 return Fintern (new_name, Qnil);
6206 static char *modifier_names[] =
6208 "up", "down", "drag", "click", "double", "triple", 0, 0,
6209 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6210 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6212 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6214 static Lisp_Object modifier_symbols;
6216 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6217 static Lisp_Object
6218 lispy_modifier_list (modifiers)
6219 int modifiers;
6221 Lisp_Object modifier_list;
6222 int i;
6224 modifier_list = Qnil;
6225 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6226 if (modifiers & (1<<i))
6227 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
6228 modifier_list);
6230 return modifier_list;
6234 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6235 where UNMODIFIED is the unmodified form of SYMBOL,
6236 MASK is the set of modifiers present in SYMBOL's name.
6237 This is similar to parse_modifiers_uncached, but uses the cache in
6238 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6239 Qevent_symbol_elements property. */
6241 Lisp_Object
6242 parse_modifiers (symbol)
6243 Lisp_Object symbol;
6245 Lisp_Object elements;
6247 elements = Fget (symbol, Qevent_symbol_element_mask);
6248 if (CONSP (elements))
6249 return elements;
6250 else
6252 int end;
6253 int modifiers = parse_modifiers_uncached (symbol, &end);
6254 Lisp_Object unmodified;
6255 Lisp_Object mask;
6257 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
6258 SBYTES (SYMBOL_NAME (symbol)) - end),
6259 Qnil);
6261 if (modifiers & ~INTMASK)
6262 abort ();
6263 XSETFASTINT (mask, modifiers);
6264 elements = Fcons (unmodified, Fcons (mask, Qnil));
6266 /* Cache the parsing results on SYMBOL. */
6267 Fput (symbol, Qevent_symbol_element_mask,
6268 elements);
6269 Fput (symbol, Qevent_symbol_elements,
6270 Fcons (unmodified, lispy_modifier_list (modifiers)));
6272 /* Since we know that SYMBOL is modifiers applied to unmodified,
6273 it would be nice to put that in unmodified's cache.
6274 But we can't, since we're not sure that parse_modifiers is
6275 canonical. */
6277 return elements;
6281 /* Apply the modifiers MODIFIERS to the symbol BASE.
6282 BASE must be unmodified.
6284 This is like apply_modifiers_uncached, but uses BASE's
6285 Qmodifier_cache property, if present. It also builds
6286 Qevent_symbol_elements properties, since it has that info anyway.
6288 apply_modifiers copies the value of BASE's Qevent_kind property to
6289 the modified symbol. */
6290 static Lisp_Object
6291 apply_modifiers (modifiers, base)
6292 int modifiers;
6293 Lisp_Object base;
6295 Lisp_Object cache, index, entry, new_symbol;
6297 /* Mask out upper bits. We don't know where this value's been. */
6298 modifiers &= INTMASK;
6300 /* The click modifier never figures into cache indices. */
6301 cache = Fget (base, Qmodifier_cache);
6302 XSETFASTINT (index, (modifiers & ~click_modifier));
6303 entry = assq_no_quit (index, cache);
6305 if (CONSP (entry))
6306 new_symbol = XCDR (entry);
6307 else
6309 /* We have to create the symbol ourselves. */
6310 new_symbol = apply_modifiers_uncached (modifiers,
6311 SDATA (SYMBOL_NAME (base)),
6312 SCHARS (SYMBOL_NAME (base)),
6313 SBYTES (SYMBOL_NAME (base)));
6315 /* Add the new symbol to the base's cache. */
6316 entry = Fcons (index, new_symbol);
6317 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6319 /* We have the parsing info now for free, so we could add it to
6320 the caches:
6321 XSETFASTINT (index, modifiers);
6322 Fput (new_symbol, Qevent_symbol_element_mask,
6323 Fcons (base, Fcons (index, Qnil)));
6324 Fput (new_symbol, Qevent_symbol_elements,
6325 Fcons (base, lispy_modifier_list (modifiers)));
6326 Sadly, this is only correct if `base' is indeed a base event,
6327 which is not necessarily the case. -stef */
6330 /* Make sure this symbol is of the same kind as BASE.
6332 You'd think we could just set this once and for all when we
6333 intern the symbol above, but reorder_modifiers may call us when
6334 BASE's property isn't set right; we can't assume that just
6335 because it has a Qmodifier_cache property it must have its
6336 Qevent_kind set right as well. */
6337 if (NILP (Fget (new_symbol, Qevent_kind)))
6339 Lisp_Object kind;
6341 kind = Fget (base, Qevent_kind);
6342 if (! NILP (kind))
6343 Fput (new_symbol, Qevent_kind, kind);
6346 return new_symbol;
6350 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6351 return a symbol with the modifiers placed in the canonical order.
6352 Canonical order is alphabetical, except for down and drag, which
6353 always come last. The 'click' modifier is never written out.
6355 Fdefine_key calls this to make sure that (for example) C-M-foo
6356 and M-C-foo end up being equivalent in the keymap. */
6358 Lisp_Object
6359 reorder_modifiers (symbol)
6360 Lisp_Object symbol;
6362 /* It's hopefully okay to write the code this way, since everything
6363 will soon be in caches, and no consing will be done at all. */
6364 Lisp_Object parsed;
6366 parsed = parse_modifiers (symbol);
6367 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6368 XCAR (parsed));
6372 /* For handling events, we often want to produce a symbol whose name
6373 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6374 to some base, like the name of a function key or mouse button.
6375 modify_event_symbol produces symbols of this sort.
6377 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6378 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6379 in the table.
6381 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6382 into symbol names, or a string specifying a name stem used to
6383 construct a symbol name or the form `STEM-N', where N is the decimal
6384 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6385 non-nil; otherwise NAME_TABLE is used.
6387 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6388 persist between calls to modify_event_symbol that it can use to
6389 store a cache of the symbols it's generated for this NAME_TABLE
6390 before. The object stored there may be a vector or an alist.
6392 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6394 MODIFIERS is a set of modifier bits (as given in struct input_events)
6395 whose prefixes should be applied to the symbol name.
6397 SYMBOL_KIND is the value to be placed in the event_kind property of
6398 the returned symbol.
6400 The symbols we create are supposed to have an
6401 `event-symbol-elements' property, which lists the modifiers present
6402 in the symbol's name. */
6404 static Lisp_Object
6405 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
6406 name_table, symbol_table, table_size)
6407 int symbol_num;
6408 unsigned modifiers;
6409 Lisp_Object symbol_kind;
6410 Lisp_Object name_alist_or_stem;
6411 char **name_table;
6412 Lisp_Object *symbol_table;
6413 unsigned int table_size;
6415 Lisp_Object value;
6416 Lisp_Object symbol_int;
6418 /* Get rid of the "vendor-specific" bit here. */
6419 XSETINT (symbol_int, symbol_num & 0xffffff);
6421 /* Is this a request for a valid symbol? */
6422 if (symbol_num < 0 || symbol_num >= table_size)
6423 return Qnil;
6425 if (CONSP (*symbol_table))
6426 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6428 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6429 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6430 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6431 we've never used that symbol before. */
6432 else
6434 if (! VECTORP (*symbol_table)
6435 || XVECTOR (*symbol_table)->size != table_size)
6437 Lisp_Object size;
6439 XSETFASTINT (size, table_size);
6440 *symbol_table = Fmake_vector (size, Qnil);
6443 value = XVECTOR (*symbol_table)->contents[symbol_num];
6446 /* Have we already used this symbol before? */
6447 if (NILP (value))
6449 /* No; let's create it. */
6450 if (CONSP (name_alist_or_stem))
6451 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6452 else if (STRINGP (name_alist_or_stem))
6454 int len = SBYTES (name_alist_or_stem);
6455 char *buf = (char *) alloca (len + 50);
6456 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6457 (long) XINT (symbol_int) + 1);
6458 value = intern (buf);
6460 else if (name_table != 0 && name_table[symbol_num])
6461 value = intern (name_table[symbol_num]);
6463 #ifdef HAVE_WINDOW_SYSTEM
6464 if (NILP (value))
6466 char *name = x_get_keysym_name (symbol_num);
6467 if (name)
6468 value = intern (name);
6470 #endif
6472 if (NILP (value))
6474 char buf[20];
6475 sprintf (buf, "key-%d", symbol_num);
6476 value = intern (buf);
6479 if (CONSP (*symbol_table))
6480 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6481 else
6482 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6484 /* Fill in the cache entries for this symbol; this also
6485 builds the Qevent_symbol_elements property, which the user
6486 cares about. */
6487 apply_modifiers (modifiers & click_modifier, value);
6488 Fput (value, Qevent_kind, symbol_kind);
6491 /* Apply modifiers to that symbol. */
6492 return apply_modifiers (modifiers, value);
6495 /* Convert a list that represents an event type,
6496 such as (ctrl meta backspace), into the usual representation of that
6497 event type as a number or a symbol. */
6499 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6500 doc: /* Convert the event description list EVENT-DESC to an event type.
6501 EVENT-DESC should contain one base event type (a character or symbol)
6502 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6503 drag, down, double or triple). The base must be last.
6504 The return value is an event type (a character or symbol) which
6505 has the same base event type and all the specified modifiers. */)
6506 (event_desc)
6507 Lisp_Object event_desc;
6509 Lisp_Object base;
6510 int modifiers = 0;
6511 Lisp_Object rest;
6513 base = Qnil;
6514 rest = event_desc;
6515 while (CONSP (rest))
6517 Lisp_Object elt;
6518 int this = 0;
6520 elt = XCAR (rest);
6521 rest = XCDR (rest);
6523 /* Given a symbol, see if it is a modifier name. */
6524 if (SYMBOLP (elt) && CONSP (rest))
6525 this = parse_solitary_modifier (elt);
6527 if (this != 0)
6528 modifiers |= this;
6529 else if (!NILP (base))
6530 error ("Two bases given in one event");
6531 else
6532 base = elt;
6536 /* Let the symbol A refer to the character A. */
6537 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6538 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6540 if (INTEGERP (base))
6542 /* Turn (shift a) into A. */
6543 if ((modifiers & shift_modifier) != 0
6544 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6546 XSETINT (base, XINT (base) - ('a' - 'A'));
6547 modifiers &= ~shift_modifier;
6550 /* Turn (control a) into C-a. */
6551 if (modifiers & ctrl_modifier)
6552 return make_number ((modifiers & ~ctrl_modifier)
6553 | make_ctrl_char (XINT (base)));
6554 else
6555 return make_number (modifiers | XINT (base));
6557 else if (SYMBOLP (base))
6558 return apply_modifiers (modifiers, base);
6559 else
6561 error ("Invalid base event");
6562 return Qnil;
6566 /* Try to recognize SYMBOL as a modifier name.
6567 Return the modifier flag bit, or 0 if not recognized. */
6569 static int
6570 parse_solitary_modifier (symbol)
6571 Lisp_Object symbol;
6573 Lisp_Object name = SYMBOL_NAME (symbol);
6575 switch (SREF (name, 0))
6577 #define SINGLE_LETTER_MOD(BIT) \
6578 if (SBYTES (name) == 1) \
6579 return BIT;
6581 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6582 if (LEN == SBYTES (name) \
6583 && ! strncmp (SDATA (name), NAME, LEN)) \
6584 return BIT;
6586 case 'A':
6587 SINGLE_LETTER_MOD (alt_modifier);
6588 break;
6590 case 'a':
6591 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6592 break;
6594 case 'C':
6595 SINGLE_LETTER_MOD (ctrl_modifier);
6596 break;
6598 case 'c':
6599 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6600 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6601 break;
6603 case 'H':
6604 SINGLE_LETTER_MOD (hyper_modifier);
6605 break;
6607 case 'h':
6608 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6609 break;
6611 case 'M':
6612 SINGLE_LETTER_MOD (meta_modifier);
6613 break;
6615 case 'm':
6616 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6617 break;
6619 case 'S':
6620 SINGLE_LETTER_MOD (shift_modifier);
6621 break;
6623 case 's':
6624 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6625 MULTI_LETTER_MOD (super_modifier, "super", 5);
6626 SINGLE_LETTER_MOD (super_modifier);
6627 break;
6629 case 'd':
6630 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6631 MULTI_LETTER_MOD (down_modifier, "down", 4);
6632 MULTI_LETTER_MOD (double_modifier, "double", 6);
6633 break;
6635 case 't':
6636 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6637 break;
6639 #undef SINGLE_LETTER_MOD
6640 #undef MULTI_LETTER_MOD
6643 return 0;
6646 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6647 Such a list is not valid as an event,
6648 but it can be a Lucid-style event type list. */
6651 lucid_event_type_list_p (object)
6652 Lisp_Object object;
6654 Lisp_Object tail;
6656 if (! CONSP (object))
6657 return 0;
6659 if (EQ (XCAR (object), Qhelp_echo)
6660 || EQ (XCAR (object), Qvertical_line)
6661 || EQ (XCAR (object), Qmode_line)
6662 || EQ (XCAR (object), Qheader_line))
6663 return 0;
6665 for (tail = object; CONSP (tail); tail = XCDR (tail))
6667 Lisp_Object elt;
6668 elt = XCAR (tail);
6669 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6670 return 0;
6673 return NILP (tail);
6676 /* Store into *addr a value nonzero if terminal input chars are available.
6677 Serves the purpose of ioctl (0, FIONREAD, addr)
6678 but works even if FIONREAD does not exist.
6679 (In fact, this may actually read some input.)
6681 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6682 timer events that are ripe.
6683 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6684 events (FOCUS_IN_EVENT).
6685 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6686 movements and toolkit scroll bar thumb drags. */
6688 static void
6689 get_input_pending (addr, flags)
6690 int *addr;
6691 int flags;
6693 /* First of all, have we already counted some input? */
6694 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6696 /* If input is being read as it arrives, and we have none, there is none. */
6697 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6698 return;
6700 /* Try to read some input and see how much we get. */
6701 gobble_input (0);
6702 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6705 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6707 void
6708 gobble_input (expected)
6709 int expected;
6711 #ifndef VMS
6712 #ifdef SIGIO
6713 if (interrupt_input)
6715 SIGMASKTYPE mask;
6716 mask = sigblock (sigmask (SIGIO));
6717 read_avail_input (expected);
6718 sigsetmask (mask);
6720 else
6721 #ifdef POLL_FOR_INPUT
6722 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6724 SIGMASKTYPE mask;
6725 mask = sigblock (sigmask (SIGALRM));
6726 read_avail_input (expected);
6727 sigsetmask (mask);
6729 else
6730 #endif
6731 #endif
6732 read_avail_input (expected);
6733 #endif
6736 /* Put a BUFFER_SWITCH_EVENT in the buffer
6737 so that read_key_sequence will notice the new current buffer. */
6739 void
6740 record_asynch_buffer_change ()
6742 struct input_event event;
6743 Lisp_Object tem;
6744 EVENT_INIT (event);
6746 event.kind = BUFFER_SWITCH_EVENT;
6747 event.frame_or_window = Qnil;
6748 event.arg = Qnil;
6750 #ifdef subprocesses
6751 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6752 The purpose of the event is to make read_key_sequence look up the
6753 keymaps again. If we aren't in read_key_sequence, we don't need one,
6754 and the event could cause trouble by messing up (input-pending-p). */
6755 tem = Fwaiting_for_user_input_p ();
6756 if (NILP (tem))
6757 return;
6758 #else
6759 /* We never need these events if we have no asynchronous subprocesses. */
6760 return;
6761 #endif
6763 /* Make sure no interrupt happens while storing the event. */
6764 #ifdef SIGIO
6765 if (interrupt_input)
6767 SIGMASKTYPE mask;
6768 mask = sigblock (sigmask (SIGIO));
6769 kbd_buffer_store_event (&event);
6770 sigsetmask (mask);
6772 else
6773 #endif
6775 stop_polling ();
6776 kbd_buffer_store_event (&event);
6777 start_polling ();
6781 #ifndef VMS
6783 /* Read any terminal input already buffered up by the system
6784 into the kbd_buffer, but do not wait.
6786 EXPECTED should be nonzero if the caller knows there is some input.
6788 Except on VMS, all input is read by this function.
6789 If interrupt_input is nonzero, this function MUST be called
6790 only when SIGIO is blocked.
6792 Returns the number of keyboard chars read, or -1 meaning
6793 this is a bad time to try to read input. */
6795 static int
6796 read_avail_input (expected)
6797 int expected;
6799 register int i;
6800 int nread = 0;
6802 if (read_socket_hook)
6804 int nr;
6805 struct input_event hold_quit;
6807 EVENT_INIT (hold_quit);
6808 hold_quit.kind = NO_EVENT;
6810 /* No need for FIONREAD or fcntl; just say don't wait. */
6811 while (nr = (*read_socket_hook) (input_fd, expected, &hold_quit), nr > 0)
6813 nread += nr;
6814 expected = 0;
6816 if (hold_quit.kind != NO_EVENT)
6817 kbd_buffer_store_event (&hold_quit);
6819 else
6821 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6822 the kbd_buffer can really hold. That may prevent loss
6823 of characters on some systems when input is stuffed at us. */
6824 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6825 int n_to_read;
6827 /* Determine how many characters we should *try* to read. */
6828 #ifdef WINDOWSNT
6829 return 0;
6830 #else /* not WINDOWSNT */
6831 #ifdef MSDOS
6832 n_to_read = dos_keysns ();
6833 if (n_to_read == 0)
6834 return 0;
6835 #else /* not MSDOS */
6836 #ifdef FIONREAD
6837 /* Find out how much input is available. */
6838 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6839 /* Formerly simply reported no input, but that sometimes led to
6840 a failure of Emacs to terminate.
6841 SIGHUP seems appropriate if we can't reach the terminal. */
6842 /* ??? Is it really right to send the signal just to this process
6843 rather than to the whole process group?
6844 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6846 if (! noninteractive)
6847 kill (getpid (), SIGHUP);
6848 else
6849 n_to_read = 0;
6851 if (n_to_read == 0)
6852 return 0;
6853 if (n_to_read > sizeof cbuf)
6854 n_to_read = sizeof cbuf;
6855 #else /* no FIONREAD */
6856 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6857 /* Read some input if available, but don't wait. */
6858 n_to_read = sizeof cbuf;
6859 fcntl (input_fd, F_SETFL, O_NDELAY);
6860 #else
6861 you lose;
6862 #endif
6863 #endif
6864 #endif /* not MSDOS */
6865 #endif /* not WINDOWSNT */
6867 /* Now read; for one reason or another, this will not block.
6868 NREAD is set to the number of chars read. */
6871 #ifdef MSDOS
6872 cbuf[0] = dos_keyread ();
6873 nread = 1;
6874 #else
6875 nread = emacs_read (input_fd, cbuf, n_to_read);
6876 #endif
6877 /* POSIX infers that processes which are not in the session leader's
6878 process group won't get SIGHUP's at logout time. BSDI adheres to
6879 this part standard and returns -1 from read (0) with errno==EIO
6880 when the control tty is taken away.
6881 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6882 if (nread == -1 && errno == EIO)
6883 kill (0, SIGHUP);
6884 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6885 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6886 This looks incorrect, but it isn't, because _BSD causes
6887 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6888 and that causes a value other than 0 when there is no input. */
6889 if (nread == 0)
6890 kill (0, SIGHUP);
6891 #endif
6893 while (
6894 /* We used to retry the read if it was interrupted.
6895 But this does the wrong thing when O_NDELAY causes
6896 an EAGAIN error. Does anybody know of a situation
6897 where a retry is actually needed? */
6898 #if 0
6899 nread < 0 && (errno == EAGAIN
6900 #ifdef EFAULT
6901 || errno == EFAULT
6902 #endif
6903 #ifdef EBADSLT
6904 || errno == EBADSLT
6905 #endif
6907 #else
6909 #endif
6912 #ifndef FIONREAD
6913 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6914 fcntl (input_fd, F_SETFL, 0);
6915 #endif /* USG or DGUX or CYGWIN */
6916 #endif /* no FIONREAD */
6917 for (i = 0; i < nread; i++)
6919 struct input_event buf;
6920 EVENT_INIT (buf);
6921 buf.kind = ASCII_KEYSTROKE_EVENT;
6922 buf.modifiers = 0;
6923 if (meta_key == 1 && (cbuf[i] & 0x80))
6924 buf.modifiers = meta_modifier;
6925 if (meta_key != 2)
6926 cbuf[i] &= ~0x80;
6928 buf.code = cbuf[i];
6929 buf.frame_or_window = selected_frame;
6930 buf.arg = Qnil;
6932 kbd_buffer_store_event (&buf);
6933 /* Don't look at input that follows a C-g too closely.
6934 This reduces lossage due to autorepeat on C-g. */
6935 if (buf.kind == ASCII_KEYSTROKE_EVENT
6936 && buf.code == quit_char)
6937 break;
6941 return nread;
6943 #endif /* not VMS */
6945 void
6946 handle_async_input ()
6948 #ifdef BSD4_1
6949 extern int select_alarmed;
6950 #endif
6952 interrupt_input_pending = 0;
6954 while (1)
6956 int nread;
6957 nread = read_avail_input (1);
6958 /* -1 means it's not ok to read the input now.
6959 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6960 0 means there was no keyboard input available. */
6961 if (nread <= 0)
6962 break;
6964 #ifdef BSD4_1
6965 select_alarmed = 1; /* Force the select emulator back to life */
6966 #endif
6970 #ifdef SIGIO /* for entire page */
6971 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6973 static SIGTYPE
6974 input_available_signal (signo)
6975 int signo;
6977 /* Must preserve main program's value of errno. */
6978 int old_errno = errno;
6979 #if defined (USG) && !defined (POSIX_SIGNALS)
6980 /* USG systems forget handlers when they are used;
6981 must reestablish each time */
6982 signal (signo, input_available_signal);
6983 #endif /* USG */
6985 #ifdef BSD4_1
6986 sigisheld (SIGIO);
6987 #endif
6989 #ifdef SYNC_INPUT
6990 interrupt_input_pending = 1;
6991 #else
6992 SIGNAL_THREAD_CHECK (signo);
6993 #endif
6995 if (input_available_clear_time)
6996 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6998 #ifndef SYNC_INPUT
6999 handle_async_input ();
7000 #endif
7002 #ifdef BSD4_1
7003 sigfree ();
7004 #endif
7005 errno = old_errno;
7007 #endif /* SIGIO */
7009 /* Send ourselves a SIGIO.
7011 This function exists so that the UNBLOCK_INPUT macro in
7012 blockinput.h can have some way to take care of input we put off
7013 dealing with, without assuming that every file which uses
7014 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
7015 void
7016 reinvoke_input_signal ()
7018 #ifdef SIGIO
7019 handle_async_input ();
7020 #endif
7025 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
7026 static Lisp_Object menu_bar_one_keymap_changed_items;
7028 /* These variables hold the vector under construction within
7029 menu_bar_items and its subroutines, and the current index
7030 for storing into that vector. */
7031 static Lisp_Object menu_bar_items_vector;
7032 static int menu_bar_items_index;
7034 /* Return a vector of menu items for a menu bar, appropriate
7035 to the current buffer. Each item has three elements in the vector:
7036 KEY STRING MAPLIST.
7038 OLD is an old vector we can optionally reuse, or nil. */
7040 Lisp_Object
7041 menu_bar_items (old)
7042 Lisp_Object old;
7044 /* The number of keymaps we're scanning right now, and the number of
7045 keymaps we have allocated space for. */
7046 int nmaps;
7048 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7049 in the current keymaps, or nil where it is not a prefix. */
7050 Lisp_Object *maps;
7052 Lisp_Object def, tail;
7054 Lisp_Object result;
7056 int mapno;
7057 Lisp_Object oquit;
7059 int i;
7061 /* In order to build the menus, we need to call the keymap
7062 accessors. They all call QUIT. But this function is called
7063 during redisplay, during which a quit is fatal. So inhibit
7064 quitting while building the menus.
7065 We do this instead of specbind because (1) errors will clear it anyway
7066 and (2) this avoids risk of specpdl overflow. */
7067 oquit = Vinhibit_quit;
7068 Vinhibit_quit = Qt;
7070 if (!NILP (old))
7071 menu_bar_items_vector = old;
7072 else
7073 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
7074 menu_bar_items_index = 0;
7076 /* Build our list of keymaps.
7077 If we recognize a function key and replace its escape sequence in
7078 keybuf with its symbol, or if the sequence starts with a mouse
7079 click and we need to switch buffers, we jump back here to rebuild
7080 the initial keymaps from the current buffer. */
7082 Lisp_Object *tmaps;
7084 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7085 if (!NILP (Voverriding_local_map_menu_flag))
7087 /* Yes, use them (if non-nil) as well as the global map. */
7088 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7089 nmaps = 0;
7090 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7091 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7092 if (!NILP (Voverriding_local_map))
7093 maps[nmaps++] = Voverriding_local_map;
7095 else
7097 /* No, so use major and minor mode keymaps and keymap property.
7098 Note that menu-bar bindings in the local-map and keymap
7099 properties may not work reliable, as they are only
7100 recognized when the menu-bar (or mode-line) is updated,
7101 which does not normally happen after every command. */
7102 Lisp_Object tem;
7103 int nminor;
7104 nminor = current_minor_maps (NULL, &tmaps);
7105 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7106 nmaps = 0;
7107 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7108 maps[nmaps++] = tem;
7109 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7110 nmaps += nminor;
7111 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7113 maps[nmaps++] = current_global_map;
7116 /* Look up in each map the dummy prefix key `menu-bar'. */
7118 result = Qnil;
7120 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7121 if (!NILP (maps[mapno]))
7123 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7124 0, 1);
7125 if (CONSP (def))
7127 menu_bar_one_keymap_changed_items = Qnil;
7128 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
7132 /* Move to the end those items that should be at the end. */
7134 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7136 int i;
7137 int end = menu_bar_items_index;
7139 for (i = 0; i < end; i += 4)
7140 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
7142 Lisp_Object tem0, tem1, tem2, tem3;
7143 /* Move the item at index I to the end,
7144 shifting all the others forward. */
7145 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
7146 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
7147 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7148 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
7149 if (end > i + 4)
7150 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7151 &XVECTOR (menu_bar_items_vector)->contents[i],
7152 (end - i - 4) * sizeof (Lisp_Object));
7153 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
7154 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
7155 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
7156 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
7157 break;
7161 /* Add nil, nil, nil, nil at the end. */
7162 i = menu_bar_items_index;
7163 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7165 Lisp_Object tem;
7166 tem = Fmake_vector (make_number (2 * i), Qnil);
7167 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7168 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7169 menu_bar_items_vector = tem;
7171 /* Add this item. */
7172 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7173 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7174 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7175 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7176 menu_bar_items_index = i;
7178 Vinhibit_quit = oquit;
7179 return menu_bar_items_vector;
7182 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7183 If there's already an item for KEY, add this DEF to it. */
7185 Lisp_Object item_properties;
7187 static void
7188 menu_bar_item (key, item, dummy1, dummy2)
7189 Lisp_Object key, item, dummy1;
7190 void *dummy2;
7192 struct gcpro gcpro1;
7193 int i;
7194 Lisp_Object tem;
7196 if (EQ (item, Qundefined))
7198 /* If a map has an explicit `undefined' as definition,
7199 discard any previously made menu bar item. */
7201 for (i = 0; i < menu_bar_items_index; i += 4)
7202 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7204 if (menu_bar_items_index > i + 4)
7205 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7206 &XVECTOR (menu_bar_items_vector)->contents[i],
7207 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
7208 menu_bar_items_index -= 4;
7212 /* If this keymap has already contributed to this KEY,
7213 don't contribute to it a second time. */
7214 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7215 if (!NILP (tem) || NILP (item))
7216 return;
7218 menu_bar_one_keymap_changed_items
7219 = Fcons (key, menu_bar_one_keymap_changed_items);
7221 /* We add to menu_bar_one_keymap_changed_items before doing the
7222 parse_menu_item, so that if it turns out it wasn't a menu item,
7223 it still correctly hides any further menu item. */
7224 GCPRO1 (key);
7225 i = parse_menu_item (item, 0, 1);
7226 UNGCPRO;
7227 if (!i)
7228 return;
7230 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7232 /* Find any existing item for this KEY. */
7233 for (i = 0; i < menu_bar_items_index; i += 4)
7234 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7235 break;
7237 /* If we did not find this KEY, add it at the end. */
7238 if (i == menu_bar_items_index)
7240 /* If vector is too small, get a bigger one. */
7241 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7243 Lisp_Object tem;
7244 tem = Fmake_vector (make_number (2 * i), Qnil);
7245 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7246 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7247 menu_bar_items_vector = tem;
7250 /* Add this item. */
7251 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
7252 XVECTOR (menu_bar_items_vector)->contents[i++]
7253 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7254 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
7255 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
7256 menu_bar_items_index = i;
7258 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7259 else
7261 Lisp_Object old;
7262 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7263 /* If the new and the old items are not both keymaps,
7264 the lookup will only find `item'. */
7265 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7266 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
7270 /* This is used as the handler when calling menu_item_eval_property. */
7271 static Lisp_Object
7272 menu_item_eval_property_1 (arg)
7273 Lisp_Object arg;
7275 /* If we got a quit from within the menu computation,
7276 quit all the way out of it. This takes care of C-] in the debugger. */
7277 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7278 Fsignal (Qquit, Qnil);
7280 return Qnil;
7283 /* Evaluate an expression and return the result (or nil if something
7284 went wrong). Used to evaluate dynamic parts of menu items. */
7285 Lisp_Object
7286 menu_item_eval_property (sexpr)
7287 Lisp_Object sexpr;
7289 int count = SPECPDL_INDEX ();
7290 Lisp_Object val;
7291 specbind (Qinhibit_redisplay, Qt);
7292 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7293 menu_item_eval_property_1);
7294 return unbind_to (count, val);
7297 /* This function parses a menu item and leaves the result in the
7298 vector item_properties.
7299 ITEM is a key binding, a possible menu item.
7300 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7301 evaluate dynamic expressions in the menu item.
7302 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7303 top level.
7304 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7305 parse_menu_item returns true if the item is a menu item and false
7306 otherwise. */
7309 parse_menu_item (item, notreal, inmenubar)
7310 Lisp_Object item;
7311 int notreal, inmenubar;
7313 Lisp_Object def, tem, item_string, start;
7314 Lisp_Object cachelist;
7315 Lisp_Object filter;
7316 Lisp_Object keyhint;
7317 int i;
7318 int newcache = 0;
7320 cachelist = Qnil;
7321 filter = Qnil;
7322 keyhint = Qnil;
7324 if (!CONSP (item))
7325 return 0;
7327 /* Create item_properties vector if necessary. */
7328 if (NILP (item_properties))
7329 item_properties
7330 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7332 /* Initialize optional entries. */
7333 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7334 AREF (item_properties, i) = Qnil;
7335 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7337 /* Save the item here to protect it from GC. */
7338 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
7340 item_string = XCAR (item);
7342 start = item;
7343 item = XCDR (item);
7344 if (STRINGP (item_string))
7346 /* Old format menu item. */
7347 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7349 /* Maybe help string. */
7350 if (CONSP (item) && STRINGP (XCAR (item)))
7352 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7353 start = item;
7354 item = XCDR (item);
7357 /* Maybe key binding cache. */
7358 if (CONSP (item) && CONSP (XCAR (item))
7359 && (NILP (XCAR (XCAR (item)))
7360 || VECTORP (XCAR (XCAR (item)))))
7362 cachelist = XCAR (item);
7363 item = XCDR (item);
7366 /* This is the real definition--the function to run. */
7367 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
7369 /* Get enable property, if any. */
7370 if (SYMBOLP (item))
7372 tem = Fget (item, Qmenu_enable);
7373 if (!NILP (Venable_disabled_menus_and_buttons))
7374 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7375 else if (!NILP (tem))
7376 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7379 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7381 /* New format menu item. */
7382 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7383 start = XCDR (item);
7384 if (CONSP (start))
7386 /* We have a real binding. */
7387 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
7389 item = XCDR (start);
7390 /* Is there a cache list with key equivalences. */
7391 if (CONSP (item) && CONSP (XCAR (item)))
7393 cachelist = XCAR (item);
7394 item = XCDR (item);
7397 /* Parse properties. */
7398 while (CONSP (item) && CONSP (XCDR (item)))
7400 tem = XCAR (item);
7401 item = XCDR (item);
7403 if (EQ (tem, QCenable))
7405 if (!NILP (Venable_disabled_menus_and_buttons))
7406 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7407 else
7408 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
7410 else if (EQ (tem, QCvisible) && !notreal)
7412 /* If got a visible property and that evaluates to nil
7413 then ignore this item. */
7414 tem = menu_item_eval_property (XCAR (item));
7415 if (NILP (tem))
7416 return 0;
7418 else if (EQ (tem, QChelp))
7419 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7420 else if (EQ (tem, QCfilter))
7421 filter = item;
7422 else if (EQ (tem, QCkey_sequence))
7424 tem = XCAR (item);
7425 if (NILP (cachelist)
7426 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7427 /* Be GC protected. Set keyhint to item instead of tem. */
7428 keyhint = item;
7430 else if (EQ (tem, QCkeys))
7432 tem = XCAR (item);
7433 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
7434 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7436 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7438 Lisp_Object type;
7439 tem = XCAR (item);
7440 type = XCAR (tem);
7441 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7443 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7444 = XCDR (tem);
7445 AREF (item_properties, ITEM_PROPERTY_TYPE)
7446 = type;
7449 item = XCDR (item);
7452 else if (inmenubar || !NILP (start))
7453 return 0;
7455 else
7456 return 0; /* not a menu item */
7458 /* If item string is not a string, evaluate it to get string.
7459 If we don't get a string, skip this item. */
7460 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7461 if (!(STRINGP (item_string) || notreal))
7463 item_string = menu_item_eval_property (item_string);
7464 if (!STRINGP (item_string))
7465 return 0;
7466 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7469 /* If got a filter apply it on definition. */
7470 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7471 if (!NILP (filter))
7473 def = menu_item_eval_property (list2 (XCAR (filter),
7474 list2 (Qquote, def)));
7476 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
7479 /* Enable or disable selection of item. */
7480 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7481 if (!EQ (tem, Qt))
7483 if (notreal)
7484 tem = Qt;
7485 else
7486 tem = menu_item_eval_property (tem);
7487 if (inmenubar && NILP (tem))
7488 return 0; /* Ignore disabled items in menu bar. */
7489 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7492 /* If we got no definition, this item is just unselectable text which
7493 is OK in a submenu but not in the menubar. */
7494 if (NILP (def))
7495 return (inmenubar ? 0 : 1);
7497 /* See if this is a separate pane or a submenu. */
7498 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7499 tem = get_keymap (def, 0, 1);
7500 /* For a subkeymap, just record its details and exit. */
7501 if (CONSP (tem))
7503 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7504 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7505 return 1;
7508 /* At the top level in the menu bar, do likewise for commands also.
7509 The menu bar does not display equivalent key bindings anyway.
7510 ITEM_PROPERTY_DEF is already set up properly. */
7511 if (inmenubar > 0)
7512 return 1;
7514 /* This is a command. See if there is an equivalent key binding. */
7515 if (NILP (cachelist))
7517 /* We have to create a cachelist. */
7518 CHECK_IMPURE (start);
7519 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7520 cachelist = XCAR (XCDR (start));
7521 newcache = 1;
7522 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7523 if (!NILP (keyhint))
7525 XSETCAR (cachelist, XCAR (keyhint));
7526 newcache = 0;
7528 else if (STRINGP (tem))
7530 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7531 XSETCAR (cachelist, Qt);
7535 tem = XCAR (cachelist);
7536 if (!EQ (tem, Qt))
7538 int chkcache = 0;
7539 Lisp_Object prefix;
7541 if (!NILP (tem))
7542 tem = Fkey_binding (tem, Qnil, Qnil, Qnil);
7544 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7545 if (CONSP (prefix))
7547 def = XCAR (prefix);
7548 prefix = XCDR (prefix);
7550 else
7551 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7553 if (NILP (XCAR (cachelist))) /* Have no saved key. */
7555 if (newcache /* Always check first time. */
7556 /* Should we check everything when precomputing key
7557 bindings? */
7558 /* If something had no key binding before, don't recheck it
7559 because that is too slow--except if we have a list of
7560 rebound commands in Vdefine_key_rebound_commands, do
7561 recheck any command that appears in that list. */
7562 || (CONSP (Vdefine_key_rebound_commands)
7563 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7564 chkcache = 1;
7566 /* We had a saved key. Is it still bound to the command? */
7567 else if (NILP (tem)
7568 || (!EQ (tem, def)
7569 /* If the command is an alias for another
7570 (such as lmenu.el set it up), check if the
7571 original command matches the cached command. */
7572 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7573 chkcache = 1; /* Need to recompute key binding. */
7575 if (chkcache)
7577 /* Recompute equivalent key binding. If the command is an alias
7578 for another (such as lmenu.el set it up), see if the original
7579 command name has equivalent keys. Otherwise look up the
7580 specified command itself. We don't try both, because that
7581 makes lmenu menus slow. */
7582 if (SYMBOLP (def)
7583 && SYMBOLP (XSYMBOL (def)->function)
7584 && ! NILP (Fget (def, Qmenu_alias)))
7585 def = XSYMBOL (def)->function;
7586 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7587 XSETCAR (cachelist, tem);
7588 if (NILP (tem))
7590 XSETCDR (cachelist, Qnil);
7591 chkcache = 0;
7594 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7596 tem = XCAR (cachelist);
7597 chkcache = 1;
7600 newcache = chkcache;
7601 if (chkcache)
7603 tem = Fkey_description (tem, Qnil);
7604 if (CONSP (prefix))
7606 if (STRINGP (XCAR (prefix)))
7607 tem = concat2 (XCAR (prefix), tem);
7608 if (STRINGP (XCDR (prefix)))
7609 tem = concat2 (tem, XCDR (prefix));
7611 XSETCDR (cachelist, tem);
7615 tem = XCDR (cachelist);
7616 if (newcache && !NILP (tem))
7618 tem = concat3 (build_string (" ("), tem, build_string (")"));
7619 XSETCDR (cachelist, tem);
7622 /* If we only want to precompute equivalent key bindings, stop here. */
7623 if (notreal)
7624 return 1;
7626 /* If we have an equivalent key binding, use that. */
7627 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7629 /* Include this when menu help is implemented.
7630 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7631 if (!(NILP (tem) || STRINGP (tem)))
7633 tem = menu_item_eval_property (tem);
7634 if (!STRINGP (tem))
7635 tem = Qnil;
7636 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7640 /* Handle radio buttons or toggle boxes. */
7641 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7642 if (!NILP (tem))
7643 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7644 = menu_item_eval_property (tem);
7646 return 1;
7651 /***********************************************************************
7652 Tool-bars
7653 ***********************************************************************/
7655 /* A vector holding tool bar items while they are parsed in function
7656 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7657 in the vector. */
7659 static Lisp_Object tool_bar_items_vector;
7661 /* A vector holding the result of parse_tool_bar_item. Layout is like
7662 the one for a single item in tool_bar_items_vector. */
7664 static Lisp_Object tool_bar_item_properties;
7666 /* Next free index in tool_bar_items_vector. */
7668 static int ntool_bar_items;
7670 /* The symbols `tool-bar', and `:image'. */
7672 extern Lisp_Object Qtool_bar;
7673 Lisp_Object QCimage;
7675 /* Function prototypes. */
7677 static void init_tool_bar_items P_ ((Lisp_Object));
7678 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
7679 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7680 static void append_tool_bar_item P_ ((void));
7683 /* Return a vector of tool bar items for keymaps currently in effect.
7684 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7685 tool bar items found. */
7687 Lisp_Object
7688 tool_bar_items (reuse, nitems)
7689 Lisp_Object reuse;
7690 int *nitems;
7692 Lisp_Object *maps;
7693 int nmaps, i;
7694 Lisp_Object oquit;
7695 Lisp_Object *tmaps;
7697 *nitems = 0;
7699 /* In order to build the menus, we need to call the keymap
7700 accessors. They all call QUIT. But this function is called
7701 during redisplay, during which a quit is fatal. So inhibit
7702 quitting while building the menus. We do this instead of
7703 specbind because (1) errors will clear it anyway and (2) this
7704 avoids risk of specpdl overflow. */
7705 oquit = Vinhibit_quit;
7706 Vinhibit_quit = Qt;
7708 /* Initialize tool_bar_items_vector and protect it from GC. */
7709 init_tool_bar_items (reuse);
7711 /* Build list of keymaps in maps. Set nmaps to the number of maps
7712 to process. */
7714 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7715 if (!NILP (Voverriding_local_map_menu_flag))
7717 /* Yes, use them (if non-nil) as well as the global map. */
7718 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7719 nmaps = 0;
7720 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7721 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7722 if (!NILP (Voverriding_local_map))
7723 maps[nmaps++] = Voverriding_local_map;
7725 else
7727 /* No, so use major and minor mode keymaps and keymap property.
7728 Note that tool-bar bindings in the local-map and keymap
7729 properties may not work reliable, as they are only
7730 recognized when the tool-bar (or mode-line) is updated,
7731 which does not normally happen after every command. */
7732 Lisp_Object tem;
7733 int nminor;
7734 nminor = current_minor_maps (NULL, &tmaps);
7735 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7736 nmaps = 0;
7737 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7738 maps[nmaps++] = tem;
7739 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7740 nmaps += nminor;
7741 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7744 /* Add global keymap at the end. */
7745 maps[nmaps++] = current_global_map;
7747 /* Process maps in reverse order and look up in each map the prefix
7748 key `tool-bar'. */
7749 for (i = nmaps - 1; i >= 0; --i)
7750 if (!NILP (maps[i]))
7752 Lisp_Object keymap;
7754 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7755 if (CONSP (keymap))
7756 map_keymap (keymap, process_tool_bar_item, Qnil, NULL, 1);
7759 Vinhibit_quit = oquit;
7760 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7761 return tool_bar_items_vector;
7765 /* Process the definition of KEY which is DEF. */
7767 static void
7768 process_tool_bar_item (key, def, data, args)
7769 Lisp_Object key, def, data;
7770 void *args;
7772 int i;
7773 extern Lisp_Object Qundefined;
7774 struct gcpro gcpro1, gcpro2;
7776 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7777 eval. */
7778 GCPRO2 (key, def);
7780 if (EQ (def, Qundefined))
7782 /* If a map has an explicit `undefined' as definition,
7783 discard any previously made item. */
7784 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7786 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7788 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7790 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7791 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7792 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7793 * sizeof (Lisp_Object)));
7794 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7795 break;
7799 else if (parse_tool_bar_item (key, def))
7800 /* Append a new tool bar item to tool_bar_items_vector. Accept
7801 more than one definition for the same key. */
7802 append_tool_bar_item ();
7804 UNGCPRO;
7808 /* Parse a tool bar item specification ITEM for key KEY and return the
7809 result in tool_bar_item_properties. Value is zero if ITEM is
7810 invalid.
7812 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7814 CAPTION is the caption of the item, If it's not a string, it is
7815 evaluated to get a string.
7817 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7818 as binding are currently ignored.
7820 The following properties are recognized:
7822 - `:enable FORM'.
7824 FORM is evaluated and specifies whether the tool bar item is
7825 enabled or disabled.
7827 - `:visible FORM'
7829 FORM is evaluated and specifies whether the tool bar item is visible.
7831 - `:filter FUNCTION'
7833 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7834 result is stored as the new binding.
7836 - `:button (TYPE SELECTED)'
7838 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7839 and specifies whether the button is selected (pressed) or not.
7841 - `:image IMAGES'
7843 IMAGES is either a single image specification or a vector of four
7844 image specifications. See enum tool_bar_item_images.
7846 - `:help HELP-STRING'.
7848 Gives a help string to display for the tool bar item. */
7850 static int
7851 parse_tool_bar_item (key, item)
7852 Lisp_Object key, item;
7854 /* Access slot with index IDX of vector tool_bar_item_properties. */
7855 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7857 Lisp_Object filter = Qnil;
7858 Lisp_Object caption;
7859 int i;
7861 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7862 Rule out items that aren't lists, don't start with
7863 `menu-item' or whose rest following `tool-bar-item' is not a
7864 list. */
7865 if (!CONSP (item)
7866 || !EQ (XCAR (item), Qmenu_item)
7867 || (item = XCDR (item),
7868 !CONSP (item)))
7869 return 0;
7871 /* Create tool_bar_item_properties vector if necessary. Reset it to
7872 defaults. */
7873 if (VECTORP (tool_bar_item_properties))
7875 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7876 PROP (i) = Qnil;
7878 else
7879 tool_bar_item_properties
7880 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7882 /* Set defaults. */
7883 PROP (TOOL_BAR_ITEM_KEY) = key;
7884 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7886 /* Get the caption of the item. If the caption is not a string,
7887 evaluate it to get a string. If we don't get a string, skip this
7888 item. */
7889 caption = XCAR (item);
7890 if (!STRINGP (caption))
7892 caption = menu_item_eval_property (caption);
7893 if (!STRINGP (caption))
7894 return 0;
7896 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7898 /* Give up if rest following the caption is not a list. */
7899 item = XCDR (item);
7900 if (!CONSP (item))
7901 return 0;
7903 /* Store the binding. */
7904 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7905 item = XCDR (item);
7907 /* Ignore cached key binding, if any. */
7908 if (CONSP (item) && CONSP (XCAR (item)))
7909 item = XCDR (item);
7911 /* Process the rest of the properties. */
7912 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7914 Lisp_Object key, value;
7916 key = XCAR (item);
7917 value = XCAR (XCDR (item));
7919 if (EQ (key, QCenable))
7921 /* `:enable FORM'. */
7922 if (!NILP (Venable_disabled_menus_and_buttons))
7923 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7924 else
7925 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7927 else if (EQ (key, QCvisible))
7929 /* `:visible FORM'. If got a visible property and that
7930 evaluates to nil then ignore this item. */
7931 if (NILP (menu_item_eval_property (value)))
7932 return 0;
7934 else if (EQ (key, QChelp))
7935 /* `:help HELP-STRING'. */
7936 PROP (TOOL_BAR_ITEM_HELP) = value;
7937 else if (EQ (key, QCfilter))
7938 /* ':filter FORM'. */
7939 filter = value;
7940 else if (EQ (key, QCbutton) && CONSP (value))
7942 /* `:button (TYPE . SELECTED)'. */
7943 Lisp_Object type, selected;
7945 type = XCAR (value);
7946 selected = XCDR (value);
7947 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7949 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7950 PROP (TOOL_BAR_ITEM_TYPE) = type;
7953 else if (EQ (key, QCimage)
7954 && (CONSP (value)
7955 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7956 /* Value is either a single image specification or a vector
7957 of 4 such specifications for the different button states. */
7958 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7961 /* If got a filter apply it on binding. */
7962 if (!NILP (filter))
7963 PROP (TOOL_BAR_ITEM_BINDING)
7964 = menu_item_eval_property (list2 (filter,
7965 list2 (Qquote,
7966 PROP (TOOL_BAR_ITEM_BINDING))));
7968 /* See if the binding is a keymap. Give up if it is. */
7969 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7970 return 0;
7972 /* Enable or disable selection of item. */
7973 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7974 PROP (TOOL_BAR_ITEM_ENABLED_P)
7975 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7977 /* Handle radio buttons or toggle boxes. */
7978 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7979 PROP (TOOL_BAR_ITEM_SELECTED_P)
7980 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7982 return 1;
7984 #undef PROP
7988 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7989 that can be reused. */
7991 static void
7992 init_tool_bar_items (reuse)
7993 Lisp_Object reuse;
7995 if (VECTORP (reuse))
7996 tool_bar_items_vector = reuse;
7997 else
7998 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7999 ntool_bar_items = 0;
8003 /* Append parsed tool bar item properties from
8004 tool_bar_item_properties */
8006 static void
8007 append_tool_bar_item ()
8009 Lisp_Object *to, *from;
8011 /* Enlarge tool_bar_items_vector if necessary. */
8012 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
8013 >= XVECTOR (tool_bar_items_vector)->size)
8015 Lisp_Object new_vector;
8016 int old_size = XVECTOR (tool_bar_items_vector)->size;
8018 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
8019 bcopy (XVECTOR (tool_bar_items_vector)->contents,
8020 XVECTOR (new_vector)->contents,
8021 old_size * sizeof (Lisp_Object));
8022 tool_bar_items_vector = new_vector;
8025 /* Append entries from tool_bar_item_properties to the end of
8026 tool_bar_items_vector. */
8027 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
8028 from = XVECTOR (tool_bar_item_properties)->contents;
8029 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
8030 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
8037 /* Read a character using menus based on maps in the array MAPS.
8038 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
8039 Return t if we displayed a menu but the user rejected it.
8041 PREV_EVENT is the previous input event, or nil if we are reading
8042 the first event of a key sequence.
8044 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
8045 if we used a mouse menu to read the input, or zero otherwise. If
8046 USED_MOUSE_MENU is null, we don't dereference it.
8048 The prompting is done based on the prompt-string of the map
8049 and the strings associated with various map elements.
8051 This can be done with X menus or with menus put in the minibuf.
8052 These are done in different ways, depending on how the input will be read.
8053 Menus using X are done after auto-saving in read-char, getting the input
8054 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8055 and do auto-saving in the inner call of read_char. */
8057 static Lisp_Object
8058 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
8059 int nmaps;
8060 Lisp_Object *maps;
8061 Lisp_Object prev_event;
8062 int *used_mouse_menu;
8064 int mapno;
8065 register Lisp_Object name = Qnil;
8067 if (used_mouse_menu)
8068 *used_mouse_menu = 0;
8070 /* Use local over global Menu maps */
8072 if (! menu_prompting)
8073 return Qnil;
8075 /* Optionally disregard all but the global map. */
8076 if (inhibit_local_menu_bar_menus)
8078 maps += (nmaps - 1);
8079 nmaps = 1;
8082 /* Get the menu name from the first map that has one (a prompt string). */
8083 for (mapno = 0; mapno < nmaps; mapno++)
8085 name = Fkeymap_prompt (maps[mapno]);
8086 if (!NILP (name))
8087 break;
8090 /* If we don't have any menus, just read a character normally. */
8091 if (!STRINGP (name))
8092 return Qnil;
8094 #ifdef HAVE_MENUS
8095 /* If we got to this point via a mouse click,
8096 use a real menu for mouse selection. */
8097 if (EVENT_HAS_PARAMETERS (prev_event)
8098 && !EQ (XCAR (prev_event), Qmenu_bar)
8099 && !EQ (XCAR (prev_event), Qtool_bar))
8101 /* Display the menu and get the selection. */
8102 Lisp_Object *realmaps
8103 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
8104 Lisp_Object value;
8105 int nmaps1 = 0;
8107 /* Use the maps that are not nil. */
8108 for (mapno = 0; mapno < nmaps; mapno++)
8109 if (!NILP (maps[mapno]))
8110 realmaps[nmaps1++] = maps[mapno];
8112 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
8113 if (CONSP (value))
8115 Lisp_Object tem;
8117 record_menu_key (XCAR (value));
8119 /* If we got multiple events, unread all but
8120 the first.
8121 There is no way to prevent those unread events
8122 from showing up later in last_nonmenu_event.
8123 So turn symbol and integer events into lists,
8124 to indicate that they came from a mouse menu,
8125 so that when present in last_nonmenu_event
8126 they won't confuse things. */
8127 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
8129 record_menu_key (XCAR (tem));
8130 if (SYMBOLP (XCAR (tem))
8131 || INTEGERP (XCAR (tem)))
8132 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8135 /* If we got more than one event, put all but the first
8136 onto this list to be read later.
8137 Return just the first event now. */
8138 Vunread_command_events
8139 = nconc2 (XCDR (value), Vunread_command_events);
8140 value = XCAR (value);
8142 else if (NILP (value))
8143 value = Qt;
8144 if (used_mouse_menu)
8145 *used_mouse_menu = 1;
8146 return value;
8148 #endif /* HAVE_MENUS */
8149 return Qnil ;
8152 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8153 We make this bigger when necessary, and never free it. */
8154 static char *read_char_minibuf_menu_text;
8155 /* Size of that buffer. */
8156 static int read_char_minibuf_menu_width;
8158 static Lisp_Object
8159 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
8160 int commandflag ;
8161 int nmaps;
8162 Lisp_Object *maps;
8164 int mapno;
8165 register Lisp_Object name;
8166 int nlength;
8167 /* FIXME: Use the minibuffer's frame width. */
8168 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8169 int idx = -1;
8170 int nobindings = 1;
8171 Lisp_Object rest, vector;
8172 char *menu;
8174 vector = Qnil;
8175 name = Qnil;
8177 if (! menu_prompting)
8178 return Qnil;
8180 /* Make sure we have a big enough buffer for the menu text. */
8181 if (read_char_minibuf_menu_text == 0)
8183 read_char_minibuf_menu_width = width + 4;
8184 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
8186 else if (width + 4 > read_char_minibuf_menu_width)
8188 read_char_minibuf_menu_width = width + 4;
8189 read_char_minibuf_menu_text
8190 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
8192 menu = read_char_minibuf_menu_text;
8194 /* Get the menu name from the first map that has one (a prompt string). */
8195 for (mapno = 0; mapno < nmaps; mapno++)
8197 name = Fkeymap_prompt (maps[mapno]);
8198 if (!NILP (name))
8199 break;
8202 /* If we don't have any menus, just read a character normally. */
8203 if (!STRINGP (name))
8204 return Qnil;
8206 /* Prompt string always starts with map's prompt, and a space. */
8207 strcpy (menu, SDATA (name));
8208 nlength = SBYTES (name);
8209 menu[nlength++] = ':';
8210 menu[nlength++] = ' ';
8211 menu[nlength] = 0;
8213 /* Start prompting at start of first map. */
8214 mapno = 0;
8215 rest = maps[mapno];
8217 /* Present the documented bindings, a line at a time. */
8218 while (1)
8220 int notfirst = 0;
8221 int i = nlength;
8222 Lisp_Object obj;
8223 int ch;
8224 Lisp_Object orig_defn_macro;
8226 /* Loop over elements of map. */
8227 while (i < width)
8229 Lisp_Object elt;
8231 /* If reached end of map, start at beginning of next map. */
8232 if (NILP (rest))
8234 mapno++;
8235 /* At end of last map, wrap around to first map if just starting,
8236 or end this line if already have something on it. */
8237 if (mapno == nmaps)
8239 mapno = 0;
8240 if (notfirst || nobindings) break;
8242 rest = maps[mapno];
8245 /* Look at the next element of the map. */
8246 if (idx >= 0)
8247 elt = XVECTOR (vector)->contents[idx];
8248 else
8249 elt = Fcar_safe (rest);
8251 if (idx < 0 && VECTORP (elt))
8253 /* If we found a dense table in the keymap,
8254 advanced past it, but start scanning its contents. */
8255 rest = Fcdr_safe (rest);
8256 vector = elt;
8257 idx = 0;
8259 else
8261 /* An ordinary element. */
8262 Lisp_Object event, tem;
8264 if (idx < 0)
8266 event = Fcar_safe (elt); /* alist */
8267 elt = Fcdr_safe (elt);
8269 else
8271 XSETINT (event, idx); /* vector */
8274 /* Ignore the element if it has no prompt string. */
8275 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8277 /* 1 if the char to type matches the string. */
8278 int char_matches;
8279 Lisp_Object upcased_event, downcased_event;
8280 Lisp_Object desc = Qnil;
8281 Lisp_Object s
8282 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8284 upcased_event = Fupcase (event);
8285 downcased_event = Fdowncase (event);
8286 char_matches = (XINT (upcased_event) == SREF (s, 0)
8287 || XINT (downcased_event) == SREF (s, 0));
8288 if (! char_matches)
8289 desc = Fsingle_key_description (event, Qnil);
8291 #if 0 /* It is redundant to list the equivalent key bindings because
8292 the prefix is what the user has already typed. */
8294 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8295 if (!NILP (tem))
8296 /* Insert equivalent keybinding. */
8297 s = concat2 (s, tem);
8298 #endif
8300 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8301 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8303 /* Insert button prefix. */
8304 Lisp_Object selected
8305 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8306 if (EQ (tem, QCradio))
8307 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8308 else
8309 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8310 s = concat2 (tem, s);
8314 /* If we have room for the prompt string, add it to this line.
8315 If this is the first on the line, always add it. */
8316 if ((SCHARS (s) + i + 2
8317 + (char_matches ? 0 : SCHARS (desc) + 3))
8318 < width
8319 || !notfirst)
8321 int thiswidth;
8323 /* Punctuate between strings. */
8324 if (notfirst)
8326 strcpy (menu + i, ", ");
8327 i += 2;
8329 notfirst = 1;
8330 nobindings = 0 ;
8332 /* If the char to type doesn't match the string's
8333 first char, explicitly show what char to type. */
8334 if (! char_matches)
8336 /* Add as much of string as fits. */
8337 thiswidth = SCHARS (desc);
8338 if (thiswidth + i > width)
8339 thiswidth = width - i;
8340 bcopy (SDATA (desc), menu + i, thiswidth);
8341 i += thiswidth;
8342 strcpy (menu + i, " = ");
8343 i += 3;
8346 /* Add as much of string as fits. */
8347 thiswidth = SCHARS (s);
8348 if (thiswidth + i > width)
8349 thiswidth = width - i;
8350 bcopy (SDATA (s), menu + i, thiswidth);
8351 i += thiswidth;
8352 menu[i] = 0;
8354 else
8356 /* If this element does not fit, end the line now,
8357 and save the element for the next line. */
8358 strcpy (menu + i, "...");
8359 break;
8363 /* Move past this element. */
8364 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8365 /* Handle reaching end of dense table. */
8366 idx = -1;
8367 if (idx >= 0)
8368 idx++;
8369 else
8370 rest = Fcdr_safe (rest);
8374 /* Prompt with that and read response. */
8375 message2_nolog (menu, strlen (menu),
8376 ! NILP (current_buffer->enable_multibyte_characters));
8378 /* Make believe its not a keyboard macro in case the help char
8379 is pressed. Help characters are not recorded because menu prompting
8380 is not used on replay.
8382 orig_defn_macro = current_kboard->defining_kbd_macro;
8383 current_kboard->defining_kbd_macro = Qnil;
8385 obj = read_char (commandflag, 0, 0, Qt, 0, NULL);
8386 while (BUFFERP (obj));
8387 current_kboard->defining_kbd_macro = orig_defn_macro;
8389 if (!INTEGERP (obj))
8390 return obj;
8391 else
8392 ch = XINT (obj);
8394 if (! EQ (obj, menu_prompt_more_char)
8395 && (!INTEGERP (menu_prompt_more_char)
8396 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8398 if (!NILP (current_kboard->defining_kbd_macro))
8399 store_kbd_macro_char (obj);
8400 return obj;
8402 /* Help char - go round again */
8406 /* Reading key sequences. */
8408 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8409 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8410 keymap, or nil otherwise. Return the index of the first keymap in
8411 which KEY has any binding, or NMAPS if no map has a binding.
8413 If KEY is a meta ASCII character, treat it like meta-prefix-char
8414 followed by the corresponding non-meta character. Keymaps in
8415 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8416 NEXT.
8418 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8419 unmodified.
8421 NEXT may be the same array as CURRENT. */
8423 static int
8424 follow_key (key, nmaps, current, defs, next)
8425 Lisp_Object key;
8426 Lisp_Object *current, *defs, *next;
8427 int nmaps;
8429 int i, first_binding;
8431 first_binding = nmaps;
8432 for (i = nmaps - 1; i >= 0; i--)
8434 if (! NILP (current[i]))
8436 defs[i] = access_keymap (current[i], key, 1, 0, 1);
8437 if (! NILP (defs[i]))
8438 first_binding = i;
8440 else
8441 defs[i] = Qnil;
8444 /* Given the set of bindings we've found, produce the next set of maps. */
8445 if (first_binding < nmaps)
8446 for (i = 0; i < nmaps; i++)
8447 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8449 return first_binding;
8452 /* Structure used to keep track of partial application of key remapping
8453 such as Vfunction_key_map and Vkey_translation_map. */
8454 typedef struct keyremap
8456 /* This is the map originally specified for this use. */
8457 Lisp_Object parent;
8458 /* This is a submap reached by looking up, in PARENT,
8459 the events from START to END. */
8460 Lisp_Object map;
8461 /* Positions [START, END) in the key sequence buffer
8462 are the key that we have scanned so far.
8463 Those events are the ones that we will replace
8464 if PAREHT maps them into a key sequence. */
8465 int start, end;
8466 } keyremap;
8468 /* Lookup KEY in MAP.
8469 MAP is a keymap mapping keys to key vectors or functions.
8470 If the mapping is a function and DO_FUNCTION is non-zero, then
8471 the function is called with PROMPT as parameter and its return
8472 value is used as the return value of this function (after checking
8473 that it is indeed a vector). */
8475 static Lisp_Object
8476 access_keymap_keyremap (map, key, prompt, do_funcall)
8477 Lisp_Object map, key, prompt;
8478 int do_funcall;
8480 Lisp_Object next;
8482 next = access_keymap (map, key, 1, 0, 1);
8484 /* Handle symbol with autoload definition. */
8485 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8486 && CONSP (XSYMBOL (next)->function)
8487 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
8488 do_autoload (XSYMBOL (next)->function, next);
8490 /* Handle a symbol whose function definition is a keymap
8491 or an array. */
8492 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8493 && (ARRAYP (XSYMBOL (next)->function)
8494 || KEYMAPP (XSYMBOL (next)->function)))
8495 next = XSYMBOL (next)->function;
8497 /* If the keymap gives a function, not an
8498 array, then call the function with one arg and use
8499 its value instead. */
8500 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
8502 Lisp_Object tem;
8503 tem = next;
8505 next = call1 (next, prompt);
8506 /* If the function returned something invalid,
8507 barf--don't ignore it.
8508 (To ignore it safely, we would need to gcpro a bunch of
8509 other variables.) */
8510 if (! (VECTORP (next) || STRINGP (next)))
8511 error ("Function %s returns invalid key sequence", tem);
8513 return next;
8516 /* Do one step of the key remapping used for function-key-map and
8517 key-translation-map:
8518 KEYBUF is the buffer holding the input events.
8519 BUFSIZE is its maximum size.
8520 FKEY is a pointer to the keyremap structure to use.
8521 INPUT is the index of the last element in KEYBUF.
8522 DOIT if non-zero says that the remapping can actually take place.
8523 DIFF is used to return the number of keys added/removed by the remapping.
8524 PARENT is the root of the keymap.
8525 PROMPT is the prompt to use if the remapping happens through a function.
8526 The return value is non-zero if the remapping actually took place. */
8528 static int
8529 keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
8530 Lisp_Object *keybuf, prompt;
8531 keyremap *fkey;
8532 int input, doit, *diff, bufsize;
8534 Lisp_Object next, key;
8536 key = keybuf[fkey->end++];
8538 if (KEYMAPP (fkey->parent))
8539 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8540 else
8541 next = Qnil;
8543 /* If keybuf[fkey->start..fkey->end] is bound in the
8544 map and we're in a position to do the key remapping, replace it with
8545 the binding and restart with fkey->start at the end. */
8546 if ((VECTORP (next) || STRINGP (next)) && doit)
8548 int len = XFASTINT (Flength (next));
8549 int i;
8551 *diff = len - (fkey->end - fkey->start);
8553 if (input + *diff >= bufsize)
8554 error ("Key sequence too long");
8556 /* Shift the keys that follow fkey->end. */
8557 if (*diff < 0)
8558 for (i = fkey->end; i < input; i++)
8559 keybuf[i + *diff] = keybuf[i];
8560 else if (*diff > 0)
8561 for (i = input - 1; i >= fkey->end; i--)
8562 keybuf[i + *diff] = keybuf[i];
8563 /* Overwrite the old keys with the new ones. */
8564 for (i = 0; i < len; i++)
8565 keybuf[fkey->start + i]
8566 = Faref (next, make_number (i));
8568 fkey->start = fkey->end += *diff;
8569 fkey->map = fkey->parent;
8571 return 1;
8574 fkey->map = get_keymap (next, 0, 1);
8576 /* If we no longer have a bound suffix, try a new position for
8577 fkey->start. */
8578 if (!CONSP (fkey->map))
8580 fkey->end = ++fkey->start;
8581 fkey->map = fkey->parent;
8583 return 0;
8586 /* Read a sequence of keys that ends with a non prefix character,
8587 storing it in KEYBUF, a buffer of size BUFSIZE.
8588 Prompt with PROMPT.
8589 Return the length of the key sequence stored.
8590 Return -1 if the user rejected a command menu.
8592 Echo starting immediately unless `prompt' is 0.
8594 Where a key sequence ends depends on the currently active keymaps.
8595 These include any minor mode keymaps active in the current buffer,
8596 the current buffer's local map, and the global map.
8598 If a key sequence has no other bindings, we check Vfunction_key_map
8599 to see if some trailing subsequence might be the beginning of a
8600 function key's sequence. If so, we try to read the whole function
8601 key, and substitute its symbolic name into the key sequence.
8603 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8604 `double-' events into similar click events, if that would make them
8605 bound. We try to turn `triple-' events first into `double-' events,
8606 then into clicks.
8608 If we get a mouse click in a mode line, vertical divider, or other
8609 non-text area, we treat the click as if it were prefixed by the
8610 symbol denoting that area - `mode-line', `vertical-line', or
8611 whatever.
8613 If the sequence starts with a mouse click, we read the key sequence
8614 with respect to the buffer clicked on, not the current buffer.
8616 If the user switches frames in the midst of a key sequence, we put
8617 off the switch-frame event until later; the next call to
8618 read_char will return it.
8620 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8621 from the selected window's buffer. */
8623 static int
8624 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8625 can_return_switch_frame, fix_current_buffer)
8626 Lisp_Object *keybuf;
8627 int bufsize;
8628 Lisp_Object prompt;
8629 int dont_downcase_last;
8630 int can_return_switch_frame;
8631 int fix_current_buffer;
8633 volatile Lisp_Object from_string;
8634 volatile int count = SPECPDL_INDEX ();
8636 /* How many keys there are in the current key sequence. */
8637 volatile int t;
8639 /* The length of the echo buffer when we started reading, and
8640 the length of this_command_keys when we started reading. */
8641 volatile int echo_start;
8642 volatile int keys_start;
8644 /* The number of keymaps we're scanning right now, and the number of
8645 keymaps we have allocated space for. */
8646 volatile int nmaps;
8647 volatile int nmaps_allocated = 0;
8649 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8650 the current keymaps. */
8651 Lisp_Object *volatile defs = NULL;
8653 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8654 in the current keymaps, or nil where it is not a prefix. */
8655 Lisp_Object *volatile submaps = NULL;
8657 /* The local map to start out with at start of key sequence. */
8658 volatile Lisp_Object orig_local_map;
8660 /* The map from the `keymap' property to start out with at start of
8661 key sequence. */
8662 volatile Lisp_Object orig_keymap;
8664 /* 1 if we have already considered switching to the local-map property
8665 of the place where a mouse click occurred. */
8666 volatile int localized_local_map = 0;
8668 /* The index in defs[] of the first keymap that has a binding for
8669 this key sequence. In other words, the lowest i such that
8670 defs[i] is non-nil. */
8671 volatile int first_binding;
8672 /* Index of the first key that has no binding.
8673 It is useless to try fkey.start larger than that. */
8674 volatile int first_unbound;
8676 /* If t < mock_input, then KEYBUF[t] should be read as the next
8677 input key.
8679 We use this to recover after recognizing a function key. Once we
8680 realize that a suffix of the current key sequence is actually a
8681 function key's escape sequence, we replace the suffix with the
8682 function key's binding from Vfunction_key_map. Now keybuf
8683 contains a new and different key sequence, so the echo area,
8684 this_command_keys, and the submaps and defs arrays are wrong. In
8685 this situation, we set mock_input to t, set t to 0, and jump to
8686 restart_sequence; the loop will read keys from keybuf up until
8687 mock_input, thus rebuilding the state; and then it will resume
8688 reading characters from the keyboard. */
8689 volatile int mock_input = 0;
8691 /* If the sequence is unbound in submaps[], then
8692 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8693 and fkey.map is its binding.
8695 These might be > t, indicating that all function key scanning
8696 should hold off until t reaches them. We do this when we've just
8697 recognized a function key, to avoid searching for the function
8698 key's again in Vfunction_key_map. */
8699 volatile keyremap fkey;
8701 /* Likewise, for key_translation_map. */
8702 volatile keyremap keytran;
8704 /* If we receive a `switch-frame' or `select-window' event in the middle of
8705 a key sequence, we put it off for later.
8706 While we're reading, we keep the event here. */
8707 volatile Lisp_Object delayed_switch_frame;
8709 /* See the comment below... */
8710 #if defined (GOBBLE_FIRST_EVENT)
8711 Lisp_Object first_event;
8712 #endif
8714 volatile Lisp_Object original_uppercase;
8715 volatile int original_uppercase_position = -1;
8717 /* Gets around Microsoft compiler limitations. */
8718 int dummyflag = 0;
8720 struct buffer *starting_buffer;
8722 /* List of events for which a fake prefix key has been generated. */
8723 volatile Lisp_Object fake_prefixed_keys = Qnil;
8725 #if defined (GOBBLE_FIRST_EVENT)
8726 int junk;
8727 #endif
8729 struct gcpro gcpro1;
8731 GCPRO1 (fake_prefixed_keys);
8732 raw_keybuf_count = 0;
8734 last_nonmenu_event = Qnil;
8736 delayed_switch_frame = Qnil;
8737 fkey.map = fkey.parent = Vfunction_key_map;
8738 keytran.map = keytran.parent = Vkey_translation_map;
8739 fkey.start = fkey.end = 0;
8740 keytran.start = keytran.end = 0;
8742 if (INTERACTIVE)
8744 if (!NILP (prompt))
8745 echo_prompt (prompt);
8746 else if (cursor_in_echo_area
8747 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8748 && NILP (Fzerop (Vecho_keystrokes)))
8749 /* This doesn't put in a dash if the echo buffer is empty, so
8750 you don't always see a dash hanging out in the minibuffer. */
8751 echo_dash ();
8754 /* Record the initial state of the echo area and this_command_keys;
8755 we will need to restore them if we replay a key sequence. */
8756 if (INTERACTIVE)
8757 echo_start = echo_length ();
8758 keys_start = this_command_key_count;
8759 this_single_command_key_start = keys_start;
8761 #if defined (GOBBLE_FIRST_EVENT)
8762 /* This doesn't quite work, because some of the things that read_char
8763 does cannot safely be bypassed. It seems too risky to try to make
8764 this work right. */
8766 /* Read the first char of the sequence specially, before setting
8767 up any keymaps, in case a filter runs and switches buffers on us. */
8768 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8769 &junk, NULL);
8770 #endif /* GOBBLE_FIRST_EVENT */
8772 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8773 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8774 from_string = Qnil;
8776 /* We jump here when the key sequence has been thoroughly changed, and
8777 we need to rescan it starting from the beginning. When we jump here,
8778 keybuf[0..mock_input] holds the sequence we should reread. */
8779 replay_sequence:
8781 starting_buffer = current_buffer;
8782 first_unbound = bufsize + 1;
8784 /* Build our list of keymaps.
8785 If we recognize a function key and replace its escape sequence in
8786 keybuf with its symbol, or if the sequence starts with a mouse
8787 click and we need to switch buffers, we jump back here to rebuild
8788 the initial keymaps from the current buffer. */
8789 nmaps = 0;
8791 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8793 if (2 > nmaps_allocated)
8795 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
8796 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
8797 nmaps_allocated = 2;
8799 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8800 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8802 else if (!NILP (Voverriding_local_map))
8804 if (2 > nmaps_allocated)
8806 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
8807 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
8808 nmaps_allocated = 2;
8810 if (!NILP (Voverriding_local_map))
8811 submaps[nmaps++] = Voverriding_local_map;
8813 else
8815 int nminor;
8816 int total;
8817 Lisp_Object *maps;
8819 nminor = current_minor_maps (0, &maps);
8820 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8822 if (total > nmaps_allocated)
8824 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8825 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8826 nmaps_allocated = total;
8829 if (!NILP (orig_keymap))
8830 submaps[nmaps++] = orig_keymap;
8832 bcopy (maps, (void *) (submaps + nmaps),
8833 nminor * sizeof (submaps[0]));
8835 nmaps += nminor;
8837 submaps[nmaps++] = orig_local_map;
8839 submaps[nmaps++] = current_global_map;
8841 /* Find an accurate initial value for first_binding. */
8842 for (first_binding = 0; first_binding < nmaps; first_binding++)
8843 if (! NILP (submaps[first_binding]))
8844 break;
8846 /* Start from the beginning in keybuf. */
8847 t = 0;
8849 /* These are no-ops the first time through, but if we restart, they
8850 revert the echo area and this_command_keys to their original state. */
8851 this_command_key_count = keys_start;
8852 if (INTERACTIVE && t < mock_input)
8853 echo_truncate (echo_start);
8855 /* If the best binding for the current key sequence is a keymap, or
8856 we may be looking at a function key's escape sequence, keep on
8857 reading. */
8858 while (first_binding < nmaps
8859 /* Keep reading as long as there's a prefix binding. */
8860 ? !NILP (submaps[first_binding])
8861 /* Don't return in the middle of a possible function key sequence,
8862 if the only bindings we found were via case conversion.
8863 Thus, if ESC O a has a function-key-map translation
8864 and ESC o has a binding, don't return after ESC O,
8865 so that we can translate ESC O plus the next character. */
8866 : (fkey.start < t || keytran.start < t))
8868 Lisp_Object key;
8869 int used_mouse_menu = 0;
8871 /* Where the last real key started. If we need to throw away a
8872 key that has expanded into more than one element of keybuf
8873 (say, a mouse click on the mode line which is being treated
8874 as [mode-line (mouse-...)], then we backtrack to this point
8875 of keybuf. */
8876 volatile int last_real_key_start;
8878 /* These variables are analogous to echo_start and keys_start;
8879 while those allow us to restart the entire key sequence,
8880 echo_local_start and keys_local_start allow us to throw away
8881 just one key. */
8882 volatile int echo_local_start, keys_local_start, local_first_binding;
8884 eassert (fkey.end == t || (fkey.end > t && fkey.end <= mock_input));
8885 eassert (fkey.start <= fkey.end);
8886 eassert (keytran.start <= keytran.end);
8887 /* key-translation-map is applied *after* function-key-map. */
8888 eassert (keytran.end <= fkey.start);
8890 if (first_unbound < fkey.start && first_unbound < keytran.start)
8891 { /* The prefix upto first_unbound has no binding and has
8892 no translation left to do either, so we know it's unbound.
8893 If we don't stop now, we risk staying here indefinitely
8894 (if the user keeps entering fkey or keytran prefixes
8895 like C-c ESC ESC ESC ESC ...) */
8896 int i;
8897 for (i = first_unbound + 1; i < t; i++)
8898 keybuf[i - first_unbound - 1] = keybuf[i];
8899 mock_input = t - first_unbound - 1;
8900 fkey.end = fkey.start -= first_unbound + 1;
8901 fkey.map = fkey.parent;
8902 keytran.end = keytran.start -= first_unbound + 1;
8903 keytran.map = keytran.parent;
8904 goto replay_sequence;
8907 if (t >= bufsize)
8908 error ("Key sequence too long");
8910 if (INTERACTIVE)
8911 echo_local_start = echo_length ();
8912 keys_local_start = this_command_key_count;
8913 local_first_binding = first_binding;
8915 replay_key:
8916 /* These are no-ops, unless we throw away a keystroke below and
8917 jumped back up to replay_key; in that case, these restore the
8918 variables to their original state, allowing us to replay the
8919 loop. */
8920 if (INTERACTIVE && t < mock_input)
8921 echo_truncate (echo_local_start);
8922 this_command_key_count = keys_local_start;
8923 first_binding = local_first_binding;
8925 /* By default, assume each event is "real". */
8926 last_real_key_start = t;
8928 /* Does mock_input indicate that we are re-reading a key sequence? */
8929 if (t < mock_input)
8931 key = keybuf[t];
8932 add_command_key (key);
8933 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8934 && NILP (Fzerop (Vecho_keystrokes)))
8935 echo_char (key);
8938 /* If not, we should actually read a character. */
8939 else
8942 #ifdef MULTI_KBOARD
8943 KBOARD *interrupted_kboard = current_kboard;
8944 struct frame *interrupted_frame = SELECTED_FRAME ();
8945 if (setjmp (wrong_kboard_jmpbuf))
8947 if (!NILP (delayed_switch_frame))
8949 interrupted_kboard->kbd_queue
8950 = Fcons (delayed_switch_frame,
8951 interrupted_kboard->kbd_queue);
8952 delayed_switch_frame = Qnil;
8954 while (t > 0)
8955 interrupted_kboard->kbd_queue
8956 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8958 /* If the side queue is non-empty, ensure it begins with a
8959 switch-frame, so we'll replay it in the right context. */
8960 if (CONSP (interrupted_kboard->kbd_queue)
8961 && (key = XCAR (interrupted_kboard->kbd_queue),
8962 !(EVENT_HAS_PARAMETERS (key)
8963 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8964 Qswitch_frame))))
8966 Lisp_Object frame;
8967 XSETFRAME (frame, interrupted_frame);
8968 interrupted_kboard->kbd_queue
8969 = Fcons (make_lispy_switch_frame (frame),
8970 interrupted_kboard->kbd_queue);
8972 mock_input = 0;
8973 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8974 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8975 goto replay_sequence;
8977 #endif
8978 key = read_char (NILP (prompt), nmaps,
8979 (Lisp_Object *) submaps, last_nonmenu_event,
8980 &used_mouse_menu, NULL);
8983 /* read_char returns t when it shows a menu and the user rejects it.
8984 Just return -1. */
8985 if (EQ (key, Qt))
8987 unbind_to (count, Qnil);
8988 UNGCPRO;
8989 return -1;
8992 /* read_char returns -1 at the end of a macro.
8993 Emacs 18 handles this by returning immediately with a
8994 zero, so that's what we'll do. */
8995 if (INTEGERP (key) && XINT (key) == -1)
8997 t = 0;
8998 /* The Microsoft C compiler can't handle the goto that
8999 would go here. */
9000 dummyflag = 1;
9001 break;
9004 /* If the current buffer has been changed from under us, the
9005 keymap may have changed, so replay the sequence. */
9006 if (BUFFERP (key))
9008 timer_resume_idle ();
9010 mock_input = t;
9011 /* Reset the current buffer from the selected window
9012 in case something changed the former and not the latter.
9013 This is to be more consistent with the behavior
9014 of the command_loop_1. */
9015 if (fix_current_buffer)
9017 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9018 Fkill_emacs (Qnil);
9019 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
9020 Fset_buffer (XWINDOW (selected_window)->buffer);
9023 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9024 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9025 goto replay_sequence;
9028 /* If we have a quit that was typed in another frame, and
9029 quit_throw_to_read_char switched buffers,
9030 replay to get the right keymap. */
9031 if (INTEGERP (key)
9032 && XINT (key) == quit_char
9033 && current_buffer != starting_buffer)
9035 GROW_RAW_KEYBUF;
9036 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9037 keybuf[t++] = key;
9038 mock_input = t;
9039 Vquit_flag = Qnil;
9040 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9041 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9042 goto replay_sequence;
9045 Vquit_flag = Qnil;
9047 if (EVENT_HAS_PARAMETERS (key)
9048 /* Either a `switch-frame' or a `select-window' event. */
9049 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
9051 /* If we're at the beginning of a key sequence, and the caller
9052 says it's okay, go ahead and return this event. If we're
9053 in the midst of a key sequence, delay it until the end. */
9054 if (t > 0 || !can_return_switch_frame)
9056 delayed_switch_frame = key;
9057 goto replay_key;
9061 GROW_RAW_KEYBUF;
9062 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9065 /* Clicks in non-text areas get prefixed by the symbol
9066 in their CHAR-ADDRESS field. For example, a click on
9067 the mode line is prefixed by the symbol `mode-line'.
9069 Furthermore, key sequences beginning with mouse clicks
9070 are read using the keymaps of the buffer clicked on, not
9071 the current buffer. So we may have to switch the buffer
9072 here.
9074 When we turn one event into two events, we must make sure
9075 that neither of the two looks like the original--so that,
9076 if we replay the events, they won't be expanded again.
9077 If not for this, such reexpansion could happen either here
9078 or when user programs play with this-command-keys. */
9079 if (EVENT_HAS_PARAMETERS (key))
9081 Lisp_Object kind;
9082 Lisp_Object string;
9084 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
9085 if (EQ (kind, Qmouse_click))
9087 Lisp_Object window, posn;
9089 window = POSN_WINDOW (EVENT_START (key));
9090 posn = POSN_POSN (EVENT_START (key));
9092 if (CONSP (posn)
9093 || (!NILP (fake_prefixed_keys)
9094 && !NILP (Fmemq (key, fake_prefixed_keys))))
9096 /* We're looking a second time at an event for which
9097 we generated a fake prefix key. Set
9098 last_real_key_start appropriately. */
9099 if (t > 0)
9100 last_real_key_start = t - 1;
9103 /* Key sequences beginning with mouse clicks are
9104 read using the keymaps in the buffer clicked on,
9105 not the current buffer. If we're at the
9106 beginning of a key sequence, switch buffers. */
9107 if (last_real_key_start == 0
9108 && WINDOWP (window)
9109 && BUFFERP (XWINDOW (window)->buffer)
9110 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
9112 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9113 keybuf[t] = key;
9114 mock_input = t + 1;
9116 /* Arrange to go back to the original buffer once we're
9117 done reading the key sequence. Note that we can't
9118 use save_excursion_{save,restore} here, because they
9119 save point as well as the current buffer; we don't
9120 want to save point, because redisplay may change it,
9121 to accommodate a Fset_window_start or something. We
9122 don't want to do this at the top of the function,
9123 because we may get input from a subprocess which
9124 wants to change the selected window and stuff (say,
9125 emacsclient). */
9126 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
9128 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9129 Fkill_emacs (Qnil);
9130 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
9131 orig_local_map = get_local_map (PT, current_buffer,
9132 Qlocal_map);
9133 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9134 goto replay_sequence;
9137 /* For a mouse click, get the local text-property keymap
9138 of the place clicked on, rather than point. */
9139 if (last_real_key_start == 0
9140 && CONSP (XCDR (key))
9141 && ! localized_local_map)
9143 Lisp_Object map_here, start, pos;
9145 localized_local_map = 1;
9146 start = EVENT_START (key);
9148 if (CONSP (start) && POSN_INBUFFER_P (start))
9150 pos = POSN_BUFFER_POSN (start);
9151 if (INTEGERP (pos)
9152 && XINT (pos) >= BEG && XINT (pos) <= Z)
9154 map_here = get_local_map (XINT (pos),
9155 current_buffer, Qlocal_map);
9156 if (!EQ (map_here, orig_local_map))
9158 orig_local_map = map_here;
9159 ++localized_local_map;
9162 map_here = get_local_map (XINT (pos),
9163 current_buffer, Qkeymap);
9164 if (!EQ (map_here, orig_keymap))
9166 orig_keymap = map_here;
9167 ++localized_local_map;
9170 if (localized_local_map > 1)
9172 keybuf[t] = key;
9173 mock_input = t + 1;
9175 goto replay_sequence;
9181 /* Expand mode-line and scroll-bar events into two events:
9182 use posn as a fake prefix key. */
9183 if (SYMBOLP (posn)
9184 && (NILP (fake_prefixed_keys)
9185 || NILP (Fmemq (key, fake_prefixed_keys))))
9187 if (t + 1 >= bufsize)
9188 error ("Key sequence too long");
9190 keybuf[t] = posn;
9191 keybuf[t + 1] = key;
9192 mock_input = t + 2;
9194 /* Record that a fake prefix key has been generated
9195 for KEY. Don't modify the event; this would
9196 prevent proper action when the event is pushed
9197 back into unread-command-events. */
9198 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9200 /* If on a mode line string with a local keymap,
9201 reconsider the key sequence with that keymap. */
9202 if (string = POSN_STRING (EVENT_START (key)),
9203 (CONSP (string) && STRINGP (XCAR (string))))
9205 Lisp_Object pos, map, map2;
9207 pos = XCDR (string);
9208 string = XCAR (string);
9209 if (XINT (pos) >= 0
9210 && XINT (pos) < SCHARS (string))
9212 map = Fget_text_property (pos, Qlocal_map, string);
9213 if (!NILP (map))
9214 orig_local_map = map;
9215 map2 = Fget_text_property (pos, Qkeymap, string);
9216 if (!NILP (map2))
9217 orig_keymap = map2;
9218 if (!NILP (map) || !NILP (map2))
9219 goto replay_sequence;
9223 goto replay_key;
9225 else if (NILP (from_string)
9226 && (string = POSN_STRING (EVENT_START (key)),
9227 (CONSP (string) && STRINGP (XCAR (string)))))
9229 /* For a click on a string, i.e. overlay string or a
9230 string displayed via the `display' property,
9231 consider `local-map' and `keymap' properties of
9232 that string. */
9233 Lisp_Object pos, map, map2;
9235 pos = XCDR (string);
9236 string = XCAR (string);
9237 if (XINT (pos) >= 0
9238 && XINT (pos) < SCHARS (string))
9240 map = Fget_text_property (pos, Qlocal_map, string);
9241 if (!NILP (map))
9242 orig_local_map = map;
9243 map2 = Fget_text_property (pos, Qkeymap, string);
9244 if (!NILP (map2))
9245 orig_keymap = map2;
9247 if (!NILP (map) || !NILP (map2))
9249 from_string = string;
9250 goto replay_sequence;
9255 else if (CONSP (XCDR (key))
9256 && CONSP (EVENT_START (key))
9257 && CONSP (XCDR (EVENT_START (key))))
9259 Lisp_Object posn;
9261 posn = POSN_POSN (EVENT_START (key));
9262 /* Handle menu-bar events:
9263 insert the dummy prefix event `menu-bar'. */
9264 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9266 if (t + 1 >= bufsize)
9267 error ("Key sequence too long");
9268 keybuf[t] = posn;
9269 keybuf[t+1] = key;
9271 /* Zap the position in key, so we know that we've
9272 expanded it, and don't try to do so again. */
9273 POSN_SET_POSN (EVENT_START (key),
9274 Fcons (posn, Qnil));
9276 mock_input = t + 2;
9277 goto replay_sequence;
9279 else if (CONSP (posn))
9281 /* We're looking at the second event of a
9282 sequence which we expanded before. Set
9283 last_real_key_start appropriately. */
9284 if (last_real_key_start == t && t > 0)
9285 last_real_key_start = t - 1;
9290 /* We have finally decided that KEY is something we might want
9291 to look up. */
9292 first_binding = (follow_key (key,
9293 nmaps - first_binding,
9294 submaps + first_binding,
9295 defs + first_binding,
9296 submaps + first_binding)
9297 + first_binding);
9299 /* If KEY wasn't bound, we'll try some fallbacks. */
9300 if (first_binding < nmaps)
9301 /* This is needed for the following scenario:
9302 event 0: a down-event that gets dropped by calling replay_key.
9303 event 1: some normal prefix like C-h.
9304 After event 0, first_unbound is 0, after event 1 fkey.start
9305 and keytran.start are both 1, so when we see that C-h is bound,
9306 we need to update first_unbound. */
9307 first_unbound = max (t + 1, first_unbound);
9308 else
9310 Lisp_Object head;
9312 /* Remember the position to put an upper bound on fkey.start. */
9313 first_unbound = min (t, first_unbound);
9315 head = EVENT_HEAD (key);
9316 if (help_char_p (head) && t > 0)
9318 read_key_sequence_cmd = Vprefix_help_command;
9319 keybuf[t++] = key;
9320 last_nonmenu_event = key;
9321 /* The Microsoft C compiler can't handle the goto that
9322 would go here. */
9323 dummyflag = 1;
9324 break;
9327 if (SYMBOLP (head))
9329 Lisp_Object breakdown;
9330 int modifiers;
9332 breakdown = parse_modifiers (head);
9333 modifiers = XINT (XCAR (XCDR (breakdown)));
9334 /* Attempt to reduce an unbound mouse event to a simpler
9335 event that is bound:
9336 Drags reduce to clicks.
9337 Double-clicks reduce to clicks.
9338 Triple-clicks reduce to double-clicks, then to clicks.
9339 Down-clicks are eliminated.
9340 Double-downs reduce to downs, then are eliminated.
9341 Triple-downs reduce to double-downs, then to downs,
9342 then are eliminated. */
9343 if (modifiers & (down_modifier | drag_modifier
9344 | double_modifier | triple_modifier))
9346 while (modifiers & (down_modifier | drag_modifier
9347 | double_modifier | triple_modifier))
9349 Lisp_Object new_head, new_click;
9350 if (modifiers & triple_modifier)
9351 modifiers ^= (double_modifier | triple_modifier);
9352 else if (modifiers & double_modifier)
9353 modifiers &= ~double_modifier;
9354 else if (modifiers & drag_modifier)
9355 modifiers &= ~drag_modifier;
9356 else
9358 /* Dispose of this `down' event by simply jumping
9359 back to replay_key, to get another event.
9361 Note that if this event came from mock input,
9362 then just jumping back to replay_key will just
9363 hand it to us again. So we have to wipe out any
9364 mock input.
9366 We could delete keybuf[t] and shift everything
9367 after that to the left by one spot, but we'd also
9368 have to fix up any variable that points into
9369 keybuf, and shifting isn't really necessary
9370 anyway.
9372 Adding prefixes for non-textual mouse clicks
9373 creates two characters of mock input, and both
9374 must be thrown away. If we're only looking at
9375 the prefix now, we can just jump back to
9376 replay_key. On the other hand, if we've already
9377 processed the prefix, and now the actual click
9378 itself is giving us trouble, then we've lost the
9379 state of the keymaps we want to backtrack to, and
9380 we need to replay the whole sequence to rebuild
9383 Beyond that, only function key expansion could
9384 create more than two keys, but that should never
9385 generate mouse events, so it's okay to zero
9386 mock_input in that case too.
9388 FIXME: The above paragraph seems just plain
9389 wrong, if you consider things like
9390 xterm-mouse-mode. -stef
9392 Isn't this just the most wonderful code ever? */
9394 /* If mock_input > t + 1, the above simplification
9395 will actually end up dropping keys on the floor.
9396 This is probably OK for now, but even
9397 if mock_input <= t + 1, we need to adjust fkey
9398 and keytran.
9399 Typical case [header-line down-mouse-N]:
9400 mock_input = 2, t = 1, fkey.end = 1,
9401 last_real_key_start = 0. */
9402 if (fkey.end > last_real_key_start)
9404 fkey.end = fkey.start
9405 = min (last_real_key_start, fkey.start);
9406 fkey.map = fkey.parent;
9407 if (keytran.end > last_real_key_start)
9409 keytran.end = keytran.start
9410 = min (last_real_key_start, keytran.start);
9411 keytran.map = keytran.parent;
9414 if (t == last_real_key_start)
9416 mock_input = 0;
9417 goto replay_key;
9419 else
9421 mock_input = last_real_key_start;
9422 goto replay_sequence;
9426 new_head
9427 = apply_modifiers (modifiers, XCAR (breakdown));
9428 new_click
9429 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9431 /* Look for a binding for this new key. follow_key
9432 promises that it didn't munge submaps the
9433 last time we called it, since key was unbound. */
9434 first_binding
9435 = (follow_key (new_click,
9436 nmaps - local_first_binding,
9437 submaps + local_first_binding,
9438 defs + local_first_binding,
9439 submaps + local_first_binding)
9440 + local_first_binding);
9442 /* If that click is bound, go for it. */
9443 if (first_binding < nmaps)
9445 key = new_click;
9446 break;
9448 /* Otherwise, we'll leave key set to the drag event. */
9454 keybuf[t++] = key;
9455 /* Normally, last_nonmenu_event gets the previous key we read.
9456 But when a mouse popup menu is being used,
9457 we don't update last_nonmenu_event; it continues to hold the mouse
9458 event that preceded the first level of menu. */
9459 if (!used_mouse_menu)
9460 last_nonmenu_event = key;
9462 /* Record what part of this_command_keys is the current key sequence. */
9463 this_single_command_key_start = this_command_key_count - t;
9465 if (first_binding < nmaps && NILP (submaps[first_binding]))
9466 /* There is a binding and it's not a prefix.
9467 There is thus no function-key in this sequence.
9468 Moving fkey.start is important in this case to allow keytran.start
9469 to go over the sequence before we return (since we keep the
9470 invariant that keytran.end <= fkey.start). */
9472 if (fkey.start < t)
9473 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9475 else
9476 /* If the sequence is unbound, see if we can hang a function key
9477 off the end of it. */
9478 /* Continue scan from fkey.end until we find a bound suffix. */
9479 while (fkey.end < t)
9481 struct gcpro gcpro1, gcpro2, gcpro3;
9482 int done, diff;
9484 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9485 done = keyremap_step (keybuf, bufsize, &fkey,
9486 max (t, mock_input),
9487 /* If there's a binding (i.e.
9488 first_binding >= nmaps) we don't want
9489 to apply this function-key-mapping. */
9490 fkey.end + 1 == t && first_binding >= nmaps,
9491 &diff, prompt);
9492 UNGCPRO;
9493 if (done)
9495 mock_input = diff + max (t, mock_input);
9496 goto replay_sequence;
9500 /* Look for this sequence in key-translation-map.
9501 Scan from keytran.end until we find a bound suffix. */
9502 while (keytran.end < fkey.start)
9504 struct gcpro gcpro1, gcpro2, gcpro3;
9505 int done, diff;
9507 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9508 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9509 1, &diff, prompt);
9510 UNGCPRO;
9511 if (done)
9513 mock_input = diff + max (t, mock_input);
9514 /* Adjust the function-key-map counters. */
9515 fkey.end += diff;
9516 fkey.start += diff;
9518 goto replay_sequence;
9522 /* If KEY is not defined in any of the keymaps,
9523 and cannot be part of a function key or translation,
9524 and is an upper case letter
9525 use the corresponding lower-case letter instead. */
9526 if (first_binding >= nmaps
9527 && fkey.start >= t && keytran.start >= t
9528 && INTEGERP (key)
9529 && ((((XINT (key) & 0x3ffff)
9530 < XCHAR_TABLE (current_buffer->downcase_table)->size)
9531 && UPPERCASEP (XINT (key) & 0x3ffff))
9532 || (XINT (key) & shift_modifier)))
9534 Lisp_Object new_key;
9536 original_uppercase = key;
9537 original_uppercase_position = t - 1;
9539 if (XINT (key) & shift_modifier)
9540 XSETINT (new_key, XINT (key) & ~shift_modifier);
9541 else
9542 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9543 | (XINT (key) & ~0x3ffff)));
9545 /* We have to do this unconditionally, regardless of whether
9546 the lower-case char is defined in the keymaps, because they
9547 might get translated through function-key-map. */
9548 keybuf[t - 1] = new_key;
9549 mock_input = max (t, mock_input);
9551 goto replay_sequence;
9553 /* If KEY is not defined in any of the keymaps,
9554 and cannot be part of a function key or translation,
9555 and is a shifted function key,
9556 use the corresponding unshifted function key instead. */
9557 if (first_binding >= nmaps
9558 && fkey.start >= t && keytran.start >= t
9559 && SYMBOLP (key))
9561 Lisp_Object breakdown;
9562 int modifiers;
9564 breakdown = parse_modifiers (key);
9565 modifiers = XINT (XCAR (XCDR (breakdown)));
9566 if (modifiers & shift_modifier)
9568 Lisp_Object new_key;
9570 original_uppercase = key;
9571 original_uppercase_position = t - 1;
9573 modifiers &= ~shift_modifier;
9574 new_key = apply_modifiers (modifiers,
9575 XCAR (breakdown));
9577 keybuf[t - 1] = new_key;
9578 mock_input = max (t, mock_input);
9579 fkey.start = fkey.end = 0;
9580 keytran.start = keytran.end = 0;
9582 goto replay_sequence;
9587 if (!dummyflag)
9588 read_key_sequence_cmd = (first_binding < nmaps
9589 ? defs[first_binding]
9590 : Qnil);
9592 unread_switch_frame = delayed_switch_frame;
9593 unbind_to (count, Qnil);
9595 /* Don't downcase the last character if the caller says don't.
9596 Don't downcase it if the result is undefined, either. */
9597 if ((dont_downcase_last || first_binding >= nmaps)
9598 && t > 0
9599 && t - 1 == original_uppercase_position)
9600 keybuf[t - 1] = original_uppercase;
9602 /* Occasionally we fabricate events, perhaps by expanding something
9603 according to function-key-map, or by adding a prefix symbol to a
9604 mouse click in the scroll bar or modeline. In this cases, return
9605 the entire generated key sequence, even if we hit an unbound
9606 prefix or a definition before the end. This means that you will
9607 be able to push back the event properly, and also means that
9608 read-key-sequence will always return a logical unit.
9610 Better ideas? */
9611 for (; t < mock_input; t++)
9613 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9614 && NILP (Fzerop (Vecho_keystrokes)))
9615 echo_char (keybuf[t]);
9616 add_command_key (keybuf[t]);
9621 UNGCPRO;
9622 return t;
9625 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9626 doc: /* Read a sequence of keystrokes and return as a string or vector.
9627 The sequence is sufficient to specify a non-prefix command in the
9628 current local and global maps.
9630 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9631 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9632 as a continuation of the previous key.
9634 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9635 convert the last event to lower case. (Normally any upper case event
9636 is converted to lower case if the original event is undefined and the lower
9637 case equivalent is defined.) A non-nil value is appropriate for reading
9638 a key sequence to be defined.
9640 A C-g typed while in this function is treated like any other character,
9641 and `quit-flag' is not set.
9643 If the key sequence starts with a mouse click, then the sequence is read
9644 using the keymaps of the buffer of the window clicked in, not the buffer
9645 of the selected window as normal.
9647 `read-key-sequence' drops unbound button-down events, since you normally
9648 only care about the click or drag events which follow them. If a drag
9649 or multi-click event is unbound, but the corresponding click event would
9650 be bound, `read-key-sequence' turns the event into a click event at the
9651 drag's starting position. This means that you don't have to distinguish
9652 between click and drag, double, or triple events unless you want to.
9654 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9655 lines separating windows, and scroll bars with imaginary keys
9656 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9658 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9659 function will process a switch-frame event if the user switches frames
9660 before typing anything. If the user switches frames in the middle of a
9661 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9662 is nil, then the event will be put off until after the current key sequence.
9664 `read-key-sequence' checks `function-key-map' for function key
9665 sequences, where they wouldn't conflict with ordinary bindings. See
9666 `function-key-map' for more details.
9668 The optional fifth argument COMMAND-LOOP, if non-nil, means
9669 that this key sequence is being read by something that will
9670 read commands one after another. It should be nil if the caller
9671 will read just one key sequence. */)
9672 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9673 command_loop)
9674 Lisp_Object prompt, continue_echo, dont_downcase_last;
9675 Lisp_Object can_return_switch_frame, command_loop;
9677 Lisp_Object keybuf[30];
9678 register int i;
9679 struct gcpro gcpro1;
9680 int count = SPECPDL_INDEX ();
9682 if (!NILP (prompt))
9683 CHECK_STRING (prompt);
9684 QUIT;
9686 specbind (Qinput_method_exit_on_first_char,
9687 (NILP (command_loop) ? Qt : Qnil));
9688 specbind (Qinput_method_use_echo_area,
9689 (NILP (command_loop) ? Qt : Qnil));
9691 bzero (keybuf, sizeof keybuf);
9692 GCPRO1 (keybuf[0]);
9693 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9695 if (NILP (continue_echo))
9697 this_command_key_count = 0;
9698 this_command_key_count_reset = 0;
9699 this_single_command_key_start = 0;
9702 #ifdef HAVE_X_WINDOWS
9703 if (display_hourglass_p)
9704 cancel_hourglass ();
9705 #endif
9707 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9708 prompt, ! NILP (dont_downcase_last),
9709 ! NILP (can_return_switch_frame), 0);
9711 #if 0 /* The following is fine for code reading a key sequence and
9712 then proceeding with a lenghty computation, but it's not good
9713 for code reading keys in a loop, like an input method. */
9714 #ifdef HAVE_X_WINDOWS
9715 if (display_hourglass_p)
9716 start_hourglass ();
9717 #endif
9718 #endif
9720 if (i == -1)
9722 Vquit_flag = Qt;
9723 QUIT;
9725 UNGCPRO;
9726 return unbind_to (count, make_event_array (i, keybuf));
9729 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9730 Sread_key_sequence_vector, 1, 5, 0,
9731 doc: /* Like `read-key-sequence' but always return a vector. */)
9732 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9733 command_loop)
9734 Lisp_Object prompt, continue_echo, dont_downcase_last;
9735 Lisp_Object can_return_switch_frame, command_loop;
9737 Lisp_Object keybuf[30];
9738 register int i;
9739 struct gcpro gcpro1;
9740 int count = SPECPDL_INDEX ();
9742 if (!NILP (prompt))
9743 CHECK_STRING (prompt);
9744 QUIT;
9746 specbind (Qinput_method_exit_on_first_char,
9747 (NILP (command_loop) ? Qt : Qnil));
9748 specbind (Qinput_method_use_echo_area,
9749 (NILP (command_loop) ? Qt : Qnil));
9751 bzero (keybuf, sizeof keybuf);
9752 GCPRO1 (keybuf[0]);
9753 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9755 if (NILP (continue_echo))
9757 this_command_key_count = 0;
9758 this_command_key_count_reset = 0;
9759 this_single_command_key_start = 0;
9762 #ifdef HAVE_X_WINDOWS
9763 if (display_hourglass_p)
9764 cancel_hourglass ();
9765 #endif
9767 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9768 prompt, ! NILP (dont_downcase_last),
9769 ! NILP (can_return_switch_frame), 0);
9771 #ifdef HAVE_X_WINDOWS
9772 if (display_hourglass_p)
9773 start_hourglass ();
9774 #endif
9776 if (i == -1)
9778 Vquit_flag = Qt;
9779 QUIT;
9781 UNGCPRO;
9782 return unbind_to (count, Fvector (i, keybuf));
9785 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9786 doc: /* Execute CMD as an editor command.
9787 CMD must be a symbol that satisfies the `commandp' predicate.
9788 Optional second arg RECORD-FLAG non-nil
9789 means unconditionally put this command in `command-history'.
9790 Otherwise, that is done only if an arg is read using the minibuffer.
9791 The argument KEYS specifies the value to use instead of (this-command-keys)
9792 when reading the arguments; if it is nil, (this-command-keys) is used.
9793 The argument SPECIAL, if non-nil, means that this command is executing
9794 a special event, so ignore the prefix argument and don't clear it. */)
9795 (cmd, record_flag, keys, special)
9796 Lisp_Object cmd, record_flag, keys, special;
9798 register Lisp_Object final;
9799 register Lisp_Object tem;
9800 Lisp_Object prefixarg;
9801 struct backtrace backtrace;
9802 extern int debug_on_next_call;
9804 debug_on_next_call = 0;
9806 if (NILP (special))
9808 prefixarg = current_kboard->Vprefix_arg;
9809 Vcurrent_prefix_arg = prefixarg;
9810 current_kboard->Vprefix_arg = Qnil;
9812 else
9813 prefixarg = Qnil;
9815 if (SYMBOLP (cmd))
9817 tem = Fget (cmd, Qdisabled);
9818 if (!NILP (tem) && !NILP (Vrun_hooks))
9820 tem = Fsymbol_value (Qdisabled_command_function);
9821 if (!NILP (tem))
9822 return call1 (Vrun_hooks, Qdisabled_command_function);
9826 while (1)
9828 final = Findirect_function (cmd, Qnil);
9830 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9832 struct gcpro gcpro1, gcpro2;
9834 GCPRO2 (cmd, prefixarg);
9835 do_autoload (final, cmd);
9836 UNGCPRO;
9838 else
9839 break;
9842 if (STRINGP (final) || VECTORP (final))
9844 /* If requested, place the macro in the command history. For
9845 other sorts of commands, call-interactively takes care of
9846 this. */
9847 if (!NILP (record_flag))
9849 Vcommand_history
9850 = Fcons (Fcons (Qexecute_kbd_macro,
9851 Fcons (final, Fcons (prefixarg, Qnil))),
9852 Vcommand_history);
9854 /* Don't keep command history around forever. */
9855 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9857 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9858 if (CONSP (tem))
9859 XSETCDR (tem, Qnil);
9863 return Fexecute_kbd_macro (final, prefixarg, Qnil);
9866 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9868 backtrace.next = backtrace_list;
9869 backtrace_list = &backtrace;
9870 backtrace.function = &Qcall_interactively;
9871 backtrace.args = &cmd;
9872 backtrace.nargs = 1;
9873 backtrace.evalargs = 0;
9874 backtrace.debug_on_exit = 0;
9876 tem = Fcall_interactively (cmd, record_flag, keys);
9878 backtrace_list = backtrace.next;
9879 return tem;
9881 return Qnil;
9886 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9887 1, 1, "P",
9888 doc: /* Read function name, then read its arguments and call it.
9890 To pass a numeric argument to the command you are invoking with, specify
9891 the numeric argument to this command.
9893 Noninteractively, the argument PREFIXARG is the prefix argument to
9894 give to the command you invoke, if it asks for an argument. */)
9895 (prefixarg)
9896 Lisp_Object prefixarg;
9898 Lisp_Object function;
9899 char buf[40];
9900 int saved_last_point_position;
9901 Lisp_Object saved_keys, saved_last_point_position_buffer;
9902 Lisp_Object bindings, value;
9903 struct gcpro gcpro1, gcpro2, gcpro3;
9904 #ifdef HAVE_X_WINDOWS
9905 /* The call to Fcompleting_read wil start and cancel the hourglass,
9906 but if the hourglass was already scheduled, this means that no
9907 hourglass will be shown for the actual M-x command itself.
9908 So we restart it if it is already scheduled. Note that checking
9909 hourglass_shown_p is not enough, normally the hourglass is not shown,
9910 just scheduled to be shown. */
9911 int hstarted = hourglass_started ();
9912 #endif
9914 saved_keys = Fvector (this_command_key_count,
9915 XVECTOR (this_command_keys)->contents);
9916 saved_last_point_position_buffer = last_point_position_buffer;
9917 saved_last_point_position = last_point_position;
9918 buf[0] = 0;
9919 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
9921 if (EQ (prefixarg, Qminus))
9922 strcpy (buf, "- ");
9923 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9924 strcpy (buf, "C-u ");
9925 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9926 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9927 else if (INTEGERP (prefixarg))
9928 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9930 /* This isn't strictly correct if execute-extended-command
9931 is bound to anything else. Perhaps it should use
9932 this_command_keys? */
9933 strcat (buf, "M-x ");
9935 /* Prompt with buf, and then read a string, completing from and
9936 restricting to the set of all defined commands. Don't provide
9937 any initial input. Save the command read on the extended-command
9938 history list. */
9939 function = Fcompleting_read (build_string (buf),
9940 Vobarray, Qcommandp,
9941 Qt, Qnil, Qextended_command_history, Qnil,
9942 Qnil);
9944 #ifdef HAVE_X_WINDOWS
9945 if (hstarted) start_hourglass ();
9946 #endif
9948 if (STRINGP (function) && SCHARS (function) == 0)
9949 error ("No command name given");
9951 /* Set this_command_keys to the concatenation of saved_keys and
9952 function, followed by a RET. */
9954 Lisp_Object *keys;
9955 int i;
9957 this_command_key_count = 0;
9958 this_command_key_count_reset = 0;
9959 this_single_command_key_start = 0;
9961 keys = XVECTOR (saved_keys)->contents;
9962 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9963 add_command_key (keys[i]);
9965 for (i = 0; i < SCHARS (function); i++)
9966 add_command_key (Faref (function, make_number (i)));
9968 add_command_key (make_number ('\015'));
9971 last_point_position = saved_last_point_position;
9972 last_point_position_buffer = saved_last_point_position_buffer;
9974 UNGCPRO;
9976 function = Fintern (function, Qnil);
9977 current_kboard->Vprefix_arg = prefixarg;
9978 Vthis_command = function;
9979 real_this_command = function;
9981 /* If enabled, show which key runs this command. */
9982 if (!NILP (Vsuggest_key_bindings)
9983 && NILP (Vexecuting_kbd_macro)
9984 && SYMBOLP (function))
9985 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9986 Qt, Qnil, Qnil);
9987 else
9988 bindings = Qnil;
9990 value = Qnil;
9991 GCPRO2 (bindings, value);
9992 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9994 /* If the command has a key binding, print it now. */
9995 if (!NILP (bindings)
9996 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9997 Qmouse_movement)))
9999 /* But first wait, and skip the message if there is input. */
10000 Lisp_Object waited;
10002 /* If this command displayed something in the echo area;
10003 wait a few seconds, then display our suggestion message. */
10004 if (NILP (echo_area_buffer[0]))
10005 waited = sit_for (make_number (0), 0, 2);
10006 else if (NUMBERP (Vsuggest_key_bindings))
10007 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10008 else
10009 waited = sit_for (make_number (2), 0, 2);
10011 if (!NILP (waited) && ! CONSP (Vunread_command_events))
10013 Lisp_Object binding;
10014 char *newmessage;
10015 int message_p = push_message ();
10016 int count = SPECPDL_INDEX ();
10018 record_unwind_protect (pop_message_unwind, Qnil);
10019 binding = Fkey_description (bindings, Qnil);
10021 newmessage
10022 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
10023 + SBYTES (binding)
10024 + 100);
10025 sprintf (newmessage, "You can run the command `%s' with %s",
10026 SDATA (SYMBOL_NAME (function)),
10027 SDATA (binding));
10028 message2_nolog (newmessage,
10029 strlen (newmessage),
10030 STRING_MULTIBYTE (binding));
10031 if (NUMBERP (Vsuggest_key_bindings))
10032 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10033 else
10034 waited = sit_for (make_number (2), 0, 2);
10036 if (!NILP (waited) && message_p)
10037 restore_message ();
10039 unbind_to (count, Qnil);
10043 RETURN_UNGCPRO (value);
10047 /* Return nonzero if input events are pending. */
10050 detect_input_pending ()
10052 if (!input_pending)
10053 get_input_pending (&input_pending, 0);
10055 return input_pending;
10058 /* Return nonzero if input events other than mouse movements are
10059 pending. */
10062 detect_input_pending_ignore_squeezables ()
10064 if (!input_pending)
10065 get_input_pending (&input_pending, READABLE_EVENTS_IGNORE_SQUEEZABLES);
10067 return input_pending;
10070 /* Return nonzero if input events are pending, and run any pending timers. */
10073 detect_input_pending_run_timers (do_display)
10074 int do_display;
10076 int old_timers_run = timers_run;
10078 if (!input_pending)
10079 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
10081 if (old_timers_run != timers_run && do_display)
10083 redisplay_preserve_echo_area (8);
10084 /* The following fixes a bug when using lazy-lock with
10085 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
10086 from an idle timer function. The symptom of the bug is that
10087 the cursor sometimes doesn't become visible until the next X
10088 event is processed. --gerd. */
10089 if (rif)
10090 rif->flush_display (NULL);
10093 return input_pending;
10096 /* This is called in some cases before a possible quit.
10097 It cases the next call to detect_input_pending to recompute input_pending.
10098 So calling this function unnecessarily can't do any harm. */
10100 void
10101 clear_input_pending ()
10103 input_pending = 0;
10106 /* Return nonzero if there are pending requeued events.
10107 This isn't used yet. The hope is to make wait_reading_process_output
10108 call it, and return if it runs Lisp code that unreads something.
10109 The problem is, kbd_buffer_get_event needs to be fixed to know what
10110 to do in that case. It isn't trivial. */
10113 requeued_events_pending_p ()
10115 return (!NILP (Vunread_command_events) || unread_command_char != -1);
10119 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
10120 doc: /* Return t if command input is currently available with no wait.
10121 Actually, the value is nil only if we can be sure that no input is available;
10122 if there is a doubt, the value is t. */)
10125 if (!NILP (Vunread_command_events) || unread_command_char != -1
10126 || !NILP (Vunread_post_input_method_events)
10127 || !NILP (Vunread_input_method_events))
10128 return (Qt);
10130 get_input_pending (&input_pending,
10131 READABLE_EVENTS_DO_TIMERS_NOW
10132 | READABLE_EVENTS_FILTER_EVENTS);
10133 return input_pending > 0 ? Qt : Qnil;
10136 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
10137 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
10140 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
10141 Lisp_Object val;
10143 if (total_keys < NUM_RECENT_KEYS)
10144 return Fvector (total_keys, keys);
10145 else
10147 val = Fvector (NUM_RECENT_KEYS, keys);
10148 bcopy (keys + recent_keys_index,
10149 XVECTOR (val)->contents,
10150 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
10151 bcopy (keys,
10152 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
10153 recent_keys_index * sizeof (Lisp_Object));
10154 return val;
10158 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10159 doc: /* Return the key sequence that invoked this command.
10160 However, if the command has called `read-key-sequence', it returns
10161 the last key sequence that has been read.
10162 The value is a string or a vector. */)
10165 return make_event_array (this_command_key_count,
10166 XVECTOR (this_command_keys)->contents);
10169 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10170 doc: /* Return the key sequence that invoked this command, as a vector.
10171 However, if the command has called `read-key-sequence', it returns
10172 the last key sequence that has been read. */)
10175 return Fvector (this_command_key_count,
10176 XVECTOR (this_command_keys)->contents);
10179 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10180 Sthis_single_command_keys, 0, 0, 0,
10181 doc: /* Return the key sequence that invoked this command.
10182 More generally, it returns the last key sequence read, either by
10183 the command loop or by `read-key-sequence'.
10184 Unlike `this-command-keys', this function's value
10185 does not include prefix arguments.
10186 The value is always a vector. */)
10189 return Fvector (this_command_key_count
10190 - this_single_command_key_start,
10191 (XVECTOR (this_command_keys)->contents
10192 + this_single_command_key_start));
10195 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10196 Sthis_single_command_raw_keys, 0, 0, 0,
10197 doc: /* Return the raw events that were read for this command.
10198 More generally, it returns the last key sequence read, either by
10199 the command loop or by `read-key-sequence'.
10200 Unlike `this-single-command-keys', this function's value
10201 shows the events before all translations (except for input methods).
10202 The value is always a vector. */)
10205 return Fvector (raw_keybuf_count,
10206 (XVECTOR (raw_keybuf)->contents));
10209 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
10210 Sreset_this_command_lengths, 0, 0, 0,
10211 doc: /* Make the unread events replace the last command and echo.
10212 Used in `universal-argument-other-key'.
10214 `universal-argument-other-key' rereads the event just typed.
10215 It then gets translated through `function-key-map'.
10216 The translated event has to replace the real events,
10217 both in the value of (this-command-keys) and in echoing.
10218 To achieve this, `universal-argument-other-key' calls
10219 `reset-this-command-lengths', which discards the record of reading
10220 these events the first time. */)
10223 this_command_key_count = before_command_key_count;
10224 if (this_command_key_count < this_single_command_key_start)
10225 this_single_command_key_start = this_command_key_count;
10227 echo_truncate (before_command_echo_length);
10229 /* Cause whatever we put into unread-command-events
10230 to echo as if it were being freshly read from the keyboard. */
10231 this_command_key_count_reset = 1;
10233 return Qnil;
10236 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10237 Sclear_this_command_keys, 0, 1, 0,
10238 doc: /* Clear out the vector that `this-command-keys' returns.
10239 Also clear the record of the last 100 events, unless optional arg
10240 KEEP-RECORD is non-nil. */)
10241 (keep_record)
10242 Lisp_Object keep_record;
10244 int i;
10246 this_command_key_count = 0;
10247 this_command_key_count_reset = 0;
10249 if (NILP (keep_record))
10251 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
10252 XVECTOR (recent_keys)->contents[i] = Qnil;
10253 total_keys = 0;
10254 recent_keys_index = 0;
10256 return Qnil;
10259 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10260 doc: /* Return the current depth in recursive edits. */)
10263 Lisp_Object temp;
10264 XSETFASTINT (temp, command_loop_level + minibuf_level);
10265 return temp;
10268 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10269 "FOpen dribble file: ",
10270 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10271 If FILE is nil, close any open dribble file. */)
10272 (file)
10273 Lisp_Object file;
10275 if (dribble)
10277 fclose (dribble);
10278 dribble = 0;
10280 if (!NILP (file))
10282 file = Fexpand_file_name (file, Qnil);
10283 dribble = fopen (SDATA (file), "w");
10284 if (dribble == 0)
10285 report_file_error ("Opening dribble", Fcons (file, Qnil));
10287 return Qnil;
10290 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10291 doc: /* Discard the contents of the terminal input buffer.
10292 Also end any kbd macro being defined. */)
10295 if (!NILP (current_kboard->defining_kbd_macro))
10297 /* Discard the last command from the macro. */
10298 Fcancel_kbd_macro_events ();
10299 end_kbd_macro ();
10302 update_mode_lines++;
10304 Vunread_command_events = Qnil;
10305 unread_command_char = -1;
10307 discard_tty_input ();
10309 kbd_fetch_ptr = kbd_store_ptr;
10310 input_pending = 0;
10312 return Qnil;
10315 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10316 doc: /* Stop Emacs and return to superior process. You can resume later.
10317 If `cannot-suspend' is non-nil, or if the system doesn't support job
10318 control, run a subshell instead.
10320 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10321 to be read as terminal input by Emacs's parent, after suspension.
10323 Before suspending, run the normal hook `suspend-hook'.
10324 After resumption run the normal hook `suspend-resume-hook'.
10326 Some operating systems cannot stop the Emacs process and resume it later.
10327 On such systems, Emacs starts a subshell instead of suspending. */)
10328 (stuffstring)
10329 Lisp_Object stuffstring;
10331 int count = SPECPDL_INDEX ();
10332 int old_height, old_width;
10333 int width, height;
10334 struct gcpro gcpro1;
10336 if (!NILP (stuffstring))
10337 CHECK_STRING (stuffstring);
10339 /* Run the functions in suspend-hook. */
10340 if (!NILP (Vrun_hooks))
10341 call1 (Vrun_hooks, intern ("suspend-hook"));
10343 GCPRO1 (stuffstring);
10344 get_frame_size (&old_width, &old_height);
10345 reset_sys_modes ();
10346 /* sys_suspend can get an error if it tries to fork a subshell
10347 and the system resources aren't available for that. */
10348 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
10349 Qnil);
10350 stuff_buffered_input (stuffstring);
10351 if (cannot_suspend)
10352 sys_subshell ();
10353 else
10354 sys_suspend ();
10355 unbind_to (count, Qnil);
10357 /* Check if terminal/window size has changed.
10358 Note that this is not useful when we are running directly
10359 with a window system; but suspend should be disabled in that case. */
10360 get_frame_size (&width, &height);
10361 if (width != old_width || height != old_height)
10362 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10364 /* Run suspend-resume-hook. */
10365 if (!NILP (Vrun_hooks))
10366 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10368 UNGCPRO;
10369 return Qnil;
10372 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10373 Then in any case stuff anything Emacs has read ahead and not used. */
10375 void
10376 stuff_buffered_input (stuffstring)
10377 Lisp_Object stuffstring;
10379 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10380 register unsigned char *p;
10382 if (STRINGP (stuffstring))
10384 register int count;
10386 p = SDATA (stuffstring);
10387 count = SBYTES (stuffstring);
10388 while (count-- > 0)
10389 stuff_char (*p++);
10390 stuff_char ('\n');
10393 /* Anything we have read ahead, put back for the shell to read. */
10394 /* ?? What should this do when we have multiple keyboards??
10395 Should we ignore anything that was typed in at the "wrong" kboard?
10397 rms: we should stuff everything back into the kboard
10398 it came from. */
10399 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10402 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10403 kbd_fetch_ptr = kbd_buffer;
10404 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10405 stuff_char (kbd_fetch_ptr->code);
10407 clear_event (kbd_fetch_ptr);
10410 input_pending = 0;
10411 #endif /* SIGTSTP */
10414 void
10415 set_waiting_for_input (time_to_clear)
10416 EMACS_TIME *time_to_clear;
10418 input_available_clear_time = time_to_clear;
10420 /* Tell interrupt_signal to throw back to read_char, */
10421 waiting_for_input = 1;
10423 /* If interrupt_signal was called before and buffered a C-g,
10424 make it run again now, to avoid timing error. */
10425 if (!NILP (Vquit_flag))
10426 quit_throw_to_read_char ();
10429 void
10430 clear_waiting_for_input ()
10432 /* Tell interrupt_signal not to throw back to read_char, */
10433 waiting_for_input = 0;
10434 input_available_clear_time = 0;
10437 /* This routine is called at interrupt level in response to C-g.
10439 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10440 is called from kbd_buffer_store_event, in handling SIGIO or
10441 SIGTINT.
10443 If `waiting_for_input' is non zero, then unless `echoing' is
10444 nonzero, immediately throw back to read_char.
10446 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10447 eval to throw, when it gets a chance. If quit-flag is already
10448 non-nil, it stops the job right away. */
10450 static SIGTYPE
10451 interrupt_signal (signalnum) /* If we don't have an argument, */
10452 int signalnum; /* some compilers complain in signal calls. */
10454 char c;
10455 /* Must preserve main program's value of errno. */
10456 int old_errno = errno;
10457 struct frame *sf = SELECTED_FRAME ();
10459 #if defined (USG) && !defined (POSIX_SIGNALS)
10460 if (!read_socket_hook && NILP (Vwindow_system))
10462 /* USG systems forget handlers when they are used;
10463 must reestablish each time */
10464 signal (SIGINT, interrupt_signal);
10465 signal (SIGQUIT, interrupt_signal);
10467 #endif /* USG */
10469 SIGNAL_THREAD_CHECK (signalnum);
10470 cancel_echoing ();
10472 if (!NILP (Vquit_flag)
10473 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
10475 /* If SIGINT isn't blocked, don't let us be interrupted by
10476 another SIGINT, it might be harmful due to non-reentrancy
10477 in I/O functions. */
10478 sigblock (sigmask (SIGINT));
10480 fflush (stdout);
10481 reset_sys_modes ();
10483 #ifdef SIGTSTP /* Support possible in later USG versions */
10485 * On systems which can suspend the current process and return to the original
10486 * shell, this command causes the user to end up back at the shell.
10487 * The "Auto-save" and "Abort" questions are not asked until
10488 * the user elects to return to emacs, at which point he can save the current
10489 * job and either dump core or continue.
10491 sys_suspend ();
10492 #else
10493 #ifdef VMS
10494 if (sys_suspend () == -1)
10496 printf ("Not running as a subprocess;\n");
10497 printf ("you can continue or abort.\n");
10499 #else /* not VMS */
10500 /* Perhaps should really fork an inferior shell?
10501 But that would not provide any way to get back
10502 to the original shell, ever. */
10503 printf ("No support for stopping a process on this operating system;\n");
10504 printf ("you can continue or abort.\n");
10505 #endif /* not VMS */
10506 #endif /* not SIGTSTP */
10507 #ifdef MSDOS
10508 /* We must remain inside the screen area when the internal terminal
10509 is used. Note that [Enter] is not echoed by dos. */
10510 cursor_to (0, 0);
10511 #endif
10512 /* It doesn't work to autosave while GC is in progress;
10513 the code used for auto-saving doesn't cope with the mark bit. */
10514 if (!gc_in_progress)
10516 printf ("Auto-save? (y or n) ");
10517 fflush (stdout);
10518 if (((c = getchar ()) & ~040) == 'Y')
10520 Fdo_auto_save (Qt, Qnil);
10521 #ifdef MSDOS
10522 printf ("\r\nAuto-save done");
10523 #else /* not MSDOS */
10524 printf ("Auto-save done\n");
10525 #endif /* not MSDOS */
10527 while (c != '\n') c = getchar ();
10529 else
10531 /* During GC, it must be safe to reenable quitting again. */
10532 Vinhibit_quit = Qnil;
10533 #ifdef MSDOS
10534 printf ("\r\n");
10535 #endif /* not MSDOS */
10536 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10537 printf ("but will instead do a real quit after garbage collection ends\r\n");
10538 fflush (stdout);
10541 #ifdef MSDOS
10542 printf ("\r\nAbort? (y or n) ");
10543 #else /* not MSDOS */
10544 #ifdef VMS
10545 printf ("Abort (and enter debugger)? (y or n) ");
10546 #else /* not VMS */
10547 printf ("Abort (and dump core)? (y or n) ");
10548 #endif /* not VMS */
10549 #endif /* not MSDOS */
10550 fflush (stdout);
10551 if (((c = getchar ()) & ~040) == 'Y')
10552 abort ();
10553 while (c != '\n') c = getchar ();
10554 #ifdef MSDOS
10555 printf ("\r\nContinuing...\r\n");
10556 #else /* not MSDOS */
10557 printf ("Continuing...\n");
10558 #endif /* not MSDOS */
10559 fflush (stdout);
10560 init_sys_modes ();
10561 sigfree ();
10563 else
10565 /* If executing a function that wants to be interrupted out of
10566 and the user has not deferred quitting by binding `inhibit-quit'
10567 then quit right away. */
10568 if (immediate_quit && NILP (Vinhibit_quit))
10570 struct gl_state_s saved;
10571 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10573 immediate_quit = 0;
10574 sigfree ();
10575 saved = gl_state;
10576 GCPRO4 (saved.object, saved.global_code,
10577 saved.current_syntax_table, saved.old_prop);
10578 Fsignal (Qquit, Qnil);
10579 gl_state = saved;
10580 UNGCPRO;
10582 else
10583 /* Else request quit when it's safe */
10584 Vquit_flag = Qt;
10587 if (waiting_for_input && !echoing)
10588 quit_throw_to_read_char ();
10590 errno = old_errno;
10593 /* Handle a C-g by making read_char return C-g. */
10595 void
10596 quit_throw_to_read_char ()
10598 sigfree ();
10599 /* Prevent another signal from doing this before we finish. */
10600 clear_waiting_for_input ();
10601 input_pending = 0;
10603 Vunread_command_events = Qnil;
10604 unread_command_char = -1;
10606 #if 0 /* Currently, sit_for is called from read_char without turning
10607 off polling. And that can call set_waiting_for_input.
10608 It seems to be harmless. */
10609 #ifdef POLL_FOR_INPUT
10610 /* May be > 1 if in recursive minibuffer. */
10611 if (poll_suppress_count == 0)
10612 abort ();
10613 #endif
10614 #endif
10615 if (FRAMEP (internal_last_event_frame)
10616 && !EQ (internal_last_event_frame, selected_frame))
10617 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10618 0, 0);
10620 _longjmp (getcjmp, 1);
10623 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10624 doc: /* Set mode of reading keyboard input.
10625 First arg INTERRUPT non-nil means use input interrupts;
10626 nil means use CBREAK mode.
10627 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10628 (no effect except in CBREAK mode).
10629 Third arg META t means accept 8-bit input (for a Meta key).
10630 META nil means ignore the top bit, on the assumption it is parity.
10631 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10632 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10633 See also `current-input-mode'. */)
10634 (interrupt, flow, meta, quit)
10635 Lisp_Object interrupt, flow, meta, quit;
10637 if (!NILP (quit)
10638 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10639 error ("set-input-mode: QUIT must be an ASCII character");
10641 #ifdef POLL_FOR_INPUT
10642 stop_polling ();
10643 #endif
10645 #ifndef DOS_NT
10646 /* this causes startup screen to be restored and messes with the mouse */
10647 reset_sys_modes ();
10648 #endif
10650 #ifdef SIGIO
10651 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10652 if (read_socket_hook)
10654 /* When using X, don't give the user a real choice,
10655 because we haven't implemented the mechanisms to support it. */
10656 #ifdef NO_SOCK_SIGIO
10657 interrupt_input = 0;
10658 #else /* not NO_SOCK_SIGIO */
10659 interrupt_input = 1;
10660 #endif /* NO_SOCK_SIGIO */
10662 else
10663 interrupt_input = !NILP (interrupt);
10664 #else /* not SIGIO */
10665 interrupt_input = 0;
10666 #endif /* not SIGIO */
10668 /* Our VMS input only works by interrupts, as of now. */
10669 #ifdef VMS
10670 interrupt_input = 1;
10671 #endif
10673 flow_control = !NILP (flow);
10674 if (NILP (meta))
10675 meta_key = 0;
10676 else if (EQ (meta, Qt))
10677 meta_key = 1;
10678 else
10679 meta_key = 2;
10680 if (!NILP (quit))
10681 /* Don't let this value be out of range. */
10682 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10684 #ifndef DOS_NT
10685 init_sys_modes ();
10686 #endif
10688 #ifdef POLL_FOR_INPUT
10689 poll_suppress_count = 1;
10690 start_polling ();
10691 #endif
10692 return Qnil;
10695 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10696 doc: /* Return information about the way Emacs currently reads keyboard input.
10697 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10698 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10699 nil, Emacs is using CBREAK mode.
10700 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10701 terminal; this does not apply if Emacs uses interrupt-driven input.
10702 META is t if accepting 8-bit input with 8th bit as Meta flag.
10703 META nil means ignoring the top bit, on the assumption it is parity.
10704 META is neither t nor nil if accepting 8-bit input and using
10705 all 8 bits as the character code.
10706 QUIT is the character Emacs currently uses to quit.
10707 The elements of this list correspond to the arguments of
10708 `set-input-mode'. */)
10711 Lisp_Object val[4];
10713 val[0] = interrupt_input ? Qt : Qnil;
10714 val[1] = flow_control ? Qt : Qnil;
10715 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10716 XSETFASTINT (val[3], quit_char);
10718 return Flist (sizeof (val) / sizeof (val[0]), val);
10721 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
10722 doc: /* Return position information for pixel coordinates X and Y.
10723 By default, X and Y are relative to text area of the selected window.
10724 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
10725 If optional fourth arg WHOLE is non-nil, X is relative to the left
10726 edge of the window.
10728 The return value is similar to a mouse click position:
10729 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10730 IMAGE (DX . DY) (WIDTH . HEIGHT))
10731 The `posn-' functions access elements of such lists. */)
10732 (x, y, frame_or_window, whole)
10733 Lisp_Object x, y, frame_or_window, whole;
10735 CHECK_NATNUM (x);
10736 CHECK_NATNUM (y);
10738 if (NILP (frame_or_window))
10739 frame_or_window = selected_window;
10741 if (WINDOWP (frame_or_window))
10743 struct window *w;
10745 CHECK_LIVE_WINDOW (frame_or_window);
10747 w = XWINDOW (frame_or_window);
10748 XSETINT (x, (XINT (x)
10749 + WINDOW_LEFT_EDGE_X (w)
10750 + (NILP (whole)
10751 ? window_box_left_offset (w, TEXT_AREA)
10752 : 0)));
10753 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
10754 frame_or_window = w->frame;
10757 CHECK_LIVE_FRAME (frame_or_window);
10759 return make_lispy_position (XFRAME (frame_or_window), &x, &y, 0);
10762 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
10763 doc: /* Return position information for buffer POS in WINDOW.
10764 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10766 Return nil if position is not visible in window. Otherwise,
10767 the return value is similar to that returned by `event-start' for
10768 a mouse click at the upper left corner of the glyph corresponding
10769 to the given buffer position:
10770 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10771 IMAGE (DX . DY) (WIDTH . HEIGHT))
10772 The `posn-' functions access elements of such lists. */)
10773 (pos, window)
10774 Lisp_Object pos, window;
10776 Lisp_Object tem;
10778 if (NILP (window))
10779 window = selected_window;
10781 tem = Fpos_visible_in_window_p (pos, window, Qt);
10782 if (!NILP (tem))
10784 Lisp_Object x = XCAR (tem);
10785 Lisp_Object y = XCAR (XCDR (tem));
10787 /* Point invisible due to hscrolling? */
10788 if (XINT (x) < 0)
10789 return Qnil;
10790 tem = Fposn_at_x_y (x, y, window, Qnil);
10793 return tem;
10798 * Set up a new kboard object with reasonable initial values.
10800 void
10801 init_kboard (kb)
10802 KBOARD *kb;
10804 kb->Voverriding_terminal_local_map = Qnil;
10805 kb->Vlast_command = Qnil;
10806 kb->Vreal_last_command = Qnil;
10807 kb->Vprefix_arg = Qnil;
10808 kb->Vlast_prefix_arg = Qnil;
10809 kb->kbd_queue = Qnil;
10810 kb->kbd_queue_has_data = 0;
10811 kb->immediate_echo = 0;
10812 kb->echo_string = Qnil;
10813 kb->echo_after_prompt = -1;
10814 kb->kbd_macro_buffer = 0;
10815 kb->kbd_macro_bufsize = 0;
10816 kb->defining_kbd_macro = Qnil;
10817 kb->Vlast_kbd_macro = Qnil;
10818 kb->reference_count = 0;
10819 kb->Vsystem_key_alist = Qnil;
10820 kb->system_key_syms = Qnil;
10821 kb->Vdefault_minibuffer_frame = Qnil;
10825 * Destroy the contents of a kboard object, but not the object itself.
10826 * We use this just before deleting it, or if we're going to initialize
10827 * it a second time.
10829 static void
10830 wipe_kboard (kb)
10831 KBOARD *kb;
10833 if (kb->kbd_macro_buffer)
10834 xfree (kb->kbd_macro_buffer);
10837 #ifdef MULTI_KBOARD
10839 /* Free KB and memory referenced from it. */
10841 void
10842 delete_kboard (kb)
10843 KBOARD *kb;
10845 KBOARD **kbp;
10847 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10848 if (*kbp == NULL)
10849 abort ();
10850 *kbp = kb->next_kboard;
10852 /* Prevent a dangling reference to KB. */
10853 if (kb == current_kboard
10854 && FRAMEP (selected_frame)
10855 && FRAME_LIVE_P (XFRAME (selected_frame)))
10857 current_kboard = XFRAME (selected_frame)->kboard;
10858 if (current_kboard == kb)
10859 abort ();
10862 wipe_kboard (kb);
10863 xfree (kb);
10866 #endif /* MULTI_KBOARD */
10868 void
10869 init_keyboard ()
10871 /* This is correct before outermost invocation of the editor loop */
10872 command_loop_level = -1;
10873 immediate_quit = 0;
10874 quit_char = Ctl ('g');
10875 Vunread_command_events = Qnil;
10876 unread_command_char = -1;
10877 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10878 total_keys = 0;
10879 recent_keys_index = 0;
10880 kbd_fetch_ptr = kbd_buffer;
10881 kbd_store_ptr = kbd_buffer;
10882 #ifdef HAVE_MOUSE
10883 do_mouse_tracking = Qnil;
10884 #endif
10885 input_pending = 0;
10887 /* This means that command_loop_1 won't try to select anything the first
10888 time through. */
10889 internal_last_event_frame = Qnil;
10890 Vlast_event_frame = internal_last_event_frame;
10892 #ifdef MULTI_KBOARD
10893 current_kboard = initial_kboard;
10894 #endif
10895 wipe_kboard (current_kboard);
10896 init_kboard (current_kboard);
10898 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
10900 signal (SIGINT, interrupt_signal);
10901 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10902 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10903 SIGQUIT and we can't tell which one it will give us. */
10904 signal (SIGQUIT, interrupt_signal);
10905 #endif /* HAVE_TERMIO */
10907 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10908 #ifdef SIGIO
10909 if (!noninteractive)
10910 signal (SIGIO, input_available_signal);
10911 #endif /* SIGIO */
10913 /* Use interrupt input by default, if it works and noninterrupt input
10914 has deficiencies. */
10916 #ifdef INTERRUPT_INPUT
10917 interrupt_input = 1;
10918 #else
10919 interrupt_input = 0;
10920 #endif
10922 /* Our VMS input only works by interrupts, as of now. */
10923 #ifdef VMS
10924 interrupt_input = 1;
10925 #endif
10927 sigfree ();
10928 dribble = 0;
10930 if (keyboard_init_hook)
10931 (*keyboard_init_hook) ();
10933 #ifdef POLL_FOR_INPUT
10934 poll_suppress_count = 1;
10935 start_polling ();
10936 #endif
10939 /* This type's only use is in syms_of_keyboard, to initialize the
10940 event header symbols and put properties on them. */
10941 struct event_head {
10942 Lisp_Object *var;
10943 char *name;
10944 Lisp_Object *kind;
10947 struct event_head head_table[] = {
10948 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10949 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10950 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10951 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10952 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10953 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
10954 /* `select-window' should be handled just like `switch-frame'
10955 in read_key_sequence. */
10956 {&Qselect_window, "select-window", &Qswitch_frame}
10959 void
10960 syms_of_keyboard ()
10962 Vpre_help_message = Qnil;
10963 staticpro (&Vpre_help_message);
10965 Vlispy_mouse_stem = build_string ("mouse");
10966 staticpro (&Vlispy_mouse_stem);
10968 /* Tool-bars. */
10969 QCimage = intern (":image");
10970 staticpro (&QCimage);
10972 staticpro (&Qhelp_echo);
10973 Qhelp_echo = intern ("help-echo");
10975 staticpro (&item_properties);
10976 item_properties = Qnil;
10978 staticpro (&tool_bar_item_properties);
10979 tool_bar_item_properties = Qnil;
10980 staticpro (&tool_bar_items_vector);
10981 tool_bar_items_vector = Qnil;
10983 staticpro (&real_this_command);
10984 real_this_command = Qnil;
10986 Qtimer_event_handler = intern ("timer-event-handler");
10987 staticpro (&Qtimer_event_handler);
10989 Qdisabled_command_function = intern ("disabled-command-function");
10990 staticpro (&Qdisabled_command_function);
10992 Qself_insert_command = intern ("self-insert-command");
10993 staticpro (&Qself_insert_command);
10995 Qforward_char = intern ("forward-char");
10996 staticpro (&Qforward_char);
10998 Qbackward_char = intern ("backward-char");
10999 staticpro (&Qbackward_char);
11001 Qdisabled = intern ("disabled");
11002 staticpro (&Qdisabled);
11004 Qundefined = intern ("undefined");
11005 staticpro (&Qundefined);
11007 Qpre_command_hook = intern ("pre-command-hook");
11008 staticpro (&Qpre_command_hook);
11010 Qpost_command_hook = intern ("post-command-hook");
11011 staticpro (&Qpost_command_hook);
11013 Qdeferred_action_function = intern ("deferred-action-function");
11014 staticpro (&Qdeferred_action_function);
11016 Qcommand_hook_internal = intern ("command-hook-internal");
11017 staticpro (&Qcommand_hook_internal);
11019 Qfunction_key = intern ("function-key");
11020 staticpro (&Qfunction_key);
11021 Qmouse_click = intern ("mouse-click");
11022 staticpro (&Qmouse_click);
11023 #if defined (WINDOWSNT) || defined (MAC_OS)
11024 Qlanguage_change = intern ("language-change");
11025 staticpro (&Qlanguage_change);
11026 #endif
11027 Qdrag_n_drop = intern ("drag-n-drop");
11028 staticpro (&Qdrag_n_drop);
11030 Qsave_session = intern ("save-session");
11031 staticpro (&Qsave_session);
11033 #ifdef MAC_OS
11034 Qmac_apple_event = intern ("mac-apple-event");
11035 staticpro (&Qmac_apple_event);
11036 #endif
11038 Qsignal = intern ("signal");
11039 staticpro (&Qsignal);
11041 Qmenu_enable = intern ("menu-enable");
11042 staticpro (&Qmenu_enable);
11043 Qmenu_alias = intern ("menu-alias");
11044 staticpro (&Qmenu_alias);
11045 QCenable = intern (":enable");
11046 staticpro (&QCenable);
11047 QCvisible = intern (":visible");
11048 staticpro (&QCvisible);
11049 QChelp = intern (":help");
11050 staticpro (&QChelp);
11051 QCfilter = intern (":filter");
11052 staticpro (&QCfilter);
11053 QCbutton = intern (":button");
11054 staticpro (&QCbutton);
11055 QCkeys = intern (":keys");
11056 staticpro (&QCkeys);
11057 QCkey_sequence = intern (":key-sequence");
11058 staticpro (&QCkey_sequence);
11059 QCtoggle = intern (":toggle");
11060 staticpro (&QCtoggle);
11061 QCradio = intern (":radio");
11062 staticpro (&QCradio);
11064 Qmode_line = intern ("mode-line");
11065 staticpro (&Qmode_line);
11066 Qvertical_line = intern ("vertical-line");
11067 staticpro (&Qvertical_line);
11068 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
11069 staticpro (&Qvertical_scroll_bar);
11070 Qmenu_bar = intern ("menu-bar");
11071 staticpro (&Qmenu_bar);
11073 #ifdef HAVE_MOUSE
11074 Qmouse_fixup_help_message = intern ("mouse-fixup-help-message");
11075 staticpro (&Qmouse_fixup_help_message);
11076 #endif
11078 Qabove_handle = intern ("above-handle");
11079 staticpro (&Qabove_handle);
11080 Qhandle = intern ("handle");
11081 staticpro (&Qhandle);
11082 Qbelow_handle = intern ("below-handle");
11083 staticpro (&Qbelow_handle);
11084 Qup = intern ("up");
11085 staticpro (&Qup);
11086 Qdown = intern ("down");
11087 staticpro (&Qdown);
11088 Qtop = intern ("top");
11089 staticpro (&Qtop);
11090 Qbottom = intern ("bottom");
11091 staticpro (&Qbottom);
11092 Qend_scroll = intern ("end-scroll");
11093 staticpro (&Qend_scroll);
11094 Qratio = intern ("ratio");
11095 staticpro (&Qratio);
11097 Qevent_kind = intern ("event-kind");
11098 staticpro (&Qevent_kind);
11099 Qevent_symbol_elements = intern ("event-symbol-elements");
11100 staticpro (&Qevent_symbol_elements);
11101 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
11102 staticpro (&Qevent_symbol_element_mask);
11103 Qmodifier_cache = intern ("modifier-cache");
11104 staticpro (&Qmodifier_cache);
11106 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
11107 staticpro (&Qrecompute_lucid_menubar);
11108 Qactivate_menubar_hook = intern ("activate-menubar-hook");
11109 staticpro (&Qactivate_menubar_hook);
11111 Qpolling_period = intern ("polling-period");
11112 staticpro (&Qpolling_period);
11114 Qinput_method_function = intern ("input-method-function");
11115 staticpro (&Qinput_method_function);
11117 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
11118 staticpro (&Qinput_method_exit_on_first_char);
11119 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
11120 staticpro (&Qinput_method_use_echo_area);
11122 Fset (Qinput_method_exit_on_first_char, Qnil);
11123 Fset (Qinput_method_use_echo_area, Qnil);
11125 last_point_position_buffer = Qnil;
11126 last_point_position_window = Qnil;
11129 struct event_head *p;
11131 for (p = head_table;
11132 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
11133 p++)
11135 *p->var = intern (p->name);
11136 staticpro (p->var);
11137 Fput (*p->var, Qevent_kind, *p->kind);
11138 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
11142 button_down_location = Fmake_vector (make_number (1), Qnil);
11143 staticpro (&button_down_location);
11144 mouse_syms = Fmake_vector (make_number (1), Qnil);
11145 staticpro (&mouse_syms);
11146 wheel_syms = Fmake_vector (make_number (2), Qnil);
11147 staticpro (&wheel_syms);
11150 int i;
11151 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
11153 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11154 for (i = 0; i < len; i++)
11155 if (modifier_names[i])
11156 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
11157 staticpro (&modifier_symbols);
11160 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11161 staticpro (&recent_keys);
11163 this_command_keys = Fmake_vector (make_number (40), Qnil);
11164 staticpro (&this_command_keys);
11166 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11167 staticpro (&raw_keybuf);
11169 Qextended_command_history = intern ("extended-command-history");
11170 Fset (Qextended_command_history, Qnil);
11171 staticpro (&Qextended_command_history);
11173 accent_key_syms = Qnil;
11174 staticpro (&accent_key_syms);
11176 func_key_syms = Qnil;
11177 staticpro (&func_key_syms);
11179 drag_n_drop_syms = Qnil;
11180 staticpro (&drag_n_drop_syms);
11182 unread_switch_frame = Qnil;
11183 staticpro (&unread_switch_frame);
11185 internal_last_event_frame = Qnil;
11186 staticpro (&internal_last_event_frame);
11188 read_key_sequence_cmd = Qnil;
11189 staticpro (&read_key_sequence_cmd);
11191 menu_bar_one_keymap_changed_items = Qnil;
11192 staticpro (&menu_bar_one_keymap_changed_items);
11194 menu_bar_items_vector = Qnil;
11195 staticpro (&menu_bar_items_vector);
11197 defsubr (&Scurrent_idle_time);
11198 defsubr (&Sevent_convert_list);
11199 defsubr (&Sread_key_sequence);
11200 defsubr (&Sread_key_sequence_vector);
11201 defsubr (&Srecursive_edit);
11202 #ifdef HAVE_MOUSE
11203 defsubr (&Strack_mouse);
11204 #endif
11205 defsubr (&Sinput_pending_p);
11206 defsubr (&Scommand_execute);
11207 defsubr (&Srecent_keys);
11208 defsubr (&Sthis_command_keys);
11209 defsubr (&Sthis_command_keys_vector);
11210 defsubr (&Sthis_single_command_keys);
11211 defsubr (&Sthis_single_command_raw_keys);
11212 defsubr (&Sreset_this_command_lengths);
11213 defsubr (&Sclear_this_command_keys);
11214 defsubr (&Ssuspend_emacs);
11215 defsubr (&Sabort_recursive_edit);
11216 defsubr (&Sexit_recursive_edit);
11217 defsubr (&Srecursion_depth);
11218 defsubr (&Stop_level);
11219 defsubr (&Sdiscard_input);
11220 defsubr (&Sopen_dribble_file);
11221 defsubr (&Sset_input_mode);
11222 defsubr (&Scurrent_input_mode);
11223 defsubr (&Sexecute_extended_command);
11224 defsubr (&Sposn_at_point);
11225 defsubr (&Sposn_at_x_y);
11227 DEFVAR_LISP ("last-command-char", &last_command_char,
11228 doc: /* Last input event that was part of a command. */);
11230 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
11231 doc: /* Last input event that was part of a command. */);
11233 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
11234 doc: /* Last input event in a command, except for mouse menu events.
11235 Mouse menus give back keys that don't look like mouse events;
11236 this variable holds the actual mouse event that led to the menu,
11237 so that you can determine whether the command was run by mouse or not. */);
11239 DEFVAR_LISP ("last-input-char", &last_input_char,
11240 doc: /* Last input event. */);
11242 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
11243 doc: /* Last input event. */);
11245 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
11246 doc: /* List of events to be read as the command input.
11247 These events are processed first, before actual keyboard input.
11248 Events read from this list are not normally added to `this-command-keys',
11249 as they will already have been added once as they were read for the first time.
11250 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11251 Vunread_command_events = Qnil;
11253 DEFVAR_INT ("unread-command-char", &unread_command_char,
11254 doc: /* If not -1, an object to be read as next command input event. */);
11256 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
11257 doc: /* List of events to be processed as input by input methods.
11258 These events are processed before `unread-command-events'
11259 and actual keyboard input without given to `input-method-function'. */);
11260 Vunread_post_input_method_events = Qnil;
11262 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
11263 doc: /* List of events to be processed as input by input methods.
11264 These events are processed after `unread-command-events', but
11265 before actual keyboard input.
11266 If there's an active input method, the events are given to
11267 `input-method-function'. */);
11268 Vunread_input_method_events = Qnil;
11270 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
11271 doc: /* Meta-prefix character code.
11272 Meta-foo as command input turns into this character followed by foo. */);
11273 XSETINT (meta_prefix_char, 033);
11275 DEFVAR_KBOARD ("last-command", Vlast_command,
11276 doc: /* The last command executed.
11277 Normally a symbol with a function definition, but can be whatever was found
11278 in the keymap, or whatever the variable `this-command' was set to by that
11279 command.
11281 The value `mode-exit' is special; it means that the previous command
11282 read an event that told it to exit, and it did so and unread that event.
11283 In other words, the present command is the event that made the previous
11284 command exit.
11286 The value `kill-region' is special; it means that the previous command
11287 was a kill command. */);
11289 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11290 doc: /* Same as `last-command', but never altered by Lisp code. */);
11292 DEFVAR_LISP ("this-command", &Vthis_command,
11293 doc: /* The command now being executed.
11294 The command can set this variable; whatever is put here
11295 will be in `last-command' during the following command. */);
11296 Vthis_command = Qnil;
11298 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
11299 doc: /* The command bound to the current key sequence before remapping.
11300 It equals `this-command' if the original command was not remapped through
11301 any of the active keymaps. Otherwise, the value of `this-command' is the
11302 result of looking up the original command in the active keymaps. */);
11303 Vthis_original_command = Qnil;
11305 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
11306 doc: /* *Number of input events between auto-saves.
11307 Zero means disable autosaving due to number of characters typed. */);
11308 auto_save_interval = 300;
11310 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
11311 doc: /* *Number of seconds idle time before auto-save.
11312 Zero or nil means disable auto-saving due to idleness.
11313 After auto-saving due to this many seconds of idle time,
11314 Emacs also does a garbage collection if that seems to be warranted. */);
11315 XSETFASTINT (Vauto_save_timeout, 30);
11317 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
11318 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11319 The value may be integer or floating point. */);
11320 Vecho_keystrokes = make_number (1);
11322 DEFVAR_INT ("polling-period", &polling_period,
11323 doc: /* *Interval between polling for input during Lisp execution.
11324 The reason for polling is to make C-g work to stop a running program.
11325 Polling is needed only when using X windows and SIGIO does not work.
11326 Polling is automatically disabled in all other cases. */);
11327 polling_period = 2;
11329 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
11330 doc: /* *Maximum time between mouse clicks to make a double-click.
11331 Measured in milliseconds. nil means disable double-click recognition;
11332 t means double-clicks have no time limit and are detected
11333 by position only. */);
11334 Vdouble_click_time = make_number (500);
11336 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
11337 doc: /* *Maximum mouse movement between clicks to make a double-click.
11338 On window-system frames, value is the number of pixels the mouse may have
11339 moved horizontally or vertically between two clicks to make a double-click.
11340 On non window-system frames, value is interpreted in units of 1/8 characters
11341 instead of pixels.
11343 This variable is also the threshold for motion of the mouse
11344 to count as a drag. */);
11345 double_click_fuzz = 3;
11347 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
11348 doc: /* *Non-nil means inhibit local map menu bar menus. */);
11349 inhibit_local_menu_bar_menus = 0;
11351 DEFVAR_INT ("num-input-keys", &num_input_keys,
11352 doc: /* Number of complete key sequences read as input so far.
11353 This includes key sequences read from keyboard macros.
11354 The number is effectively the number of interactive command invocations. */);
11355 num_input_keys = 0;
11357 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
11358 doc: /* Number of input events read from the keyboard so far.
11359 This does not include events generated by keyboard macros. */);
11360 num_nonmacro_input_events = 0;
11362 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
11363 doc: /* The frame in which the most recently read event occurred.
11364 If the last event came from a keyboard macro, this is set to `macro'. */);
11365 Vlast_event_frame = Qnil;
11367 /* This variable is set up in sysdep.c. */
11368 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
11369 doc: /* The ERASE character as set by the user with stty. */);
11371 DEFVAR_LISP ("help-char", &Vhelp_char,
11372 doc: /* Character to recognize as meaning Help.
11373 When it is read, do `(eval help-form)', and display result if it's a string.
11374 If the value of `help-form' is nil, this char can be read normally. */);
11375 XSETINT (Vhelp_char, Ctl ('H'));
11377 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
11378 doc: /* List of input events to recognize as meaning Help.
11379 These work just like the value of `help-char' (see that). */);
11380 Vhelp_event_list = Qnil;
11382 DEFVAR_LISP ("help-form", &Vhelp_form,
11383 doc: /* Form to execute when character `help-char' is read.
11384 If the form returns a string, that string is displayed.
11385 If `help-form' is nil, the help char is not recognized. */);
11386 Vhelp_form = Qnil;
11388 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
11389 doc: /* Command to run when `help-char' character follows a prefix key.
11390 This command is used only when there is no actual binding
11391 for that character after that prefix key. */);
11392 Vprefix_help_command = Qnil;
11394 DEFVAR_LISP ("top-level", &Vtop_level,
11395 doc: /* Form to evaluate when Emacs starts up.
11396 Useful to set before you dump a modified Emacs. */);
11397 Vtop_level = Qnil;
11399 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11400 doc: /* Translate table for keyboard input, or nil.
11401 If non-nil, the value should be a char-table. Each character read
11402 from the keyboard is looked up in this char-table. If the value found
11403 there is non-nil, then it is used instead of the actual input character.
11405 The value can also be a string or vector, but this is considered obsolete.
11406 If it is a string or vector of length N, character codes N and up are left
11407 untranslated. In a vector, an element which is nil means "no translation".
11409 This is applied to the characters supplied to input methods, not their
11410 output. See also `translation-table-for-input'. */);
11411 Vkeyboard_translate_table = Qnil;
11413 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
11414 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11415 \(Even if the operating system has support for stopping a process.\) */);
11416 cannot_suspend = 0;
11418 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
11419 doc: /* Non-nil means prompt with menus when appropriate.
11420 This is done when reading from a keymap that has a prompt string,
11421 for elements that have prompt strings.
11422 The menu is displayed on the screen
11423 if X menus were enabled at configuration
11424 time and the previous event was a mouse click prefix key.
11425 Otherwise, menu prompting uses the echo area. */);
11426 menu_prompting = 1;
11428 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
11429 doc: /* Character to see next line of menu prompt.
11430 Type this character while in a menu prompt to rotate around the lines of it. */);
11431 XSETINT (menu_prompt_more_char, ' ');
11433 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
11434 doc: /* A mask of additional modifier keys to use with every keyboard character.
11435 Emacs applies the modifiers of the character stored here to each keyboard
11436 character it reads. For example, after evaluating the expression
11437 (setq extra-keyboard-modifiers ?\\C-x)
11438 all input characters will have the control modifier applied to them.
11440 Note that the character ?\\C-@, equivalent to the integer zero, does
11441 not count as a control character; rather, it counts as a character
11442 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11443 cancels any modification. */);
11444 extra_keyboard_modifiers = 0;
11446 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
11447 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11448 The command loop sets this to nil before each command,
11449 and tests the value when the command returns.
11450 Buffer modification stores t in this variable. */);
11451 Vdeactivate_mark = Qnil;
11453 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
11454 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
11455 Vcommand_hook_internal = Qnil;
11457 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
11458 doc: /* Normal hook run before each command is executed.
11459 If an unhandled error happens in running this hook,
11460 the hook value is set to nil, since otherwise the error
11461 might happen repeatedly and make Emacs nonfunctional. */);
11462 Vpre_command_hook = Qnil;
11464 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
11465 doc: /* Normal hook run after each command is executed.
11466 If an unhandled error happens in running this hook,
11467 the hook value is set to nil, since otherwise the error
11468 might happen repeatedly and make Emacs nonfunctional. */);
11469 Vpost_command_hook = Qnil;
11471 #if 0
11472 DEFVAR_LISP ("echo-area-clear-hook", ...,
11473 doc: /* Normal hook run when clearing the echo area. */);
11474 #endif
11475 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11476 staticpro (&Qecho_area_clear_hook);
11477 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
11479 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
11480 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11481 Vlucid_menu_bar_dirty_flag = Qnil;
11483 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
11484 doc: /* List of menu bar items to move to the end of the menu bar.
11485 The elements of the list are event types that may have menu bar bindings. */);
11486 Vmenu_bar_final_items = Qnil;
11488 DEFVAR_KBOARD ("overriding-terminal-local-map",
11489 Voverriding_terminal_local_map,
11490 doc: /* Per-terminal keymap that overrides all other local keymaps.
11491 If this variable is non-nil, it is used as a keymap instead of the
11492 buffer's local map, and the minor mode keymaps and text property keymaps.
11493 It also replaces `overriding-local-map'.
11495 This variable is intended to let commands such as `universal-argument'
11496 set up a different keymap for reading the next command. */);
11498 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
11499 doc: /* Keymap that overrides all other local keymaps.
11500 If this variable is non-nil, it is used as a keymap--replacing the
11501 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11502 Voverriding_local_map = Qnil;
11504 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
11505 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11506 Otherwise, the menu bar continues to reflect the buffer's local map
11507 and the minor mode maps regardless of `overriding-local-map'. */);
11508 Voverriding_local_map_menu_flag = Qnil;
11510 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
11511 doc: /* Keymap defining bindings for special events to execute at low level. */);
11512 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11514 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11515 doc: /* *Non-nil means generate motion events for mouse motion. */);
11517 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11518 doc: /* Alist of system-specific X windows key symbols.
11519 Each element should have the form (N . SYMBOL) where N is the
11520 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11521 and SYMBOL is its name. */);
11523 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
11524 doc: /* List of deferred actions to be performed at a later time.
11525 The precise format isn't relevant here; we just check whether it is nil. */);
11526 Vdeferred_action_list = Qnil;
11528 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
11529 doc: /* Function to call to handle deferred actions, after each command.
11530 This function is called with no arguments after each command
11531 whenever `deferred-action-list' is non-nil. */);
11532 Vdeferred_action_function = Qnil;
11534 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
11535 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11536 The value can be a length of time to show the message for.
11537 If the value is non-nil and not a number, we wait 2 seconds. */);
11538 Vsuggest_key_bindings = Qt;
11540 DEFVAR_LISP ("timer-list", &Vtimer_list,
11541 doc: /* List of active absolute time timers in order of increasing time. */);
11542 Vtimer_list = Qnil;
11544 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
11545 doc: /* List of active idle-time timers in order of increasing time. */);
11546 Vtimer_idle_list = Qnil;
11548 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
11549 doc: /* If non-nil, the function that implements the current input method.
11550 It's called with one argument, a printing character that was just read.
11551 \(That means a character with code 040...0176.)
11552 Typically this function uses `read-event' to read additional events.
11553 When it does so, it should first bind `input-method-function' to nil
11554 so it will not be called recursively.
11556 The function should return a list of zero or more events
11557 to be used as input. If it wants to put back some events
11558 to be reconsidered, separately, by the input method,
11559 it can add them to the beginning of `unread-command-events'.
11561 The input method function can find in `input-method-previous-method'
11562 the previous echo area message.
11564 The input method function should refer to the variables
11565 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11566 for guidance on what to do. */);
11567 Vinput_method_function = Qnil;
11569 DEFVAR_LISP ("input-method-previous-message",
11570 &Vinput_method_previous_message,
11571 doc: /* When `input-method-function' is called, hold the previous echo area message.
11572 This variable exists because `read-event' clears the echo area
11573 before running the input method. It is nil if there was no message. */);
11574 Vinput_method_previous_message = Qnil;
11576 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
11577 doc: /* If non-nil, the function that implements the display of help.
11578 It's called with one argument, the help string to display. */);
11579 Vshow_help_function = Qnil;
11581 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
11582 doc: /* If non-nil, suppress point adjustment after executing a command.
11584 After a command is executed, if point is moved into a region that has
11585 special properties (e.g. composition, display), we adjust point to
11586 the boundary of the region. But, when a command sets this variable to
11587 non-nil, we suppress the point adjustment.
11589 This variable is set to nil before reading a command, and is checked
11590 just after executing the command. */);
11591 Vdisable_point_adjustment = Qnil;
11593 DEFVAR_LISP ("global-disable-point-adjustment",
11594 &Vglobal_disable_point_adjustment,
11595 doc: /* *If non-nil, always suppress point adjustment.
11597 The default value is nil, in which case, point adjustment are
11598 suppressed only after special commands that set
11599 `disable-point-adjustment' (which see) to non-nil. */);
11600 Vglobal_disable_point_adjustment = Qnil;
11602 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
11603 doc: /* *How long to display an echo-area message when the minibuffer is active.
11604 If the value is not a number, such messages don't time out. */);
11605 Vminibuffer_message_timeout = make_number (2);
11607 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input,
11608 doc: /* If non-nil, any keyboard input throws to this symbol.
11609 The value of that variable is passed to `quit-flag' and later causes a
11610 peculiar kind of quitting. */);
11611 Vthrow_on_input = Qnil;
11613 DEFVAR_LISP ("command-error-function", &Vcommand_error_function,
11614 doc: /* If non-nil, function to output error messages.
11615 The arguments are the error data, a list of the form
11616 (SIGNALED-CONDITIONS . SIGNAL-DATA)
11617 such as just as `condition-case' would bind its variable to,
11618 the context (a string which normally goes at the start of the message),
11619 and the Lisp function within which the error was signaled. */);
11620 Vcommand_error_function = Qnil;
11622 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
11623 &Venable_disabled_menus_and_buttons,
11624 doc: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
11626 Help functions bind this to allow help on disabled menu items
11627 and tool-bar buttons. */);
11628 Venable_disabled_menus_and_buttons = Qnil;
11631 void
11632 keys_of_keyboard ()
11634 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11635 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11636 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11637 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11638 initial_define_key (meta_map, 'x', "execute-extended-command");
11640 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11641 "handle-delete-frame");
11642 /* Here we used to use `ignore-event' which would simple set prefix-arg to
11643 current-prefix-arg, as is done in `handle-switch-frame'.
11644 But `handle-switch-frame is not run from the special-map.
11645 Commands from that map are run in a special way that automatically
11646 preserves the prefix-arg. Restoring the prefix arg here is not just
11647 redundant but harmful:
11648 - C-u C-x v =
11649 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
11650 - after the first prompt, the exit-minibuffer-hook is run which may
11651 iconify a frame and thus push a `iconify-frame' event.
11652 - after running exit-minibuffer-hook, current-prefix-arg is
11653 restored to the non-nil value it had before the prompt.
11654 - we enter the second prompt.
11655 current-prefix-arg is non-nil, prefix-arg is nil.
11656 - before running the first real event, we run the special iconify-frame
11657 event, but we pass the `special' arg to execute-command so
11658 current-prefix-arg and prefix-arg are left untouched.
11659 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
11660 - the next key event will have a spuriously non-nil current-prefix-arg. */
11661 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11662 "ignore");
11663 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11664 "ignore");
11665 /* Handling it at such a low-level causes read_key_sequence to get
11666 * confused because it doesn't realize that the current_buffer was
11667 * changed by read_char.
11669 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11670 * "handle-select-window"); */
11671 initial_define_lispy_key (Vspecial_event_map, "save-session",
11672 "handle-save-session");
11675 /* Mark the pointers in the kboard objects.
11676 Called by the Fgarbage_collector. */
11677 void
11678 mark_kboards ()
11680 KBOARD *kb;
11681 Lisp_Object *p;
11682 for (kb = all_kboards; kb; kb = kb->next_kboard)
11684 if (kb->kbd_macro_buffer)
11685 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11686 mark_object (*p);
11687 mark_object (kb->Voverriding_terminal_local_map);
11688 mark_object (kb->Vlast_command);
11689 mark_object (kb->Vreal_last_command);
11690 mark_object (kb->Vprefix_arg);
11691 mark_object (kb->Vlast_prefix_arg);
11692 mark_object (kb->kbd_queue);
11693 mark_object (kb->defining_kbd_macro);
11694 mark_object (kb->Vlast_kbd_macro);
11695 mark_object (kb->Vsystem_key_alist);
11696 mark_object (kb->system_key_syms);
11697 mark_object (kb->Vdefault_minibuffer_frame);
11698 mark_object (kb->echo_string);
11701 struct input_event *event;
11702 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11704 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11705 event = kbd_buffer;
11706 if (event->kind != SELECTION_REQUEST_EVENT
11707 && event->kind != SELECTION_CLEAR_EVENT)
11709 mark_object (event->x);
11710 mark_object (event->y);
11712 mark_object (event->frame_or_window);
11713 mark_object (event->arg);
11718 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11719 (do not change this comment) */