*** empty log message ***
[emacs.git] / src / keyboard.c
blobc398a85684d21bd74317b3c3da3c10b4be1cf994
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, 2007 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 3, 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 volatile 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 #undef abs
116 #define abs(x) ((x) >= 0 ? (x) : -(x))
118 /* Following definition copied from eval.c */
120 struct backtrace
122 struct backtrace *next;
123 Lisp_Object *function;
124 Lisp_Object *args; /* Points to vector of args. */
125 int nargs; /* length of vector. If nargs is UNEVALLED,
126 args points to slot holding list of
127 unevalled args */
128 char evalargs;
129 /* Nonzero means call value of debugger when done with this operation. */
130 char debug_on_exit;
133 #ifdef MULTI_KBOARD
134 KBOARD *initial_kboard;
135 KBOARD *current_kboard;
136 KBOARD *all_kboards;
137 int single_kboard;
138 #else
139 KBOARD the_only_kboard;
140 #endif
142 /* Non-nil disable property on a command means
143 do not execute it; call disabled-command-function's value instead. */
144 Lisp_Object Qdisabled, Qdisabled_command_function;
146 #define NUM_RECENT_KEYS (300)
147 int recent_keys_index; /* Index for storing next element into recent_keys */
148 int total_keys; /* Total number of elements stored into recent_keys */
149 Lisp_Object recent_keys; /* Vector holds the last NUM_RECENT_KEYS keystrokes */
151 /* Vector holding the key sequence that invoked the current command.
152 It is reused for each command, and it may be longer than the current
153 sequence; this_command_key_count indicates how many elements
154 actually mean something.
155 It's easier to staticpro a single Lisp_Object than an array. */
156 Lisp_Object this_command_keys;
157 int this_command_key_count;
159 /* 1 after calling Freset_this_command_lengths.
160 Usually it is 0. */
161 int this_command_key_count_reset;
163 /* This vector is used as a buffer to record the events that were actually read
164 by read_key_sequence. */
165 Lisp_Object raw_keybuf;
166 int raw_keybuf_count;
168 #define GROW_RAW_KEYBUF \
169 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
171 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
172 Lisp_Object new; \
173 new = Fmake_vector (make_number (newsize), Qnil); \
174 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
175 raw_keybuf_count * sizeof (Lisp_Object)); \
176 raw_keybuf = new; \
179 /* Number of elements of this_command_keys
180 that precede this key sequence. */
181 int this_single_command_key_start;
183 /* Record values of this_command_key_count and echo_length ()
184 before this command was read. */
185 static int before_command_key_count;
186 static int before_command_echo_length;
188 extern int minbuf_level;
190 extern int message_enable_multibyte;
192 extern struct backtrace *backtrace_list;
194 /* If non-nil, the function that implements the display of help.
195 It's called with one argument, the help string to display. */
197 Lisp_Object Vshow_help_function;
199 /* If a string, the message displayed before displaying a help-echo
200 in the echo area. */
202 Lisp_Object Vpre_help_message;
204 /* Nonzero means do menu prompting. */
206 static int menu_prompting;
208 /* Character to see next line of menu prompt. */
210 static Lisp_Object menu_prompt_more_char;
212 /* For longjmp to where kbd input is being done. */
214 static jmp_buf getcjmp;
216 /* True while doing kbd input. */
217 int waiting_for_input;
219 /* True while displaying for echoing. Delays C-g throwing. */
221 int echoing;
223 /* Non-null means we can start echoing at the next input pause even
224 though there is something in the echo area. */
226 static struct kboard *ok_to_echo_at_next_pause;
228 /* The kboard last echoing, or null for none. Reset to 0 in
229 cancel_echoing. If non-null, and a current echo area message
230 exists, and echo_message_buffer is eq to the current message
231 buffer, we know that the message comes from echo_kboard. */
233 struct kboard *echo_kboard;
235 /* The buffer used for echoing. Set in echo_now, reset in
236 cancel_echoing. */
238 Lisp_Object echo_message_buffer;
240 /* Nonzero means disregard local maps for the menu bar. */
241 static int inhibit_local_menu_bar_menus;
243 /* Nonzero means C-g should cause immediate error-signal. */
244 int immediate_quit;
246 /* The user's hook function for outputting an error message. */
247 Lisp_Object Vcommand_error_function;
249 /* The user's ERASE setting. */
250 Lisp_Object Vtty_erase_char;
252 /* Character to recognize as the help char. */
253 Lisp_Object Vhelp_char;
255 /* List of other event types to recognize as meaning "help". */
256 Lisp_Object Vhelp_event_list;
258 /* Form to execute when help char is typed. */
259 Lisp_Object Vhelp_form;
261 /* Command to run when the help character follows a prefix key. */
262 Lisp_Object Vprefix_help_command;
264 /* List of items that should move to the end of the menu bar. */
265 Lisp_Object Vmenu_bar_final_items;
267 /* Non-nil means show the equivalent key-binding for
268 any M-x command that has one.
269 The value can be a length of time to show the message for.
270 If the value is non-nil and not a number, we wait 2 seconds. */
271 Lisp_Object Vsuggest_key_bindings;
273 /* How long to display an echo-area message when the minibuffer is active.
274 If the value is not a number, such messages don't time out. */
275 Lisp_Object Vminibuffer_message_timeout;
277 /* Character that causes a quit. Normally C-g.
279 If we are running on an ordinary terminal, this must be an ordinary
280 ASCII char, since we want to make it our interrupt character.
282 If we are not running on an ordinary terminal, it still needs to be
283 an ordinary ASCII char. This character needs to be recognized in
284 the input interrupt handler. At this point, the keystroke is
285 represented as a struct input_event, while the desired quit
286 character is specified as a lispy event. The mapping from struct
287 input_events to lispy events cannot run in an interrupt handler,
288 and the reverse mapping is difficult for anything but ASCII
289 keystrokes.
291 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
292 ASCII character. */
293 int quit_char;
295 extern Lisp_Object current_global_map;
296 extern int minibuf_level;
298 /* If non-nil, this is a map that overrides all other local maps. */
299 Lisp_Object Voverriding_local_map;
301 /* If non-nil, Voverriding_local_map applies to the menu bar. */
302 Lisp_Object Voverriding_local_map_menu_flag;
304 /* Keymap that defines special misc events that should
305 be processed immediately at a low level. */
306 Lisp_Object Vspecial_event_map;
308 /* Current depth in recursive edits. */
309 int command_loop_level;
311 /* Total number of times command_loop has read a key sequence. */
312 EMACS_INT num_input_keys;
314 /* Last input character read as a command. */
315 Lisp_Object last_command_char;
317 /* Last input character read as a command, not counting menus
318 reached by the mouse. */
319 Lisp_Object last_nonmenu_event;
321 /* Last input character read for any purpose. */
322 Lisp_Object last_input_char;
324 /* If not Qnil, a list of objects to be read as subsequent command input. */
325 Lisp_Object Vunread_command_events;
327 /* If not Qnil, a list of objects to be read as subsequent command input
328 including input method processing. */
329 Lisp_Object Vunread_input_method_events;
331 /* If not Qnil, a list of objects to be read as subsequent command input
332 but NOT including input method processing. */
333 Lisp_Object Vunread_post_input_method_events;
335 /* If not -1, an event to be read as subsequent command input. */
336 EMACS_INT unread_command_char;
338 /* If not Qnil, this is a switch-frame event which we decided to put
339 off until the end of a key sequence. This should be read as the
340 next command input, after any unread_command_events.
342 read_key_sequence uses this to delay switch-frame events until the
343 end of the key sequence; Fread_char uses it to put off switch-frame
344 events until a non-ASCII event is acceptable as input. */
345 Lisp_Object unread_switch_frame;
347 /* A mask of extra modifier bits to put into every keyboard char. */
348 EMACS_INT extra_keyboard_modifiers;
350 /* Char to use as prefix when a meta character is typed in.
351 This is bound on entry to minibuffer in case ESC is changed there. */
353 Lisp_Object meta_prefix_char;
355 /* Last size recorded for a current buffer which is not a minibuffer. */
356 static int last_non_minibuf_size;
358 /* Number of idle seconds before an auto-save and garbage collection. */
359 static Lisp_Object Vauto_save_timeout;
361 /* Total number of times read_char has returned. */
362 int num_input_events;
364 /* Total number of times read_char has returned, outside of macros. */
365 EMACS_INT num_nonmacro_input_events;
367 /* Auto-save automatically when this many characters have been typed
368 since the last time. */
370 static EMACS_INT auto_save_interval;
372 /* Value of num_nonmacro_input_events as of last auto save. */
374 int last_auto_save;
376 /* The command being executed by the command loop.
377 Commands may set this, and the value set will be copied into
378 current_kboard->Vlast_command instead of the actual command. */
379 Lisp_Object Vthis_command;
381 /* This is like Vthis_command, except that commands never set it. */
382 Lisp_Object real_this_command;
384 /* If the lookup of the command returns a binding, the original
385 command is stored in this-original-command. It is nil otherwise. */
386 Lisp_Object Vthis_original_command;
388 /* The value of point when the last command was started. */
389 int last_point_position;
391 /* The buffer that was current when the last command was started. */
392 Lisp_Object last_point_position_buffer;
394 /* The window that was selected when the last command was started. */
395 Lisp_Object last_point_position_window;
397 /* The frame in which the last input event occurred, or Qmacro if the
398 last event came from a macro. We use this to determine when to
399 generate switch-frame events. This may be cleared by functions
400 like Fselect_frame, to make sure that a switch-frame event is
401 generated by the next character. */
402 Lisp_Object internal_last_event_frame;
404 /* A user-visible version of the above, intended to allow users to
405 figure out where the last event came from, if the event doesn't
406 carry that information itself (i.e. if it was a character). */
407 Lisp_Object Vlast_event_frame;
409 /* The timestamp of the last input event we received from the X server.
410 X Windows wants this for selection ownership. */
411 unsigned long last_event_timestamp;
413 Lisp_Object Qself_insert_command;
414 Lisp_Object Qforward_char;
415 Lisp_Object Qbackward_char;
416 Lisp_Object Qundefined;
417 Lisp_Object Qtimer_event_handler;
419 /* read_key_sequence stores here the command definition of the
420 key sequence that it reads. */
421 Lisp_Object read_key_sequence_cmd;
423 /* Echo unfinished commands after this many seconds of pause. */
424 Lisp_Object Vecho_keystrokes;
426 /* Form to evaluate (if non-nil) when Emacs is started. */
427 Lisp_Object Vtop_level;
429 /* User-supplied table to translate input characters. */
430 Lisp_Object Vkeyboard_translate_table;
432 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
433 extern Lisp_Object Vfunction_key_map;
435 /* Another keymap that maps key sequences into key sequences.
436 This one takes precedence over ordinary definitions. */
437 extern Lisp_Object Vkey_translation_map;
439 /* If non-nil, this implements the current input method. */
440 Lisp_Object Vinput_method_function;
441 Lisp_Object Qinput_method_function;
443 /* When we call Vinput_method_function,
444 this holds the echo area message that was just erased. */
445 Lisp_Object Vinput_method_previous_message;
447 /* Non-nil means deactivate the mark at end of this command. */
448 Lisp_Object Vdeactivate_mark;
450 /* Menu bar specified in Lucid Emacs fashion. */
452 Lisp_Object Vlucid_menu_bar_dirty_flag;
453 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
455 Lisp_Object Qecho_area_clear_hook;
457 /* Hooks to run before and after each command. */
458 Lisp_Object Qpre_command_hook, Vpre_command_hook;
459 Lisp_Object Qpost_command_hook, Vpost_command_hook;
460 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
462 /* List of deferred actions to be performed at a later time.
463 The precise format isn't relevant here; we just check whether it is nil. */
464 Lisp_Object Vdeferred_action_list;
466 /* Function to call to handle deferred actions, when there are any. */
467 Lisp_Object Vdeferred_action_function;
468 Lisp_Object Qdeferred_action_function;
470 Lisp_Object Qinput_method_exit_on_first_char;
471 Lisp_Object Qinput_method_use_echo_area;
473 /* File in which we write all commands we read. */
474 FILE *dribble;
476 /* Nonzero if input is available. */
477 int input_pending;
479 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
480 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
482 int meta_key;
484 extern char *pending_malloc_warning;
486 /* Circular buffer for pre-read keyboard input. */
488 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
490 /* Pointer to next available character in kbd_buffer.
491 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
492 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
493 next available char is in kbd_buffer[0]. */
494 static struct input_event *kbd_fetch_ptr;
496 /* Pointer to next place to store character in kbd_buffer. This
497 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
498 character should go in kbd_buffer[0]. */
499 static struct input_event * volatile kbd_store_ptr;
501 /* The above pair of variables forms a "queue empty" flag. When we
502 enqueue a non-hook event, we increment kbd_store_ptr. When we
503 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
504 there is input available if the two pointers are not equal.
506 Why not just have a flag set and cleared by the enqueuing and
507 dequeuing functions? Such a flag could be screwed up by interrupts
508 at inopportune times. */
510 /* If this flag is non-nil, we check mouse_moved to see when the
511 mouse moves, and motion events will appear in the input stream.
512 Otherwise, mouse motion is ignored. */
513 Lisp_Object do_mouse_tracking;
515 /* Symbols to head events. */
516 Lisp_Object Qmouse_movement;
517 Lisp_Object Qscroll_bar_movement;
518 Lisp_Object Qswitch_frame;
519 Lisp_Object Qdelete_frame;
520 Lisp_Object Qiconify_frame;
521 Lisp_Object Qmake_frame_visible;
522 Lisp_Object Qselect_window;
523 Lisp_Object Qhelp_echo;
525 #ifdef HAVE_MOUSE
526 Lisp_Object Qmouse_fixup_help_message;
527 #endif
529 /* Symbols to denote kinds of events. */
530 Lisp_Object Qfunction_key;
531 Lisp_Object Qmouse_click;
532 #if defined (WINDOWSNT) || defined (MAC_OS)
533 Lisp_Object Qlanguage_change;
534 #endif
535 Lisp_Object Qdrag_n_drop;
536 Lisp_Object Qsave_session;
537 #ifdef MAC_OS
538 Lisp_Object Qmac_apple_event;
539 #endif
541 /* Lisp_Object Qmouse_movement; - also an event header */
543 /* Properties of event headers. */
544 Lisp_Object Qevent_kind;
545 Lisp_Object Qevent_symbol_elements;
547 /* menu item parts */
548 Lisp_Object Qmenu_alias;
549 Lisp_Object Qmenu_enable;
550 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
551 Lisp_Object QCbutton, QCtoggle, QCradio;
552 extern Lisp_Object Vdefine_key_rebound_commands;
553 extern Lisp_Object Qmenu_item;
555 /* An event header symbol HEAD may have a property named
556 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
557 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
558 mask of modifiers applied to it. If present, this is used to help
559 speed up parse_modifiers. */
560 Lisp_Object Qevent_symbol_element_mask;
562 /* An unmodified event header BASE may have a property named
563 Qmodifier_cache, which is an alist mapping modifier masks onto
564 modified versions of BASE. If present, this helps speed up
565 apply_modifiers. */
566 Lisp_Object Qmodifier_cache;
568 /* Symbols to use for parts of windows. */
569 Lisp_Object Qmode_line;
570 Lisp_Object Qvertical_line;
571 Lisp_Object Qvertical_scroll_bar;
572 Lisp_Object Qmenu_bar;
573 extern Lisp_Object Qleft_margin, Qright_margin;
574 extern Lisp_Object Qleft_fringe, Qright_fringe;
575 extern Lisp_Object QCmap;
577 Lisp_Object recursive_edit_unwind (), command_loop ();
578 Lisp_Object Fthis_command_keys ();
579 Lisp_Object Qextended_command_history;
580 EMACS_TIME timer_check ();
582 extern Lisp_Object Vhistory_length, Vtranslation_table_for_input;
584 extern char *x_get_keysym_name ();
586 static void record_menu_key ();
587 static int echo_length ();
589 Lisp_Object Qpolling_period;
591 /* List of absolute timers. Appears in order of next scheduled event. */
592 Lisp_Object Vtimer_list;
594 /* List of idle time timers. Appears in order of next scheduled event. */
595 Lisp_Object Vtimer_idle_list;
597 /* Incremented whenever a timer is run. */
598 int timers_run;
600 extern Lisp_Object Vprint_level, Vprint_length;
602 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
603 happens. */
604 EMACS_TIME *input_available_clear_time;
606 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
607 Default is 1 if INTERRUPT_INPUT is defined. */
608 int interrupt_input;
610 /* Nonzero while interrupts are temporarily deferred during redisplay. */
611 int interrupts_deferred;
613 /* Nonzero means use ^S/^Q for flow control. */
614 int flow_control;
616 /* Allow m- file to inhibit use of FIONREAD. */
617 #ifdef BROKEN_FIONREAD
618 #undef FIONREAD
619 #endif
621 /* We are unable to use interrupts if FIONREAD is not available,
622 so flush SIGIO so we won't try. */
623 #if !defined (FIONREAD)
624 #ifdef SIGIO
625 #undef SIGIO
626 #endif
627 #endif
629 /* If we support a window system, turn on the code to poll periodically
630 to detect C-g. It isn't actually used when doing interrupt input. */
631 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
632 #define POLL_FOR_INPUT
633 #endif
635 /* After a command is executed, if point is moved into a region that
636 has specific properties (e.g. composition, display), we adjust
637 point to the boundary of the region. But, if a command sets this
638 variable to non-nil, we suppress this point adjustment. This
639 variable is set to nil before reading a command. */
641 Lisp_Object Vdisable_point_adjustment;
643 /* If non-nil, always disable point adjustment. */
645 Lisp_Object Vglobal_disable_point_adjustment;
647 /* The time when Emacs started being idle. */
649 static EMACS_TIME timer_idleness_start_time;
651 /* After Emacs stops being idle, this saves the last value
652 of timer_idleness_start_time from when it was idle. */
654 static EMACS_TIME timer_last_idleness_start_time;
656 /* If non-nil, events produced by disabled menu items and tool-bar
657 buttons are not ignored. Help functions bind this to allow help on
658 those items and buttons. */
659 Lisp_Object Venable_disabled_menus_and_buttons;
662 /* Global variable declarations. */
664 /* Flags for readable_events. */
665 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
666 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
667 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
669 /* Function for init_keyboard to call with no args (if nonzero). */
670 void (*keyboard_init_hook) ();
672 static int read_avail_input P_ ((int));
673 static void get_input_pending P_ ((int *, int));
674 static int readable_events P_ ((int));
675 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
676 Lisp_Object, int *));
677 static Lisp_Object read_char_x_menu_prompt ();
678 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
679 Lisp_Object *));
680 static Lisp_Object make_lispy_event P_ ((struct input_event *));
681 #ifdef HAVE_MOUSE
682 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
683 enum scroll_bar_part,
684 Lisp_Object, Lisp_Object,
685 unsigned long));
686 #endif
687 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
688 Lisp_Object, char **,
689 Lisp_Object *, unsigned));
690 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
691 static int parse_solitary_modifier P_ ((Lisp_Object));
692 static int parse_solitary_modifier ();
693 static void save_getcjmp P_ ((jmp_buf));
694 static void save_getcjmp ();
695 static void restore_getcjmp P_ ((jmp_buf));
696 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
697 static void clear_event P_ ((struct input_event *));
698 static void any_kboard_state P_ ((void));
699 static SIGTYPE interrupt_signal P_ ((int signalnum));
700 static void timer_start_idle P_ ((void));
701 static void timer_stop_idle P_ ((void));
702 static void timer_resume_idle P_ ((void));
703 static SIGTYPE handle_user_signal P_ ((int));
704 static char *find_user_signal_name P_ ((int));
705 static int store_user_signal_events P_ ((void));
707 /* Nonzero means don't try to suspend even if the operating system seems
708 to support it. */
709 static int cannot_suspend;
711 extern Lisp_Object Qidentity, Qonly;
713 /* Install the string STR as the beginning of the string of echoing,
714 so that it serves as a prompt for the next character.
715 Also start echoing. */
717 void
718 echo_prompt (str)
719 Lisp_Object str;
721 current_kboard->echo_string = str;
722 current_kboard->echo_after_prompt = SCHARS (str);
723 echo_now ();
726 /* Add C to the echo string, if echoing is going on.
727 C can be a character, which is printed prettily ("M-C-x" and all that
728 jazz), or a symbol, whose name is printed. */
730 void
731 echo_char (c)
732 Lisp_Object c;
734 if (current_kboard->immediate_echo)
736 int size = KEY_DESCRIPTION_SIZE + 100;
737 char *buffer = (char *) alloca (size);
738 char *ptr = buffer;
739 Lisp_Object echo_string;
741 echo_string = current_kboard->echo_string;
743 /* If someone has passed us a composite event, use its head symbol. */
744 c = EVENT_HEAD (c);
746 if (INTEGERP (c))
748 ptr = push_key_description (XINT (c), ptr, 1);
750 else if (SYMBOLP (c))
752 Lisp_Object name = SYMBOL_NAME (c);
753 int nbytes = SBYTES (name);
755 if (size - (ptr - buffer) < nbytes)
757 int offset = ptr - buffer;
758 size = max (2 * size, size + nbytes);
759 buffer = (char *) alloca (size);
760 ptr = buffer + offset;
763 ptr += copy_text (SDATA (name), ptr, nbytes,
764 STRING_MULTIBYTE (name), 1);
767 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
768 && help_char_p (c))
770 const char *text = " (Type ? for further options)";
771 int len = strlen (text);
773 if (size - (ptr - buffer) < len)
775 int offset = ptr - buffer;
776 size += len;
777 buffer = (char *) alloca (size);
778 ptr = buffer + offset;
781 bcopy (text, ptr, len);
782 ptr += len;
785 /* Replace a dash from echo_dash with a space, otherwise
786 add a space at the end as a separator between keys. */
787 if (STRINGP (echo_string)
788 && SCHARS (echo_string) > 1)
790 Lisp_Object last_char, prev_char, idx;
792 idx = make_number (SCHARS (echo_string) - 2);
793 prev_char = Faref (echo_string, idx);
795 idx = make_number (SCHARS (echo_string) - 1);
796 last_char = Faref (echo_string, idx);
798 /* We test PREV_CHAR to make sure this isn't the echoing
799 of a minus-sign. */
800 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
801 Faset (echo_string, idx, make_number (' '));
802 else
803 echo_string = concat2 (echo_string, build_string (" "));
805 else if (STRINGP (echo_string))
806 echo_string = concat2 (echo_string, build_string (" "));
808 current_kboard->echo_string
809 = concat2 (echo_string, make_string (buffer, ptr - buffer));
811 echo_now ();
815 /* Temporarily add a dash to the end of the echo string if it's not
816 empty, so that it serves as a mini-prompt for the very next character. */
818 void
819 echo_dash ()
821 /* Do nothing if not echoing at all. */
822 if (NILP (current_kboard->echo_string))
823 return;
825 if (!current_kboard->immediate_echo
826 && SCHARS (current_kboard->echo_string) == 0)
827 return;
829 /* Do nothing if we just printed a prompt. */
830 if (current_kboard->echo_after_prompt
831 == SCHARS (current_kboard->echo_string))
832 return;
834 /* Do nothing if we have already put a dash at the end. */
835 if (SCHARS (current_kboard->echo_string) > 1)
837 Lisp_Object last_char, prev_char, idx;
839 idx = make_number (SCHARS (current_kboard->echo_string) - 2);
840 prev_char = Faref (current_kboard->echo_string, idx);
842 idx = make_number (SCHARS (current_kboard->echo_string) - 1);
843 last_char = Faref (current_kboard->echo_string, idx);
845 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
846 return;
849 /* Put a dash at the end of the buffer temporarily,
850 but make it go away when the next character is added. */
851 current_kboard->echo_string = concat2 (current_kboard->echo_string,
852 build_string ("-"));
853 echo_now ();
856 /* Display the current echo string, and begin echoing if not already
857 doing so. */
859 void
860 echo_now ()
862 if (!current_kboard->immediate_echo)
864 int i;
865 current_kboard->immediate_echo = 1;
867 for (i = 0; i < this_command_key_count; i++)
869 Lisp_Object c;
871 /* Set before_command_echo_length to the value that would
872 have been saved before the start of this subcommand in
873 command_loop_1, if we had already been echoing then. */
874 if (i == this_single_command_key_start)
875 before_command_echo_length = echo_length ();
877 c = XVECTOR (this_command_keys)->contents[i];
878 if (! (EVENT_HAS_PARAMETERS (c)
879 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
880 echo_char (c);
883 /* Set before_command_echo_length to the value that would
884 have been saved before the start of this subcommand in
885 command_loop_1, if we had already been echoing then. */
886 if (this_command_key_count == this_single_command_key_start)
887 before_command_echo_length = echo_length ();
889 /* Put a dash at the end to invite the user to type more. */
890 echo_dash ();
893 echoing = 1;
894 message3_nolog (current_kboard->echo_string,
895 SBYTES (current_kboard->echo_string),
896 STRING_MULTIBYTE (current_kboard->echo_string));
897 echoing = 0;
899 /* Record in what buffer we echoed, and from which kboard. */
900 echo_message_buffer = echo_area_buffer[0];
901 echo_kboard = current_kboard;
903 if (waiting_for_input && !NILP (Vquit_flag))
904 quit_throw_to_read_char ();
907 /* Turn off echoing, for the start of a new command. */
909 void
910 cancel_echoing ()
912 current_kboard->immediate_echo = 0;
913 current_kboard->echo_after_prompt = -1;
914 current_kboard->echo_string = Qnil;
915 ok_to_echo_at_next_pause = NULL;
916 echo_kboard = NULL;
917 echo_message_buffer = Qnil;
920 /* Return the length of the current echo string. */
922 static int
923 echo_length ()
925 return (STRINGP (current_kboard->echo_string)
926 ? SCHARS (current_kboard->echo_string)
927 : 0);
930 /* Truncate the current echo message to its first LEN chars.
931 This and echo_char get used by read_key_sequence when the user
932 switches frames while entering a key sequence. */
934 static void
935 echo_truncate (nchars)
936 int nchars;
938 if (STRINGP (current_kboard->echo_string))
939 current_kboard->echo_string
940 = Fsubstring (current_kboard->echo_string,
941 make_number (0), make_number (nchars));
942 truncate_echo_area (nchars);
946 /* Functions for manipulating this_command_keys. */
947 static void
948 add_command_key (key)
949 Lisp_Object key;
951 #if 0 /* Not needed after we made Freset_this_command_lengths
952 do the job immediately. */
953 /* If reset-this-command-length was called recently, obey it now.
954 See the doc string of that function for an explanation of why. */
955 if (before_command_restore_flag)
957 this_command_key_count = before_command_key_count_1;
958 if (this_command_key_count < this_single_command_key_start)
959 this_single_command_key_start = this_command_key_count;
960 echo_truncate (before_command_echo_length_1);
961 before_command_restore_flag = 0;
963 #endif
965 if (this_command_key_count >= ASIZE (this_command_keys))
966 this_command_keys = larger_vector (this_command_keys,
967 2 * ASIZE (this_command_keys),
968 Qnil);
970 AREF (this_command_keys, this_command_key_count) = key;
971 ++this_command_key_count;
975 Lisp_Object
976 recursive_edit_1 ()
978 int count = SPECPDL_INDEX ();
979 Lisp_Object val;
981 if (command_loop_level > 0)
983 specbind (Qstandard_output, Qt);
984 specbind (Qstandard_input, Qt);
987 #ifdef HAVE_X_WINDOWS
988 /* The command loop has started an hourglass timer, so we have to
989 cancel it here, otherwise it will fire because the recursive edit
990 can take some time. Do not check for display_hourglass_p here,
991 because it could already be nil. */
992 cancel_hourglass ();
993 #endif
995 /* This function may have been called from a debugger called from
996 within redisplay, for instance by Edebugging a function called
997 from fontification-functions. We want to allow redisplay in
998 the debugging session.
1000 The recursive edit is left with a `(throw exit ...)'. The `exit'
1001 tag is not caught anywhere in redisplay, i.e. when we leave the
1002 recursive edit, the original redisplay leading to the recursive
1003 edit will be unwound. The outcome should therefore be safe. */
1004 specbind (Qinhibit_redisplay, Qnil);
1005 redisplaying_p = 0;
1007 val = command_loop ();
1008 if (EQ (val, Qt))
1009 Fsignal (Qquit, Qnil);
1010 /* Handle throw from read_minibuf when using minibuffer
1011 while it's active but we're in another window. */
1012 if (STRINGP (val))
1013 xsignal1 (Qerror, val);
1015 return unbind_to (count, Qnil);
1018 /* When an auto-save happens, record the "time", and don't do again soon. */
1020 void
1021 record_auto_save ()
1023 last_auto_save = num_nonmacro_input_events;
1026 /* Make an auto save happen as soon as possible at command level. */
1028 void
1029 force_auto_save_soon ()
1031 last_auto_save = - auto_save_interval - 1;
1033 record_asynch_buffer_change ();
1036 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
1037 doc: /* Invoke the editor command loop recursively.
1038 To get out of the recursive edit, a command can do `(throw 'exit nil)';
1039 that tells this function to return.
1040 Alternatively, `(throw 'exit t)' makes this function signal an error.
1041 This function is called by the editor initialization to begin editing. */)
1044 int count = SPECPDL_INDEX ();
1045 Lisp_Object buffer;
1047 /* If we enter while input is blocked, don't lock up here.
1048 This may happen through the debugger during redisplay. */
1049 if (INPUT_BLOCKED_P)
1050 return Qnil;
1052 command_loop_level++;
1053 update_mode_lines = 1;
1055 if (command_loop_level
1056 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1057 buffer = Fcurrent_buffer ();
1058 else
1059 buffer = Qnil;
1061 /* If we leave recursive_edit_1 below with a `throw' for instance,
1062 like it is done in the splash screen display, we have to
1063 make sure that we restore single_kboard as command_loop_1
1064 would have done if it were left normally. */
1065 record_unwind_protect (recursive_edit_unwind,
1066 Fcons (buffer, single_kboard ? Qt : Qnil));
1068 recursive_edit_1 ();
1069 return unbind_to (count, Qnil);
1072 Lisp_Object
1073 recursive_edit_unwind (info)
1074 Lisp_Object info;
1076 if (BUFFERP (XCAR (info)))
1077 Fset_buffer (XCAR (info));
1079 if (NILP (XCDR (info)))
1080 any_kboard_state ();
1081 else
1082 single_kboard_state ();
1084 command_loop_level--;
1085 update_mode_lines = 1;
1086 return Qnil;
1090 static void
1091 any_kboard_state ()
1093 #ifdef MULTI_KBOARD
1094 #if 0 /* Theory: if there's anything in Vunread_command_events,
1095 it will right away be read by read_key_sequence,
1096 and then if we do switch KBOARDS, it will go into the side
1097 queue then. So we don't need to do anything special here -- rms. */
1098 if (CONSP (Vunread_command_events))
1100 current_kboard->kbd_queue
1101 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1102 current_kboard->kbd_queue_has_data = 1;
1104 Vunread_command_events = Qnil;
1105 #endif
1106 single_kboard = 0;
1107 #endif
1110 /* Switch to the single-kboard state, making current_kboard
1111 the only KBOARD from which further input is accepted. */
1113 void
1114 single_kboard_state ()
1116 #ifdef MULTI_KBOARD
1117 single_kboard = 1;
1118 #endif
1121 /* If we're in single_kboard state for kboard KBOARD,
1122 get out of it. */
1124 void
1125 not_single_kboard_state (kboard)
1126 KBOARD *kboard;
1128 #ifdef MULTI_KBOARD
1129 if (kboard == current_kboard)
1130 single_kboard = 0;
1131 #endif
1134 /* Maintain a stack of kboards, so other parts of Emacs
1135 can switch temporarily to the kboard of a given frame
1136 and then revert to the previous status. */
1138 struct kboard_stack
1140 KBOARD *kboard;
1141 struct kboard_stack *next;
1144 static struct kboard_stack *kboard_stack;
1146 void
1147 push_frame_kboard (f)
1148 FRAME_PTR f;
1150 #ifdef MULTI_KBOARD
1151 struct kboard_stack *p
1152 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1154 p->next = kboard_stack;
1155 p->kboard = current_kboard;
1156 kboard_stack = p;
1158 current_kboard = FRAME_KBOARD (f);
1159 #endif
1162 void
1163 pop_frame_kboard ()
1165 #ifdef MULTI_KBOARD
1166 struct kboard_stack *p = kboard_stack;
1167 current_kboard = p->kboard;
1168 kboard_stack = p->next;
1169 xfree (p);
1170 #endif
1173 /* Handle errors that are not handled at inner levels
1174 by printing an error message and returning to the editor command loop. */
1176 Lisp_Object
1177 cmd_error (data)
1178 Lisp_Object data;
1180 Lisp_Object old_level, old_length;
1181 char macroerror[50];
1183 #ifdef HAVE_X_WINDOWS
1184 if (display_hourglass_p)
1185 cancel_hourglass ();
1186 #endif
1188 if (!NILP (executing_kbd_macro))
1190 if (executing_kbd_macro_iterations == 1)
1191 sprintf (macroerror, "After 1 kbd macro iteration: ");
1192 else
1193 sprintf (macroerror, "After %d kbd macro iterations: ",
1194 executing_kbd_macro_iterations);
1196 else
1197 *macroerror = 0;
1199 Vstandard_output = Qt;
1200 Vstandard_input = Qt;
1201 Vexecuting_kbd_macro = Qnil;
1202 executing_kbd_macro = Qnil;
1203 current_kboard->Vprefix_arg = Qnil;
1204 current_kboard->Vlast_prefix_arg = Qnil;
1205 cancel_echoing ();
1207 /* Avoid unquittable loop if data contains a circular list. */
1208 old_level = Vprint_level;
1209 old_length = Vprint_length;
1210 XSETFASTINT (Vprint_level, 10);
1211 XSETFASTINT (Vprint_length, 10);
1212 cmd_error_internal (data, macroerror);
1213 Vprint_level = old_level;
1214 Vprint_length = old_length;
1216 Vquit_flag = Qnil;
1218 Vinhibit_quit = Qnil;
1219 #ifdef MULTI_KBOARD
1220 if (command_loop_level == 0 && minibuf_level == 0)
1221 any_kboard_state ();
1222 #endif
1224 return make_number (0);
1227 /* Take actions on handling an error. DATA is the data that describes
1228 the error.
1230 CONTEXT is a C-string containing ASCII characters only which
1231 describes the context in which the error happened. If we need to
1232 generalize CONTEXT to allow multibyte characters, make it a Lisp
1233 string. */
1235 void
1236 cmd_error_internal (data, context)
1237 Lisp_Object data;
1238 char *context;
1240 struct frame *sf = SELECTED_FRAME ();
1242 /* The immediate context is not interesting for Quits,
1243 since they are asyncronous. */
1244 if (EQ (XCAR (data), Qquit))
1245 Vsignaling_function = Qnil;
1247 Vquit_flag = Qnil;
1248 Vinhibit_quit = Qt;
1250 /* Use user's specified output function if any. */
1251 if (!NILP (Vcommand_error_function))
1252 call3 (Vcommand_error_function, data,
1253 build_string (context ? context : ""),
1254 Vsignaling_function);
1255 /* If the window system or terminal frame hasn't been initialized
1256 yet, or we're not interactive, write the message to stderr and exit. */
1257 else if (!sf->glyphs_initialized_p
1258 /* This is the case of the frame dumped with Emacs, when we're
1259 running under a window system. */
1260 || (!NILP (Vwindow_system)
1261 && !inhibit_window_system
1262 && FRAME_TERMCAP_P (sf))
1263 || noninteractive)
1265 print_error_message (data, Qexternal_debugging_output,
1266 context, Vsignaling_function);
1267 Fterpri (Qexternal_debugging_output);
1268 Fkill_emacs (make_number (-1));
1270 else
1272 clear_message (1, 0);
1273 Fdiscard_input ();
1274 message_log_maybe_newline ();
1275 bitch_at_user ();
1277 print_error_message (data, Qt, context, Vsignaling_function);
1280 Vsignaling_function = Qnil;
1283 Lisp_Object command_loop_1 ();
1284 Lisp_Object command_loop_2 ();
1285 Lisp_Object top_level_1 ();
1287 /* Entry to editor-command-loop.
1288 This level has the catches for exiting/returning to editor command loop.
1289 It returns nil to exit recursive edit, t to abort it. */
1291 Lisp_Object
1292 command_loop ()
1294 if (command_loop_level > 0 || minibuf_level > 0)
1296 Lisp_Object val;
1297 val = internal_catch (Qexit, command_loop_2, Qnil);
1298 executing_kbd_macro = Qnil;
1299 return val;
1301 else
1302 while (1)
1304 internal_catch (Qtop_level, top_level_1, Qnil);
1305 /* Reset single_kboard in case top-level set it while
1306 evaluating an -f option, or we are stuck there for some
1307 other reason. */
1308 any_kboard_state ();
1309 internal_catch (Qtop_level, command_loop_2, Qnil);
1310 executing_kbd_macro = Qnil;
1312 /* End of file in -batch run causes exit here. */
1313 if (noninteractive)
1314 Fkill_emacs (Qt);
1318 /* Here we catch errors in execution of commands within the
1319 editing loop, and reenter the editing loop.
1320 When there is an error, cmd_error runs and returns a non-nil
1321 value to us. A value of nil means that command_loop_1 itself
1322 returned due to end of file (or end of kbd macro). */
1324 Lisp_Object
1325 command_loop_2 ()
1327 register Lisp_Object val;
1330 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1331 while (!NILP (val));
1333 return Qnil;
1336 Lisp_Object
1337 top_level_2 ()
1339 return Feval (Vtop_level);
1342 Lisp_Object
1343 top_level_1 ()
1345 /* On entry to the outer level, run the startup file */
1346 if (!NILP (Vtop_level))
1347 internal_condition_case (top_level_2, Qerror, cmd_error);
1348 else if (!NILP (Vpurify_flag))
1349 message ("Bare impure Emacs (standard Lisp code not loaded)");
1350 else
1351 message ("Bare Emacs (standard Lisp code not loaded)");
1352 return Qnil;
1355 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1356 doc: /* Exit all recursive editing levels. */)
1359 #ifdef HAVE_X_WINDOWS
1360 if (display_hourglass_p)
1361 cancel_hourglass ();
1362 #endif
1364 /* Unblock input if we enter with input blocked. This may happen if
1365 redisplay traps e.g. during tool-bar update with input blocked. */
1366 while (INPUT_BLOCKED_P)
1367 UNBLOCK_INPUT;
1369 return Fthrow (Qtop_level, Qnil);
1372 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1373 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1376 if (command_loop_level > 0 || minibuf_level > 0)
1377 Fthrow (Qexit, Qnil);
1379 error ("No recursive edit is in progress");
1380 return Qnil;
1383 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1384 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1387 if (command_loop_level > 0 || minibuf_level > 0)
1388 Fthrow (Qexit, Qt);
1390 error ("No recursive edit is in progress");
1391 return Qnil;
1394 #ifdef HAVE_MOUSE
1396 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1397 of this function. */
1399 static Lisp_Object
1400 tracking_off (old_value)
1401 Lisp_Object old_value;
1403 do_mouse_tracking = old_value;
1404 if (NILP (old_value))
1406 /* Redisplay may have been preempted because there was input
1407 available, and it assumes it will be called again after the
1408 input has been processed. If the only input available was
1409 the sort that we have just disabled, then we need to call
1410 redisplay. */
1411 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
1413 redisplay_preserve_echo_area (6);
1414 get_input_pending (&input_pending,
1415 READABLE_EVENTS_DO_TIMERS_NOW);
1418 return Qnil;
1421 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1422 doc: /* Evaluate BODY with mouse movement events enabled.
1423 Within a `track-mouse' form, mouse motion generates input events that
1424 you can read with `read-event'.
1425 Normally, mouse motion is ignored.
1426 usage: (track-mouse BODY...) */)
1427 (args)
1428 Lisp_Object args;
1430 int count = SPECPDL_INDEX ();
1431 Lisp_Object val;
1433 record_unwind_protect (tracking_off, do_mouse_tracking);
1435 do_mouse_tracking = Qt;
1437 val = Fprogn (args);
1438 return unbind_to (count, val);
1441 /* If mouse has moved on some frame, return one of those frames.
1443 Return 0 otherwise.
1445 If ignore_mouse_drag_p is non-zero, ignore (implicit) mouse movement
1446 after resizing the tool-bar window. */
1448 int ignore_mouse_drag_p;
1450 static FRAME_PTR
1451 some_mouse_moved ()
1453 Lisp_Object tail, frame;
1455 if (ignore_mouse_drag_p)
1457 /* ignore_mouse_drag_p = 0; */
1458 return 0;
1461 FOR_EACH_FRAME (tail, frame)
1463 if (XFRAME (frame)->mouse_moved)
1464 return XFRAME (frame);
1467 return 0;
1470 #endif /* HAVE_MOUSE */
1472 /* This is the actual command reading loop,
1473 sans error-handling encapsulation. */
1475 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1476 int, int, int));
1477 void safe_run_hooks P_ ((Lisp_Object));
1478 static void adjust_point_for_property P_ ((int, int));
1480 /* Cancel hourglass from protect_unwind.
1481 ARG is not used. */
1482 #ifdef HAVE_X_WINDOWS
1483 static Lisp_Object
1484 cancel_hourglass_unwind (arg)
1485 Lisp_Object arg;
1487 cancel_hourglass ();
1488 return Qnil;
1490 #endif
1492 Lisp_Object
1493 command_loop_1 ()
1495 Lisp_Object cmd;
1496 int lose;
1497 int nonundocount;
1498 Lisp_Object keybuf[30];
1499 int i;
1500 int no_direct;
1501 int prev_modiff = 0;
1502 struct buffer *prev_buffer = NULL;
1503 #ifdef MULTI_KBOARD
1504 int was_locked = single_kboard;
1505 #endif
1506 int already_adjusted;
1508 current_kboard->Vprefix_arg = Qnil;
1509 current_kboard->Vlast_prefix_arg = Qnil;
1510 Vdeactivate_mark = Qnil;
1511 waiting_for_input = 0;
1512 cancel_echoing ();
1514 nonundocount = 0;
1515 this_command_key_count = 0;
1516 this_command_key_count_reset = 0;
1517 this_single_command_key_start = 0;
1519 if (NILP (Vmemory_full))
1521 /* Make sure this hook runs after commands that get errors and
1522 throw to top level. */
1523 /* Note that the value cell will never directly contain nil
1524 if the symbol is a local variable. */
1525 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1526 safe_run_hooks (Qpost_command_hook);
1528 /* If displaying a message, resize the echo area window to fit
1529 that message's size exactly. */
1530 if (!NILP (echo_area_buffer[0]))
1531 resize_echo_area_exactly ();
1533 if (!NILP (Vdeferred_action_list))
1534 safe_run_hooks (Qdeferred_action_function);
1537 /* Do this after running Vpost_command_hook, for consistency. */
1538 current_kboard->Vlast_command = Vthis_command;
1539 current_kboard->Vreal_last_command = real_this_command;
1540 if (!CONSP (last_command_char))
1541 current_kboard->Vlast_repeatable_command = real_this_command;
1543 while (1)
1545 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1546 Fkill_emacs (Qnil);
1548 /* Make sure the current window's buffer is selected. */
1549 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1550 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1552 /* Display any malloc warning that just came out. Use while because
1553 displaying one warning can cause another. */
1555 while (pending_malloc_warning)
1556 display_malloc_warning ();
1558 no_direct = 0;
1560 Vdeactivate_mark = Qnil;
1562 /* If minibuffer on and echo area in use,
1563 wait a short time and redraw minibuffer. */
1565 if (minibuf_level
1566 && !NILP (echo_area_buffer[0])
1567 && EQ (minibuf_window, echo_area_window))
1569 /* Bind inhibit-quit to t so that C-g gets read in
1570 rather than quitting back to the minibuffer. */
1571 int count = SPECPDL_INDEX ();
1572 specbind (Qinhibit_quit, Qt);
1574 if (NUMBERP (Vminibuffer_message_timeout))
1575 sit_for (Vminibuffer_message_timeout, 0, 2);
1576 else
1577 sit_for (Qt, 0, 2);
1579 /* Clear the echo area. */
1580 message2 (0, 0, 0);
1581 safe_run_hooks (Qecho_area_clear_hook);
1583 unbind_to (count, Qnil);
1585 /* If a C-g came in before, treat it as input now. */
1586 if (!NILP (Vquit_flag))
1588 Vquit_flag = Qnil;
1589 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1593 #ifdef C_ALLOCA
1594 alloca (0); /* Cause a garbage collection now */
1595 /* Since we can free the most stuff here. */
1596 #endif /* C_ALLOCA */
1598 #if 0
1599 /* Select the frame that the last event came from. Usually,
1600 switch-frame events will take care of this, but if some lisp
1601 code swallows a switch-frame event, we'll fix things up here.
1602 Is this a good idea? */
1603 if (FRAMEP (internal_last_event_frame)
1604 && !EQ (internal_last_event_frame, selected_frame))
1605 Fselect_frame (internal_last_event_frame);
1606 #endif
1607 /* If it has changed current-menubar from previous value,
1608 really recompute the menubar from the value. */
1609 if (! NILP (Vlucid_menu_bar_dirty_flag)
1610 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1611 call0 (Qrecompute_lucid_menubar);
1613 before_command_key_count = this_command_key_count;
1614 before_command_echo_length = echo_length ();
1616 Vthis_command = Qnil;
1617 real_this_command = Qnil;
1618 Vthis_original_command = Qnil;
1620 /* Read next key sequence; i gets its length. */
1621 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1622 Qnil, 0, 1, 1);
1624 /* A filter may have run while we were reading the input. */
1625 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1626 Fkill_emacs (Qnil);
1627 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1628 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1630 ++num_input_keys;
1632 /* Now we have read a key sequence of length I,
1633 or else I is 0 and we found end of file. */
1635 if (i == 0) /* End of file -- happens only in */
1636 return Qnil; /* a kbd macro, at the end. */
1637 /* -1 means read_key_sequence got a menu that was rejected.
1638 Just loop around and read another command. */
1639 if (i == -1)
1641 cancel_echoing ();
1642 this_command_key_count = 0;
1643 this_command_key_count_reset = 0;
1644 this_single_command_key_start = 0;
1645 goto finalize;
1648 last_command_char = keybuf[i - 1];
1650 /* If the previous command tried to force a specific window-start,
1651 forget about that, in case this command moves point far away
1652 from that position. But also throw away beg_unchanged and
1653 end_unchanged information in that case, so that redisplay will
1654 update the whole window properly. */
1655 if (!NILP (XWINDOW (selected_window)->force_start))
1657 struct buffer *b;
1658 XWINDOW (selected_window)->force_start = Qnil;
1659 b = XBUFFER (XWINDOW (selected_window)->buffer);
1660 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1663 cmd = read_key_sequence_cmd;
1664 if (!NILP (Vexecuting_kbd_macro))
1666 if (!NILP (Vquit_flag))
1668 Vexecuting_kbd_macro = Qt;
1669 QUIT; /* Make some noise. */
1670 /* Will return since macro now empty. */
1674 /* Do redisplay processing after this command except in special
1675 cases identified below. */
1676 prev_buffer = current_buffer;
1677 prev_modiff = MODIFF;
1678 last_point_position = PT;
1679 last_point_position_window = selected_window;
1680 XSETBUFFER (last_point_position_buffer, prev_buffer);
1682 /* By default, we adjust point to a boundary of a region that
1683 has such a property that should be treated intangible
1684 (e.g. composition, display). But, some commands will set
1685 this variable differently. */
1686 Vdisable_point_adjustment = Qnil;
1688 /* Process filters and timers may have messed with deactivate-mark.
1689 reset it before we execute the command. */
1690 Vdeactivate_mark = Qnil;
1692 /* Remap command through active keymaps */
1693 Vthis_original_command = cmd;
1694 if (SYMBOLP (cmd))
1696 Lisp_Object cmd1;
1697 if (cmd1 = Fcommand_remapping (cmd, Qnil, Qnil), !NILP (cmd1))
1698 cmd = cmd1;
1701 /* Execute the command. */
1703 Vthis_command = cmd;
1704 real_this_command = cmd;
1705 /* Note that the value cell will never directly contain nil
1706 if the symbol is a local variable. */
1707 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1708 safe_run_hooks (Qpre_command_hook);
1710 already_adjusted = 0;
1712 if (NILP (Vthis_command))
1714 /* nil means key is undefined. */
1715 Lisp_Object keys = Fvector (i, keybuf);
1716 keys = Fkey_description (keys, Qnil);
1717 bitch_at_user ();
1718 message_with_string ("%s is undefined", keys, 0);
1719 current_kboard->defining_kbd_macro = Qnil;
1720 update_mode_lines = 1;
1721 current_kboard->Vprefix_arg = Qnil;
1723 else
1725 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1727 /* In case we jump to directly_done. */
1728 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1730 /* Recognize some common commands in common situations and
1731 do them directly. */
1732 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1734 struct Lisp_Char_Table *dp
1735 = window_display_table (XWINDOW (selected_window));
1736 lose = FETCH_CHAR (PT_BYTE);
1737 SET_PT (PT + 1);
1738 if (! NILP (Vpost_command_hook))
1739 /* Put this before calling adjust_point_for_property
1740 so it will only get called once in any case. */
1741 goto directly_done;
1742 if (current_buffer == prev_buffer
1743 && last_point_position != PT
1744 && NILP (Vdisable_point_adjustment)
1745 && NILP (Vglobal_disable_point_adjustment))
1746 adjust_point_for_property (last_point_position, 0);
1747 already_adjusted = 1;
1748 if (PT == last_point_position + 1
1749 && (dp
1750 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1751 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1752 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1753 && (lose >= 0x20 && lose < 0x7f)))
1754 : (lose >= 0x20 && lose < 0x7f))
1755 /* To extract the case of continuation on
1756 wide-column characters. */
1757 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1758 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1759 >= MODIFF)
1760 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1761 >= OVERLAY_MODIFF)
1762 && (XFASTINT (XWINDOW (selected_window)->last_point)
1763 == PT - 1)
1764 && !windows_or_buffers_changed
1765 && EQ (current_buffer->selective_display, Qnil)
1766 && !detect_input_pending ()
1767 && NILP (XWINDOW (selected_window)->column_number_displayed)
1768 && NILP (Vexecuting_kbd_macro))
1769 direct_output_forward_char (1);
1770 goto directly_done;
1772 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1774 struct Lisp_Char_Table *dp
1775 = window_display_table (XWINDOW (selected_window));
1776 SET_PT (PT - 1);
1777 lose = FETCH_CHAR (PT_BYTE);
1778 if (! NILP (Vpost_command_hook))
1779 goto directly_done;
1780 if (current_buffer == prev_buffer
1781 && last_point_position != PT
1782 && NILP (Vdisable_point_adjustment)
1783 && NILP (Vglobal_disable_point_adjustment))
1784 adjust_point_for_property (last_point_position, 0);
1785 already_adjusted = 1;
1786 if (PT == last_point_position - 1
1787 && (dp
1788 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1789 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1790 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1791 && (lose >= 0x20 && lose < 0x7f)))
1792 : (lose >= 0x20 && lose < 0x7f))
1793 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1794 >= MODIFF)
1795 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1796 >= OVERLAY_MODIFF)
1797 && (XFASTINT (XWINDOW (selected_window)->last_point)
1798 == PT + 1)
1799 && !windows_or_buffers_changed
1800 && EQ (current_buffer->selective_display, Qnil)
1801 && !detect_input_pending ()
1802 && NILP (XWINDOW (selected_window)->column_number_displayed)
1803 && NILP (Vexecuting_kbd_macro))
1804 direct_output_forward_char (-1);
1805 goto directly_done;
1807 else if (EQ (Vthis_command, Qself_insert_command)
1808 /* Try this optimization only on char keystrokes. */
1809 && NATNUMP (last_command_char)
1810 && CHAR_VALID_P (XFASTINT (last_command_char), 0))
1812 unsigned int c
1813 = translate_char (Vtranslation_table_for_input,
1814 XFASTINT (last_command_char), 0, 0, 0);
1815 int value;
1816 if (NILP (Vexecuting_kbd_macro)
1817 && !EQ (minibuf_window, selected_window))
1819 if (!nonundocount || nonundocount >= 20)
1821 Fundo_boundary ();
1822 nonundocount = 0;
1824 nonundocount++;
1827 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1828 < MODIFF)
1829 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1830 < OVERLAY_MODIFF)
1831 || (XFASTINT (XWINDOW (selected_window)->last_point)
1832 != PT)
1833 || MODIFF <= SAVE_MODIFF
1834 || windows_or_buffers_changed
1835 || !EQ (current_buffer->selective_display, Qnil)
1836 || detect_input_pending ()
1837 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1838 || !NILP (Vexecuting_kbd_macro));
1840 value = internal_self_insert (c, 0);
1842 if (value == 2)
1843 nonundocount = 0;
1845 if (! NILP (Vpost_command_hook))
1846 /* Put this before calling adjust_point_for_property
1847 so it will only get called once in any case. */
1848 goto directly_done;
1850 /* VALUE == 1 when AFTER-CHANGE functions are
1851 installed which is the case most of the time
1852 because FONT-LOCK installs one. */
1853 if (!lose && !value)
1854 direct_output_for_insert (c);
1855 goto directly_done;
1859 /* Here for a command that isn't executed directly */
1862 #ifdef HAVE_X_WINDOWS
1863 int scount = SPECPDL_INDEX ();
1865 if (display_hourglass_p
1866 && NILP (Vexecuting_kbd_macro))
1868 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1869 start_hourglass ();
1871 #endif
1873 nonundocount = 0;
1874 if (NILP (current_kboard->Vprefix_arg))
1875 Fundo_boundary ();
1876 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1878 #ifdef HAVE_X_WINDOWS
1879 /* Do not check display_hourglass_p here, because
1880 Fcommand_execute could change it, but we should cancel
1881 hourglass cursor anyway.
1882 But don't cancel the hourglass within a macro
1883 just because a command in the macro finishes. */
1884 if (NILP (Vexecuting_kbd_macro))
1885 unbind_to (scount, Qnil);
1886 #endif
1889 directly_done: ;
1890 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1892 /* Note that the value cell will never directly contain nil
1893 if the symbol is a local variable. */
1894 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1895 safe_run_hooks (Qpost_command_hook);
1897 /* If displaying a message, resize the echo area window to fit
1898 that message's size exactly. */
1899 if (!NILP (echo_area_buffer[0]))
1900 resize_echo_area_exactly ();
1902 if (!NILP (Vdeferred_action_list))
1903 safe_run_hooks (Qdeferred_action_function);
1905 /* If there is a prefix argument,
1906 1) We don't want Vlast_command to be ``universal-argument''
1907 (that would be dumb), so don't set Vlast_command,
1908 2) we want to leave echoing on so that the prefix will be
1909 echoed as part of this key sequence, so don't call
1910 cancel_echoing, and
1911 3) we want to leave this_command_key_count non-zero, so that
1912 read_char will realize that it is re-reading a character, and
1913 not echo it a second time.
1915 If the command didn't actually create a prefix arg,
1916 but is merely a frame event that is transparent to prefix args,
1917 then the above doesn't apply. */
1918 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1920 current_kboard->Vlast_command = Vthis_command;
1921 current_kboard->Vreal_last_command = real_this_command;
1922 if (!CONSP (last_command_char))
1923 current_kboard->Vlast_repeatable_command = real_this_command;
1924 cancel_echoing ();
1925 this_command_key_count = 0;
1926 this_command_key_count_reset = 0;
1927 this_single_command_key_start = 0;
1930 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1932 /* Setting transient-mark-mode to `only' is a way of
1933 turning it on for just one command. */
1935 if (EQ (Vtransient_mark_mode, Qidentity))
1936 Vtransient_mark_mode = Qnil;
1937 if (EQ (Vtransient_mark_mode, Qonly))
1938 Vtransient_mark_mode = Qidentity;
1940 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1942 /* We could also call `deactivate'mark'. */
1943 if (EQ (Vtransient_mark_mode, Qlambda))
1944 Vtransient_mark_mode = Qnil;
1945 else
1947 current_buffer->mark_active = Qnil;
1948 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1951 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1952 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1955 finalize:
1957 if (current_buffer == prev_buffer
1958 && last_point_position != PT
1959 && NILP (Vdisable_point_adjustment)
1960 && NILP (Vglobal_disable_point_adjustment)
1961 && !already_adjusted)
1962 adjust_point_for_property (last_point_position, MODIFF != prev_modiff);
1964 /* Install chars successfully executed in kbd macro. */
1966 if (!NILP (current_kboard->defining_kbd_macro)
1967 && NILP (current_kboard->Vprefix_arg))
1968 finalize_kbd_macro_chars ();
1970 #ifdef MULTI_KBOARD
1971 if (!was_locked)
1972 any_kboard_state ();
1973 #endif
1977 extern Lisp_Object Qcomposition, Qdisplay;
1979 /* Adjust point to a boundary of a region that has such a property
1980 that should be treated intangible. For the moment, we check
1981 `composition', `display' and `invisible' properties.
1982 LAST_PT is the last position of point. */
1984 extern Lisp_Object Qafter_string, Qbefore_string;
1985 extern Lisp_Object get_pos_property P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
1987 static void
1988 adjust_point_for_property (last_pt, modified)
1989 int last_pt;
1990 int modified;
1992 int beg, end;
1993 Lisp_Object val, overlay, tmp;
1994 int check_composition = 1, check_display = 1, check_invisible = 1;
1995 int orig_pt = PT;
1997 /* FIXME: cycling is probably not necessary because these properties
1998 can't be usefully combined anyway. */
1999 while (check_composition || check_display || check_invisible)
2001 if (check_composition
2002 && PT > BEGV && PT < ZV
2003 && get_property_and_range (PT, Qcomposition, &val, &beg, &end, Qnil)
2004 && COMPOSITION_VALID_P (beg, end, val)
2005 && beg < PT /* && end > PT <- It's always the case. */
2006 && (last_pt <= beg || last_pt >= end))
2008 xassert (end > PT);
2009 SET_PT (PT < last_pt ? beg : end);
2010 check_display = check_invisible = 1;
2012 check_composition = 0;
2013 if (check_display
2014 && PT > BEGV && PT < ZV
2015 && !NILP (val = get_char_property_and_overlay
2016 (make_number (PT), Qdisplay, Qnil, &overlay))
2017 && display_prop_intangible_p (val)
2018 && (!OVERLAYP (overlay)
2019 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
2020 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
2021 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
2022 && (beg < PT /* && end > PT <- It's always the case. */
2023 || (beg <= PT && STRINGP (val) && SCHARS (val) == 0)))
2025 xassert (end > PT);
2026 SET_PT (PT < last_pt
2027 ? (STRINGP (val) && SCHARS (val) == 0 ? beg - 1 : beg)
2028 : end);
2029 check_composition = check_invisible = 1;
2031 check_display = 0;
2032 if (check_invisible && PT > BEGV && PT < ZV)
2034 int inv, ellipsis = 0;
2035 beg = end = PT;
2037 /* Find boundaries `beg' and `end' of the invisible area, if any. */
2038 while (end < ZV
2039 && !NILP (val = get_char_property_and_overlay
2040 (make_number (end), Qinvisible, Qnil, &overlay))
2041 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
2043 ellipsis = ellipsis || inv > 1
2044 || (OVERLAYP (overlay)
2045 && (!NILP (Foverlay_get (overlay, Qafter_string))
2046 || !NILP (Foverlay_get (overlay, Qbefore_string))));
2047 tmp = Fnext_single_char_property_change
2048 (make_number (end), Qinvisible, Qnil, Qnil);
2049 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
2051 while (beg > BEGV
2052 && !NILP (val = get_char_property_and_overlay
2053 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
2054 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
2056 ellipsis = ellipsis || inv > 1
2057 || (OVERLAYP (overlay)
2058 && (!NILP (Foverlay_get (overlay, Qafter_string))
2059 || !NILP (Foverlay_get (overlay, Qbefore_string))));
2060 tmp = Fprevious_single_char_property_change
2061 (make_number (beg), Qinvisible, Qnil, Qnil);
2062 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
2065 /* Move away from the inside area. */
2066 if (beg < PT && end > PT)
2068 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
2069 /* We haven't moved yet (so we don't need to fear
2070 infinite-looping) and we were outside the range
2071 before (so either end of the range still corresponds
2072 to a move in the right direction): pretend we moved
2073 less than we actually did, so that we still have
2074 more freedom below in choosing which end of the range
2075 to go to. */
2076 ? (orig_pt = -1, PT < last_pt ? end : beg)
2077 /* We either have moved already or the last point
2078 was already in the range: we don't get to choose
2079 which end of the range we have to go to. */
2080 : (PT < last_pt ? beg : end));
2081 check_composition = check_display = 1;
2083 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
2084 the point to something other than its argument, due to
2085 point-motion hooks, intangibility, etc. */
2086 xassert (PT == beg || PT == end);
2087 #endif
2089 /* Pretend the area doesn't exist if the buffer is not
2090 modified. */
2091 if (!modified && !ellipsis && beg < end)
2093 if (last_pt == beg && PT == end && end < ZV)
2094 (check_composition = check_display = 1, SET_PT (end + 1));
2095 else if (last_pt == end && PT == beg && beg > BEGV)
2096 (check_composition = check_display = 1, SET_PT (beg - 1));
2097 else if (PT == ((PT < last_pt) ? beg : end))
2098 /* We've already moved as far as we can. Trying to go
2099 to the other end would mean moving backwards and thus
2100 could lead to an infinite loop. */
2102 else if (val = get_pos_property (make_number (PT),
2103 Qinvisible, Qnil),
2104 TEXT_PROP_MEANS_INVISIBLE (val)
2105 && (val = get_pos_property
2106 (make_number (PT == beg ? end : beg),
2107 Qinvisible, Qnil),
2108 !TEXT_PROP_MEANS_INVISIBLE (val)))
2109 (check_composition = check_display = 1,
2110 SET_PT (PT == beg ? end : beg));
2113 check_invisible = 0;
2117 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2119 static Lisp_Object
2120 safe_run_hooks_1 (hook)
2121 Lisp_Object hook;
2123 if (NILP (Vrun_hooks))
2124 return Qnil;
2125 return call1 (Vrun_hooks, Vinhibit_quit);
2128 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2130 static Lisp_Object
2131 safe_run_hooks_error (data)
2132 Lisp_Object data;
2134 Lisp_Object args[3];
2135 args[0] = build_string ("Error in %s: %s");
2136 args[1] = Vinhibit_quit;
2137 args[2] = data;
2138 Fmessage (3, args);
2139 return Fset (Vinhibit_quit, Qnil);
2142 /* If we get an error while running the hook, cause the hook variable
2143 to be nil. Also inhibit quits, so that C-g won't cause the hook
2144 to mysteriously evaporate. */
2146 void
2147 safe_run_hooks (hook)
2148 Lisp_Object hook;
2150 int count = SPECPDL_INDEX ();
2151 specbind (Qinhibit_quit, hook);
2153 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
2155 unbind_to (count, Qnil);
2159 /* Number of seconds between polling for input. This is a Lisp
2160 variable that can be bound. */
2162 EMACS_INT polling_period;
2164 /* Nonzero means polling for input is temporarily suppressed. */
2166 int poll_suppress_count;
2168 /* Asynchronous timer for polling. */
2170 struct atimer *poll_timer;
2173 #ifdef POLL_FOR_INPUT
2175 /* Poll for input, so what we catch a C-g if it comes in. This
2176 function is called from x_make_frame_visible, see comment
2177 there. */
2179 void
2180 poll_for_input_1 ()
2182 if (interrupt_input_blocked == 0
2183 && !waiting_for_input)
2184 read_avail_input (0);
2187 /* Timer callback function for poll_timer. TIMER is equal to
2188 poll_timer. */
2190 void
2191 poll_for_input (timer)
2192 struct atimer *timer;
2194 if (poll_suppress_count == 0)
2195 #ifdef SYNC_INPUT
2196 interrupt_input_pending = 1;
2197 #else
2198 poll_for_input_1 ();
2199 #endif
2202 #endif /* POLL_FOR_INPUT */
2204 /* Begin signals to poll for input, if they are appropriate.
2205 This function is called unconditionally from various places. */
2207 void
2208 start_polling ()
2210 #ifdef POLL_FOR_INPUT
2211 if (read_socket_hook && !interrupt_input)
2213 /* Turn alarm handling on unconditionally. It might have
2214 been turned off in process.c. */
2215 turn_on_atimers (1);
2217 /* If poll timer doesn't exist, are we need one with
2218 a different interval, start a new one. */
2219 if (poll_timer == NULL
2220 || EMACS_SECS (poll_timer->interval) != polling_period)
2222 EMACS_TIME interval;
2224 if (poll_timer)
2225 cancel_atimer (poll_timer);
2227 EMACS_SET_SECS_USECS (interval, polling_period, 0);
2228 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2229 poll_for_input, NULL);
2232 /* Let the timer's callback function poll for input
2233 if this becomes zero. */
2234 --poll_suppress_count;
2236 #endif
2239 /* Nonzero if we are using polling to handle input asynchronously. */
2242 input_polling_used ()
2244 #ifdef POLL_FOR_INPUT
2245 return read_socket_hook && !interrupt_input;
2246 #else
2247 return 0;
2248 #endif
2251 /* Turn off polling. */
2253 void
2254 stop_polling ()
2256 #ifdef POLL_FOR_INPUT
2257 if (read_socket_hook && !interrupt_input)
2258 ++poll_suppress_count;
2259 #endif
2262 /* Set the value of poll_suppress_count to COUNT
2263 and start or stop polling accordingly. */
2265 void
2266 set_poll_suppress_count (count)
2267 int count;
2269 #ifdef POLL_FOR_INPUT
2270 if (count == 0 && poll_suppress_count != 0)
2272 poll_suppress_count = 1;
2273 start_polling ();
2275 else if (count != 0 && poll_suppress_count == 0)
2277 stop_polling ();
2279 poll_suppress_count = count;
2280 #endif
2283 /* Bind polling_period to a value at least N.
2284 But don't decrease it. */
2286 void
2287 bind_polling_period (n)
2288 int n;
2290 #ifdef POLL_FOR_INPUT
2291 int new = polling_period;
2293 if (n > new)
2294 new = n;
2296 stop_other_atimers (poll_timer);
2297 stop_polling ();
2298 specbind (Qpolling_period, make_number (new));
2299 /* Start a new alarm with the new period. */
2300 start_polling ();
2301 #endif
2304 /* Apply the control modifier to CHARACTER. */
2307 make_ctrl_char (c)
2308 int c;
2310 /* Save the upper bits here. */
2311 int upper = c & ~0177;
2313 c &= 0177;
2315 /* Everything in the columns containing the upper-case letters
2316 denotes a control character. */
2317 if (c >= 0100 && c < 0140)
2319 int oc = c;
2320 c &= ~0140;
2321 /* Set the shift modifier for a control char
2322 made from a shifted letter. But only for letters! */
2323 if (oc >= 'A' && oc <= 'Z')
2324 c |= shift_modifier;
2327 /* The lower-case letters denote control characters too. */
2328 else if (c >= 'a' && c <= 'z')
2329 c &= ~0140;
2331 /* Include the bits for control and shift
2332 only if the basic ASCII code can't indicate them. */
2333 else if (c >= ' ')
2334 c |= ctrl_modifier;
2336 /* Replace the high bits. */
2337 c |= (upper & ~ctrl_modifier);
2339 return c;
2342 /* Display the help-echo property of the character after the mouse pointer.
2343 Either show it in the echo area, or call show-help-function to display
2344 it by other means (maybe in a tooltip).
2346 If HELP is nil, that means clear the previous help echo.
2348 If HELP is a string, display that string. If HELP is a function,
2349 call it with OBJECT and POS as arguments; the function should
2350 return a help string or nil for none. For all other types of HELP,
2351 evaluate it to obtain a string.
2353 WINDOW is the window in which the help was generated, if any.
2354 It is nil if not in a window.
2356 If OBJECT is a buffer, POS is the position in the buffer where the
2357 `help-echo' text property was found.
2359 If OBJECT is an overlay, that overlay has a `help-echo' property,
2360 and POS is the position in the overlay's buffer under the mouse.
2362 If OBJECT is a string (an overlay string or a string displayed with
2363 the `display' property). POS is the position in that string under
2364 the mouse.
2366 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2367 echo overwrites a keystroke echo currently displayed in the echo
2368 area.
2370 Note: this function may only be called with HELP nil or a string
2371 from X code running asynchronously. */
2373 void
2374 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2375 Lisp_Object help, window, object, pos;
2376 int ok_to_overwrite_keystroke_echo;
2378 if (!NILP (help) && !STRINGP (help))
2380 if (FUNCTIONP (help))
2382 Lisp_Object args[4];
2383 args[0] = help;
2384 args[1] = window;
2385 args[2] = object;
2386 args[3] = pos;
2387 help = safe_call (4, args);
2389 else
2390 help = safe_eval (help);
2392 if (!STRINGP (help))
2393 return;
2396 #ifdef HAVE_MOUSE
2397 if (!noninteractive && STRINGP (help))
2399 /* The mouse-fixup-help-message Lisp function can call
2400 mouse_position_hook, which resets the mouse_moved flags.
2401 This causes trouble if we are trying to read a mouse motion
2402 event (i.e., if we are inside a `track-mouse' form), so we
2403 restore the mouse_moved flag. */
2404 FRAME_PTR f = NILP (do_mouse_tracking) ? NULL : some_mouse_moved ();
2405 help = call1 (Qmouse_fixup_help_message, help);
2406 if (f)
2407 f->mouse_moved = 1;
2409 #endif
2411 if (STRINGP (help) || NILP (help))
2413 if (!NILP (Vshow_help_function))
2414 call1 (Vshow_help_function, help);
2415 else if (/* Don't overwrite minibuffer contents. */
2416 !MINI_WINDOW_P (XWINDOW (selected_window))
2417 /* Don't overwrite a keystroke echo. */
2418 && (NILP (echo_message_buffer)
2419 || ok_to_overwrite_keystroke_echo)
2420 /* Don't overwrite a prompt. */
2421 && !cursor_in_echo_area)
2423 if (STRINGP (help))
2425 int count = SPECPDL_INDEX ();
2427 if (!help_echo_showing_p)
2428 Vpre_help_message = current_message ();
2430 specbind (Qmessage_truncate_lines, Qt);
2431 message3_nolog (help, SBYTES (help),
2432 STRING_MULTIBYTE (help));
2433 unbind_to (count, Qnil);
2435 else if (STRINGP (Vpre_help_message))
2437 message3_nolog (Vpre_help_message,
2438 SBYTES (Vpre_help_message),
2439 STRING_MULTIBYTE (Vpre_help_message));
2440 Vpre_help_message = Qnil;
2442 else
2443 message (0);
2446 help_echo_showing_p = STRINGP (help);
2452 /* Input of single characters from keyboard */
2454 Lisp_Object print_help ();
2455 static Lisp_Object kbd_buffer_get_event ();
2456 static void record_char ();
2458 static Lisp_Object help_form_saved_window_configs;
2459 static Lisp_Object
2460 read_char_help_form_unwind (arg)
2462 Lisp_Object window_config = XCAR (help_form_saved_window_configs);
2463 help_form_saved_window_configs = XCDR (help_form_saved_window_configs);
2464 if (!NILP (window_config))
2465 Fset_window_configuration (window_config);
2466 return Qnil;
2469 #ifdef MULTI_KBOARD
2470 static jmp_buf wrong_kboard_jmpbuf;
2471 #endif
2473 #define STOP_POLLING \
2474 do { if (! polling_stopped_here) stop_polling (); \
2475 polling_stopped_here = 1; } while (0)
2477 #define RESUME_POLLING \
2478 do { if (polling_stopped_here) start_polling (); \
2479 polling_stopped_here = 0; } while (0)
2481 /* read a character from the keyboard; call the redisplay if needed */
2482 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2483 -1 means do not do redisplay, but do do autosaving.
2484 1 means do both. */
2486 /* The arguments MAPS and NMAPS are for menu prompting.
2487 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2489 PREV_EVENT is the previous input event, or nil if we are reading
2490 the first event of a key sequence (or not reading a key sequence).
2491 If PREV_EVENT is t, that is a "magic" value that says
2492 not to run input methods, but in other respects to act as if
2493 not reading a key sequence.
2495 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2496 if we used a mouse menu to read the input, or zero otherwise. If
2497 USED_MOUSE_MENU is null, we don't dereference it.
2499 If END_TIME is non-null, it is a pointer to an EMACS_TIME
2500 specifying the maximum time to wait until. If no input arrives by
2501 that time, stop waiting and return nil.
2503 Value is t if we showed a menu and the user rejected it. */
2505 Lisp_Object
2506 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu, end_time)
2507 int commandflag;
2508 int nmaps;
2509 Lisp_Object *maps;
2510 Lisp_Object prev_event;
2511 int *used_mouse_menu;
2512 EMACS_TIME *end_time;
2514 volatile Lisp_Object c;
2515 int count, jmpcount;
2516 jmp_buf local_getcjmp;
2517 jmp_buf save_jump;
2518 volatile int key_already_recorded = 0;
2519 Lisp_Object tem, save;
2520 volatile Lisp_Object previous_echo_area_message;
2521 volatile Lisp_Object also_record;
2522 volatile int reread;
2523 struct gcpro gcpro1, gcpro2;
2524 int polling_stopped_here = 0;
2526 also_record = Qnil;
2528 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2529 before_command_key_count = this_command_key_count;
2530 before_command_echo_length = echo_length ();
2531 #endif
2532 c = Qnil;
2533 previous_echo_area_message = Qnil;
2535 GCPRO2 (c, previous_echo_area_message);
2537 retry:
2539 reread = 0;
2540 if (CONSP (Vunread_post_input_method_events))
2542 c = XCAR (Vunread_post_input_method_events);
2543 Vunread_post_input_method_events
2544 = XCDR (Vunread_post_input_method_events);
2546 /* Undo what read_char_x_menu_prompt did when it unread
2547 additional keys returned by Fx_popup_menu. */
2548 if (CONSP (c)
2549 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2550 && NILP (XCDR (c)))
2551 c = XCAR (c);
2553 reread = 1;
2554 goto reread_first;
2557 if (unread_command_char != -1)
2559 XSETINT (c, unread_command_char);
2560 unread_command_char = -1;
2562 reread = 1;
2563 goto reread_first;
2566 if (CONSP (Vunread_command_events))
2568 c = XCAR (Vunread_command_events);
2569 Vunread_command_events = XCDR (Vunread_command_events);
2571 reread = 1;
2573 /* Undo what sit-for did when it unread additional keys
2574 inside universal-argument. */
2576 if (CONSP (c)
2577 && EQ (XCAR (c), Qt))
2579 reread = 0;
2580 c = XCDR (c);
2583 /* Undo what read_char_x_menu_prompt did when it unread
2584 additional keys returned by Fx_popup_menu. */
2585 if (CONSP (c)
2586 && EQ (XCDR (c), Qdisabled)
2587 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2588 c = XCAR (c);
2590 /* If the queued event is something that used the mouse,
2591 set used_mouse_menu accordingly. */
2592 if (used_mouse_menu
2593 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2594 *used_mouse_menu = 1;
2596 goto reread_for_input_method;
2599 if (CONSP (Vunread_input_method_events))
2601 c = XCAR (Vunread_input_method_events);
2602 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2604 /* Undo what read_char_x_menu_prompt did when it unread
2605 additional keys returned by Fx_popup_menu. */
2606 if (CONSP (c)
2607 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2608 && NILP (XCDR (c)))
2609 c = XCAR (c);
2610 reread = 1;
2611 goto reread_for_input_method;
2614 this_command_key_count_reset = 0;
2616 if (!NILP (Vexecuting_kbd_macro))
2618 /* We set this to Qmacro; since that's not a frame, nobody will
2619 try to switch frames on us, and the selected window will
2620 remain unchanged.
2622 Since this event came from a macro, it would be misleading to
2623 leave internal_last_event_frame set to wherever the last
2624 real event came from. Normally, a switch-frame event selects
2625 internal_last_event_frame after each command is read, but
2626 events read from a macro should never cause a new frame to be
2627 selected. */
2628 Vlast_event_frame = internal_last_event_frame = Qmacro;
2630 /* Exit the macro if we are at the end.
2631 Also, some things replace the macro with t
2632 to force an early exit. */
2633 if (EQ (Vexecuting_kbd_macro, Qt)
2634 || executing_kbd_macro_index >= XFASTINT (Flength (Vexecuting_kbd_macro)))
2636 XSETINT (c, -1);
2637 goto exit;
2640 c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index));
2641 if (STRINGP (Vexecuting_kbd_macro)
2642 && (XINT (c) & 0x80) && (XUINT (c) <= 0xff))
2643 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2645 executing_kbd_macro_index++;
2647 goto from_macro;
2650 if (!NILP (unread_switch_frame))
2652 c = unread_switch_frame;
2653 unread_switch_frame = Qnil;
2655 /* This event should make it into this_command_keys, and get echoed
2656 again, so we do not set `reread'. */
2657 goto reread_first;
2660 /* if redisplay was requested */
2661 if (commandflag >= 0)
2663 /* If there is pending input, process any events which are not
2664 user-visible, such as X selection_request events. */
2665 if (input_pending
2666 || detect_input_pending_run_timers (0))
2667 swallow_events (0); /* may clear input_pending */
2669 /* Redisplay if no pending input. */
2670 while (!input_pending)
2672 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2673 redisplay_preserve_echo_area (5);
2674 else
2675 redisplay ();
2677 if (!input_pending)
2678 /* Normal case: no input arrived during redisplay. */
2679 break;
2681 /* Input arrived and pre-empted redisplay.
2682 Process any events which are not user-visible. */
2683 swallow_events (0);
2684 /* If that cleared input_pending, try again to redisplay. */
2688 /* Message turns off echoing unless more keystrokes turn it on again.
2690 The code in 20.x for the condition was
2692 1. echo_area_glyphs && *echo_area_glyphs
2693 2. && echo_area_glyphs != current_kboard->echobuf
2694 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2696 (1) means there's a current message displayed
2698 (2) means it's not the message from echoing from the current
2699 kboard.
2701 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2702 is set to a non-null value. This is done in read_char and it is
2703 set to echo_area_glyphs after a call to echo_char. That means
2704 ok_to_echo_at_next_pause is either null or
2705 current_kboard->echobuf with the appropriate current_kboard at
2706 that time.
2708 So, condition (3) means in clear text ok_to_echo_at_next_pause
2709 must be either null, or the current message isn't from echoing at
2710 all, or it's from echoing from a different kboard than the
2711 current one. */
2713 if (/* There currently is something in the echo area. */
2714 !NILP (echo_area_buffer[0])
2715 && (/* And it's either not from echoing. */
2716 !EQ (echo_area_buffer[0], echo_message_buffer)
2717 /* Or it's an echo from a different kboard. */
2718 || echo_kboard != current_kboard
2719 /* Or we explicitly allow overwriting whatever there is. */
2720 || ok_to_echo_at_next_pause == NULL))
2721 cancel_echoing ();
2722 else
2723 echo_dash ();
2725 /* Try reading a character via menu prompting in the minibuf.
2726 Try this before the sit-for, because the sit-for
2727 would do the wrong thing if we are supposed to do
2728 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2729 after a mouse event so don't try a minibuf menu. */
2730 c = Qnil;
2731 if (nmaps > 0 && INTERACTIVE
2732 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2733 /* Don't bring up a menu if we already have another event. */
2734 && NILP (Vunread_command_events)
2735 && unread_command_char < 0
2736 && !detect_input_pending_run_timers (0))
2738 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2739 if (! NILP (c))
2741 key_already_recorded = 1;
2742 goto non_reread_1;
2746 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2747 We will do that below, temporarily for short sections of code,
2748 when appropriate. local_getcjmp must be in effect
2749 around any call to sit_for or kbd_buffer_get_event;
2750 it *must not* be in effect when we call redisplay. */
2752 jmpcount = SPECPDL_INDEX ();
2753 if (_setjmp (local_getcjmp))
2755 /* We must have saved the outer value of getcjmp here,
2756 so restore it now. */
2757 restore_getcjmp (save_jump);
2758 unbind_to (jmpcount, Qnil);
2759 XSETINT (c, quit_char);
2760 internal_last_event_frame = selected_frame;
2761 Vlast_event_frame = internal_last_event_frame;
2762 /* If we report the quit char as an event,
2763 don't do so more than once. */
2764 if (!NILP (Vinhibit_quit))
2765 Vquit_flag = Qnil;
2767 #ifdef MULTI_KBOARD
2769 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2770 if (kb != current_kboard)
2772 Lisp_Object link = kb->kbd_queue;
2773 /* We shouldn't get here if we were in single-kboard mode! */
2774 if (single_kboard)
2775 abort ();
2776 if (CONSP (link))
2778 while (CONSP (XCDR (link)))
2779 link = XCDR (link);
2780 if (!NILP (XCDR (link)))
2781 abort ();
2783 if (!CONSP (link))
2784 kb->kbd_queue = Fcons (c, Qnil);
2785 else
2786 XSETCDR (link, Fcons (c, Qnil));
2787 kb->kbd_queue_has_data = 1;
2788 current_kboard = kb;
2789 /* This is going to exit from read_char
2790 so we had better get rid of this frame's stuff. */
2791 UNGCPRO;
2792 longjmp (wrong_kboard_jmpbuf, 1);
2795 #endif
2796 goto non_reread;
2799 /* Start idle timers if no time limit is supplied. We don't do it
2800 if a time limit is supplied to avoid an infinite recursion in the
2801 situation where an idle timer calls `sit-for'. */
2803 if (!end_time)
2804 timer_start_idle ();
2806 /* If in middle of key sequence and minibuffer not active,
2807 start echoing if enough time elapses. */
2809 if (minibuf_level == 0
2810 && !end_time
2811 && !current_kboard->immediate_echo
2812 && this_command_key_count > 0
2813 && ! noninteractive
2814 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2815 && NILP (Fzerop (Vecho_keystrokes))
2816 && (/* No message. */
2817 NILP (echo_area_buffer[0])
2818 /* Or empty message. */
2819 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2820 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2821 /* Or already echoing from same kboard. */
2822 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2823 /* Or not echoing before and echoing allowed. */
2824 || (!echo_kboard && ok_to_echo_at_next_pause)))
2826 /* After a mouse event, start echoing right away.
2827 This is because we are probably about to display a menu,
2828 and we don't want to delay before doing so. */
2829 if (EVENT_HAS_PARAMETERS (prev_event))
2830 echo_now ();
2831 else
2833 Lisp_Object tem0;
2835 save_getcjmp (save_jump);
2836 restore_getcjmp (local_getcjmp);
2837 tem0 = sit_for (Vecho_keystrokes, 1, 1);
2838 restore_getcjmp (save_jump);
2839 if (EQ (tem0, Qt)
2840 && ! CONSP (Vunread_command_events))
2841 echo_now ();
2845 /* Maybe auto save due to number of keystrokes. */
2847 if (commandflag != 0
2848 && auto_save_interval > 0
2849 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2850 && !detect_input_pending_run_timers (0))
2852 Fdo_auto_save (Qnil, Qnil);
2853 /* Hooks can actually change some buffers in auto save. */
2854 redisplay ();
2857 /* Try reading using an X menu.
2858 This is never confused with reading using the minibuf
2859 because the recursive call of read_char in read_char_minibuf_menu_prompt
2860 does not pass on any keymaps. */
2862 if (nmaps > 0 && INTERACTIVE
2863 && !NILP (prev_event)
2864 && EVENT_HAS_PARAMETERS (prev_event)
2865 && !EQ (XCAR (prev_event), Qmenu_bar)
2866 && !EQ (XCAR (prev_event), Qtool_bar)
2867 /* Don't bring up a menu if we already have another event. */
2868 && NILP (Vunread_command_events)
2869 && unread_command_char < 0)
2871 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2873 /* Now that we have read an event, Emacs is not idle. */
2874 if (!end_time)
2875 timer_stop_idle ();
2877 goto exit;
2880 /* Maybe autosave and/or garbage collect due to idleness. */
2882 if (INTERACTIVE && NILP (c))
2884 int delay_level, buffer_size;
2886 /* Slow down auto saves logarithmically in size of current buffer,
2887 and garbage collect while we're at it. */
2888 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2889 last_non_minibuf_size = Z - BEG;
2890 buffer_size = (last_non_minibuf_size >> 8) + 1;
2891 delay_level = 0;
2892 while (buffer_size > 64)
2893 delay_level++, buffer_size -= buffer_size >> 2;
2894 if (delay_level < 4) delay_level = 4;
2895 /* delay_level is 4 for files under around 50k, 7 at 100k,
2896 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2898 /* Auto save if enough time goes by without input. */
2899 if (commandflag != 0
2900 && num_nonmacro_input_events > last_auto_save
2901 && INTEGERP (Vauto_save_timeout)
2902 && XINT (Vauto_save_timeout) > 0)
2904 Lisp_Object tem0;
2905 int timeout = delay_level * XFASTINT (Vauto_save_timeout) / 4;
2907 save_getcjmp (save_jump);
2908 restore_getcjmp (local_getcjmp);
2909 tem0 = sit_for (make_number (timeout), 1, 1);
2910 restore_getcjmp (save_jump);
2912 if (EQ (tem0, Qt)
2913 && ! CONSP (Vunread_command_events))
2915 Fdo_auto_save (Qnil, Qnil);
2917 /* If we have auto-saved and there is still no input
2918 available, garbage collect if there has been enough
2919 consing going on to make it worthwhile. */
2920 if (!detect_input_pending_run_timers (0)
2921 && consing_since_gc > gc_cons_threshold / 2)
2922 Fgarbage_collect ();
2924 redisplay ();
2929 /* If this has become non-nil here, it has been set by a timer
2930 or sentinel or filter. */
2931 if (CONSP (Vunread_command_events))
2933 c = XCAR (Vunread_command_events);
2934 Vunread_command_events = XCDR (Vunread_command_events);
2937 /* Read something from current KBOARD's side queue, if possible. */
2939 if (NILP (c))
2941 if (current_kboard->kbd_queue_has_data)
2943 if (!CONSP (current_kboard->kbd_queue))
2944 abort ();
2945 c = XCAR (current_kboard->kbd_queue);
2946 current_kboard->kbd_queue
2947 = XCDR (current_kboard->kbd_queue);
2948 if (NILP (current_kboard->kbd_queue))
2949 current_kboard->kbd_queue_has_data = 0;
2950 input_pending = readable_events (0);
2951 if (EVENT_HAS_PARAMETERS (c)
2952 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2953 internal_last_event_frame = XCAR (XCDR (c));
2954 Vlast_event_frame = internal_last_event_frame;
2958 #ifdef MULTI_KBOARD
2959 /* If current_kboard's side queue is empty check the other kboards.
2960 If one of them has data that we have not yet seen here,
2961 switch to it and process the data waiting for it.
2963 Note: if the events queued up for another kboard
2964 have already been seen here, and therefore are not a complete command,
2965 the kbd_queue_has_data field is 0, so we skip that kboard here.
2966 That's to avoid an infinite loop switching between kboards here. */
2967 if (NILP (c) && !single_kboard)
2969 KBOARD *kb;
2970 for (kb = all_kboards; kb; kb = kb->next_kboard)
2971 if (kb->kbd_queue_has_data)
2973 current_kboard = kb;
2974 /* This is going to exit from read_char
2975 so we had better get rid of this frame's stuff. */
2976 UNGCPRO;
2977 longjmp (wrong_kboard_jmpbuf, 1);
2980 #endif
2982 wrong_kboard:
2984 STOP_POLLING;
2986 /* Finally, we read from the main queue,
2987 and if that gives us something we can't use yet, we put it on the
2988 appropriate side queue and try again. */
2990 if (NILP (c))
2992 KBOARD *kb;
2994 if (end_time)
2996 EMACS_TIME now;
2997 EMACS_GET_TIME (now);
2998 if (EMACS_TIME_GE (now, *end_time))
2999 goto exit;
3002 /* Actually read a character, waiting if necessary. */
3003 save_getcjmp (save_jump);
3004 restore_getcjmp (local_getcjmp);
3005 if (!end_time)
3006 timer_start_idle ();
3007 c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time);
3008 restore_getcjmp (save_jump);
3010 #ifdef MULTI_KBOARD
3011 if (! NILP (c) && (kb != current_kboard))
3013 Lisp_Object link = kb->kbd_queue;
3014 if (CONSP (link))
3016 while (CONSP (XCDR (link)))
3017 link = XCDR (link);
3018 if (!NILP (XCDR (link)))
3019 abort ();
3021 if (!CONSP (link))
3022 kb->kbd_queue = Fcons (c, Qnil);
3023 else
3024 XSETCDR (link, Fcons (c, Qnil));
3025 kb->kbd_queue_has_data = 1;
3026 c = Qnil;
3027 if (single_kboard)
3028 goto wrong_kboard;
3029 current_kboard = kb;
3030 /* This is going to exit from read_char
3031 so we had better get rid of this frame's stuff. */
3032 UNGCPRO;
3033 longjmp (wrong_kboard_jmpbuf, 1);
3035 #endif
3038 /* Terminate Emacs in batch mode if at eof. */
3039 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
3040 Fkill_emacs (make_number (1));
3042 if (INTEGERP (c))
3044 /* Add in any extra modifiers, where appropriate. */
3045 if ((extra_keyboard_modifiers & CHAR_CTL)
3046 || ((extra_keyboard_modifiers & 0177) < ' '
3047 && (extra_keyboard_modifiers & 0177) != 0))
3048 XSETINT (c, make_ctrl_char (XINT (c)));
3050 /* Transfer any other modifier bits directly from
3051 extra_keyboard_modifiers to c. Ignore the actual character code
3052 in the low 16 bits of extra_keyboard_modifiers. */
3053 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
3056 non_reread:
3058 if (!end_time)
3059 timer_stop_idle ();
3060 RESUME_POLLING;
3062 if (NILP (c))
3064 if (commandflag >= 0
3065 && !input_pending && !detect_input_pending_run_timers (0))
3066 redisplay ();
3068 goto wrong_kboard;
3071 non_reread_1:
3073 /* Buffer switch events are only for internal wakeups
3074 so don't show them to the user.
3075 Also, don't record a key if we already did. */
3076 if (BUFFERP (c) || key_already_recorded)
3077 goto exit;
3079 /* Process special events within read_char
3080 and loop around to read another event. */
3081 save = Vquit_flag;
3082 Vquit_flag = Qnil;
3083 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
3084 Vquit_flag = save;
3086 if (!NILP (tem))
3088 int was_locked = single_kboard;
3090 last_input_char = c;
3091 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
3093 if (CONSP (c) && EQ (XCAR (c), Qselect_window) && !end_time)
3094 /* We stopped being idle for this event; undo that. This
3095 prevents automatic window selection (under
3096 mouse_autoselect_window from acting as a real input event, for
3097 example banishing the mouse under mouse-avoidance-mode. */
3098 timer_resume_idle ();
3100 /* Resume allowing input from any kboard, if that was true before. */
3101 if (!was_locked)
3102 any_kboard_state ();
3104 goto retry;
3107 /* Handle things that only apply to characters. */
3108 if (INTEGERP (c))
3110 /* If kbd_buffer_get_event gave us an EOF, return that. */
3111 if (XINT (c) == -1)
3112 goto exit;
3114 if ((STRINGP (Vkeyboard_translate_table)
3115 && SCHARS (Vkeyboard_translate_table) > (unsigned) XFASTINT (c))
3116 || (VECTORP (Vkeyboard_translate_table)
3117 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
3118 || (CHAR_TABLE_P (Vkeyboard_translate_table)
3119 && CHAR_VALID_P (XINT (c), 0)))
3121 Lisp_Object d;
3122 d = Faref (Vkeyboard_translate_table, c);
3123 /* nil in keyboard-translate-table means no translation. */
3124 if (!NILP (d))
3125 c = d;
3129 /* If this event is a mouse click in the menu bar,
3130 return just menu-bar for now. Modify the mouse click event
3131 so we won't do this twice, then queue it up. */
3132 if (EVENT_HAS_PARAMETERS (c)
3133 && CONSP (XCDR (c))
3134 && CONSP (EVENT_START (c))
3135 && CONSP (XCDR (EVENT_START (c))))
3137 Lisp_Object posn;
3139 posn = POSN_POSN (EVENT_START (c));
3140 /* Handle menu-bar events:
3141 insert the dummy prefix event `menu-bar'. */
3142 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
3144 /* Change menu-bar to (menu-bar) as the event "position". */
3145 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
3147 also_record = c;
3148 Vunread_command_events = Fcons (c, Vunread_command_events);
3149 c = posn;
3153 /* Store these characters into recent_keys, the dribble file if any,
3154 and the keyboard macro being defined, if any. */
3155 record_char (c);
3156 if (! NILP (also_record))
3157 record_char (also_record);
3159 /* Wipe the echo area.
3160 But first, if we are about to use an input method,
3161 save the echo area contents for it to refer to. */
3162 if (INTEGERP (c)
3163 && ! NILP (Vinput_method_function)
3164 && (unsigned) XINT (c) >= ' '
3165 && (unsigned) XINT (c) != 127
3166 && (unsigned) XINT (c) < 256)
3168 previous_echo_area_message = Fcurrent_message ();
3169 Vinput_method_previous_message = previous_echo_area_message;
3172 /* Now wipe the echo area, except for help events which do their
3173 own stuff with the echo area. */
3174 if (!CONSP (c)
3175 || (!(EQ (Qhelp_echo, XCAR (c)))
3176 && !(EQ (Qswitch_frame, XCAR (c)))))
3178 if (!NILP (echo_area_buffer[0]))
3179 safe_run_hooks (Qecho_area_clear_hook);
3180 clear_message (1, 0);
3183 reread_for_input_method:
3184 from_macro:
3185 /* Pass this to the input method, if appropriate. */
3186 if (INTEGERP (c)
3187 && ! NILP (Vinput_method_function)
3188 /* Don't run the input method within a key sequence,
3189 after the first event of the key sequence. */
3190 && NILP (prev_event)
3191 && (unsigned) XINT (c) >= ' '
3192 && (unsigned) XINT (c) != 127
3193 && (unsigned) XINT (c) < 256)
3195 Lisp_Object keys;
3196 int key_count, key_count_reset;
3197 struct gcpro gcpro1;
3198 int count = SPECPDL_INDEX ();
3200 /* Save the echo status. */
3201 int saved_immediate_echo = current_kboard->immediate_echo;
3202 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
3203 Lisp_Object saved_echo_string = current_kboard->echo_string;
3204 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
3206 #if 0
3207 if (before_command_restore_flag)
3209 this_command_key_count = before_command_key_count_1;
3210 if (this_command_key_count < this_single_command_key_start)
3211 this_single_command_key_start = this_command_key_count;
3212 echo_truncate (before_command_echo_length_1);
3213 before_command_restore_flag = 0;
3215 #endif
3217 /* Save the this_command_keys status. */
3218 key_count = this_command_key_count;
3219 key_count_reset = this_command_key_count_reset;
3221 if (key_count > 0)
3222 keys = Fcopy_sequence (this_command_keys);
3223 else
3224 keys = Qnil;
3225 GCPRO1 (keys);
3227 /* Clear out this_command_keys. */
3228 this_command_key_count = 0;
3229 this_command_key_count_reset = 0;
3231 /* Now wipe the echo area. */
3232 if (!NILP (echo_area_buffer[0]))
3233 safe_run_hooks (Qecho_area_clear_hook);
3234 clear_message (1, 0);
3235 echo_truncate (0);
3237 /* If we are not reading a key sequence,
3238 never use the echo area. */
3239 if (maps == 0)
3241 specbind (Qinput_method_use_echo_area, Qt);
3244 /* Call the input method. */
3245 tem = call1 (Vinput_method_function, c);
3247 tem = unbind_to (count, tem);
3249 /* Restore the saved echoing state
3250 and this_command_keys state. */
3251 this_command_key_count = key_count;
3252 this_command_key_count_reset = key_count_reset;
3253 if (key_count > 0)
3254 this_command_keys = keys;
3256 cancel_echoing ();
3257 ok_to_echo_at_next_pause = saved_ok_to_echo;
3258 current_kboard->echo_string = saved_echo_string;
3259 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3260 if (saved_immediate_echo)
3261 echo_now ();
3263 UNGCPRO;
3265 /* The input method can return no events. */
3266 if (! CONSP (tem))
3268 /* Bring back the previous message, if any. */
3269 if (! NILP (previous_echo_area_message))
3270 message_with_string ("%s", previous_echo_area_message, 0);
3271 goto retry;
3273 /* It returned one event or more. */
3274 c = XCAR (tem);
3275 Vunread_post_input_method_events
3276 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3279 reread_first:
3281 /* Display help if not echoing. */
3282 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3284 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3285 Lisp_Object help, object, position, window, tem;
3287 tem = Fcdr (XCDR (c));
3288 help = Fcar (tem);
3289 tem = Fcdr (tem);
3290 window = Fcar (tem);
3291 tem = Fcdr (tem);
3292 object = Fcar (tem);
3293 tem = Fcdr (tem);
3294 position = Fcar (tem);
3296 show_help_echo (help, window, object, position, 0);
3298 /* We stopped being idle for this event; undo that. */
3299 if (!end_time)
3300 timer_resume_idle ();
3301 goto retry;
3304 if ((! reread || this_command_key_count == 0
3305 || this_command_key_count_reset)
3306 && !end_time)
3309 /* Don't echo mouse motion events. */
3310 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3311 && NILP (Fzerop (Vecho_keystrokes))
3312 && ! (EVENT_HAS_PARAMETERS (c)
3313 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3315 echo_char (c);
3316 if (! NILP (also_record))
3317 echo_char (also_record);
3318 /* Once we reread a character, echoing can happen
3319 the next time we pause to read a new one. */
3320 ok_to_echo_at_next_pause = current_kboard;
3323 /* Record this character as part of the current key. */
3324 add_command_key (c);
3325 if (! NILP (also_record))
3326 add_command_key (also_record);
3329 last_input_char = c;
3330 num_input_events++;
3332 /* Process the help character specially if enabled */
3333 if (!NILP (Vhelp_form) && help_char_p (c))
3335 Lisp_Object tem0;
3336 count = SPECPDL_INDEX ();
3338 help_form_saved_window_configs
3339 = Fcons (Fcurrent_window_configuration (Qnil),
3340 help_form_saved_window_configs);
3341 record_unwind_protect (read_char_help_form_unwind, Qnil);
3343 tem0 = Feval (Vhelp_form);
3344 if (STRINGP (tem0))
3345 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3347 cancel_echoing ();
3350 c = read_char (0, 0, 0, Qnil, 0, NULL);
3351 if (EVENT_HAS_PARAMETERS (c)
3352 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_click))
3353 XSETCAR (help_form_saved_window_configs, Qnil);
3355 while (BUFFERP (c));
3356 /* Remove the help from the frame */
3357 unbind_to (count, Qnil);
3359 redisplay ();
3360 if (EQ (c, make_number (040)))
3362 cancel_echoing ();
3364 c = read_char (0, 0, 0, Qnil, 0, NULL);
3365 while (BUFFERP (c));
3369 exit:
3370 RESUME_POLLING;
3371 RETURN_UNGCPRO (c);
3374 /* Record a key that came from a mouse menu.
3375 Record it for echoing, for this-command-keys, and so on. */
3377 static void
3378 record_menu_key (c)
3379 Lisp_Object c;
3381 /* Wipe the echo area. */
3382 clear_message (1, 0);
3384 record_char (c);
3386 #if 0
3387 before_command_key_count = this_command_key_count;
3388 before_command_echo_length = echo_length ();
3389 #endif
3391 /* Don't echo mouse motion events. */
3392 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3393 && NILP (Fzerop (Vecho_keystrokes)))
3395 echo_char (c);
3397 /* Once we reread a character, echoing can happen
3398 the next time we pause to read a new one. */
3399 ok_to_echo_at_next_pause = 0;
3402 /* Record this character as part of the current key. */
3403 add_command_key (c);
3405 /* Re-reading in the middle of a command */
3406 last_input_char = c;
3407 num_input_events++;
3410 /* Return 1 if should recognize C as "the help character". */
3413 help_char_p (c)
3414 Lisp_Object c;
3416 Lisp_Object tail;
3418 if (EQ (c, Vhelp_char))
3419 return 1;
3420 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3421 if (EQ (c, XCAR (tail)))
3422 return 1;
3423 return 0;
3426 /* Record the input event C in various ways. */
3428 static void
3429 record_char (c)
3430 Lisp_Object c;
3432 int recorded = 0;
3434 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3436 /* To avoid filling recent_keys with help-echo and mouse-movement
3437 events, we filter out repeated help-echo events, only store the
3438 first and last in a series of mouse-movement events, and don't
3439 store repeated help-echo events which are only separated by
3440 mouse-movement events. */
3442 Lisp_Object ev1, ev2, ev3;
3443 int ix1, ix2, ix3;
3445 if ((ix1 = recent_keys_index - 1) < 0)
3446 ix1 = NUM_RECENT_KEYS - 1;
3447 ev1 = AREF (recent_keys, ix1);
3449 if ((ix2 = ix1 - 1) < 0)
3450 ix2 = NUM_RECENT_KEYS - 1;
3451 ev2 = AREF (recent_keys, ix2);
3453 if ((ix3 = ix2 - 1) < 0)
3454 ix3 = NUM_RECENT_KEYS - 1;
3455 ev3 = AREF (recent_keys, ix3);
3457 if (EQ (XCAR (c), Qhelp_echo))
3459 /* Don't record `help-echo' in recent_keys unless it shows some help
3460 message, and a different help than the previously recorded
3461 event. */
3462 Lisp_Object help, last_help;
3464 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3465 if (!STRINGP (help))
3466 recorded = 1;
3467 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3468 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3469 recorded = 1;
3470 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3471 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3472 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3473 recorded = -1;
3474 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3475 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3476 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3477 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3478 recorded = -2;
3480 else if (EQ (XCAR (c), Qmouse_movement))
3482 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3483 So additional mouse movement events replace the last element. */
3484 Lisp_Object last_window, window;
3486 window = Fcar_safe (Fcar_safe (XCDR (c)));
3487 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3488 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3489 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3490 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3492 ASET (recent_keys, ix1, c);
3493 recorded = 1;
3497 else
3498 store_kbd_macro_char (c);
3500 if (!recorded)
3502 total_keys++;
3503 ASET (recent_keys, recent_keys_index, c);
3504 if (++recent_keys_index >= NUM_RECENT_KEYS)
3505 recent_keys_index = 0;
3507 else if (recorded < 0)
3509 /* We need to remove one or two events from recent_keys.
3510 To do this, we simply put nil at those events and move the
3511 recent_keys_index backwards over those events. Usually,
3512 users will never see those nil events, as they will be
3513 overwritten by the command keys entered to see recent_keys
3514 (e.g. C-h l). */
3516 while (recorded++ < 0 && total_keys > 0)
3518 if (total_keys < NUM_RECENT_KEYS)
3519 total_keys--;
3520 if (--recent_keys_index < 0)
3521 recent_keys_index = NUM_RECENT_KEYS - 1;
3522 ASET (recent_keys, recent_keys_index, Qnil);
3526 num_nonmacro_input_events++;
3528 /* Write c to the dribble file. If c is a lispy event, write
3529 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3530 If you, dear reader, have a better idea, you've got the source. :-) */
3531 if (dribble)
3533 BLOCK_INPUT;
3534 if (INTEGERP (c))
3536 if (XUINT (c) < 0x100)
3537 putc (XINT (c), dribble);
3538 else
3539 fprintf (dribble, " 0x%x", (int) XUINT (c));
3541 else
3543 Lisp_Object dribblee;
3545 /* If it's a structured event, take the event header. */
3546 dribblee = EVENT_HEAD (c);
3548 if (SYMBOLP (dribblee))
3550 putc ('<', dribble);
3551 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3552 SBYTES (SYMBOL_NAME (dribblee)),
3553 dribble);
3554 putc ('>', dribble);
3558 fflush (dribble);
3559 UNBLOCK_INPUT;
3563 Lisp_Object
3564 print_help (object)
3565 Lisp_Object object;
3567 struct buffer *old = current_buffer;
3568 Fprinc (object, Qnil);
3569 set_buffer_internal (XBUFFER (Vstandard_output));
3570 call0 (intern ("help-mode"));
3571 set_buffer_internal (old);
3572 return Qnil;
3575 /* Copy out or in the info on where C-g should throw to.
3576 This is used when running Lisp code from within get_char,
3577 in case get_char is called recursively.
3578 See read_process_output. */
3580 static void
3581 save_getcjmp (temp)
3582 jmp_buf temp;
3584 bcopy (getcjmp, temp, sizeof getcjmp);
3587 static void
3588 restore_getcjmp (temp)
3589 jmp_buf temp;
3591 bcopy (temp, getcjmp, sizeof getcjmp);
3594 /* Low level keyboard/mouse input.
3595 kbd_buffer_store_event places events in kbd_buffer, and
3596 kbd_buffer_get_event retrieves them. */
3598 /* Return true if there are any events in the queue that read-char
3599 would return. If this returns false, a read-char would block. */
3600 static int
3601 readable_events (flags)
3602 int flags;
3604 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3605 timer_check (1);
3607 /* If the buffer contains only FOCUS_IN_EVENT events, and
3608 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3609 if (kbd_fetch_ptr != kbd_store_ptr)
3611 if (flags & (READABLE_EVENTS_FILTER_EVENTS
3612 #ifdef USE_TOOLKIT_SCROLL_BARS
3613 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3614 #endif
3617 struct input_event *event;
3619 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3620 ? kbd_fetch_ptr
3621 : kbd_buffer);
3625 if (!(
3626 #ifdef USE_TOOLKIT_SCROLL_BARS
3627 (flags & READABLE_EVENTS_FILTER_EVENTS) &&
3628 #endif
3629 event->kind == FOCUS_IN_EVENT)
3630 #ifdef USE_TOOLKIT_SCROLL_BARS
3631 && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3632 && event->kind == SCROLL_BAR_CLICK_EVENT
3633 && event->part == scroll_bar_handle
3634 && event->modifiers == 0)
3635 #endif
3637 return 1;
3638 event++;
3639 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3640 event = kbd_buffer;
3642 while (event != kbd_store_ptr);
3644 else
3645 return 1;
3648 #ifdef HAVE_MOUSE
3649 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3650 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3651 return 1;
3652 #endif
3653 if (single_kboard)
3655 if (current_kboard->kbd_queue_has_data)
3656 return 1;
3658 else
3660 KBOARD *kb;
3661 for (kb = all_kboards; kb; kb = kb->next_kboard)
3662 if (kb->kbd_queue_has_data)
3663 return 1;
3665 return 0;
3668 /* Set this for debugging, to have a way to get out */
3669 int stop_character;
3671 #ifdef MULTI_KBOARD
3672 static KBOARD *
3673 event_to_kboard (event)
3674 struct input_event *event;
3676 Lisp_Object frame;
3677 frame = event->frame_or_window;
3678 if (CONSP (frame))
3679 frame = XCAR (frame);
3680 else if (WINDOWP (frame))
3681 frame = WINDOW_FRAME (XWINDOW (frame));
3683 /* There are still some events that don't set this field.
3684 For now, just ignore the problem.
3685 Also ignore dead frames here. */
3686 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3687 return 0;
3688 else
3689 return FRAME_KBOARD (XFRAME (frame));
3691 #endif
3694 Lisp_Object Vthrow_on_input;
3696 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3698 void
3699 kbd_buffer_store_event (event)
3700 register struct input_event *event;
3702 kbd_buffer_store_event_hold (event, 0);
3705 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3707 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3708 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3709 Else, if EVENT is a quit event, store the quit event
3710 in HOLD_QUIT, and return (thus ignoring further events).
3712 This is used in read_avail_input to postpone the processing
3713 of the quit event until all subsequent input events have been
3714 parsed (and discarded).
3717 void
3718 kbd_buffer_store_event_hold (event, hold_quit)
3719 register struct input_event *event;
3720 struct input_event *hold_quit;
3722 if (event->kind == NO_EVENT)
3723 abort ();
3725 if (hold_quit && hold_quit->kind != NO_EVENT)
3726 return;
3728 if (event->kind == ASCII_KEYSTROKE_EVENT)
3730 register int c = event->code & 0377;
3732 if (event->modifiers & ctrl_modifier)
3733 c = make_ctrl_char (c);
3735 c |= (event->modifiers
3736 & (meta_modifier | alt_modifier
3737 | hyper_modifier | super_modifier));
3739 if (c == quit_char)
3741 #ifdef MULTI_KBOARD
3742 KBOARD *kb;
3743 struct input_event *sp;
3745 if (single_kboard
3746 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3747 kb != current_kboard))
3749 kb->kbd_queue
3750 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3751 Fcons (make_number (c), Qnil));
3752 kb->kbd_queue_has_data = 1;
3753 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3755 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3756 sp = kbd_buffer;
3758 if (event_to_kboard (sp) == kb)
3760 sp->kind = NO_EVENT;
3761 sp->frame_or_window = Qnil;
3762 sp->arg = Qnil;
3765 return;
3767 #endif
3769 if (hold_quit)
3771 bcopy (event, (char *) hold_quit, sizeof (*event));
3772 return;
3775 /* If this results in a quit_char being returned to Emacs as
3776 input, set Vlast_event_frame properly. If this doesn't
3777 get returned to Emacs as an event, the next event read
3778 will set Vlast_event_frame again, so this is safe to do. */
3780 Lisp_Object focus;
3782 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3783 if (NILP (focus))
3784 focus = event->frame_or_window;
3785 internal_last_event_frame = focus;
3786 Vlast_event_frame = focus;
3789 last_event_timestamp = event->timestamp;
3790 interrupt_signal (0 /* dummy */);
3791 return;
3794 if (c && c == stop_character)
3796 sys_suspend ();
3797 return;
3800 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3801 Just ignore the second one. */
3802 else if (event->kind == BUFFER_SWITCH_EVENT
3803 && kbd_fetch_ptr != kbd_store_ptr
3804 && ((kbd_store_ptr == kbd_buffer
3805 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3806 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3807 return;
3809 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3810 kbd_store_ptr = kbd_buffer;
3812 /* Don't let the very last slot in the buffer become full,
3813 since that would make the two pointers equal,
3814 and that is indistinguishable from an empty buffer.
3815 Discard the event if it would fill the last slot. */
3816 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3818 *kbd_store_ptr = *event;
3819 ++kbd_store_ptr;
3822 /* If we're inside while-no-input, and this event qualifies
3823 as input, set quit-flag to cause an interrupt. */
3824 if (!NILP (Vthrow_on_input)
3825 && event->kind != FOCUS_IN_EVENT
3826 && event->kind != HELP_EVENT
3827 && event->kind != DEICONIFY_EVENT)
3829 Vquit_flag = Vthrow_on_input;
3830 /* If we're inside a function that wants immediate quits,
3831 do it now. */
3832 if (immediate_quit && NILP (Vinhibit_quit))
3834 immediate_quit = 0;
3835 sigfree ();
3836 QUIT;
3842 /* Put an input event back in the head of the event queue. */
3844 void
3845 kbd_buffer_unget_event (event)
3846 register struct input_event *event;
3848 if (kbd_fetch_ptr == kbd_buffer)
3849 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3851 /* Don't let the very last slot in the buffer become full, */
3852 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3854 --kbd_fetch_ptr;
3855 *kbd_fetch_ptr = *event;
3860 /* Generate HELP_EVENT input_events in BUFP which has room for
3861 SIZE events. If there's not enough room in BUFP, ignore this
3862 event.
3864 HELP is the help form.
3866 FRAME is the frame on which the help is generated. OBJECT is the
3867 Lisp object where the help was found (a buffer, a string, an
3868 overlay, or nil if neither from a string nor from a buffer. POS is
3869 the position within OBJECT where the help was found.
3871 Value is the number of input_events generated. */
3873 void
3874 gen_help_event (help, frame, window, object, pos)
3875 Lisp_Object help, frame, object, window;
3876 int pos;
3878 struct input_event event;
3880 EVENT_INIT (event);
3882 event.kind = HELP_EVENT;
3883 event.frame_or_window = frame;
3884 event.arg = object;
3885 event.x = WINDOWP (window) ? window : frame;
3886 event.y = help;
3887 event.code = pos;
3888 kbd_buffer_store_event (&event);
3892 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3894 void
3895 kbd_buffer_store_help_event (frame, help)
3896 Lisp_Object frame, help;
3898 struct input_event event;
3900 event.kind = HELP_EVENT;
3901 event.frame_or_window = frame;
3902 event.arg = Qnil;
3903 event.x = Qnil;
3904 event.y = help;
3905 event.code = 0;
3906 kbd_buffer_store_event (&event);
3910 /* Discard any mouse events in the event buffer by setting them to
3911 NO_EVENT. */
3912 void
3913 discard_mouse_events ()
3915 struct input_event *sp;
3916 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3918 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3919 sp = kbd_buffer;
3921 if (sp->kind == MOUSE_CLICK_EVENT
3922 || sp->kind == WHEEL_EVENT
3923 #ifdef WINDOWSNT
3924 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
3925 #endif
3926 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3928 sp->kind = NO_EVENT;
3934 /* Return non-zero if there are any real events waiting in the event
3935 buffer, not counting `NO_EVENT's.
3937 If DISCARD is non-zero, discard NO_EVENT events at the front of
3938 the input queue, possibly leaving the input queue empty if there
3939 are no real input events. */
3942 kbd_buffer_events_waiting (discard)
3943 int discard;
3945 struct input_event *sp;
3947 for (sp = kbd_fetch_ptr;
3948 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3949 ++sp)
3951 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3952 sp = kbd_buffer;
3955 if (discard)
3956 kbd_fetch_ptr = sp;
3958 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3962 /* Clear input event EVENT. */
3964 static INLINE void
3965 clear_event (event)
3966 struct input_event *event;
3968 event->kind = NO_EVENT;
3972 /* Read one event from the event buffer, waiting if necessary.
3973 The value is a Lisp object representing the event.
3974 The value is nil for an event that should be ignored,
3975 or that was handled here.
3976 We always read and discard one event. */
3978 static Lisp_Object
3979 kbd_buffer_get_event (kbp, used_mouse_menu, end_time)
3980 KBOARD **kbp;
3981 int *used_mouse_menu;
3982 EMACS_TIME *end_time;
3984 register int c;
3985 Lisp_Object obj;
3987 if (noninteractive)
3989 c = getchar ();
3990 XSETINT (obj, c);
3991 *kbp = current_kboard;
3992 return obj;
3995 /* Wait until there is input available. */
3996 for (;;)
3998 if (kbd_fetch_ptr != kbd_store_ptr)
3999 break;
4000 #ifdef HAVE_MOUSE
4001 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4002 break;
4003 #endif
4005 /* If the quit flag is set, then read_char will return
4006 quit_char, so that counts as "available input." */
4007 if (!NILP (Vquit_flag))
4008 quit_throw_to_read_char ();
4010 /* One way or another, wait until input is available; then, if
4011 interrupt handlers have not read it, read it now. */
4013 #ifdef OLDVMS
4014 wait_for_kbd_input ();
4015 #else
4016 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4017 #ifdef SIGIO
4018 gobble_input (0);
4019 #endif /* SIGIO */
4020 if (kbd_fetch_ptr != kbd_store_ptr)
4021 break;
4022 #ifdef HAVE_MOUSE
4023 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4024 break;
4025 #endif
4026 if (end_time)
4028 EMACS_TIME duration;
4029 EMACS_GET_TIME (duration);
4030 if (EMACS_TIME_GE (duration, *end_time))
4031 return Qnil; /* finished waiting */
4032 else
4034 EMACS_SUB_TIME (duration, *end_time, duration);
4035 wait_reading_process_output (EMACS_SECS (duration),
4036 EMACS_USECS (duration),
4037 -1, 1, Qnil, NULL, 0);
4040 else
4041 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0);
4043 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
4044 /* Pass 1 for EXPECT since we just waited to have input. */
4045 read_avail_input (1);
4046 #endif /* not VMS */
4049 if (CONSP (Vunread_command_events))
4051 Lisp_Object first;
4052 first = XCAR (Vunread_command_events);
4053 Vunread_command_events = XCDR (Vunread_command_events);
4054 *kbp = current_kboard;
4055 return first;
4058 /* At this point, we know that there is a readable event available
4059 somewhere. If the event queue is empty, then there must be a
4060 mouse movement enabled and available. */
4061 if (kbd_fetch_ptr != kbd_store_ptr)
4063 struct input_event *event;
4065 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4066 ? kbd_fetch_ptr
4067 : kbd_buffer);
4069 last_event_timestamp = event->timestamp;
4071 #ifdef MULTI_KBOARD
4072 *kbp = event_to_kboard (event);
4073 if (*kbp == 0)
4074 *kbp = current_kboard; /* Better than returning null ptr? */
4075 #else
4076 *kbp = &the_only_kboard;
4077 #endif
4079 obj = Qnil;
4081 /* These two kinds of events get special handling
4082 and don't actually appear to the command loop.
4083 We return nil for them. */
4084 if (event->kind == SELECTION_REQUEST_EVENT
4085 || event->kind == SELECTION_CLEAR_EVENT)
4087 #ifdef HAVE_X11
4088 struct input_event copy;
4090 /* Remove it from the buffer before processing it,
4091 since otherwise swallow_events will see it
4092 and process it again. */
4093 copy = *event;
4094 kbd_fetch_ptr = event + 1;
4095 input_pending = readable_events (0);
4096 x_handle_selection_event (&copy);
4097 #else
4098 /* We're getting selection request events, but we don't have
4099 a window system. */
4100 abort ();
4101 #endif
4104 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4105 else if (event->kind == DELETE_WINDOW_EVENT)
4107 /* Make an event (delete-frame (FRAME)). */
4108 obj = Fcons (event->frame_or_window, Qnil);
4109 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
4110 kbd_fetch_ptr = event + 1;
4112 #endif
4113 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4114 else if (event->kind == ICONIFY_EVENT)
4116 /* Make an event (iconify-frame (FRAME)). */
4117 obj = Fcons (event->frame_or_window, Qnil);
4118 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
4119 kbd_fetch_ptr = event + 1;
4121 else if (event->kind == DEICONIFY_EVENT)
4123 /* Make an event (make-frame-visible (FRAME)). */
4124 obj = Fcons (event->frame_or_window, Qnil);
4125 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
4126 kbd_fetch_ptr = event + 1;
4128 #endif
4129 else if (event->kind == BUFFER_SWITCH_EVENT)
4131 /* The value doesn't matter here; only the type is tested. */
4132 XSETBUFFER (obj, current_buffer);
4133 kbd_fetch_ptr = event + 1;
4135 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
4136 || defined (USE_GTK)
4137 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
4139 kbd_fetch_ptr = event + 1;
4140 input_pending = readable_events (0);
4141 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
4142 x_activate_menubar (XFRAME (event->frame_or_window));
4144 #endif
4145 #if defined (WINDOWSNT) || defined (MAC_OS)
4146 else if (event->kind == LANGUAGE_CHANGE_EVENT)
4148 #ifdef MAC_OS
4149 /* Make an event (language-change (KEY_SCRIPT)). */
4150 obj = Fcons (make_number (event->code), Qnil);
4151 #else
4152 /* Make an event (language-change (FRAME CHARSET LCID)). */
4153 obj = Fcons (event->frame_or_window, Qnil);
4154 #endif
4155 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
4156 kbd_fetch_ptr = event + 1;
4158 #endif
4159 else if (event->kind == SAVE_SESSION_EVENT)
4161 obj = Fcons (Qsave_session, Qnil);
4162 kbd_fetch_ptr = event + 1;
4164 /* Just discard these, by returning nil.
4165 With MULTI_KBOARD, these events are used as placeholders
4166 when we need to randomly delete events from the queue.
4167 (They shouldn't otherwise be found in the buffer,
4168 but on some machines it appears they do show up
4169 even without MULTI_KBOARD.) */
4170 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4171 mouse events during a popup-menu call. */
4172 else if (event->kind == NO_EVENT)
4173 kbd_fetch_ptr = event + 1;
4174 else if (event->kind == HELP_EVENT)
4176 Lisp_Object object, position, help, frame, window;
4178 frame = event->frame_or_window;
4179 object = event->arg;
4180 position = make_number (event->code);
4181 window = event->x;
4182 help = event->y;
4183 clear_event (event);
4185 kbd_fetch_ptr = event + 1;
4186 if (!WINDOWP (window))
4187 window = Qnil;
4188 obj = Fcons (Qhelp_echo,
4189 list5 (frame, help, window, object, position));
4191 else if (event->kind == FOCUS_IN_EVENT)
4193 /* Notification of a FocusIn event. The frame receiving the
4194 focus is in event->frame_or_window. Generate a
4195 switch-frame event if necessary. */
4196 Lisp_Object frame, focus;
4198 frame = event->frame_or_window;
4199 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4200 if (FRAMEP (focus))
4201 frame = focus;
4203 if (!EQ (frame, internal_last_event_frame)
4204 && !EQ (frame, selected_frame))
4205 obj = make_lispy_switch_frame (frame);
4206 internal_last_event_frame = frame;
4207 kbd_fetch_ptr = event + 1;
4209 else
4211 /* If this event is on a different frame, return a switch-frame this
4212 time, and leave the event in the queue for next time. */
4213 Lisp_Object frame;
4214 Lisp_Object focus;
4216 frame = event->frame_or_window;
4217 if (CONSP (frame))
4218 frame = XCAR (frame);
4219 else if (WINDOWP (frame))
4220 frame = WINDOW_FRAME (XWINDOW (frame));
4222 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4223 if (! NILP (focus))
4224 frame = focus;
4226 if (! EQ (frame, internal_last_event_frame)
4227 && !EQ (frame, selected_frame))
4228 obj = make_lispy_switch_frame (frame);
4229 internal_last_event_frame = frame;
4231 /* If we didn't decide to make a switch-frame event, go ahead
4232 and build a real event from the queue entry. */
4234 if (NILP (obj))
4236 obj = make_lispy_event (event);
4238 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4239 || defined (USE_GTK)
4240 /* If this was a menu selection, then set the flag to inhibit
4241 writing to last_nonmenu_event. Don't do this if the event
4242 we're returning is (menu-bar), though; that indicates the
4243 beginning of the menu sequence, and we might as well leave
4244 that as the `event with parameters' for this selection. */
4245 if (used_mouse_menu
4246 && !EQ (event->frame_or_window, event->arg)
4247 && (event->kind == MENU_BAR_EVENT
4248 || event->kind == TOOL_BAR_EVENT))
4249 *used_mouse_menu = 1;
4250 #endif
4252 /* Wipe out this event, to catch bugs. */
4253 clear_event (event);
4254 kbd_fetch_ptr = event + 1;
4258 #ifdef HAVE_MOUSE
4259 /* Try generating a mouse motion event. */
4260 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4262 FRAME_PTR f = some_mouse_moved ();
4263 Lisp_Object bar_window;
4264 enum scroll_bar_part part;
4265 Lisp_Object x, y;
4266 unsigned long time;
4268 *kbp = current_kboard;
4269 /* Note that this uses F to determine which display to look at.
4270 If there is no valid info, it does not store anything
4271 so x remains nil. */
4272 x = Qnil;
4273 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
4275 obj = Qnil;
4277 /* Decide if we should generate a switch-frame event. Don't
4278 generate switch-frame events for motion outside of all Emacs
4279 frames. */
4280 if (!NILP (x) && f)
4282 Lisp_Object frame;
4284 frame = FRAME_FOCUS_FRAME (f);
4285 if (NILP (frame))
4286 XSETFRAME (frame, f);
4288 if (! EQ (frame, internal_last_event_frame)
4289 && !EQ (frame, selected_frame))
4290 obj = make_lispy_switch_frame (frame);
4291 internal_last_event_frame = frame;
4294 /* If we didn't decide to make a switch-frame event, go ahead and
4295 return a mouse-motion event. */
4296 if (!NILP (x) && NILP (obj))
4297 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4299 #endif /* HAVE_MOUSE */
4300 else
4301 /* We were promised by the above while loop that there was
4302 something for us to read! */
4303 abort ();
4305 input_pending = readable_events (0);
4307 Vlast_event_frame = internal_last_event_frame;
4309 return (obj);
4312 /* Process any events that are not user-visible,
4313 then return, without reading any user-visible events. */
4315 void
4316 swallow_events (do_display)
4317 int do_display;
4319 int old_timers_run;
4321 while (kbd_fetch_ptr != kbd_store_ptr)
4323 struct input_event *event;
4325 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4326 ? kbd_fetch_ptr
4327 : kbd_buffer);
4329 last_event_timestamp = event->timestamp;
4331 /* These two kinds of events get special handling
4332 and don't actually appear to the command loop. */
4333 if (event->kind == SELECTION_REQUEST_EVENT
4334 || event->kind == SELECTION_CLEAR_EVENT)
4336 #ifdef HAVE_X11
4337 struct input_event copy;
4339 /* Remove it from the buffer before processing it,
4340 since otherwise swallow_events called recursively could see it
4341 and process it again. */
4342 copy = *event;
4343 kbd_fetch_ptr = event + 1;
4344 input_pending = readable_events (0);
4345 x_handle_selection_event (&copy);
4346 #else
4347 /* We're getting selection request events, but we don't have
4348 a window system. */
4349 abort ();
4350 #endif
4352 else
4353 break;
4356 old_timers_run = timers_run;
4357 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
4359 if (timers_run != old_timers_run && do_display)
4360 redisplay_preserve_echo_area (7);
4363 /* Record the start of when Emacs is idle,
4364 for the sake of running idle-time timers. */
4366 static void
4367 timer_start_idle ()
4369 Lisp_Object timers;
4371 /* If we are already in the idle state, do nothing. */
4372 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4373 return;
4375 EMACS_GET_TIME (timer_idleness_start_time);
4377 timer_last_idleness_start_time = timer_idleness_start_time;
4379 /* Mark all idle-time timers as once again candidates for running. */
4380 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4382 Lisp_Object timer;
4384 timer = XCAR (timers);
4386 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4387 continue;
4388 XVECTOR (timer)->contents[0] = Qnil;
4392 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4394 static void
4395 timer_stop_idle ()
4397 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4400 /* Resume idle timer from last idle start time. */
4402 static void
4403 timer_resume_idle ()
4405 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4406 return;
4408 timer_idleness_start_time = timer_last_idleness_start_time;
4411 /* This is only for debugging. */
4412 struct input_event last_timer_event;
4414 /* Check whether a timer has fired. To prevent larger problems we simply
4415 disregard elements that are not proper timers. Do not make a circular
4416 timer list for the time being.
4418 Returns the number of seconds to wait until the next timer fires. If a
4419 timer is triggering now, return zero seconds.
4420 If no timer is active, return -1 seconds.
4422 If a timer is ripe, we run it, with quitting turned off.
4424 DO_IT_NOW is now ignored. It used to mean that we should
4425 run the timer directly instead of queueing a timer-event.
4426 Now we always run timers directly. */
4428 EMACS_TIME
4429 timer_check (do_it_now)
4430 int do_it_now;
4432 EMACS_TIME nexttime;
4433 EMACS_TIME now, idleness_now;
4434 Lisp_Object timers, idle_timers, chosen_timer;
4435 struct gcpro gcpro1, gcpro2, gcpro3;
4437 EMACS_SET_SECS (nexttime, -1);
4438 EMACS_SET_USECS (nexttime, -1);
4440 /* Always consider the ordinary timers. */
4441 timers = Vtimer_list;
4442 /* Consider the idle timers only if Emacs is idle. */
4443 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4444 idle_timers = Vtimer_idle_list;
4445 else
4446 idle_timers = Qnil;
4447 chosen_timer = Qnil;
4448 GCPRO3 (timers, idle_timers, chosen_timer);
4450 if (CONSP (timers) || CONSP (idle_timers))
4452 EMACS_GET_TIME (now);
4453 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4454 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4457 while (CONSP (timers) || CONSP (idle_timers))
4459 Lisp_Object *vector;
4460 Lisp_Object timer = Qnil, idle_timer = Qnil;
4461 EMACS_TIME timer_time, idle_timer_time;
4462 EMACS_TIME difference, timer_difference, idle_timer_difference;
4464 /* Skip past invalid timers and timers already handled. */
4465 if (!NILP (timers))
4467 timer = XCAR (timers);
4468 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4470 timers = XCDR (timers);
4471 continue;
4473 vector = XVECTOR (timer)->contents;
4475 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4476 || !INTEGERP (vector[3])
4477 || ! NILP (vector[0]))
4479 timers = XCDR (timers);
4480 continue;
4483 if (!NILP (idle_timers))
4485 timer = XCAR (idle_timers);
4486 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4488 idle_timers = XCDR (idle_timers);
4489 continue;
4491 vector = XVECTOR (timer)->contents;
4493 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4494 || !INTEGERP (vector[3])
4495 || ! NILP (vector[0]))
4497 idle_timers = XCDR (idle_timers);
4498 continue;
4502 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4503 based on the next ordinary timer.
4504 TIMER_DIFFERENCE is the distance in time from NOW to when
4505 this timer becomes ripe (negative if it's already ripe). */
4506 if (!NILP (timers))
4508 timer = XCAR (timers);
4509 vector = XVECTOR (timer)->contents;
4510 EMACS_SET_SECS (timer_time,
4511 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4512 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4513 EMACS_SUB_TIME (timer_difference, timer_time, now);
4516 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4517 based on the next idle timer. */
4518 if (!NILP (idle_timers))
4520 idle_timer = XCAR (idle_timers);
4521 vector = XVECTOR (idle_timer)->contents;
4522 EMACS_SET_SECS (idle_timer_time,
4523 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4524 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4525 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4528 /* Decide which timer is the next timer,
4529 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4530 Also step down the list where we found that timer. */
4532 if (! NILP (timers) && ! NILP (idle_timers))
4534 EMACS_TIME temp;
4535 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4536 if (EMACS_TIME_NEG_P (temp))
4538 chosen_timer = timer;
4539 timers = XCDR (timers);
4540 difference = timer_difference;
4542 else
4544 chosen_timer = idle_timer;
4545 idle_timers = XCDR (idle_timers);
4546 difference = idle_timer_difference;
4549 else if (! NILP (timers))
4551 chosen_timer = timer;
4552 timers = XCDR (timers);
4553 difference = timer_difference;
4555 else
4557 chosen_timer = idle_timer;
4558 idle_timers = XCDR (idle_timers);
4559 difference = idle_timer_difference;
4561 vector = XVECTOR (chosen_timer)->contents;
4563 /* If timer is ripe, run it if it hasn't been run. */
4564 if (EMACS_TIME_NEG_P (difference)
4565 || (EMACS_SECS (difference) == 0
4566 && EMACS_USECS (difference) == 0))
4568 if (NILP (vector[0]))
4570 int was_locked = single_kboard;
4571 int count = SPECPDL_INDEX ();
4572 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4574 /* Mark the timer as triggered to prevent problems if the lisp
4575 code fails to reschedule it right. */
4576 vector[0] = Qt;
4578 specbind (Qinhibit_quit, Qt);
4580 call1 (Qtimer_event_handler, chosen_timer);
4581 Vdeactivate_mark = old_deactivate_mark;
4582 timers_run++;
4583 unbind_to (count, Qnil);
4585 /* Resume allowing input from any kboard, if that was true before. */
4586 if (!was_locked)
4587 any_kboard_state ();
4589 /* Since we have handled the event,
4590 we don't need to tell the caller to wake up and do it. */
4593 else
4594 /* When we encounter a timer that is still waiting,
4595 return the amount of time to wait before it is ripe. */
4597 UNGCPRO;
4598 return difference;
4602 /* No timers are pending in the future. */
4603 /* Return 0 if we generated an event, and -1 if not. */
4604 UNGCPRO;
4605 return nexttime;
4608 DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0,
4609 doc: /* Return the current length of Emacs idleness.
4610 The value is returned as a list of three integers. The first has the
4611 most significant 16 bits of the seconds, while the second has the
4612 least significant 16 bits. The third integer gives the microsecond
4613 count.
4615 The microsecond count is zero on systems that do not provide
4616 resolution finer than a second. */)
4619 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4621 EMACS_TIME now, idleness_now;
4623 EMACS_GET_TIME (now);
4624 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4626 return list3 (make_number ((EMACS_SECS (idleness_now) >> 16) & 0xffff),
4627 make_number ((EMACS_SECS (idleness_now) >> 0) & 0xffff),
4628 make_number (EMACS_USECS (idleness_now)));
4631 return Qnil;
4634 /* Caches for modify_event_symbol. */
4635 static Lisp_Object accent_key_syms;
4636 static Lisp_Object func_key_syms;
4637 static Lisp_Object mouse_syms;
4638 static Lisp_Object wheel_syms;
4639 static Lisp_Object drag_n_drop_syms;
4641 /* This is a list of keysym codes for special "accent" characters.
4642 It parallels lispy_accent_keys. */
4644 static int lispy_accent_codes[] =
4646 #ifdef XK_dead_circumflex
4647 XK_dead_circumflex,
4648 #else
4650 #endif
4651 #ifdef XK_dead_grave
4652 XK_dead_grave,
4653 #else
4655 #endif
4656 #ifdef XK_dead_tilde
4657 XK_dead_tilde,
4658 #else
4660 #endif
4661 #ifdef XK_dead_diaeresis
4662 XK_dead_diaeresis,
4663 #else
4665 #endif
4666 #ifdef XK_dead_macron
4667 XK_dead_macron,
4668 #else
4670 #endif
4671 #ifdef XK_dead_degree
4672 XK_dead_degree,
4673 #else
4675 #endif
4676 #ifdef XK_dead_acute
4677 XK_dead_acute,
4678 #else
4680 #endif
4681 #ifdef XK_dead_cedilla
4682 XK_dead_cedilla,
4683 #else
4685 #endif
4686 #ifdef XK_dead_breve
4687 XK_dead_breve,
4688 #else
4690 #endif
4691 #ifdef XK_dead_ogonek
4692 XK_dead_ogonek,
4693 #else
4695 #endif
4696 #ifdef XK_dead_caron
4697 XK_dead_caron,
4698 #else
4700 #endif
4701 #ifdef XK_dead_doubleacute
4702 XK_dead_doubleacute,
4703 #else
4705 #endif
4706 #ifdef XK_dead_abovedot
4707 XK_dead_abovedot,
4708 #else
4710 #endif
4711 #ifdef XK_dead_abovering
4712 XK_dead_abovering,
4713 #else
4715 #endif
4716 #ifdef XK_dead_iota
4717 XK_dead_iota,
4718 #else
4720 #endif
4721 #ifdef XK_dead_belowdot
4722 XK_dead_belowdot,
4723 #else
4725 #endif
4726 #ifdef XK_dead_voiced_sound
4727 XK_dead_voiced_sound,
4728 #else
4730 #endif
4731 #ifdef XK_dead_semivoiced_sound
4732 XK_dead_semivoiced_sound,
4733 #else
4735 #endif
4736 #ifdef XK_dead_hook
4737 XK_dead_hook,
4738 #else
4740 #endif
4741 #ifdef XK_dead_horn
4742 XK_dead_horn,
4743 #else
4745 #endif
4748 /* This is a list of Lisp names for special "accent" characters.
4749 It parallels lispy_accent_codes. */
4751 static char *lispy_accent_keys[] =
4753 "dead-circumflex",
4754 "dead-grave",
4755 "dead-tilde",
4756 "dead-diaeresis",
4757 "dead-macron",
4758 "dead-degree",
4759 "dead-acute",
4760 "dead-cedilla",
4761 "dead-breve",
4762 "dead-ogonek",
4763 "dead-caron",
4764 "dead-doubleacute",
4765 "dead-abovedot",
4766 "dead-abovering",
4767 "dead-iota",
4768 "dead-belowdot",
4769 "dead-voiced-sound",
4770 "dead-semivoiced-sound",
4771 "dead-hook",
4772 "dead-horn",
4775 #ifdef HAVE_NTGUI
4776 #define FUNCTION_KEY_OFFSET 0x0
4778 char *lispy_function_keys[] =
4780 0, /* 0 */
4782 0, /* VK_LBUTTON 0x01 */
4783 0, /* VK_RBUTTON 0x02 */
4784 "cancel", /* VK_CANCEL 0x03 */
4785 0, /* VK_MBUTTON 0x04 */
4787 0, 0, 0, /* 0x05 .. 0x07 */
4789 "backspace", /* VK_BACK 0x08 */
4790 "tab", /* VK_TAB 0x09 */
4792 0, 0, /* 0x0A .. 0x0B */
4794 "clear", /* VK_CLEAR 0x0C */
4795 "return", /* VK_RETURN 0x0D */
4797 0, 0, /* 0x0E .. 0x0F */
4799 0, /* VK_SHIFT 0x10 */
4800 0, /* VK_CONTROL 0x11 */
4801 0, /* VK_MENU 0x12 */
4802 "pause", /* VK_PAUSE 0x13 */
4803 "capslock", /* VK_CAPITAL 0x14 */
4805 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4807 "escape", /* VK_ESCAPE 0x1B */
4809 0, 0, 0, 0, /* 0x1C .. 0x1F */
4811 0, /* VK_SPACE 0x20 */
4812 "prior", /* VK_PRIOR 0x21 */
4813 "next", /* VK_NEXT 0x22 */
4814 "end", /* VK_END 0x23 */
4815 "home", /* VK_HOME 0x24 */
4816 "left", /* VK_LEFT 0x25 */
4817 "up", /* VK_UP 0x26 */
4818 "right", /* VK_RIGHT 0x27 */
4819 "down", /* VK_DOWN 0x28 */
4820 "select", /* VK_SELECT 0x29 */
4821 "print", /* VK_PRINT 0x2A */
4822 "execute", /* VK_EXECUTE 0x2B */
4823 "snapshot", /* VK_SNAPSHOT 0x2C */
4824 "insert", /* VK_INSERT 0x2D */
4825 "delete", /* VK_DELETE 0x2E */
4826 "help", /* VK_HELP 0x2F */
4828 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4830 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4832 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4834 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4836 0, 0, 0, 0, 0, 0, 0, 0, 0,
4837 0, 0, 0, 0, 0, 0, 0, 0, 0,
4838 0, 0, 0, 0, 0, 0, 0, 0,
4840 "lwindow", /* VK_LWIN 0x5B */
4841 "rwindow", /* VK_RWIN 0x5C */
4842 "apps", /* VK_APPS 0x5D */
4844 0, 0, /* 0x5E .. 0x5F */
4846 "kp-0", /* VK_NUMPAD0 0x60 */
4847 "kp-1", /* VK_NUMPAD1 0x61 */
4848 "kp-2", /* VK_NUMPAD2 0x62 */
4849 "kp-3", /* VK_NUMPAD3 0x63 */
4850 "kp-4", /* VK_NUMPAD4 0x64 */
4851 "kp-5", /* VK_NUMPAD5 0x65 */
4852 "kp-6", /* VK_NUMPAD6 0x66 */
4853 "kp-7", /* VK_NUMPAD7 0x67 */
4854 "kp-8", /* VK_NUMPAD8 0x68 */
4855 "kp-9", /* VK_NUMPAD9 0x69 */
4856 "kp-multiply", /* VK_MULTIPLY 0x6A */
4857 "kp-add", /* VK_ADD 0x6B */
4858 "kp-separator", /* VK_SEPARATOR 0x6C */
4859 "kp-subtract", /* VK_SUBTRACT 0x6D */
4860 "kp-decimal", /* VK_DECIMAL 0x6E */
4861 "kp-divide", /* VK_DIVIDE 0x6F */
4862 "f1", /* VK_F1 0x70 */
4863 "f2", /* VK_F2 0x71 */
4864 "f3", /* VK_F3 0x72 */
4865 "f4", /* VK_F4 0x73 */
4866 "f5", /* VK_F5 0x74 */
4867 "f6", /* VK_F6 0x75 */
4868 "f7", /* VK_F7 0x76 */
4869 "f8", /* VK_F8 0x77 */
4870 "f9", /* VK_F9 0x78 */
4871 "f10", /* VK_F10 0x79 */
4872 "f11", /* VK_F11 0x7A */
4873 "f12", /* VK_F12 0x7B */
4874 "f13", /* VK_F13 0x7C */
4875 "f14", /* VK_F14 0x7D */
4876 "f15", /* VK_F15 0x7E */
4877 "f16", /* VK_F16 0x7F */
4878 "f17", /* VK_F17 0x80 */
4879 "f18", /* VK_F18 0x81 */
4880 "f19", /* VK_F19 0x82 */
4881 "f20", /* VK_F20 0x83 */
4882 "f21", /* VK_F21 0x84 */
4883 "f22", /* VK_F22 0x85 */
4884 "f23", /* VK_F23 0x86 */
4885 "f24", /* VK_F24 0x87 */
4887 0, 0, 0, 0, /* 0x88 .. 0x8B */
4888 0, 0, 0, 0, /* 0x8C .. 0x8F */
4890 "kp-numlock", /* VK_NUMLOCK 0x90 */
4891 "scroll", /* VK_SCROLL 0x91 */
4893 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4894 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4895 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4896 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4897 "kp-end", /* VK_NUMPAD_END 0x96 */
4898 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4899 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4900 "kp-up", /* VK_NUMPAD_UP 0x99 */
4901 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4902 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4903 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4904 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4906 0, 0, /* 0x9E .. 0x9F */
4909 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4910 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4911 * No other API or message will distinguish left and right keys this way.
4913 /* 0xA0 .. 0xEF */
4915 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4916 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4917 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4918 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4919 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4921 /* 0xF0 .. 0xF5 */
4923 0, 0, 0, 0, 0, 0,
4925 "attn", /* VK_ATTN 0xF6 */
4926 "crsel", /* VK_CRSEL 0xF7 */
4927 "exsel", /* VK_EXSEL 0xF8 */
4928 "ereof", /* VK_EREOF 0xF9 */
4929 "play", /* VK_PLAY 0xFA */
4930 "zoom", /* VK_ZOOM 0xFB */
4931 "noname", /* VK_NONAME 0xFC */
4932 "pa1", /* VK_PA1 0xFD */
4933 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4934 0 /* 0xFF */
4937 #else /* not HAVE_NTGUI */
4939 /* This should be dealt with in XTread_socket now, and that doesn't
4940 depend on the client system having the Kana syms defined. See also
4941 the XK_kana_A case below. */
4942 #if 0
4943 #ifdef XK_kana_A
4944 static char *lispy_kana_keys[] =
4946 /* X Keysym value */
4947 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4948 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4949 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4950 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4951 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4952 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4953 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4954 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4955 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4956 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4957 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4958 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4959 "kana-i", "kana-u", "kana-e", "kana-o",
4960 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4961 "prolongedsound", "kana-A", "kana-I", "kana-U",
4962 "kana-E", "kana-O", "kana-KA", "kana-KI",
4963 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4964 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4965 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4966 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4967 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4968 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4969 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4970 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4971 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4972 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4973 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4974 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4976 #endif /* XK_kana_A */
4977 #endif /* 0 */
4979 #define FUNCTION_KEY_OFFSET 0xff00
4981 /* You'll notice that this table is arranged to be conveniently
4982 indexed by X Windows keysym values. */
4983 static char *lispy_function_keys[] =
4985 /* X Keysym value */
4987 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4988 "backspace", "tab", "linefeed", "clear",
4989 0, "return", 0, 0,
4990 0, 0, 0, "pause", /* 0xff10...1f */
4991 0, 0, 0, 0, 0, 0, 0, "escape",
4992 0, 0, 0, 0,
4993 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4994 "romaji", "hiragana", "katakana", "hiragana-katakana",
4995 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4996 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4997 "eisu-toggle", /* 0xff30...3f */
4998 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4999 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
5001 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
5002 "down", "prior", "next", "end",
5003 "begin", 0, 0, 0, 0, 0, 0, 0,
5004 "select", /* 0xff60 */ /* IsMiscFunctionKey */
5005 "print",
5006 "execute",
5007 "insert",
5008 0, /* 0xff64 */
5009 "undo",
5010 "redo",
5011 "menu",
5012 "find",
5013 "cancel",
5014 "help",
5015 "break", /* 0xff6b */
5017 0, 0, 0, 0,
5018 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
5019 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
5020 "kp-space", /* 0xff80 */ /* IsKeypadKey */
5021 0, 0, 0, 0, 0, 0, 0, 0,
5022 "kp-tab", /* 0xff89 */
5023 0, 0, 0,
5024 "kp-enter", /* 0xff8d */
5025 0, 0, 0,
5026 "kp-f1", /* 0xff91 */
5027 "kp-f2",
5028 "kp-f3",
5029 "kp-f4",
5030 "kp-home", /* 0xff95 */
5031 "kp-left",
5032 "kp-up",
5033 "kp-right",
5034 "kp-down",
5035 "kp-prior", /* kp-page-up */
5036 "kp-next", /* kp-page-down */
5037 "kp-end",
5038 "kp-begin",
5039 "kp-insert",
5040 "kp-delete",
5041 0, /* 0xffa0 */
5042 0, 0, 0, 0, 0, 0, 0, 0, 0,
5043 "kp-multiply", /* 0xffaa */
5044 "kp-add",
5045 "kp-separator",
5046 "kp-subtract",
5047 "kp-decimal",
5048 "kp-divide", /* 0xffaf */
5049 "kp-0", /* 0xffb0 */
5050 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5051 0, /* 0xffba */
5052 0, 0,
5053 "kp-equal", /* 0xffbd */
5054 "f1", /* 0xffbe */ /* IsFunctionKey */
5055 "f2",
5056 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5057 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5058 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5059 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5060 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5061 0, 0, 0, 0, 0, 0, 0, 0,
5062 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5063 0, 0, 0, 0, 0, 0, 0, "delete"
5066 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5067 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5069 static char *iso_lispy_function_keys[] =
5071 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5072 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5073 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5074 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5075 "iso-lefttab", /* 0xfe20 */
5076 "iso-move-line-up", "iso-move-line-down",
5077 "iso-partial-line-up", "iso-partial-line-down",
5078 "iso-partial-space-left", "iso-partial-space-right",
5079 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5080 "iso-release-margin-left", "iso-release-margin-right",
5081 "iso-release-both-margins",
5082 "iso-fast-cursor-left", "iso-fast-cursor-right",
5083 "iso-fast-cursor-up", "iso-fast-cursor-down",
5084 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5085 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5088 #endif /* not HAVE_NTGUI */
5090 Lisp_Object Vlispy_mouse_stem;
5092 static char *lispy_wheel_names[] =
5094 "wheel-up", "wheel-down"
5097 /* drag-n-drop events are generated when a set of selected files are
5098 dragged from another application and dropped onto an Emacs window. */
5099 static char *lispy_drag_n_drop_names[] =
5101 "drag-n-drop"
5104 /* Scroll bar parts. */
5105 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
5106 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
5107 Lisp_Object Qtop, Qratio;
5109 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
5110 Lisp_Object *scroll_bar_parts[] = {
5111 &Qabove_handle, &Qhandle, &Qbelow_handle,
5112 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
5115 /* A vector, indexed by button number, giving the down-going location
5116 of currently depressed buttons, both scroll bar and non-scroll bar.
5118 The elements have the form
5119 (BUTTON-NUMBER MODIFIER-MASK . REST)
5120 where REST is the cdr of a position as it would be reported in the event.
5122 The make_lispy_event function stores positions here to tell the
5123 difference between click and drag events, and to store the starting
5124 location to be included in drag events. */
5126 static Lisp_Object button_down_location;
5128 /* Information about the most recent up-going button event: Which
5129 button, what location, and what time. */
5131 static int last_mouse_button;
5132 static int last_mouse_x;
5133 static int last_mouse_y;
5134 static unsigned long button_down_time;
5136 /* The maximum time between clicks to make a double-click, or Qnil to
5137 disable double-click detection, or Qt for no time limit. */
5139 Lisp_Object Vdouble_click_time;
5141 /* Maximum number of pixels the mouse may be moved between clicks
5142 to make a double-click. */
5144 EMACS_INT double_click_fuzz;
5146 /* The number of clicks in this multiple-click. */
5148 int double_click_count;
5150 /* Return position of a mouse click or wheel event */
5152 static Lisp_Object
5153 make_lispy_position (f, x, y, time)
5154 struct frame *f;
5155 Lisp_Object *x, *y;
5156 unsigned long time;
5158 Lisp_Object window;
5159 enum window_part part;
5160 Lisp_Object posn = Qnil;
5161 Lisp_Object extra_info = Qnil;
5162 int wx, wy;
5164 /* Set `window' to the window under frame pixel coordinates (x,y) */
5165 if (f)
5166 window = window_from_coordinates (f, XINT (*x), XINT (*y),
5167 &part, &wx, &wy, 0);
5168 else
5169 window = Qnil;
5171 if (WINDOWP (window))
5173 /* It's a click in window window at frame coordinates (x,y) */
5174 struct window *w = XWINDOW (window);
5175 Lisp_Object string_info = Qnil;
5176 int textpos = -1, rx = -1, ry = -1;
5177 int dx = -1, dy = -1;
5178 int width = -1, height = -1;
5179 Lisp_Object object = Qnil;
5181 /* Set event coordinates to window-relative coordinates
5182 for constructing the Lisp event below. */
5183 XSETINT (*x, wx);
5184 XSETINT (*y, wy);
5186 if (part == ON_TEXT)
5188 wx += WINDOW_LEFT_MARGIN_WIDTH (w);
5190 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5192 /* Mode line or header line. Look for a string under
5193 the mouse that may have a `local-map' property. */
5194 Lisp_Object string;
5195 int charpos;
5197 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5198 rx = wx, ry = wy;
5199 string = mode_line_string (w, part, &rx, &ry, &charpos,
5200 &object, &dx, &dy, &width, &height);
5201 if (STRINGP (string))
5202 string_info = Fcons (string, make_number (charpos));
5203 if (w == XWINDOW (selected_window))
5204 textpos = PT;
5205 else
5206 textpos = XMARKER (w->pointm)->charpos;
5208 else if (part == ON_VERTICAL_BORDER)
5210 posn = Qvertical_line;
5211 wx = -1;
5212 dx = 0;
5213 width = 1;
5215 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5217 Lisp_Object string;
5218 int charpos;
5220 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5221 rx = wx, ry = wy;
5222 string = marginal_area_string (w, part, &rx, &ry, &charpos,
5223 &object, &dx, &dy, &width, &height);
5224 if (STRINGP (string))
5225 string_info = Fcons (string, make_number (charpos));
5226 if (part == ON_LEFT_MARGIN)
5227 wx = 0;
5228 else
5229 wx = window_box_right_offset (w, TEXT_AREA) - 1;
5231 else if (part == ON_LEFT_FRINGE)
5233 posn = Qleft_fringe;
5234 rx = 0;
5235 dx = wx;
5236 wx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5238 : window_box_width (w, LEFT_MARGIN_AREA));
5239 dx -= wx;
5241 else if (part == ON_RIGHT_FRINGE)
5243 posn = Qright_fringe;
5244 rx = 0;
5245 dx = wx;
5246 wx = (window_box_width (w, LEFT_MARGIN_AREA)
5247 + window_box_width (w, TEXT_AREA)
5248 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5249 ? window_box_width (w, RIGHT_MARGIN_AREA)
5250 : 0));
5251 dx -= wx;
5253 else
5255 /* Note: We have no special posn for part == ON_SCROLL_BAR. */
5256 wx = max (WINDOW_LEFT_MARGIN_WIDTH (w), wx);
5259 if (textpos < 0)
5261 Lisp_Object string2, object2 = Qnil;
5262 struct display_pos p;
5263 int dx2, dy2;
5264 int width2, height2;
5265 string2 = buffer_posn_from_coords (w, &wx, &wy, &p,
5266 &object2, &dx2, &dy2,
5267 &width2, &height2);
5268 textpos = CHARPOS (p.pos);
5269 if (rx < 0) rx = wx;
5270 if (ry < 0) ry = wy;
5271 if (dx < 0) dx = dx2;
5272 if (dy < 0) dy = dy2;
5273 if (width < 0) width = width2;
5274 if (height < 0) height = height2;
5276 if (NILP (posn))
5278 posn = make_number (textpos);
5279 if (STRINGP (string2))
5280 string_info = Fcons (string2,
5281 make_number (CHARPOS (p.string_pos)));
5283 if (NILP (object))
5284 object = object2;
5287 #ifdef HAVE_WINDOW_SYSTEM
5288 if (IMAGEP (object))
5290 Lisp_Object image_map, hotspot;
5291 if ((image_map = Fplist_get (XCDR (object), QCmap),
5292 !NILP (image_map))
5293 && (hotspot = find_hot_spot (image_map, dx, dy),
5294 CONSP (hotspot))
5295 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5296 posn = XCAR (hotspot);
5298 #endif
5300 /* Object info */
5301 extra_info = Fcons (object,
5302 Fcons (Fcons (make_number (dx),
5303 make_number (dy)),
5304 Fcons (Fcons (make_number (width),
5305 make_number (height)),
5306 Qnil)));
5308 /* String info */
5309 extra_info = Fcons (string_info,
5310 Fcons (make_number (textpos),
5311 Fcons (Fcons (make_number (rx),
5312 make_number (ry)),
5313 extra_info)));
5315 else if (f != 0)
5317 XSETFRAME (window, f);
5319 else
5321 window = Qnil;
5322 XSETFASTINT (*x, 0);
5323 XSETFASTINT (*y, 0);
5326 return Fcons (window,
5327 Fcons (posn,
5328 Fcons (Fcons (*x, *y),
5329 Fcons (make_number (time),
5330 extra_info))));
5333 /* Given a struct input_event, build the lisp event which represents
5334 it. If EVENT is 0, build a mouse movement event from the mouse
5335 movement buffer, which should have a movement event in it.
5337 Note that events must be passed to this function in the order they
5338 are received; this function stores the location of button presses
5339 in order to build drag events when the button is released. */
5341 static Lisp_Object
5342 make_lispy_event (event)
5343 struct input_event *event;
5345 int i;
5347 switch (SWITCH_ENUM_CAST (event->kind))
5349 /* A simple keystroke. */
5350 case ASCII_KEYSTROKE_EVENT:
5352 Lisp_Object lispy_c;
5353 int c = event->code & 0377;
5354 /* Turn ASCII characters into control characters
5355 when proper. */
5356 if (event->modifiers & ctrl_modifier)
5357 c = make_ctrl_char (c);
5359 /* Add in the other modifier bits. We took care of ctrl_modifier
5360 just above, and the shift key was taken care of by the X code,
5361 and applied to control characters by make_ctrl_char. */
5362 c |= (event->modifiers
5363 & (meta_modifier | alt_modifier
5364 | hyper_modifier | super_modifier));
5365 /* Distinguish Shift-SPC from SPC. */
5366 if ((event->code & 0377) == 040
5367 && event->modifiers & shift_modifier)
5368 c |= shift_modifier;
5369 button_down_time = 0;
5370 XSETFASTINT (lispy_c, c);
5371 return lispy_c;
5374 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5376 Lisp_Object lispy_c;
5377 int c = event->code;
5379 /* Add in the other modifier bits. We took care of ctrl_modifier
5380 just above, and the shift key was taken care of by the X code,
5381 and applied to control characters by make_ctrl_char. */
5382 c |= (event->modifiers
5383 & (meta_modifier | alt_modifier
5384 | hyper_modifier | super_modifier | ctrl_modifier));
5385 /* What about the `shift' modifier ? */
5386 button_down_time = 0;
5387 XSETFASTINT (lispy_c, c);
5388 return lispy_c;
5391 /* A function key. The symbol may need to have modifier prefixes
5392 tacked onto it. */
5393 case NON_ASCII_KEYSTROKE_EVENT:
5394 button_down_time = 0;
5396 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5397 if (event->code == lispy_accent_codes[i])
5398 return modify_event_symbol (i,
5399 event->modifiers,
5400 Qfunction_key, Qnil,
5401 lispy_accent_keys, &accent_key_syms,
5402 (sizeof (lispy_accent_keys)
5403 / sizeof (lispy_accent_keys[0])));
5405 #if 0
5406 #ifdef XK_kana_A
5407 if (event->code >= 0x400 && event->code < 0x500)
5408 return modify_event_symbol (event->code - 0x400,
5409 event->modifiers & ~shift_modifier,
5410 Qfunction_key, Qnil,
5411 lispy_kana_keys, &func_key_syms,
5412 (sizeof (lispy_kana_keys)
5413 / sizeof (lispy_kana_keys[0])));
5414 #endif /* XK_kana_A */
5415 #endif /* 0 */
5417 #ifdef ISO_FUNCTION_KEY_OFFSET
5418 if (event->code < FUNCTION_KEY_OFFSET
5419 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5420 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5421 event->modifiers,
5422 Qfunction_key, Qnil,
5423 iso_lispy_function_keys, &func_key_syms,
5424 (sizeof (iso_lispy_function_keys)
5425 / sizeof (iso_lispy_function_keys[0])));
5426 #endif
5428 /* Handle system-specific or unknown keysyms. */
5429 if (event->code & (1 << 28)
5430 || event->code - FUNCTION_KEY_OFFSET < 0
5431 || (event->code - FUNCTION_KEY_OFFSET
5432 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5433 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5435 /* We need to use an alist rather than a vector as the cache
5436 since we can't make a vector long enuf. */
5437 if (NILP (current_kboard->system_key_syms))
5438 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5439 return modify_event_symbol (event->code,
5440 event->modifiers,
5441 Qfunction_key,
5442 current_kboard->Vsystem_key_alist,
5443 0, &current_kboard->system_key_syms,
5444 (unsigned) -1);
5447 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5448 event->modifiers,
5449 Qfunction_key, Qnil,
5450 lispy_function_keys, &func_key_syms,
5451 (sizeof (lispy_function_keys)
5452 / sizeof (lispy_function_keys[0])));
5454 #ifdef HAVE_MOUSE
5455 /* A mouse click. Figure out where it is, decide whether it's
5456 a press, click or drag, and build the appropriate structure. */
5457 case MOUSE_CLICK_EVENT:
5458 #ifndef USE_TOOLKIT_SCROLL_BARS
5459 case SCROLL_BAR_CLICK_EVENT:
5460 #endif
5462 int button = event->code;
5463 int is_double;
5464 Lisp_Object position;
5465 Lisp_Object *start_pos_ptr;
5466 Lisp_Object start_pos;
5468 position = Qnil;
5470 /* Build the position as appropriate for this mouse click. */
5471 if (event->kind == MOUSE_CLICK_EVENT)
5473 struct frame *f = XFRAME (event->frame_or_window);
5474 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5475 int row, column;
5476 #endif
5478 /* Ignore mouse events that were made on frame that
5479 have been deleted. */
5480 if (! FRAME_LIVE_P (f))
5481 return Qnil;
5483 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5484 /* EVENT->x and EVENT->y are frame-relative pixel
5485 coordinates at this place. Under old redisplay, COLUMN
5486 and ROW are set to frame relative glyph coordinates
5487 which are then used to determine whether this click is
5488 in a menu (non-toolkit version). */
5489 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5490 &column, &row, NULL, 1);
5492 /* In the non-toolkit version, clicks on the menu bar
5493 are ordinary button events in the event buffer.
5494 Distinguish them, and invoke the menu.
5496 (In the toolkit version, the toolkit handles the menu bar
5497 and Emacs doesn't know about it until after the user
5498 makes a selection.) */
5499 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5500 && (event->modifiers & down_modifier))
5502 Lisp_Object items, item;
5503 int hpos;
5504 int i;
5506 #if 0
5507 /* Activate the menu bar on the down event. If the
5508 up event comes in before the menu code can deal with it,
5509 just ignore it. */
5510 if (! (event->modifiers & down_modifier))
5511 return Qnil;
5512 #endif
5514 /* Find the menu bar item under `column'. */
5515 item = Qnil;
5516 items = FRAME_MENU_BAR_ITEMS (f);
5517 for (i = 0; i < XVECTOR (items)->size; i += 4)
5519 Lisp_Object pos, string;
5520 string = AREF (items, i + 1);
5521 pos = AREF (items, i + 3);
5522 if (NILP (string))
5523 break;
5524 if (column >= XINT (pos)
5525 && column < XINT (pos) + SCHARS (string))
5527 item = AREF (items, i);
5528 break;
5532 /* ELisp manual 2.4b says (x y) are window relative but
5533 code says they are frame-relative. */
5534 position
5535 = Fcons (event->frame_or_window,
5536 Fcons (Qmenu_bar,
5537 Fcons (Fcons (event->x, event->y),
5538 Fcons (make_number (event->timestamp),
5539 Qnil))));
5541 return Fcons (item, Fcons (position, Qnil));
5543 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5545 position = make_lispy_position (f, &event->x, &event->y,
5546 event->timestamp);
5548 #ifndef USE_TOOLKIT_SCROLL_BARS
5549 else
5551 /* It's a scrollbar click. */
5552 Lisp_Object window;
5553 Lisp_Object portion_whole;
5554 Lisp_Object part;
5556 window = event->frame_or_window;
5557 portion_whole = Fcons (event->x, event->y);
5558 part = *scroll_bar_parts[(int) event->part];
5560 position
5561 = Fcons (window,
5562 Fcons (Qvertical_scroll_bar,
5563 Fcons (portion_whole,
5564 Fcons (make_number (event->timestamp),
5565 Fcons (part, Qnil)))));
5567 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5569 if (button >= ASIZE (button_down_location))
5571 button_down_location = larger_vector (button_down_location,
5572 button + 1, Qnil);
5573 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5576 start_pos_ptr = &AREF (button_down_location, button);
5577 start_pos = *start_pos_ptr;
5578 *start_pos_ptr = Qnil;
5581 /* On window-system frames, use the value of
5582 double-click-fuzz as is. On other frames, interpret it
5583 as a multiple of 1/8 characters. */
5584 struct frame *f;
5585 int fuzz;
5587 if (WINDOWP (event->frame_or_window))
5588 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5589 else if (FRAMEP (event->frame_or_window))
5590 f = XFRAME (event->frame_or_window);
5591 else
5592 abort ();
5594 if (FRAME_WINDOW_P (f))
5595 fuzz = double_click_fuzz;
5596 else
5597 fuzz = double_click_fuzz / 8;
5599 is_double = (button == last_mouse_button
5600 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5601 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5602 && button_down_time != 0
5603 && (EQ (Vdouble_click_time, Qt)
5604 || (INTEGERP (Vdouble_click_time)
5605 && ((int)(event->timestamp - button_down_time)
5606 < XINT (Vdouble_click_time)))));
5609 last_mouse_button = button;
5610 last_mouse_x = XINT (event->x);
5611 last_mouse_y = XINT (event->y);
5613 /* If this is a button press, squirrel away the location, so
5614 we can decide later whether it was a click or a drag. */
5615 if (event->modifiers & down_modifier)
5617 if (is_double)
5619 double_click_count++;
5620 event->modifiers |= ((double_click_count > 2)
5621 ? triple_modifier
5622 : double_modifier);
5624 else
5625 double_click_count = 1;
5626 button_down_time = event->timestamp;
5627 *start_pos_ptr = Fcopy_alist (position);
5628 ignore_mouse_drag_p = 0;
5631 /* Now we're releasing a button - check the co-ordinates to
5632 see if this was a click or a drag. */
5633 else if (event->modifiers & up_modifier)
5635 /* If we did not see a down before this up, ignore the up.
5636 Probably this happened because the down event chose a
5637 menu item. It would be an annoyance to treat the
5638 release of the button that chose the menu item as a
5639 separate event. */
5641 if (!CONSP (start_pos))
5642 return Qnil;
5644 event->modifiers &= ~up_modifier;
5645 #if 0 /* Formerly we treated an up with no down as a click event. */
5646 if (!CONSP (start_pos))
5647 event->modifiers |= click_modifier;
5648 else
5649 #endif
5651 Lisp_Object down;
5652 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5654 /* The third element of every position
5655 should be the (x,y) pair. */
5656 down = Fcar (Fcdr (Fcdr (start_pos)));
5657 if (CONSP (down)
5658 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5660 xdiff = XINT (event->x) - XINT (XCAR (down));
5661 ydiff = XINT (event->y) - XINT (XCDR (down));
5664 if (ignore_mouse_drag_p)
5666 event->modifiers |= click_modifier;
5667 ignore_mouse_drag_p = 0;
5669 else if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5670 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5671 /* Maybe the mouse has moved a lot, caused scrolling, and
5672 eventually ended up at the same screen position (but
5673 not buffer position) in which case it is a drag, not
5674 a click. */
5675 /* FIXME: OTOH if the buffer position has changed
5676 because of a timer or process filter rather than
5677 because of mouse movement, it should be considered as
5678 a click. But mouse-drag-region completely ignores
5679 this case and it hasn't caused any real problem, so
5680 it's probably OK to ignore it as well. */
5681 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5682 /* Mouse hasn't moved (much). */
5683 event->modifiers |= click_modifier;
5684 else
5686 button_down_time = 0;
5687 event->modifiers |= drag_modifier;
5690 /* Don't check is_double; treat this as multiple
5691 if the down-event was multiple. */
5692 if (double_click_count > 1)
5693 event->modifiers |= ((double_click_count > 2)
5694 ? triple_modifier
5695 : double_modifier);
5698 else
5699 /* Every mouse event should either have the down_modifier or
5700 the up_modifier set. */
5701 abort ();
5704 /* Get the symbol we should use for the mouse click. */
5705 Lisp_Object head;
5707 head = modify_event_symbol (button,
5708 event->modifiers,
5709 Qmouse_click, Vlispy_mouse_stem,
5710 NULL,
5711 &mouse_syms,
5712 XVECTOR (mouse_syms)->size);
5713 if (event->modifiers & drag_modifier)
5714 return Fcons (head,
5715 Fcons (start_pos,
5716 Fcons (position,
5717 Qnil)));
5718 else if (event->modifiers & (double_modifier | triple_modifier))
5719 return Fcons (head,
5720 Fcons (position,
5721 Fcons (make_number (double_click_count),
5722 Qnil)));
5723 else
5724 return Fcons (head,
5725 Fcons (position,
5726 Qnil));
5730 case WHEEL_EVENT:
5732 Lisp_Object position;
5733 Lisp_Object head;
5735 /* Build the position as appropriate for this mouse click. */
5736 struct frame *f = XFRAME (event->frame_or_window);
5738 /* Ignore wheel events that were made on frame that have been
5739 deleted. */
5740 if (! FRAME_LIVE_P (f))
5741 return Qnil;
5743 position = make_lispy_position (f, &event->x, &event->y,
5744 event->timestamp);
5746 /* Set double or triple modifiers to indicate the wheel speed. */
5748 /* On window-system frames, use the value of
5749 double-click-fuzz as is. On other frames, interpret it
5750 as a multiple of 1/8 characters. */
5751 struct frame *f;
5752 int fuzz;
5753 int is_double;
5755 if (WINDOWP (event->frame_or_window))
5756 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5757 else if (FRAMEP (event->frame_or_window))
5758 f = XFRAME (event->frame_or_window);
5759 else
5760 abort ();
5762 if (FRAME_WINDOW_P (f))
5763 fuzz = double_click_fuzz;
5764 else
5765 fuzz = double_click_fuzz / 8;
5767 is_double = (last_mouse_button < 0
5768 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5769 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5770 && button_down_time != 0
5771 && (EQ (Vdouble_click_time, Qt)
5772 || (INTEGERP (Vdouble_click_time)
5773 && ((int)(event->timestamp - button_down_time)
5774 < XINT (Vdouble_click_time)))));
5775 if (is_double)
5777 double_click_count++;
5778 event->modifiers |= ((double_click_count > 2)
5779 ? triple_modifier
5780 : double_modifier);
5782 else
5784 double_click_count = 1;
5785 event->modifiers |= click_modifier;
5788 button_down_time = event->timestamp;
5789 /* Use a negative value to distinguish wheel from mouse button. */
5790 last_mouse_button = -1;
5791 last_mouse_x = XINT (event->x);
5792 last_mouse_y = XINT (event->y);
5796 int symbol_num;
5798 if (event->modifiers & up_modifier)
5800 /* Emit a wheel-up event. */
5801 event->modifiers &= ~up_modifier;
5802 symbol_num = 0;
5804 else if (event->modifiers & down_modifier)
5806 /* Emit a wheel-down event. */
5807 event->modifiers &= ~down_modifier;
5808 symbol_num = 1;
5810 else
5811 /* Every wheel event should either have the down_modifier or
5812 the up_modifier set. */
5813 abort ();
5815 /* Get the symbol we should use for the wheel event. */
5816 head = modify_event_symbol (symbol_num,
5817 event->modifiers,
5818 Qmouse_click,
5819 Qnil,
5820 lispy_wheel_names,
5821 &wheel_syms,
5822 ASIZE (wheel_syms));
5825 if (event->modifiers & (double_modifier | triple_modifier))
5826 return Fcons (head,
5827 Fcons (position,
5828 Fcons (make_number (double_click_count),
5829 Qnil)));
5830 else
5831 return Fcons (head,
5832 Fcons (position,
5833 Qnil));
5837 #ifdef USE_TOOLKIT_SCROLL_BARS
5839 /* We don't have down and up events if using toolkit scroll bars,
5840 so make this always a click event. Store in the `part' of
5841 the Lisp event a symbol which maps to the following actions:
5843 `above_handle' page up
5844 `below_handle' page down
5845 `up' line up
5846 `down' line down
5847 `top' top of buffer
5848 `bottom' bottom of buffer
5849 `handle' thumb has been dragged.
5850 `end-scroll' end of interaction with scroll bar
5852 The incoming input_event contains in its `part' member an
5853 index of type `enum scroll_bar_part' which we can use as an
5854 index in scroll_bar_parts to get the appropriate symbol. */
5856 case SCROLL_BAR_CLICK_EVENT:
5858 Lisp_Object position, head, window, portion_whole, part;
5860 window = event->frame_or_window;
5861 portion_whole = Fcons (event->x, event->y);
5862 part = *scroll_bar_parts[(int) event->part];
5864 position
5865 = Fcons (window,
5866 Fcons (Qvertical_scroll_bar,
5867 Fcons (portion_whole,
5868 Fcons (make_number (event->timestamp),
5869 Fcons (part, Qnil)))));
5871 /* Always treat scroll bar events as clicks. */
5872 event->modifiers |= click_modifier;
5873 event->modifiers &= ~up_modifier;
5875 if (event->code >= ASIZE (mouse_syms))
5876 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5878 /* Get the symbol we should use for the mouse click. */
5879 head = modify_event_symbol (event->code,
5880 event->modifiers,
5881 Qmouse_click,
5882 Vlispy_mouse_stem,
5883 NULL, &mouse_syms,
5884 XVECTOR (mouse_syms)->size);
5885 return Fcons (head, Fcons (position, Qnil));
5888 #endif /* USE_TOOLKIT_SCROLL_BARS */
5890 #ifdef WINDOWSNT
5891 case W32_SCROLL_BAR_CLICK_EVENT:
5893 int button = event->code;
5894 int is_double;
5895 Lisp_Object position;
5896 Lisp_Object *start_pos_ptr;
5897 Lisp_Object start_pos;
5900 Lisp_Object window;
5901 Lisp_Object portion_whole;
5902 Lisp_Object part;
5904 window = event->frame_or_window;
5905 portion_whole = Fcons (event->x, event->y);
5906 part = *scroll_bar_parts[(int) event->part];
5908 position
5909 = Fcons (window,
5910 Fcons (Qvertical_scroll_bar,
5911 Fcons (portion_whole,
5912 Fcons (make_number (event->timestamp),
5913 Fcons (part, Qnil)))));
5916 /* Always treat W32 scroll bar events as clicks. */
5917 event->modifiers |= click_modifier;
5920 /* Get the symbol we should use for the mouse click. */
5921 Lisp_Object head;
5923 head = modify_event_symbol (button,
5924 event->modifiers,
5925 Qmouse_click,
5926 Vlispy_mouse_stem,
5927 NULL, &mouse_syms,
5928 XVECTOR (mouse_syms)->size);
5929 return Fcons (head,
5930 Fcons (position,
5931 Qnil));
5934 #endif /* WINDOWSNT */
5936 case DRAG_N_DROP_EVENT:
5938 FRAME_PTR f;
5939 Lisp_Object head, position;
5940 Lisp_Object files;
5942 f = XFRAME (event->frame_or_window);
5943 files = event->arg;
5945 /* Ignore mouse events that were made on frames that
5946 have been deleted. */
5947 if (! FRAME_LIVE_P (f))
5948 return Qnil;
5950 position = make_lispy_position (f, &event->x, &event->y,
5951 event->timestamp);
5953 head = modify_event_symbol (0, event->modifiers,
5954 Qdrag_n_drop, Qnil,
5955 lispy_drag_n_drop_names,
5956 &drag_n_drop_syms, 1);
5957 return Fcons (head,
5958 Fcons (position,
5959 Fcons (files,
5960 Qnil)));
5962 #endif /* HAVE_MOUSE */
5964 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5965 || defined (USE_GTK)
5966 case MENU_BAR_EVENT:
5967 if (EQ (event->arg, event->frame_or_window))
5968 /* This is the prefix key. We translate this to
5969 `(menu_bar)' because the code in keyboard.c for menu
5970 events, which we use, relies on this. */
5971 return Fcons (Qmenu_bar, Qnil);
5972 return event->arg;
5973 #endif
5975 case SELECT_WINDOW_EVENT:
5976 /* Make an event (select-window (WINDOW)). */
5977 return Fcons (Qselect_window,
5978 Fcons (Fcons (event->frame_or_window, Qnil),
5979 Qnil));
5981 case TOOL_BAR_EVENT:
5982 if (EQ (event->arg, event->frame_or_window))
5983 /* This is the prefix key. We translate this to
5984 `(tool_bar)' because the code in keyboard.c for tool bar
5985 events, which we use, relies on this. */
5986 return Fcons (Qtool_bar, Qnil);
5987 else if (SYMBOLP (event->arg))
5988 return apply_modifiers (event->modifiers, event->arg);
5989 return event->arg;
5991 case USER_SIGNAL_EVENT:
5992 /* A user signal. */
5994 char *name = find_user_signal_name (event->code);
5995 if (!name)
5996 abort ();
5997 return intern (name);
6000 case SAVE_SESSION_EVENT:
6001 return Qsave_session;
6003 #ifdef MAC_OS
6004 case MAC_APPLE_EVENT:
6006 Lisp_Object spec[2];
6008 spec[0] = event->x;
6009 spec[1] = event->y;
6010 return Fcons (Qmac_apple_event,
6011 Fcons (Fvector (2, spec),
6012 Fcons (event->arg, Qnil)));
6014 #endif
6016 /* The 'kind' field of the event is something we don't recognize. */
6017 default:
6018 abort ();
6022 #ifdef HAVE_MOUSE
6024 static Lisp_Object
6025 make_lispy_movement (frame, bar_window, part, x, y, time)
6026 FRAME_PTR frame;
6027 Lisp_Object bar_window;
6028 enum scroll_bar_part part;
6029 Lisp_Object x, y;
6030 unsigned long time;
6032 /* Is it a scroll bar movement? */
6033 if (frame && ! NILP (bar_window))
6035 Lisp_Object part_sym;
6037 part_sym = *scroll_bar_parts[(int) part];
6038 return Fcons (Qscroll_bar_movement,
6039 (Fcons (Fcons (bar_window,
6040 Fcons (Qvertical_scroll_bar,
6041 Fcons (Fcons (x, y),
6042 Fcons (make_number (time),
6043 Fcons (part_sym,
6044 Qnil))))),
6045 Qnil)));
6048 /* Or is it an ordinary mouse movement? */
6049 else
6051 Lisp_Object position;
6053 position = make_lispy_position (frame, &x, &y, time);
6055 return Fcons (Qmouse_movement,
6056 Fcons (position,
6057 Qnil));
6061 #endif /* HAVE_MOUSE */
6063 /* Construct a switch frame event. */
6064 static Lisp_Object
6065 make_lispy_switch_frame (frame)
6066 Lisp_Object frame;
6068 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
6071 /* Manipulating modifiers. */
6073 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6075 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6076 SYMBOL's name of the end of the modifiers; the string from this
6077 position is the unmodified symbol name.
6079 This doesn't use any caches. */
6081 static int
6082 parse_modifiers_uncached (symbol, modifier_end)
6083 Lisp_Object symbol;
6084 int *modifier_end;
6086 Lisp_Object name;
6087 int i;
6088 int modifiers;
6090 CHECK_SYMBOL (symbol);
6092 modifiers = 0;
6093 name = SYMBOL_NAME (symbol);
6095 for (i = 0; i+2 <= SBYTES (name); )
6097 int this_mod_end = 0;
6098 int this_mod = 0;
6100 /* See if the name continues with a modifier word.
6101 Check that the word appears, but don't check what follows it.
6102 Set this_mod and this_mod_end to record what we find. */
6104 switch (SREF (name, i))
6106 #define SINGLE_LETTER_MOD(BIT) \
6107 (this_mod_end = i + 1, this_mod = BIT)
6109 case 'A':
6110 SINGLE_LETTER_MOD (alt_modifier);
6111 break;
6113 case 'C':
6114 SINGLE_LETTER_MOD (ctrl_modifier);
6115 break;
6117 case 'H':
6118 SINGLE_LETTER_MOD (hyper_modifier);
6119 break;
6121 case 'M':
6122 SINGLE_LETTER_MOD (meta_modifier);
6123 break;
6125 case 'S':
6126 SINGLE_LETTER_MOD (shift_modifier);
6127 break;
6129 case 's':
6130 SINGLE_LETTER_MOD (super_modifier);
6131 break;
6133 #undef SINGLE_LETTER_MOD
6135 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6136 if (i + LEN + 1 <= SBYTES (name) \
6137 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
6139 this_mod_end = i + LEN; \
6140 this_mod = BIT; \
6143 case 'd':
6144 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6145 MULTI_LETTER_MOD (down_modifier, "down", 4);
6146 MULTI_LETTER_MOD (double_modifier, "double", 6);
6147 break;
6149 case 't':
6150 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6151 break;
6152 #undef MULTI_LETTER_MOD
6156 /* If we found no modifier, stop looking for them. */
6157 if (this_mod_end == 0)
6158 break;
6160 /* Check there is a dash after the modifier, so that it
6161 really is a modifier. */
6162 if (this_mod_end >= SBYTES (name)
6163 || SREF (name, this_mod_end) != '-')
6164 break;
6166 /* This modifier is real; look for another. */
6167 modifiers |= this_mod;
6168 i = this_mod_end + 1;
6171 /* Should we include the `click' modifier? */
6172 if (! (modifiers & (down_modifier | drag_modifier
6173 | double_modifier | triple_modifier))
6174 && i + 7 == SBYTES (name)
6175 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
6176 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6177 modifiers |= click_modifier;
6179 if (modifier_end)
6180 *modifier_end = i;
6182 return modifiers;
6185 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6186 prepended to the string BASE[0..BASE_LEN-1].
6187 This doesn't use any caches. */
6188 static Lisp_Object
6189 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
6190 int modifiers;
6191 char *base;
6192 int base_len, base_len_byte;
6194 /* Since BASE could contain nulls, we can't use intern here; we have
6195 to use Fintern, which expects a genuine Lisp_String, and keeps a
6196 reference to it. */
6197 char *new_mods
6198 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6199 int mod_len;
6202 char *p = new_mods;
6204 /* Only the event queue may use the `up' modifier; it should always
6205 be turned into a click or drag event before presented to lisp code. */
6206 if (modifiers & up_modifier)
6207 abort ();
6209 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6210 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6211 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6212 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6213 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6214 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6215 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
6216 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
6217 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
6218 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
6219 /* The click modifier is denoted by the absence of other modifiers. */
6221 *p = '\0';
6223 mod_len = p - new_mods;
6227 Lisp_Object new_name;
6229 new_name = make_uninit_multibyte_string (mod_len + base_len,
6230 mod_len + base_len_byte);
6231 bcopy (new_mods, SDATA (new_name), mod_len);
6232 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
6234 return Fintern (new_name, Qnil);
6239 static char *modifier_names[] =
6241 "up", "down", "drag", "click", "double", "triple", 0, 0,
6242 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6243 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6245 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6247 static Lisp_Object modifier_symbols;
6249 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6250 static Lisp_Object
6251 lispy_modifier_list (modifiers)
6252 int modifiers;
6254 Lisp_Object modifier_list;
6255 int i;
6257 modifier_list = Qnil;
6258 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6259 if (modifiers & (1<<i))
6260 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
6261 modifier_list);
6263 return modifier_list;
6267 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6268 where UNMODIFIED is the unmodified form of SYMBOL,
6269 MASK is the set of modifiers present in SYMBOL's name.
6270 This is similar to parse_modifiers_uncached, but uses the cache in
6271 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6272 Qevent_symbol_elements property. */
6274 Lisp_Object
6275 parse_modifiers (symbol)
6276 Lisp_Object symbol;
6278 Lisp_Object elements;
6280 elements = Fget (symbol, Qevent_symbol_element_mask);
6281 if (CONSP (elements))
6282 return elements;
6283 else
6285 int end;
6286 int modifiers = parse_modifiers_uncached (symbol, &end);
6287 Lisp_Object unmodified;
6288 Lisp_Object mask;
6290 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
6291 SBYTES (SYMBOL_NAME (symbol)) - end),
6292 Qnil);
6294 if (modifiers & ~INTMASK)
6295 abort ();
6296 XSETFASTINT (mask, modifiers);
6297 elements = Fcons (unmodified, Fcons (mask, Qnil));
6299 /* Cache the parsing results on SYMBOL. */
6300 Fput (symbol, Qevent_symbol_element_mask,
6301 elements);
6302 Fput (symbol, Qevent_symbol_elements,
6303 Fcons (unmodified, lispy_modifier_list (modifiers)));
6305 /* Since we know that SYMBOL is modifiers applied to unmodified,
6306 it would be nice to put that in unmodified's cache.
6307 But we can't, since we're not sure that parse_modifiers is
6308 canonical. */
6310 return elements;
6314 /* Apply the modifiers MODIFIERS to the symbol BASE.
6315 BASE must be unmodified.
6317 This is like apply_modifiers_uncached, but uses BASE's
6318 Qmodifier_cache property, if present. It also builds
6319 Qevent_symbol_elements properties, since it has that info anyway.
6321 apply_modifiers copies the value of BASE's Qevent_kind property to
6322 the modified symbol. */
6323 static Lisp_Object
6324 apply_modifiers (modifiers, base)
6325 int modifiers;
6326 Lisp_Object base;
6328 Lisp_Object cache, index, entry, new_symbol;
6330 /* Mask out upper bits. We don't know where this value's been. */
6331 modifiers &= INTMASK;
6333 /* The click modifier never figures into cache indices. */
6334 cache = Fget (base, Qmodifier_cache);
6335 XSETFASTINT (index, (modifiers & ~click_modifier));
6336 entry = assq_no_quit (index, cache);
6338 if (CONSP (entry))
6339 new_symbol = XCDR (entry);
6340 else
6342 /* We have to create the symbol ourselves. */
6343 new_symbol = apply_modifiers_uncached (modifiers,
6344 SDATA (SYMBOL_NAME (base)),
6345 SCHARS (SYMBOL_NAME (base)),
6346 SBYTES (SYMBOL_NAME (base)));
6348 /* Add the new symbol to the base's cache. */
6349 entry = Fcons (index, new_symbol);
6350 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6352 /* We have the parsing info now for free, so we could add it to
6353 the caches:
6354 XSETFASTINT (index, modifiers);
6355 Fput (new_symbol, Qevent_symbol_element_mask,
6356 Fcons (base, Fcons (index, Qnil)));
6357 Fput (new_symbol, Qevent_symbol_elements,
6358 Fcons (base, lispy_modifier_list (modifiers)));
6359 Sadly, this is only correct if `base' is indeed a base event,
6360 which is not necessarily the case. -stef */
6363 /* Make sure this symbol is of the same kind as BASE.
6365 You'd think we could just set this once and for all when we
6366 intern the symbol above, but reorder_modifiers may call us when
6367 BASE's property isn't set right; we can't assume that just
6368 because it has a Qmodifier_cache property it must have its
6369 Qevent_kind set right as well. */
6370 if (NILP (Fget (new_symbol, Qevent_kind)))
6372 Lisp_Object kind;
6374 kind = Fget (base, Qevent_kind);
6375 if (! NILP (kind))
6376 Fput (new_symbol, Qevent_kind, kind);
6379 return new_symbol;
6383 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6384 return a symbol with the modifiers placed in the canonical order.
6385 Canonical order is alphabetical, except for down and drag, which
6386 always come last. The 'click' modifier is never written out.
6388 Fdefine_key calls this to make sure that (for example) C-M-foo
6389 and M-C-foo end up being equivalent in the keymap. */
6391 Lisp_Object
6392 reorder_modifiers (symbol)
6393 Lisp_Object symbol;
6395 /* It's hopefully okay to write the code this way, since everything
6396 will soon be in caches, and no consing will be done at all. */
6397 Lisp_Object parsed;
6399 parsed = parse_modifiers (symbol);
6400 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6401 XCAR (parsed));
6405 /* For handling events, we often want to produce a symbol whose name
6406 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6407 to some base, like the name of a function key or mouse button.
6408 modify_event_symbol produces symbols of this sort.
6410 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6411 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6412 in the table.
6414 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6415 into symbol names, or a string specifying a name stem used to
6416 construct a symbol name or the form `STEM-N', where N is the decimal
6417 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6418 non-nil; otherwise NAME_TABLE is used.
6420 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6421 persist between calls to modify_event_symbol that it can use to
6422 store a cache of the symbols it's generated for this NAME_TABLE
6423 before. The object stored there may be a vector or an alist.
6425 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6427 MODIFIERS is a set of modifier bits (as given in struct input_events)
6428 whose prefixes should be applied to the symbol name.
6430 SYMBOL_KIND is the value to be placed in the event_kind property of
6431 the returned symbol.
6433 The symbols we create are supposed to have an
6434 `event-symbol-elements' property, which lists the modifiers present
6435 in the symbol's name. */
6437 static Lisp_Object
6438 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
6439 name_table, symbol_table, table_size)
6440 int symbol_num;
6441 unsigned modifiers;
6442 Lisp_Object symbol_kind;
6443 Lisp_Object name_alist_or_stem;
6444 char **name_table;
6445 Lisp_Object *symbol_table;
6446 unsigned int table_size;
6448 Lisp_Object value;
6449 Lisp_Object symbol_int;
6451 /* Get rid of the "vendor-specific" bit here. */
6452 XSETINT (symbol_int, symbol_num & 0xffffff);
6454 /* Is this a request for a valid symbol? */
6455 if (symbol_num < 0 || symbol_num >= table_size)
6456 return Qnil;
6458 if (CONSP (*symbol_table))
6459 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6461 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6462 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6463 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6464 we've never used that symbol before. */
6465 else
6467 if (! VECTORP (*symbol_table)
6468 || XVECTOR (*symbol_table)->size != table_size)
6470 Lisp_Object size;
6472 XSETFASTINT (size, table_size);
6473 *symbol_table = Fmake_vector (size, Qnil);
6476 value = XVECTOR (*symbol_table)->contents[symbol_num];
6479 /* Have we already used this symbol before? */
6480 if (NILP (value))
6482 /* No; let's create it. */
6483 if (CONSP (name_alist_or_stem))
6484 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6485 else if (STRINGP (name_alist_or_stem))
6487 int len = SBYTES (name_alist_or_stem);
6488 char *buf = (char *) alloca (len + 50);
6489 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6490 (long) XINT (symbol_int) + 1);
6491 value = intern (buf);
6493 else if (name_table != 0 && name_table[symbol_num])
6494 value = intern (name_table[symbol_num]);
6496 #ifdef HAVE_WINDOW_SYSTEM
6497 if (NILP (value))
6499 char *name = x_get_keysym_name (symbol_num);
6500 if (name)
6501 value = intern (name);
6503 #endif
6505 if (NILP (value))
6507 char buf[20];
6508 sprintf (buf, "key-%d", symbol_num);
6509 value = intern (buf);
6512 if (CONSP (*symbol_table))
6513 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6514 else
6515 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6517 /* Fill in the cache entries for this symbol; this also
6518 builds the Qevent_symbol_elements property, which the user
6519 cares about. */
6520 apply_modifiers (modifiers & click_modifier, value);
6521 Fput (value, Qevent_kind, symbol_kind);
6524 /* Apply modifiers to that symbol. */
6525 return apply_modifiers (modifiers, value);
6528 /* Convert a list that represents an event type,
6529 such as (ctrl meta backspace), into the usual representation of that
6530 event type as a number or a symbol. */
6532 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6533 doc: /* Convert the event description list EVENT-DESC to an event type.
6534 EVENT-DESC should contain one base event type (a character or symbol)
6535 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6536 drag, down, double or triple). The base must be last.
6537 The return value is an event type (a character or symbol) which
6538 has the same base event type and all the specified modifiers. */)
6539 (event_desc)
6540 Lisp_Object event_desc;
6542 Lisp_Object base;
6543 int modifiers = 0;
6544 Lisp_Object rest;
6546 base = Qnil;
6547 rest = event_desc;
6548 while (CONSP (rest))
6550 Lisp_Object elt;
6551 int this = 0;
6553 elt = XCAR (rest);
6554 rest = XCDR (rest);
6556 /* Given a symbol, see if it is a modifier name. */
6557 if (SYMBOLP (elt) && CONSP (rest))
6558 this = parse_solitary_modifier (elt);
6560 if (this != 0)
6561 modifiers |= this;
6562 else if (!NILP (base))
6563 error ("Two bases given in one event");
6564 else
6565 base = elt;
6569 /* Let the symbol A refer to the character A. */
6570 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6571 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6573 if (INTEGERP (base))
6575 /* Turn (shift a) into A. */
6576 if ((modifiers & shift_modifier) != 0
6577 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6579 XSETINT (base, XINT (base) - ('a' - 'A'));
6580 modifiers &= ~shift_modifier;
6583 /* Turn (control a) into C-a. */
6584 if (modifiers & ctrl_modifier)
6585 return make_number ((modifiers & ~ctrl_modifier)
6586 | make_ctrl_char (XINT (base)));
6587 else
6588 return make_number (modifiers | XINT (base));
6590 else if (SYMBOLP (base))
6591 return apply_modifiers (modifiers, base);
6592 else
6594 error ("Invalid base event");
6595 return Qnil;
6599 /* Try to recognize SYMBOL as a modifier name.
6600 Return the modifier flag bit, or 0 if not recognized. */
6602 static int
6603 parse_solitary_modifier (symbol)
6604 Lisp_Object symbol;
6606 Lisp_Object name = SYMBOL_NAME (symbol);
6608 switch (SREF (name, 0))
6610 #define SINGLE_LETTER_MOD(BIT) \
6611 if (SBYTES (name) == 1) \
6612 return BIT;
6614 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6615 if (LEN == SBYTES (name) \
6616 && ! strncmp (SDATA (name), NAME, LEN)) \
6617 return BIT;
6619 case 'A':
6620 SINGLE_LETTER_MOD (alt_modifier);
6621 break;
6623 case 'a':
6624 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6625 break;
6627 case 'C':
6628 SINGLE_LETTER_MOD (ctrl_modifier);
6629 break;
6631 case 'c':
6632 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6633 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6634 break;
6636 case 'H':
6637 SINGLE_LETTER_MOD (hyper_modifier);
6638 break;
6640 case 'h':
6641 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6642 break;
6644 case 'M':
6645 SINGLE_LETTER_MOD (meta_modifier);
6646 break;
6648 case 'm':
6649 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6650 break;
6652 case 'S':
6653 SINGLE_LETTER_MOD (shift_modifier);
6654 break;
6656 case 's':
6657 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6658 MULTI_LETTER_MOD (super_modifier, "super", 5);
6659 SINGLE_LETTER_MOD (super_modifier);
6660 break;
6662 case 'd':
6663 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6664 MULTI_LETTER_MOD (down_modifier, "down", 4);
6665 MULTI_LETTER_MOD (double_modifier, "double", 6);
6666 break;
6668 case 't':
6669 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6670 break;
6672 #undef SINGLE_LETTER_MOD
6673 #undef MULTI_LETTER_MOD
6676 return 0;
6679 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6680 Such a list is not valid as an event,
6681 but it can be a Lucid-style event type list. */
6684 lucid_event_type_list_p (object)
6685 Lisp_Object object;
6687 Lisp_Object tail;
6689 if (! CONSP (object))
6690 return 0;
6692 if (EQ (XCAR (object), Qhelp_echo)
6693 || EQ (XCAR (object), Qvertical_line)
6694 || EQ (XCAR (object), Qmode_line)
6695 || EQ (XCAR (object), Qheader_line))
6696 return 0;
6698 for (tail = object; CONSP (tail); tail = XCDR (tail))
6700 Lisp_Object elt;
6701 elt = XCAR (tail);
6702 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6703 return 0;
6706 return NILP (tail);
6709 /* Store into *addr a value nonzero if terminal input chars are available.
6710 Serves the purpose of ioctl (0, FIONREAD, addr)
6711 but works even if FIONREAD does not exist.
6712 (In fact, this may actually read some input.)
6714 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6715 timer events that are ripe.
6716 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6717 events (FOCUS_IN_EVENT).
6718 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6719 movements and toolkit scroll bar thumb drags. */
6721 static void
6722 get_input_pending (addr, flags)
6723 int *addr;
6724 int flags;
6726 /* First of all, have we already counted some input? */
6727 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6729 /* If input is being read as it arrives, and we have none, there is none. */
6730 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6731 return;
6733 /* Try to read some input and see how much we get. */
6734 gobble_input (0);
6735 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6738 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6740 void
6741 gobble_input (expected)
6742 int expected;
6744 #ifndef VMS
6745 #ifdef SIGIO
6746 if (interrupt_input)
6748 SIGMASKTYPE mask;
6749 mask = sigblock (sigmask (SIGIO));
6750 read_avail_input (expected);
6751 sigsetmask (mask);
6753 else
6754 #ifdef POLL_FOR_INPUT
6755 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6757 SIGMASKTYPE mask;
6758 mask = sigblock (sigmask (SIGALRM));
6759 read_avail_input (expected);
6760 sigsetmask (mask);
6762 else
6763 #endif
6764 #endif
6765 read_avail_input (expected);
6766 #endif
6769 /* Put a BUFFER_SWITCH_EVENT in the buffer
6770 so that read_key_sequence will notice the new current buffer. */
6772 void
6773 record_asynch_buffer_change ()
6775 struct input_event event;
6776 Lisp_Object tem;
6777 EVENT_INIT (event);
6779 event.kind = BUFFER_SWITCH_EVENT;
6780 event.frame_or_window = Qnil;
6781 event.arg = Qnil;
6783 #ifdef subprocesses
6784 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6785 The purpose of the event is to make read_key_sequence look up the
6786 keymaps again. If we aren't in read_key_sequence, we don't need one,
6787 and the event could cause trouble by messing up (input-pending-p). */
6788 tem = Fwaiting_for_user_input_p ();
6789 if (NILP (tem))
6790 return;
6791 #else
6792 /* We never need these events if we have no asynchronous subprocesses. */
6793 return;
6794 #endif
6796 /* Make sure no interrupt happens while storing the event. */
6797 #ifdef SIGIO
6798 if (interrupt_input)
6800 SIGMASKTYPE mask;
6801 mask = sigblock (sigmask (SIGIO));
6802 kbd_buffer_store_event (&event);
6803 sigsetmask (mask);
6805 else
6806 #endif
6808 stop_polling ();
6809 kbd_buffer_store_event (&event);
6810 start_polling ();
6814 #ifndef VMS
6816 /* Read any terminal input already buffered up by the system
6817 into the kbd_buffer, but do not wait.
6819 EXPECTED should be nonzero if the caller knows there is some input.
6821 Except on VMS, all input is read by this function.
6822 If interrupt_input is nonzero, this function MUST be called
6823 only when SIGIO is blocked.
6825 Returns the number of keyboard chars read, or -1 meaning
6826 this is a bad time to try to read input. */
6828 static int
6829 read_avail_input (expected)
6830 int expected;
6832 register int i;
6833 int nread = 0;
6835 /* Store pending user signal events, if any. */
6836 if (store_user_signal_events ())
6837 expected = 0;
6839 if (read_socket_hook)
6841 int nr;
6842 struct input_event hold_quit;
6844 EVENT_INIT (hold_quit);
6845 hold_quit.kind = NO_EVENT;
6847 /* No need for FIONREAD or fcntl; just say don't wait. */
6848 while (nr = (*read_socket_hook) (input_fd, expected, &hold_quit), nr > 0)
6850 nread += nr;
6851 expected = 0;
6853 if (hold_quit.kind != NO_EVENT)
6854 kbd_buffer_store_event (&hold_quit);
6856 else
6858 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6859 the kbd_buffer can really hold. That may prevent loss
6860 of characters on some systems when input is stuffed at us. */
6861 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6862 int n_to_read;
6864 /* Determine how many characters we should *try* to read. */
6865 #ifdef WINDOWSNT
6866 return 0;
6867 #else /* not WINDOWSNT */
6868 #ifdef MSDOS
6869 n_to_read = dos_keysns ();
6870 if (n_to_read == 0)
6871 return 0;
6872 #else /* not MSDOS */
6873 #ifdef FIONREAD
6874 /* Find out how much input is available. */
6875 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6876 /* Formerly simply reported no input, but that sometimes led to
6877 a failure of Emacs to terminate.
6878 SIGHUP seems appropriate if we can't reach the terminal. */
6879 /* ??? Is it really right to send the signal just to this process
6880 rather than to the whole process group?
6881 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6883 if (! noninteractive)
6884 kill (getpid (), SIGHUP);
6885 else
6886 n_to_read = 0;
6888 if (n_to_read == 0)
6889 return 0;
6890 if (n_to_read > sizeof cbuf)
6891 n_to_read = sizeof cbuf;
6892 #else /* no FIONREAD */
6893 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6894 /* Read some input if available, but don't wait. */
6895 n_to_read = sizeof cbuf;
6896 fcntl (input_fd, F_SETFL, O_NDELAY);
6897 #else
6898 you lose;
6899 #endif
6900 #endif
6901 #endif /* not MSDOS */
6902 #endif /* not WINDOWSNT */
6904 /* Now read; for one reason or another, this will not block.
6905 NREAD is set to the number of chars read. */
6908 #ifdef MSDOS
6909 cbuf[0] = dos_keyread ();
6910 nread = 1;
6911 #else
6912 nread = emacs_read (input_fd, cbuf, n_to_read);
6913 #endif
6914 /* POSIX infers that processes which are not in the session leader's
6915 process group won't get SIGHUP's at logout time. BSDI adheres to
6916 this part standard and returns -1 from read (0) with errno==EIO
6917 when the control tty is taken away.
6918 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6919 if (nread == -1 && errno == EIO)
6920 kill (0, SIGHUP);
6921 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6922 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6923 This looks incorrect, but it isn't, because _BSD causes
6924 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6925 and that causes a value other than 0 when there is no input. */
6926 if (nread == 0)
6927 kill (0, SIGHUP);
6928 #endif
6930 while (
6931 /* We used to retry the read if it was interrupted.
6932 But this does the wrong thing when O_NDELAY causes
6933 an EAGAIN error. Does anybody know of a situation
6934 where a retry is actually needed? */
6935 #if 0
6936 nread < 0 && (errno == EAGAIN
6937 #ifdef EFAULT
6938 || errno == EFAULT
6939 #endif
6940 #ifdef EBADSLT
6941 || errno == EBADSLT
6942 #endif
6944 #else
6946 #endif
6949 #ifndef FIONREAD
6950 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6951 fcntl (input_fd, F_SETFL, 0);
6952 #endif /* USG or DGUX or CYGWIN */
6953 #endif /* no FIONREAD */
6954 for (i = 0; i < nread; i++)
6956 struct input_event buf;
6957 EVENT_INIT (buf);
6958 buf.kind = ASCII_KEYSTROKE_EVENT;
6959 buf.modifiers = 0;
6960 if (meta_key == 1 && (cbuf[i] & 0x80))
6961 buf.modifiers = meta_modifier;
6962 if (meta_key != 2)
6963 cbuf[i] &= ~0x80;
6965 buf.code = cbuf[i];
6966 buf.frame_or_window = selected_frame;
6967 buf.arg = Qnil;
6969 kbd_buffer_store_event (&buf);
6970 /* Don't look at input that follows a C-g too closely.
6971 This reduces lossage due to autorepeat on C-g. */
6972 if (buf.kind == ASCII_KEYSTROKE_EVENT
6973 && buf.code == quit_char)
6974 break;
6978 return nread;
6980 #endif /* not VMS */
6982 void
6983 handle_async_input ()
6985 #ifdef BSD4_1
6986 extern int select_alarmed;
6987 #endif
6989 interrupt_input_pending = 0;
6991 while (1)
6993 int nread;
6994 nread = read_avail_input (1);
6995 /* -1 means it's not ok to read the input now.
6996 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6997 0 means there was no keyboard input available. */
6998 if (nread <= 0)
6999 break;
7001 #ifdef BSD4_1
7002 select_alarmed = 1; /* Force the select emulator back to life */
7003 #endif
7007 #ifdef SIGIO /* for entire page */
7008 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7010 static SIGTYPE
7011 input_available_signal (signo)
7012 int signo;
7014 /* Must preserve main program's value of errno. */
7015 int old_errno = errno;
7016 #if defined (USG) && !defined (POSIX_SIGNALS)
7017 /* USG systems forget handlers when they are used;
7018 must reestablish each time */
7019 signal (signo, input_available_signal);
7020 #endif /* USG */
7022 #ifdef BSD4_1
7023 sigisheld (SIGIO);
7024 #endif
7026 #ifdef SYNC_INPUT
7027 interrupt_input_pending = 1;
7028 #else
7029 SIGNAL_THREAD_CHECK (signo);
7030 #endif
7032 if (input_available_clear_time)
7033 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
7035 #ifndef SYNC_INPUT
7036 handle_async_input ();
7037 #endif
7039 #ifdef BSD4_1
7040 sigfree ();
7041 #endif
7042 errno = old_errno;
7044 #endif /* SIGIO */
7046 /* Send ourselves a SIGIO.
7048 This function exists so that the UNBLOCK_INPUT macro in
7049 blockinput.h can have some way to take care of input we put off
7050 dealing with, without assuming that every file which uses
7051 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
7052 void
7053 reinvoke_input_signal ()
7055 #ifdef SIGIO
7056 handle_async_input ();
7057 #endif
7062 /* User signal events. */
7064 struct user_signal_info
7066 /* Signal number. */
7067 int sig;
7069 /* Name of the signal. */
7070 char *name;
7072 /* Number of pending signals. */
7073 int npending;
7075 struct user_signal_info *next;
7078 /* List of user signals. */
7079 static struct user_signal_info *user_signals = NULL;
7081 void
7082 add_user_signal (sig, name)
7083 int sig;
7084 const char *name;
7086 struct user_signal_info *p;
7088 for (p = user_signals; p; p = p->next)
7089 if (p->sig == sig)
7090 /* Already added. */
7091 return;
7093 p = xmalloc (sizeof (struct user_signal_info));
7094 p->sig = sig;
7095 p->name = xstrdup (name);
7096 p->npending = 0;
7097 p->next = user_signals;
7098 user_signals = p;
7100 signal (sig, handle_user_signal);
7103 static SIGTYPE
7104 handle_user_signal (sig)
7105 int sig;
7107 int old_errno = errno;
7108 struct user_signal_info *p;
7110 #if defined (USG) && !defined (POSIX_SIGNALS)
7111 /* USG systems forget handlers when they are used;
7112 must reestablish each time */
7113 signal (sig, handle_user_signal);
7114 #endif
7116 SIGNAL_THREAD_CHECK (sig);
7118 for (p = user_signals; p; p = p->next)
7119 if (p->sig == sig)
7121 p->npending++;
7122 #ifdef SIGIO
7123 if (interrupt_input)
7124 kill (getpid (), SIGIO);
7125 else
7126 #endif
7128 /* Tell wait_reading_process_output that it needs to wake
7129 up and look around. */
7130 if (input_available_clear_time)
7131 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
7133 break;
7136 errno = old_errno;
7139 static char *
7140 find_user_signal_name (sig)
7141 int sig;
7143 struct user_signal_info *p;
7145 for (p = user_signals; p; p = p->next)
7146 if (p->sig == sig)
7147 return p->name;
7149 return NULL;
7152 static int
7153 store_user_signal_events ()
7155 struct user_signal_info *p;
7156 struct input_event buf;
7157 int nstored = 0;
7159 for (p = user_signals; p; p = p->next)
7160 if (p->npending > 0)
7162 SIGMASKTYPE mask;
7164 if (nstored == 0)
7166 bzero (&buf, sizeof buf);
7167 buf.kind = USER_SIGNAL_EVENT;
7168 buf.frame_or_window = selected_frame;
7170 nstored += p->npending;
7172 mask = sigblock (sigmask (p->sig));
7175 buf.code = p->sig;
7176 kbd_buffer_store_event (&buf);
7177 p->npending--;
7179 while (p->npending > 0);
7180 sigsetmask (mask);
7183 return nstored;
7187 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
7188 static Lisp_Object menu_bar_one_keymap_changed_items;
7190 /* These variables hold the vector under construction within
7191 menu_bar_items and its subroutines, and the current index
7192 for storing into that vector. */
7193 static Lisp_Object menu_bar_items_vector;
7194 static int menu_bar_items_index;
7196 /* Return a vector of menu items for a menu bar, appropriate
7197 to the current buffer. Each item has three elements in the vector:
7198 KEY STRING MAPLIST.
7200 OLD is an old vector we can optionally reuse, or nil. */
7202 Lisp_Object
7203 menu_bar_items (old)
7204 Lisp_Object old;
7206 /* The number of keymaps we're scanning right now, and the number of
7207 keymaps we have allocated space for. */
7208 int nmaps;
7210 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7211 in the current keymaps, or nil where it is not a prefix. */
7212 Lisp_Object *maps;
7214 Lisp_Object def, tail;
7216 Lisp_Object result;
7218 int mapno;
7219 Lisp_Object oquit;
7221 int i;
7223 /* In order to build the menus, we need to call the keymap
7224 accessors. They all call QUIT. But this function is called
7225 during redisplay, during which a quit is fatal. So inhibit
7226 quitting while building the menus.
7227 We do this instead of specbind because (1) errors will clear it anyway
7228 and (2) this avoids risk of specpdl overflow. */
7229 oquit = Vinhibit_quit;
7230 Vinhibit_quit = Qt;
7232 if (!NILP (old))
7233 menu_bar_items_vector = old;
7234 else
7235 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
7236 menu_bar_items_index = 0;
7238 /* Build our list of keymaps.
7239 If we recognize a function key and replace its escape sequence in
7240 keybuf with its symbol, or if the sequence starts with a mouse
7241 click and we need to switch buffers, we jump back here to rebuild
7242 the initial keymaps from the current buffer. */
7244 Lisp_Object *tmaps;
7246 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7247 if (!NILP (Voverriding_local_map_menu_flag))
7249 /* Yes, use them (if non-nil) as well as the global map. */
7250 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7251 nmaps = 0;
7252 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7253 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7254 if (!NILP (Voverriding_local_map))
7255 maps[nmaps++] = Voverriding_local_map;
7257 else
7259 /* No, so use major and minor mode keymaps and keymap property.
7260 Note that menu-bar bindings in the local-map and keymap
7261 properties may not work reliable, as they are only
7262 recognized when the menu-bar (or mode-line) is updated,
7263 which does not normally happen after every command. */
7264 Lisp_Object tem;
7265 int nminor;
7266 nminor = current_minor_maps (NULL, &tmaps);
7267 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7268 nmaps = 0;
7269 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7270 maps[nmaps++] = tem;
7271 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7272 nmaps += nminor;
7273 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7275 maps[nmaps++] = current_global_map;
7278 /* Look up in each map the dummy prefix key `menu-bar'. */
7280 result = Qnil;
7282 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7283 if (!NILP (maps[mapno]))
7285 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7286 0, 1);
7287 if (CONSP (def))
7289 menu_bar_one_keymap_changed_items = Qnil;
7290 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
7294 /* Move to the end those items that should be at the end. */
7296 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7298 int i;
7299 int end = menu_bar_items_index;
7301 for (i = 0; i < end; i += 4)
7302 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
7304 Lisp_Object tem0, tem1, tem2, tem3;
7305 /* Move the item at index I to the end,
7306 shifting all the others forward. */
7307 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
7308 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
7309 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7310 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
7311 if (end > i + 4)
7312 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7313 &XVECTOR (menu_bar_items_vector)->contents[i],
7314 (end - i - 4) * sizeof (Lisp_Object));
7315 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
7316 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
7317 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
7318 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
7319 break;
7323 /* Add nil, nil, nil, nil at the end. */
7324 i = menu_bar_items_index;
7325 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7327 Lisp_Object tem;
7328 tem = Fmake_vector (make_number (2 * i), Qnil);
7329 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7330 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7331 menu_bar_items_vector = tem;
7333 /* Add this item. */
7334 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7335 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7336 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7337 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7338 menu_bar_items_index = i;
7340 Vinhibit_quit = oquit;
7341 return menu_bar_items_vector;
7344 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7345 If there's already an item for KEY, add this DEF to it. */
7347 Lisp_Object item_properties;
7349 static void
7350 menu_bar_item (key, item, dummy1, dummy2)
7351 Lisp_Object key, item, dummy1;
7352 void *dummy2;
7354 struct gcpro gcpro1;
7355 int i;
7356 Lisp_Object tem;
7358 if (EQ (item, Qundefined))
7360 /* If a map has an explicit `undefined' as definition,
7361 discard any previously made menu bar item. */
7363 for (i = 0; i < menu_bar_items_index; i += 4)
7364 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7366 if (menu_bar_items_index > i + 4)
7367 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7368 &XVECTOR (menu_bar_items_vector)->contents[i],
7369 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
7370 menu_bar_items_index -= 4;
7374 /* If this keymap has already contributed to this KEY,
7375 don't contribute to it a second time. */
7376 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7377 if (!NILP (tem) || NILP (item))
7378 return;
7380 menu_bar_one_keymap_changed_items
7381 = Fcons (key, menu_bar_one_keymap_changed_items);
7383 /* We add to menu_bar_one_keymap_changed_items before doing the
7384 parse_menu_item, so that if it turns out it wasn't a menu item,
7385 it still correctly hides any further menu item. */
7386 GCPRO1 (key);
7387 i = parse_menu_item (item, 0, 1);
7388 UNGCPRO;
7389 if (!i)
7390 return;
7392 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7394 /* Find any existing item for this KEY. */
7395 for (i = 0; i < menu_bar_items_index; i += 4)
7396 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7397 break;
7399 /* If we did not find this KEY, add it at the end. */
7400 if (i == menu_bar_items_index)
7402 /* If vector is too small, get a bigger one. */
7403 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7405 Lisp_Object tem;
7406 tem = Fmake_vector (make_number (2 * i), Qnil);
7407 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7408 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7409 menu_bar_items_vector = tem;
7412 /* Add this item. */
7413 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
7414 XVECTOR (menu_bar_items_vector)->contents[i++]
7415 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7416 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
7417 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
7418 menu_bar_items_index = i;
7420 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7421 else
7423 Lisp_Object old;
7424 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7425 /* If the new and the old items are not both keymaps,
7426 the lookup will only find `item'. */
7427 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7428 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
7432 /* This is used as the handler when calling menu_item_eval_property. */
7433 static Lisp_Object
7434 menu_item_eval_property_1 (arg)
7435 Lisp_Object arg;
7437 /* If we got a quit from within the menu computation,
7438 quit all the way out of it. This takes care of C-] in the debugger. */
7439 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7440 Fsignal (Qquit, Qnil);
7442 return Qnil;
7445 /* Evaluate an expression and return the result (or nil if something
7446 went wrong). Used to evaluate dynamic parts of menu items. */
7447 Lisp_Object
7448 menu_item_eval_property (sexpr)
7449 Lisp_Object sexpr;
7451 int count = SPECPDL_INDEX ();
7452 Lisp_Object val;
7453 specbind (Qinhibit_redisplay, Qt);
7454 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7455 menu_item_eval_property_1);
7456 return unbind_to (count, val);
7459 /* This function parses a menu item and leaves the result in the
7460 vector item_properties.
7461 ITEM is a key binding, a possible menu item.
7462 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7463 evaluate dynamic expressions in the menu item.
7464 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7465 top level.
7466 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7467 parse_menu_item returns true if the item is a menu item and false
7468 otherwise. */
7471 parse_menu_item (item, notreal, inmenubar)
7472 Lisp_Object item;
7473 int notreal, inmenubar;
7475 Lisp_Object def, tem, item_string, start;
7476 Lisp_Object cachelist;
7477 Lisp_Object filter;
7478 Lisp_Object keyhint;
7479 int i;
7480 int newcache = 0;
7482 cachelist = Qnil;
7483 filter = Qnil;
7484 keyhint = Qnil;
7486 if (!CONSP (item))
7487 return 0;
7489 /* Create item_properties vector if necessary. */
7490 if (NILP (item_properties))
7491 item_properties
7492 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7494 /* Initialize optional entries. */
7495 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7496 AREF (item_properties, i) = Qnil;
7497 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7499 /* Save the item here to protect it from GC. */
7500 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
7502 item_string = XCAR (item);
7504 start = item;
7505 item = XCDR (item);
7506 if (STRINGP (item_string))
7508 /* Old format menu item. */
7509 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7511 /* Maybe help string. */
7512 if (CONSP (item) && STRINGP (XCAR (item)))
7514 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7515 start = item;
7516 item = XCDR (item);
7519 /* Maybe key binding cache. */
7520 if (CONSP (item) && CONSP (XCAR (item))
7521 && (NILP (XCAR (XCAR (item)))
7522 || VECTORP (XCAR (XCAR (item)))))
7524 cachelist = XCAR (item);
7525 item = XCDR (item);
7528 /* This is the real definition--the function to run. */
7529 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
7531 /* Get enable property, if any. */
7532 if (SYMBOLP (item))
7534 tem = Fget (item, Qmenu_enable);
7535 if (!NILP (Venable_disabled_menus_and_buttons))
7536 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7537 else if (!NILP (tem))
7538 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7541 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7543 /* New format menu item. */
7544 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7545 start = XCDR (item);
7546 if (CONSP (start))
7548 /* We have a real binding. */
7549 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
7551 item = XCDR (start);
7552 /* Is there a cache list with key equivalences. */
7553 if (CONSP (item) && CONSP (XCAR (item)))
7555 cachelist = XCAR (item);
7556 item = XCDR (item);
7559 /* Parse properties. */
7560 while (CONSP (item) && CONSP (XCDR (item)))
7562 tem = XCAR (item);
7563 item = XCDR (item);
7565 if (EQ (tem, QCenable))
7567 if (!NILP (Venable_disabled_menus_and_buttons))
7568 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7569 else
7570 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
7572 else if (EQ (tem, QCvisible) && !notreal)
7574 /* If got a visible property and that evaluates to nil
7575 then ignore this item. */
7576 tem = menu_item_eval_property (XCAR (item));
7577 if (NILP (tem))
7578 return 0;
7580 else if (EQ (tem, QChelp))
7581 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7582 else if (EQ (tem, QCfilter))
7583 filter = item;
7584 else if (EQ (tem, QCkey_sequence))
7586 tem = XCAR (item);
7587 if (NILP (cachelist)
7588 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7589 /* Be GC protected. Set keyhint to item instead of tem. */
7590 keyhint = item;
7592 else if (EQ (tem, QCkeys))
7594 tem = XCAR (item);
7595 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
7596 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7598 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7600 Lisp_Object type;
7601 tem = XCAR (item);
7602 type = XCAR (tem);
7603 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7605 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7606 = XCDR (tem);
7607 AREF (item_properties, ITEM_PROPERTY_TYPE)
7608 = type;
7611 item = XCDR (item);
7614 else if (inmenubar || !NILP (start))
7615 return 0;
7617 else
7618 return 0; /* not a menu item */
7620 /* If item string is not a string, evaluate it to get string.
7621 If we don't get a string, skip this item. */
7622 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7623 if (!(STRINGP (item_string) || notreal))
7625 item_string = menu_item_eval_property (item_string);
7626 if (!STRINGP (item_string))
7627 return 0;
7628 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7631 /* If got a filter apply it on definition. */
7632 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7633 if (!NILP (filter))
7635 def = menu_item_eval_property (list2 (XCAR (filter),
7636 list2 (Qquote, def)));
7638 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
7641 /* Enable or disable selection of item. */
7642 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7643 if (!EQ (tem, Qt))
7645 if (notreal)
7646 tem = Qt;
7647 else
7648 tem = menu_item_eval_property (tem);
7649 if (inmenubar && NILP (tem))
7650 return 0; /* Ignore disabled items in menu bar. */
7651 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7654 /* If we got no definition, this item is just unselectable text which
7655 is OK in a submenu but not in the menubar. */
7656 if (NILP (def))
7657 return (inmenubar ? 0 : 1);
7659 /* See if this is a separate pane or a submenu. */
7660 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7661 tem = get_keymap (def, 0, 1);
7662 /* For a subkeymap, just record its details and exit. */
7663 if (CONSP (tem))
7665 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7666 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7667 return 1;
7670 /* At the top level in the menu bar, do likewise for commands also.
7671 The menu bar does not display equivalent key bindings anyway.
7672 ITEM_PROPERTY_DEF is already set up properly. */
7673 if (inmenubar > 0)
7674 return 1;
7676 /* This is a command. See if there is an equivalent key binding. */
7677 if (NILP (cachelist))
7679 /* We have to create a cachelist. */
7680 CHECK_IMPURE (start);
7681 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7682 cachelist = XCAR (XCDR (start));
7683 newcache = 1;
7684 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7685 if (!NILP (keyhint))
7687 XSETCAR (cachelist, XCAR (keyhint));
7688 newcache = 0;
7690 else if (STRINGP (tem))
7692 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7693 XSETCAR (cachelist, Qt);
7697 tem = XCAR (cachelist);
7698 if (!EQ (tem, Qt))
7700 int chkcache = 0;
7701 Lisp_Object prefix;
7703 if (!NILP (tem))
7704 tem = Fkey_binding (tem, Qnil, Qnil, Qnil);
7706 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7707 if (CONSP (prefix))
7709 def = XCAR (prefix);
7710 prefix = XCDR (prefix);
7712 else
7713 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7715 if (NILP (XCAR (cachelist))) /* Have no saved key. */
7717 if (newcache /* Always check first time. */
7718 /* Should we check everything when precomputing key
7719 bindings? */
7720 /* If something had no key binding before, don't recheck it
7721 because that is too slow--except if we have a list of
7722 rebound commands in Vdefine_key_rebound_commands, do
7723 recheck any command that appears in that list. */
7724 || (CONSP (Vdefine_key_rebound_commands)
7725 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7726 chkcache = 1;
7728 /* We had a saved key. Is it still bound to the command? */
7729 else if (NILP (tem)
7730 || (!EQ (tem, def)
7731 /* If the command is an alias for another
7732 (such as lmenu.el set it up), check if the
7733 original command matches the cached command. */
7734 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7735 chkcache = 1; /* Need to recompute key binding. */
7737 if (chkcache)
7739 /* Recompute equivalent key binding. If the command is an alias
7740 for another (such as lmenu.el set it up), see if the original
7741 command name has equivalent keys. Otherwise look up the
7742 specified command itself. We don't try both, because that
7743 makes lmenu menus slow. */
7744 if (SYMBOLP (def)
7745 && SYMBOLP (XSYMBOL (def)->function)
7746 && ! NILP (Fget (def, Qmenu_alias)))
7747 def = XSYMBOL (def)->function;
7748 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7749 XSETCAR (cachelist, tem);
7750 if (NILP (tem))
7752 XSETCDR (cachelist, Qnil);
7753 chkcache = 0;
7756 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7758 tem = XCAR (cachelist);
7759 chkcache = 1;
7762 newcache = chkcache;
7763 if (chkcache)
7765 tem = Fkey_description (tem, Qnil);
7766 if (CONSP (prefix))
7768 if (STRINGP (XCAR (prefix)))
7769 tem = concat2 (XCAR (prefix), tem);
7770 if (STRINGP (XCDR (prefix)))
7771 tem = concat2 (tem, XCDR (prefix));
7773 XSETCDR (cachelist, tem);
7777 tem = XCDR (cachelist);
7778 if (newcache && !NILP (tem))
7780 tem = concat3 (build_string (" ("), tem, build_string (")"));
7781 XSETCDR (cachelist, tem);
7784 /* If we only want to precompute equivalent key bindings, stop here. */
7785 if (notreal)
7786 return 1;
7788 /* If we have an equivalent key binding, use that. */
7789 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7791 /* Include this when menu help is implemented.
7792 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7793 if (!(NILP (tem) || STRINGP (tem)))
7795 tem = menu_item_eval_property (tem);
7796 if (!STRINGP (tem))
7797 tem = Qnil;
7798 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7802 /* Handle radio buttons or toggle boxes. */
7803 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7804 if (!NILP (tem))
7805 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7806 = menu_item_eval_property (tem);
7808 return 1;
7813 /***********************************************************************
7814 Tool-bars
7815 ***********************************************************************/
7817 /* A vector holding tool bar items while they are parsed in function
7818 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7819 in the vector. */
7821 static Lisp_Object tool_bar_items_vector;
7823 /* A vector holding the result of parse_tool_bar_item. Layout is like
7824 the one for a single item in tool_bar_items_vector. */
7826 static Lisp_Object tool_bar_item_properties;
7828 /* Next free index in tool_bar_items_vector. */
7830 static int ntool_bar_items;
7832 /* The symbols `tool-bar', `:image' and `:rtl'. */
7834 extern Lisp_Object Qtool_bar;
7835 Lisp_Object QCimage;
7836 Lisp_Object Qrtl;
7838 /* Function prototypes. */
7840 static void init_tool_bar_items P_ ((Lisp_Object));
7841 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
7842 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7843 static void append_tool_bar_item P_ ((void));
7846 /* Return a vector of tool bar items for keymaps currently in effect.
7847 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7848 tool bar items found. */
7850 Lisp_Object
7851 tool_bar_items (reuse, nitems)
7852 Lisp_Object reuse;
7853 int *nitems;
7855 Lisp_Object *maps;
7856 int nmaps, i;
7857 Lisp_Object oquit;
7858 Lisp_Object *tmaps;
7860 *nitems = 0;
7862 /* In order to build the menus, we need to call the keymap
7863 accessors. They all call QUIT. But this function is called
7864 during redisplay, during which a quit is fatal. So inhibit
7865 quitting while building the menus. We do this instead of
7866 specbind because (1) errors will clear it anyway and (2) this
7867 avoids risk of specpdl overflow. */
7868 oquit = Vinhibit_quit;
7869 Vinhibit_quit = Qt;
7871 /* Initialize tool_bar_items_vector and protect it from GC. */
7872 init_tool_bar_items (reuse);
7874 /* Build list of keymaps in maps. Set nmaps to the number of maps
7875 to process. */
7877 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7878 if (!NILP (Voverriding_local_map_menu_flag))
7880 /* Yes, use them (if non-nil) as well as the global map. */
7881 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7882 nmaps = 0;
7883 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7884 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7885 if (!NILP (Voverriding_local_map))
7886 maps[nmaps++] = Voverriding_local_map;
7888 else
7890 /* No, so use major and minor mode keymaps and keymap property.
7891 Note that tool-bar bindings in the local-map and keymap
7892 properties may not work reliable, as they are only
7893 recognized when the tool-bar (or mode-line) is updated,
7894 which does not normally happen after every command. */
7895 Lisp_Object tem;
7896 int nminor;
7897 nminor = current_minor_maps (NULL, &tmaps);
7898 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7899 nmaps = 0;
7900 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7901 maps[nmaps++] = tem;
7902 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7903 nmaps += nminor;
7904 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7907 /* Add global keymap at the end. */
7908 maps[nmaps++] = current_global_map;
7910 /* Process maps in reverse order and look up in each map the prefix
7911 key `tool-bar'. */
7912 for (i = nmaps - 1; i >= 0; --i)
7913 if (!NILP (maps[i]))
7915 Lisp_Object keymap;
7917 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7918 if (CONSP (keymap))
7919 map_keymap (keymap, process_tool_bar_item, Qnil, NULL, 1);
7922 Vinhibit_quit = oquit;
7923 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7924 return tool_bar_items_vector;
7928 /* Process the definition of KEY which is DEF. */
7930 static void
7931 process_tool_bar_item (key, def, data, args)
7932 Lisp_Object key, def, data;
7933 void *args;
7935 int i;
7936 extern Lisp_Object Qundefined;
7937 struct gcpro gcpro1, gcpro2;
7939 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7940 eval. */
7941 GCPRO2 (key, def);
7943 if (EQ (def, Qundefined))
7945 /* If a map has an explicit `undefined' as definition,
7946 discard any previously made item. */
7947 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7949 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7951 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7953 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7954 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7955 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7956 * sizeof (Lisp_Object)));
7957 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7958 break;
7962 else if (parse_tool_bar_item (key, def))
7963 /* Append a new tool bar item to tool_bar_items_vector. Accept
7964 more than one definition for the same key. */
7965 append_tool_bar_item ();
7967 UNGCPRO;
7971 /* Parse a tool bar item specification ITEM for key KEY and return the
7972 result in tool_bar_item_properties. Value is zero if ITEM is
7973 invalid.
7975 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7977 CAPTION is the caption of the item, If it's not a string, it is
7978 evaluated to get a string.
7980 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7981 as binding are currently ignored.
7983 The following properties are recognized:
7985 - `:enable FORM'.
7987 FORM is evaluated and specifies whether the tool bar item is
7988 enabled or disabled.
7990 - `:visible FORM'
7992 FORM is evaluated and specifies whether the tool bar item is visible.
7994 - `:filter FUNCTION'
7996 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7997 result is stored as the new binding.
7999 - `:button (TYPE SELECTED)'
8001 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8002 and specifies whether the button is selected (pressed) or not.
8004 - `:image IMAGES'
8006 IMAGES is either a single image specification or a vector of four
8007 image specifications. See enum tool_bar_item_images.
8009 - `:help HELP-STRING'.
8011 Gives a help string to display for the tool bar item. */
8013 static int
8014 parse_tool_bar_item (key, item)
8015 Lisp_Object key, item;
8017 /* Access slot with index IDX of vector tool_bar_item_properties. */
8018 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
8020 Lisp_Object filter = Qnil;
8021 Lisp_Object caption;
8022 int i;
8024 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
8025 Rule out items that aren't lists, don't start with
8026 `menu-item' or whose rest following `tool-bar-item' is not a
8027 list. */
8028 if (!CONSP (item)
8029 || !EQ (XCAR (item), Qmenu_item)
8030 || (item = XCDR (item),
8031 !CONSP (item)))
8032 return 0;
8034 /* Create tool_bar_item_properties vector if necessary. Reset it to
8035 defaults. */
8036 if (VECTORP (tool_bar_item_properties))
8038 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
8039 PROP (i) = Qnil;
8041 else
8042 tool_bar_item_properties
8043 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
8045 /* Set defaults. */
8046 PROP (TOOL_BAR_ITEM_KEY) = key;
8047 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
8049 /* Get the caption of the item. If the caption is not a string,
8050 evaluate it to get a string. If we don't get a string, skip this
8051 item. */
8052 caption = XCAR (item);
8053 if (!STRINGP (caption))
8055 caption = menu_item_eval_property (caption);
8056 if (!STRINGP (caption))
8057 return 0;
8059 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
8061 /* Give up if rest following the caption is not a list. */
8062 item = XCDR (item);
8063 if (!CONSP (item))
8064 return 0;
8066 /* Store the binding. */
8067 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
8068 item = XCDR (item);
8070 /* Ignore cached key binding, if any. */
8071 if (CONSP (item) && CONSP (XCAR (item)))
8072 item = XCDR (item);
8074 /* Process the rest of the properties. */
8075 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
8077 Lisp_Object key, value;
8079 key = XCAR (item);
8080 value = XCAR (XCDR (item));
8082 if (EQ (key, QCenable))
8084 /* `:enable FORM'. */
8085 if (!NILP (Venable_disabled_menus_and_buttons))
8086 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
8087 else
8088 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
8090 else if (EQ (key, QCvisible))
8092 /* `:visible FORM'. If got a visible property and that
8093 evaluates to nil then ignore this item. */
8094 if (NILP (menu_item_eval_property (value)))
8095 return 0;
8097 else if (EQ (key, QChelp))
8098 /* `:help HELP-STRING'. */
8099 PROP (TOOL_BAR_ITEM_HELP) = value;
8100 else if (EQ (key, QCfilter))
8101 /* ':filter FORM'. */
8102 filter = value;
8103 else if (EQ (key, QCbutton) && CONSP (value))
8105 /* `:button (TYPE . SELECTED)'. */
8106 Lisp_Object type, selected;
8108 type = XCAR (value);
8109 selected = XCDR (value);
8110 if (EQ (type, QCtoggle) || EQ (type, QCradio))
8112 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
8113 PROP (TOOL_BAR_ITEM_TYPE) = type;
8116 else if (EQ (key, QCimage)
8117 && (CONSP (value)
8118 || (VECTORP (value) && XVECTOR (value)->size == 4)))
8119 /* Value is either a single image specification or a vector
8120 of 4 such specifications for the different button states. */
8121 PROP (TOOL_BAR_ITEM_IMAGES) = value;
8122 else if (EQ (key, Qrtl))
8123 /* ':rtl STRING' */
8124 PROP (TOOL_BAR_ITEM_RTL_IMAGE) = value;
8127 /* If got a filter apply it on binding. */
8128 if (!NILP (filter))
8129 PROP (TOOL_BAR_ITEM_BINDING)
8130 = menu_item_eval_property (list2 (filter,
8131 list2 (Qquote,
8132 PROP (TOOL_BAR_ITEM_BINDING))));
8134 /* See if the binding is a keymap. Give up if it is. */
8135 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
8136 return 0;
8138 /* Enable or disable selection of item. */
8139 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
8140 PROP (TOOL_BAR_ITEM_ENABLED_P)
8141 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
8143 /* Handle radio buttons or toggle boxes. */
8144 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
8145 PROP (TOOL_BAR_ITEM_SELECTED_P)
8146 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
8148 return 1;
8150 #undef PROP
8154 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8155 that can be reused. */
8157 static void
8158 init_tool_bar_items (reuse)
8159 Lisp_Object reuse;
8161 if (VECTORP (reuse))
8162 tool_bar_items_vector = reuse;
8163 else
8164 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
8165 ntool_bar_items = 0;
8169 /* Append parsed tool bar item properties from
8170 tool_bar_item_properties */
8172 static void
8173 append_tool_bar_item ()
8175 Lisp_Object *to, *from;
8177 /* Enlarge tool_bar_items_vector if necessary. */
8178 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
8179 >= XVECTOR (tool_bar_items_vector)->size)
8181 Lisp_Object new_vector;
8182 int old_size = XVECTOR (tool_bar_items_vector)->size;
8184 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
8185 bcopy (XVECTOR (tool_bar_items_vector)->contents,
8186 XVECTOR (new_vector)->contents,
8187 old_size * sizeof (Lisp_Object));
8188 tool_bar_items_vector = new_vector;
8191 /* Append entries from tool_bar_item_properties to the end of
8192 tool_bar_items_vector. */
8193 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
8194 from = XVECTOR (tool_bar_item_properties)->contents;
8195 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
8196 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
8203 /* Read a character using menus based on maps in the array MAPS.
8204 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
8205 Return t if we displayed a menu but the user rejected it.
8207 PREV_EVENT is the previous input event, or nil if we are reading
8208 the first event of a key sequence.
8210 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
8211 if we used a mouse menu to read the input, or zero otherwise. If
8212 USED_MOUSE_MENU is null, we don't dereference it.
8214 The prompting is done based on the prompt-string of the map
8215 and the strings associated with various map elements.
8217 This can be done with X menus or with menus put in the minibuf.
8218 These are done in different ways, depending on how the input will be read.
8219 Menus using X are done after auto-saving in read-char, getting the input
8220 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8221 and do auto-saving in the inner call of read_char. */
8223 static Lisp_Object
8224 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
8225 int nmaps;
8226 Lisp_Object *maps;
8227 Lisp_Object prev_event;
8228 int *used_mouse_menu;
8230 int mapno;
8231 register Lisp_Object name = Qnil;
8233 if (used_mouse_menu)
8234 *used_mouse_menu = 0;
8236 /* Use local over global Menu maps */
8238 if (! menu_prompting)
8239 return Qnil;
8241 /* Optionally disregard all but the global map. */
8242 if (inhibit_local_menu_bar_menus)
8244 maps += (nmaps - 1);
8245 nmaps = 1;
8248 /* Get the menu name from the first map that has one (a prompt string). */
8249 for (mapno = 0; mapno < nmaps; mapno++)
8251 name = Fkeymap_prompt (maps[mapno]);
8252 if (!NILP (name))
8253 break;
8256 /* If we don't have any menus, just read a character normally. */
8257 if (!STRINGP (name))
8258 return Qnil;
8260 #ifdef HAVE_MENUS
8261 /* If we got to this point via a mouse click,
8262 use a real menu for mouse selection. */
8263 if (EVENT_HAS_PARAMETERS (prev_event)
8264 && !EQ (XCAR (prev_event), Qmenu_bar)
8265 && !EQ (XCAR (prev_event), Qtool_bar))
8267 /* Display the menu and get the selection. */
8268 Lisp_Object *realmaps
8269 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
8270 Lisp_Object value;
8271 int nmaps1 = 0;
8273 /* Use the maps that are not nil. */
8274 for (mapno = 0; mapno < nmaps; mapno++)
8275 if (!NILP (maps[mapno]))
8276 realmaps[nmaps1++] = maps[mapno];
8278 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
8279 if (CONSP (value))
8281 Lisp_Object tem;
8283 record_menu_key (XCAR (value));
8285 /* If we got multiple events, unread all but
8286 the first.
8287 There is no way to prevent those unread events
8288 from showing up later in last_nonmenu_event.
8289 So turn symbol and integer events into lists,
8290 to indicate that they came from a mouse menu,
8291 so that when present in last_nonmenu_event
8292 they won't confuse things. */
8293 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
8295 record_menu_key (XCAR (tem));
8296 if (SYMBOLP (XCAR (tem))
8297 || INTEGERP (XCAR (tem)))
8298 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8301 /* If we got more than one event, put all but the first
8302 onto this list to be read later.
8303 Return just the first event now. */
8304 Vunread_command_events
8305 = nconc2 (XCDR (value), Vunread_command_events);
8306 value = XCAR (value);
8308 else if (NILP (value))
8309 value = Qt;
8310 if (used_mouse_menu)
8311 *used_mouse_menu = 1;
8312 return value;
8314 #endif /* HAVE_MENUS */
8315 return Qnil ;
8318 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8319 We make this bigger when necessary, and never free it. */
8320 static char *read_char_minibuf_menu_text;
8321 /* Size of that buffer. */
8322 static int read_char_minibuf_menu_width;
8324 static Lisp_Object
8325 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
8326 int commandflag ;
8327 int nmaps;
8328 Lisp_Object *maps;
8330 int mapno;
8331 register Lisp_Object name;
8332 int nlength;
8333 /* FIXME: Use the minibuffer's frame width. */
8334 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8335 int idx = -1;
8336 int nobindings = 1;
8337 Lisp_Object rest, vector;
8338 char *menu;
8340 vector = Qnil;
8341 name = Qnil;
8343 if (! menu_prompting)
8344 return Qnil;
8346 /* Make sure we have a big enough buffer for the menu text. */
8347 if (read_char_minibuf_menu_text == 0)
8349 read_char_minibuf_menu_width = width + 4;
8350 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
8352 else if (width + 4 > read_char_minibuf_menu_width)
8354 read_char_minibuf_menu_width = width + 4;
8355 read_char_minibuf_menu_text
8356 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
8358 menu = read_char_minibuf_menu_text;
8360 /* Get the menu name from the first map that has one (a prompt string). */
8361 for (mapno = 0; mapno < nmaps; mapno++)
8363 name = Fkeymap_prompt (maps[mapno]);
8364 if (!NILP (name))
8365 break;
8368 /* If we don't have any menus, just read a character normally. */
8369 if (!STRINGP (name))
8370 return Qnil;
8372 /* Prompt string always starts with map's prompt, and a space. */
8373 strcpy (menu, SDATA (name));
8374 nlength = SBYTES (name);
8375 menu[nlength++] = ':';
8376 menu[nlength++] = ' ';
8377 menu[nlength] = 0;
8379 /* Start prompting at start of first map. */
8380 mapno = 0;
8381 rest = maps[mapno];
8383 /* Present the documented bindings, a line at a time. */
8384 while (1)
8386 int notfirst = 0;
8387 int i = nlength;
8388 Lisp_Object obj;
8389 int ch;
8390 Lisp_Object orig_defn_macro;
8392 /* Loop over elements of map. */
8393 while (i < width)
8395 Lisp_Object elt;
8397 /* If reached end of map, start at beginning of next map. */
8398 if (NILP (rest))
8400 mapno++;
8401 /* At end of last map, wrap around to first map if just starting,
8402 or end this line if already have something on it. */
8403 if (mapno == nmaps)
8405 mapno = 0;
8406 if (notfirst || nobindings) break;
8408 rest = maps[mapno];
8411 /* Look at the next element of the map. */
8412 if (idx >= 0)
8413 elt = XVECTOR (vector)->contents[idx];
8414 else
8415 elt = Fcar_safe (rest);
8417 if (idx < 0 && VECTORP (elt))
8419 /* If we found a dense table in the keymap,
8420 advanced past it, but start scanning its contents. */
8421 rest = Fcdr_safe (rest);
8422 vector = elt;
8423 idx = 0;
8425 else
8427 /* An ordinary element. */
8428 Lisp_Object event, tem;
8430 if (idx < 0)
8432 event = Fcar_safe (elt); /* alist */
8433 elt = Fcdr_safe (elt);
8435 else
8437 XSETINT (event, idx); /* vector */
8440 /* Ignore the element if it has no prompt string. */
8441 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8443 /* 1 if the char to type matches the string. */
8444 int char_matches;
8445 Lisp_Object upcased_event, downcased_event;
8446 Lisp_Object desc = Qnil;
8447 Lisp_Object s
8448 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8450 upcased_event = Fupcase (event);
8451 downcased_event = Fdowncase (event);
8452 char_matches = (XINT (upcased_event) == SREF (s, 0)
8453 || XINT (downcased_event) == SREF (s, 0));
8454 if (! char_matches)
8455 desc = Fsingle_key_description (event, Qnil);
8457 #if 0 /* It is redundant to list the equivalent key bindings because
8458 the prefix is what the user has already typed. */
8460 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8461 if (!NILP (tem))
8462 /* Insert equivalent keybinding. */
8463 s = concat2 (s, tem);
8464 #endif
8466 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8467 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8469 /* Insert button prefix. */
8470 Lisp_Object selected
8471 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8472 if (EQ (tem, QCradio))
8473 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8474 else
8475 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8476 s = concat2 (tem, s);
8480 /* If we have room for the prompt string, add it to this line.
8481 If this is the first on the line, always add it. */
8482 if ((SCHARS (s) + i + 2
8483 + (char_matches ? 0 : SCHARS (desc) + 3))
8484 < width
8485 || !notfirst)
8487 int thiswidth;
8489 /* Punctuate between strings. */
8490 if (notfirst)
8492 strcpy (menu + i, ", ");
8493 i += 2;
8495 notfirst = 1;
8496 nobindings = 0 ;
8498 /* If the char to type doesn't match the string's
8499 first char, explicitly show what char to type. */
8500 if (! char_matches)
8502 /* Add as much of string as fits. */
8503 thiswidth = SCHARS (desc);
8504 if (thiswidth + i > width)
8505 thiswidth = width - i;
8506 bcopy (SDATA (desc), menu + i, thiswidth);
8507 i += thiswidth;
8508 strcpy (menu + i, " = ");
8509 i += 3;
8512 /* Add as much of string as fits. */
8513 thiswidth = SCHARS (s);
8514 if (thiswidth + i > width)
8515 thiswidth = width - i;
8516 bcopy (SDATA (s), menu + i, thiswidth);
8517 i += thiswidth;
8518 menu[i] = 0;
8520 else
8522 /* If this element does not fit, end the line now,
8523 and save the element for the next line. */
8524 strcpy (menu + i, "...");
8525 break;
8529 /* Move past this element. */
8530 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8531 /* Handle reaching end of dense table. */
8532 idx = -1;
8533 if (idx >= 0)
8534 idx++;
8535 else
8536 rest = Fcdr_safe (rest);
8540 /* Prompt with that and read response. */
8541 message2_nolog (menu, strlen (menu),
8542 ! NILP (current_buffer->enable_multibyte_characters));
8544 /* Make believe its not a keyboard macro in case the help char
8545 is pressed. Help characters are not recorded because menu prompting
8546 is not used on replay.
8548 orig_defn_macro = current_kboard->defining_kbd_macro;
8549 current_kboard->defining_kbd_macro = Qnil;
8551 obj = read_char (commandflag, 0, 0, Qt, 0, NULL);
8552 while (BUFFERP (obj));
8553 current_kboard->defining_kbd_macro = orig_defn_macro;
8555 if (!INTEGERP (obj))
8556 return obj;
8557 else
8558 ch = XINT (obj);
8560 if (! EQ (obj, menu_prompt_more_char)
8561 && (!INTEGERP (menu_prompt_more_char)
8562 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8564 if (!NILP (current_kboard->defining_kbd_macro))
8565 store_kbd_macro_char (obj);
8566 return obj;
8568 /* Help char - go round again */
8572 /* Reading key sequences. */
8574 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8575 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8576 keymap, or nil otherwise. Return the index of the first keymap in
8577 which KEY has any binding, or NMAPS if no map has a binding.
8579 If KEY is a meta ASCII character, treat it like meta-prefix-char
8580 followed by the corresponding non-meta character. Keymaps in
8581 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8582 NEXT.
8584 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8585 unmodified.
8587 NEXT may be the same array as CURRENT. */
8589 static int
8590 follow_key (key, nmaps, current, defs, next)
8591 Lisp_Object key;
8592 Lisp_Object *current, *defs, *next;
8593 int nmaps;
8595 int i, first_binding;
8597 first_binding = nmaps;
8598 for (i = nmaps - 1; i >= 0; i--)
8600 if (! NILP (current[i]))
8602 defs[i] = access_keymap (current[i], key, 1, 0, 1);
8603 if (! NILP (defs[i]))
8604 first_binding = i;
8606 else
8607 defs[i] = Qnil;
8610 /* Given the set of bindings we've found, produce the next set of maps. */
8611 if (first_binding < nmaps)
8612 for (i = 0; i < nmaps; i++)
8613 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8615 return first_binding;
8618 /* Structure used to keep track of partial application of key remapping
8619 such as Vfunction_key_map and Vkey_translation_map. */
8620 typedef struct keyremap
8622 /* This is the map originally specified for this use. */
8623 Lisp_Object parent;
8624 /* This is a submap reached by looking up, in PARENT,
8625 the events from START to END. */
8626 Lisp_Object map;
8627 /* Positions [START, END) in the key sequence buffer
8628 are the key that we have scanned so far.
8629 Those events are the ones that we will replace
8630 if PAREHT maps them into a key sequence. */
8631 int start, end;
8632 } keyremap;
8634 /* Lookup KEY in MAP.
8635 MAP is a keymap mapping keys to key vectors or functions.
8636 If the mapping is a function and DO_FUNCTION is non-zero, then
8637 the function is called with PROMPT as parameter and its return
8638 value is used as the return value of this function (after checking
8639 that it is indeed a vector). */
8641 static Lisp_Object
8642 access_keymap_keyremap (map, key, prompt, do_funcall)
8643 Lisp_Object map, key, prompt;
8644 int do_funcall;
8646 Lisp_Object next;
8648 next = access_keymap (map, key, 1, 0, 1);
8650 /* Handle symbol with autoload definition. */
8651 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8652 && CONSP (XSYMBOL (next)->function)
8653 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
8654 do_autoload (XSYMBOL (next)->function, next);
8656 /* Handle a symbol whose function definition is a keymap
8657 or an array. */
8658 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8659 && (ARRAYP (XSYMBOL (next)->function)
8660 || KEYMAPP (XSYMBOL (next)->function)))
8661 next = XSYMBOL (next)->function;
8663 /* If the keymap gives a function, not an
8664 array, then call the function with one arg and use
8665 its value instead. */
8666 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
8668 Lisp_Object tem;
8669 tem = next;
8671 next = call1 (next, prompt);
8672 /* If the function returned something invalid,
8673 barf--don't ignore it.
8674 (To ignore it safely, we would need to gcpro a bunch of
8675 other variables.) */
8676 if (! (VECTORP (next) || STRINGP (next)))
8677 error ("Function %s returns invalid key sequence", tem);
8679 return next;
8682 /* Do one step of the key remapping used for function-key-map and
8683 key-translation-map:
8684 KEYBUF is the buffer holding the input events.
8685 BUFSIZE is its maximum size.
8686 FKEY is a pointer to the keyremap structure to use.
8687 INPUT is the index of the last element in KEYBUF.
8688 DOIT if non-zero says that the remapping can actually take place.
8689 DIFF is used to return the number of keys added/removed by the remapping.
8690 PARENT is the root of the keymap.
8691 PROMPT is the prompt to use if the remapping happens through a function.
8692 The return value is non-zero if the remapping actually took place. */
8694 static int
8695 keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
8696 Lisp_Object *keybuf, prompt;
8697 keyremap *fkey;
8698 int input, doit, *diff, bufsize;
8700 Lisp_Object next, key;
8702 key = keybuf[fkey->end++];
8704 if (KEYMAPP (fkey->parent))
8705 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8706 else
8707 next = Qnil;
8709 /* If keybuf[fkey->start..fkey->end] is bound in the
8710 map and we're in a position to do the key remapping, replace it with
8711 the binding and restart with fkey->start at the end. */
8712 if ((VECTORP (next) || STRINGP (next)) && doit)
8714 int len = XFASTINT (Flength (next));
8715 int i;
8717 *diff = len - (fkey->end - fkey->start);
8719 if (input + *diff >= bufsize)
8720 error ("Key sequence too long");
8722 /* Shift the keys that follow fkey->end. */
8723 if (*diff < 0)
8724 for (i = fkey->end; i < input; i++)
8725 keybuf[i + *diff] = keybuf[i];
8726 else if (*diff > 0)
8727 for (i = input - 1; i >= fkey->end; i--)
8728 keybuf[i + *diff] = keybuf[i];
8729 /* Overwrite the old keys with the new ones. */
8730 for (i = 0; i < len; i++)
8731 keybuf[fkey->start + i]
8732 = Faref (next, make_number (i));
8734 fkey->start = fkey->end += *diff;
8735 fkey->map = fkey->parent;
8737 return 1;
8740 fkey->map = get_keymap (next, 0, 1);
8742 /* If we no longer have a bound suffix, try a new position for
8743 fkey->start. */
8744 if (!CONSP (fkey->map))
8746 fkey->end = ++fkey->start;
8747 fkey->map = fkey->parent;
8749 return 0;
8752 /* Read a sequence of keys that ends with a non prefix character,
8753 storing it in KEYBUF, a buffer of size BUFSIZE.
8754 Prompt with PROMPT.
8755 Return the length of the key sequence stored.
8756 Return -1 if the user rejected a command menu.
8758 Echo starting immediately unless `prompt' is 0.
8760 Where a key sequence ends depends on the currently active keymaps.
8761 These include any minor mode keymaps active in the current buffer,
8762 the current buffer's local map, and the global map.
8764 If a key sequence has no other bindings, we check Vfunction_key_map
8765 to see if some trailing subsequence might be the beginning of a
8766 function key's sequence. If so, we try to read the whole function
8767 key, and substitute its symbolic name into the key sequence.
8769 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8770 `double-' events into similar click events, if that would make them
8771 bound. We try to turn `triple-' events first into `double-' events,
8772 then into clicks.
8774 If we get a mouse click in a mode line, vertical divider, or other
8775 non-text area, we treat the click as if it were prefixed by the
8776 symbol denoting that area - `mode-line', `vertical-line', or
8777 whatever.
8779 If the sequence starts with a mouse click, we read the key sequence
8780 with respect to the buffer clicked on, not the current buffer.
8782 If the user switches frames in the midst of a key sequence, we put
8783 off the switch-frame event until later; the next call to
8784 read_char will return it.
8786 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8787 from the selected window's buffer. */
8789 static int
8790 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8791 can_return_switch_frame, fix_current_buffer)
8792 Lisp_Object *keybuf;
8793 int bufsize;
8794 Lisp_Object prompt;
8795 int dont_downcase_last;
8796 int can_return_switch_frame;
8797 int fix_current_buffer;
8799 volatile Lisp_Object from_string;
8800 volatile int count = SPECPDL_INDEX ();
8802 /* How many keys there are in the current key sequence. */
8803 volatile int t;
8805 /* The length of the echo buffer when we started reading, and
8806 the length of this_command_keys when we started reading. */
8807 volatile int echo_start;
8808 volatile int keys_start;
8810 /* The number of keymaps we're scanning right now, and the number of
8811 keymaps we have allocated space for. */
8812 volatile int nmaps;
8813 volatile int nmaps_allocated = 0;
8815 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8816 the current keymaps. */
8817 Lisp_Object *volatile defs = NULL;
8819 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8820 in the current keymaps, or nil where it is not a prefix. */
8821 Lisp_Object *volatile submaps = NULL;
8823 /* The local map to start out with at start of key sequence. */
8824 volatile Lisp_Object orig_local_map;
8826 /* The map from the `keymap' property to start out with at start of
8827 key sequence. */
8828 volatile Lisp_Object orig_keymap;
8830 /* 1 if we have already considered switching to the local-map property
8831 of the place where a mouse click occurred. */
8832 volatile int localized_local_map = 0;
8834 /* The index in submaps[] of the first keymap that has a binding for
8835 this key sequence. In other words, the lowest i such that
8836 submaps[i] is non-nil. */
8837 volatile int first_binding;
8838 /* Index of the first key that has no binding.
8839 It is useless to try fkey.start larger than that. */
8840 volatile int first_unbound;
8842 /* If t < mock_input, then KEYBUF[t] should be read as the next
8843 input key.
8845 We use this to recover after recognizing a function key. Once we
8846 realize that a suffix of the current key sequence is actually a
8847 function key's escape sequence, we replace the suffix with the
8848 function key's binding from Vfunction_key_map. Now keybuf
8849 contains a new and different key sequence, so the echo area,
8850 this_command_keys, and the submaps and defs arrays are wrong. In
8851 this situation, we set mock_input to t, set t to 0, and jump to
8852 restart_sequence; the loop will read keys from keybuf up until
8853 mock_input, thus rebuilding the state; and then it will resume
8854 reading characters from the keyboard. */
8855 volatile int mock_input = 0;
8857 /* If the sequence is unbound in submaps[], then
8858 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8859 and fkey.map is its binding.
8861 These might be > t, indicating that all function key scanning
8862 should hold off until t reaches them. We do this when we've just
8863 recognized a function key, to avoid searching for the function
8864 key's again in Vfunction_key_map. */
8865 volatile keyremap fkey;
8867 /* Likewise, for key_translation_map. */
8868 volatile keyremap keytran;
8870 /* If we receive a `switch-frame' or `select-window' event in the middle of
8871 a key sequence, we put it off for later.
8872 While we're reading, we keep the event here. */
8873 volatile Lisp_Object delayed_switch_frame;
8875 /* See the comment below... */
8876 #if defined (GOBBLE_FIRST_EVENT)
8877 Lisp_Object first_event;
8878 #endif
8880 volatile Lisp_Object original_uppercase;
8881 volatile int original_uppercase_position = -1;
8883 /* Gets around Microsoft compiler limitations. */
8884 int dummyflag = 0;
8886 struct buffer *starting_buffer;
8888 /* List of events for which a fake prefix key has been generated. */
8889 volatile Lisp_Object fake_prefixed_keys = Qnil;
8891 #if defined (GOBBLE_FIRST_EVENT)
8892 int junk;
8893 #endif
8895 struct gcpro gcpro1;
8897 GCPRO1 (fake_prefixed_keys);
8898 raw_keybuf_count = 0;
8900 last_nonmenu_event = Qnil;
8902 delayed_switch_frame = Qnil;
8903 fkey.map = fkey.parent = Vfunction_key_map;
8904 keytran.map = keytran.parent = Vkey_translation_map;
8905 fkey.start = fkey.end = 0;
8906 keytran.start = keytran.end = 0;
8908 if (INTERACTIVE)
8910 if (!NILP (prompt))
8911 echo_prompt (prompt);
8912 else if (cursor_in_echo_area
8913 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8914 && NILP (Fzerop (Vecho_keystrokes)))
8915 /* This doesn't put in a dash if the echo buffer is empty, so
8916 you don't always see a dash hanging out in the minibuffer. */
8917 echo_dash ();
8920 /* Record the initial state of the echo area and this_command_keys;
8921 we will need to restore them if we replay a key sequence. */
8922 if (INTERACTIVE)
8923 echo_start = echo_length ();
8924 keys_start = this_command_key_count;
8925 this_single_command_key_start = keys_start;
8927 #if defined (GOBBLE_FIRST_EVENT)
8928 /* This doesn't quite work, because some of the things that read_char
8929 does cannot safely be bypassed. It seems too risky to try to make
8930 this work right. */
8932 /* Read the first char of the sequence specially, before setting
8933 up any keymaps, in case a filter runs and switches buffers on us. */
8934 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8935 &junk, NULL);
8936 #endif /* GOBBLE_FIRST_EVENT */
8938 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8939 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8940 from_string = Qnil;
8942 /* We jump here when the key sequence has been thoroughly changed, and
8943 we need to rescan it starting from the beginning. When we jump here,
8944 keybuf[0..mock_input] holds the sequence we should reread. */
8945 replay_sequence:
8947 starting_buffer = current_buffer;
8948 first_unbound = bufsize + 1;
8950 /* Build our list of keymaps.
8951 If we recognize a function key and replace its escape sequence in
8952 keybuf with its symbol, or if the sequence starts with a mouse
8953 click and we need to switch buffers, we jump back here to rebuild
8954 the initial keymaps from the current buffer. */
8955 nmaps = 0;
8957 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8959 if (2 > nmaps_allocated)
8961 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
8962 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
8963 nmaps_allocated = 2;
8965 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8966 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8968 else if (!NILP (Voverriding_local_map))
8970 if (2 > nmaps_allocated)
8972 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
8973 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
8974 nmaps_allocated = 2;
8976 if (!NILP (Voverriding_local_map))
8977 submaps[nmaps++] = Voverriding_local_map;
8979 else
8981 int nminor;
8982 int total;
8983 Lisp_Object *maps;
8985 nminor = current_minor_maps (0, &maps);
8986 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8988 if (total > nmaps_allocated)
8990 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8991 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8992 nmaps_allocated = total;
8995 if (!NILP (orig_keymap))
8996 submaps[nmaps++] = orig_keymap;
8998 bcopy (maps, (void *) (submaps + nmaps),
8999 nminor * sizeof (submaps[0]));
9001 nmaps += nminor;
9003 submaps[nmaps++] = orig_local_map;
9005 submaps[nmaps++] = current_global_map;
9007 /* Find an accurate initial value for first_binding. */
9008 for (first_binding = 0; first_binding < nmaps; first_binding++)
9009 if (! NILP (submaps[first_binding]))
9010 break;
9012 /* Start from the beginning in keybuf. */
9013 t = 0;
9015 /* These are no-ops the first time through, but if we restart, they
9016 revert the echo area and this_command_keys to their original state. */
9017 this_command_key_count = keys_start;
9018 if (INTERACTIVE && t < mock_input)
9019 echo_truncate (echo_start);
9021 /* If the best binding for the current key sequence is a keymap, or
9022 we may be looking at a function key's escape sequence, keep on
9023 reading. */
9024 while (first_binding < nmaps
9025 /* Keep reading as long as there's a prefix binding. */
9026 ? !NILP (submaps[first_binding])
9027 /* Don't return in the middle of a possible function key sequence,
9028 if the only bindings we found were via case conversion.
9029 Thus, if ESC O a has a function-key-map translation
9030 and ESC o has a binding, don't return after ESC O,
9031 so that we can translate ESC O plus the next character. */
9032 : (fkey.start < t || keytran.start < t))
9034 Lisp_Object key;
9035 int used_mouse_menu = 0;
9037 /* Where the last real key started. If we need to throw away a
9038 key that has expanded into more than one element of keybuf
9039 (say, a mouse click on the mode line which is being treated
9040 as [mode-line (mouse-...)], then we backtrack to this point
9041 of keybuf. */
9042 volatile int last_real_key_start;
9044 /* These variables are analogous to echo_start and keys_start;
9045 while those allow us to restart the entire key sequence,
9046 echo_local_start and keys_local_start allow us to throw away
9047 just one key. */
9048 volatile int echo_local_start, keys_local_start, local_first_binding;
9050 eassert (fkey.end == t || (fkey.end > t && fkey.end <= mock_input));
9051 eassert (fkey.start <= fkey.end);
9052 eassert (keytran.start <= keytran.end);
9053 /* key-translation-map is applied *after* function-key-map. */
9054 eassert (keytran.end <= fkey.start);
9056 if (first_unbound < fkey.start && first_unbound < keytran.start)
9057 { /* The prefix upto first_unbound has no binding and has
9058 no translation left to do either, so we know it's unbound.
9059 If we don't stop now, we risk staying here indefinitely
9060 (if the user keeps entering fkey or keytran prefixes
9061 like C-c ESC ESC ESC ESC ...) */
9062 int i;
9063 for (i = first_unbound + 1; i < t; i++)
9064 keybuf[i - first_unbound - 1] = keybuf[i];
9065 mock_input = t - first_unbound - 1;
9066 fkey.end = fkey.start -= first_unbound + 1;
9067 fkey.map = fkey.parent;
9068 keytran.end = keytran.start -= first_unbound + 1;
9069 keytran.map = keytran.parent;
9070 goto replay_sequence;
9073 if (t >= bufsize)
9074 error ("Key sequence too long");
9076 if (INTERACTIVE)
9077 echo_local_start = echo_length ();
9078 keys_local_start = this_command_key_count;
9079 local_first_binding = first_binding;
9081 replay_key:
9082 /* These are no-ops, unless we throw away a keystroke below and
9083 jumped back up to replay_key; in that case, these restore the
9084 variables to their original state, allowing us to replay the
9085 loop. */
9086 if (INTERACTIVE && t < mock_input)
9087 echo_truncate (echo_local_start);
9088 this_command_key_count = keys_local_start;
9089 first_binding = local_first_binding;
9091 /* By default, assume each event is "real". */
9092 last_real_key_start = t;
9094 /* Does mock_input indicate that we are re-reading a key sequence? */
9095 if (t < mock_input)
9097 key = keybuf[t];
9098 add_command_key (key);
9099 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9100 && NILP (Fzerop (Vecho_keystrokes)))
9101 echo_char (key);
9104 /* If not, we should actually read a character. */
9105 else
9108 #ifdef MULTI_KBOARD
9109 KBOARD *interrupted_kboard = current_kboard;
9110 struct frame *interrupted_frame = SELECTED_FRAME ();
9111 if (setjmp (wrong_kboard_jmpbuf))
9113 if (!NILP (delayed_switch_frame))
9115 interrupted_kboard->kbd_queue
9116 = Fcons (delayed_switch_frame,
9117 interrupted_kboard->kbd_queue);
9118 delayed_switch_frame = Qnil;
9120 while (t > 0)
9121 interrupted_kboard->kbd_queue
9122 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
9124 /* If the side queue is non-empty, ensure it begins with a
9125 switch-frame, so we'll replay it in the right context. */
9126 if (CONSP (interrupted_kboard->kbd_queue)
9127 && (key = XCAR (interrupted_kboard->kbd_queue),
9128 !(EVENT_HAS_PARAMETERS (key)
9129 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
9130 Qswitch_frame))))
9132 Lisp_Object frame;
9133 XSETFRAME (frame, interrupted_frame);
9134 interrupted_kboard->kbd_queue
9135 = Fcons (make_lispy_switch_frame (frame),
9136 interrupted_kboard->kbd_queue);
9138 mock_input = 0;
9139 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9140 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9141 goto replay_sequence;
9143 #endif
9144 key = read_char (NILP (prompt), nmaps,
9145 (Lisp_Object *) submaps, last_nonmenu_event,
9146 &used_mouse_menu, NULL);
9149 /* read_char returns t when it shows a menu and the user rejects it.
9150 Just return -1. */
9151 if (EQ (key, Qt))
9153 unbind_to (count, Qnil);
9154 UNGCPRO;
9155 return -1;
9158 /* read_char returns -1 at the end of a macro.
9159 Emacs 18 handles this by returning immediately with a
9160 zero, so that's what we'll do. */
9161 if (INTEGERP (key) && XINT (key) == -1)
9163 t = 0;
9164 /* The Microsoft C compiler can't handle the goto that
9165 would go here. */
9166 dummyflag = 1;
9167 break;
9170 /* If the current buffer has been changed from under us, the
9171 keymap may have changed, so replay the sequence. */
9172 if (BUFFERP (key))
9174 timer_resume_idle ();
9176 mock_input = t;
9177 /* Reset the current buffer from the selected window
9178 in case something changed the former and not the latter.
9179 This is to be more consistent with the behavior
9180 of the command_loop_1. */
9181 if (fix_current_buffer)
9183 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9184 Fkill_emacs (Qnil);
9185 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
9186 Fset_buffer (XWINDOW (selected_window)->buffer);
9189 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9190 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9191 goto replay_sequence;
9194 /* If we have a quit that was typed in another frame, and
9195 quit_throw_to_read_char switched buffers,
9196 replay to get the right keymap. */
9197 if (INTEGERP (key)
9198 && XINT (key) == quit_char
9199 && current_buffer != starting_buffer)
9201 GROW_RAW_KEYBUF;
9202 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9203 keybuf[t++] = key;
9204 mock_input = t;
9205 Vquit_flag = Qnil;
9206 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9207 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9208 goto replay_sequence;
9211 Vquit_flag = Qnil;
9213 if (EVENT_HAS_PARAMETERS (key)
9214 /* Either a `switch-frame' or a `select-window' event. */
9215 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
9217 /* If we're at the beginning of a key sequence, and the caller
9218 says it's okay, go ahead and return this event. If we're
9219 in the midst of a key sequence, delay it until the end. */
9220 if (t > 0 || !can_return_switch_frame)
9222 delayed_switch_frame = key;
9223 goto replay_key;
9227 GROW_RAW_KEYBUF;
9228 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9231 /* Clicks in non-text areas get prefixed by the symbol
9232 in their CHAR-ADDRESS field. For example, a click on
9233 the mode line is prefixed by the symbol `mode-line'.
9235 Furthermore, key sequences beginning with mouse clicks
9236 are read using the keymaps of the buffer clicked on, not
9237 the current buffer. So we may have to switch the buffer
9238 here.
9240 When we turn one event into two events, we must make sure
9241 that neither of the two looks like the original--so that,
9242 if we replay the events, they won't be expanded again.
9243 If not for this, such reexpansion could happen either here
9244 or when user programs play with this-command-keys. */
9245 if (EVENT_HAS_PARAMETERS (key))
9247 Lisp_Object kind;
9248 Lisp_Object string;
9250 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
9251 if (EQ (kind, Qmouse_click))
9253 Lisp_Object window, posn;
9255 window = POSN_WINDOW (EVENT_START (key));
9256 posn = POSN_POSN (EVENT_START (key));
9258 if (CONSP (posn)
9259 || (!NILP (fake_prefixed_keys)
9260 && !NILP (Fmemq (key, fake_prefixed_keys))))
9262 /* We're looking a second time at an event for which
9263 we generated a fake prefix key. Set
9264 last_real_key_start appropriately. */
9265 if (t > 0)
9266 last_real_key_start = t - 1;
9269 /* Key sequences beginning with mouse clicks are
9270 read using the keymaps in the buffer clicked on,
9271 not the current buffer. If we're at the
9272 beginning of a key sequence, switch buffers. */
9273 if (last_real_key_start == 0
9274 && WINDOWP (window)
9275 && BUFFERP (XWINDOW (window)->buffer)
9276 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
9278 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9279 keybuf[t] = key;
9280 mock_input = t + 1;
9282 /* Arrange to go back to the original buffer once we're
9283 done reading the key sequence. Note that we can't
9284 use save_excursion_{save,restore} here, because they
9285 save point as well as the current buffer; we don't
9286 want to save point, because redisplay may change it,
9287 to accommodate a Fset_window_start or something. We
9288 don't want to do this at the top of the function,
9289 because we may get input from a subprocess which
9290 wants to change the selected window and stuff (say,
9291 emacsclient). */
9292 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
9294 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9295 Fkill_emacs (Qnil);
9296 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
9297 orig_local_map = get_local_map (PT, current_buffer,
9298 Qlocal_map);
9299 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9300 goto replay_sequence;
9303 /* For a mouse click, get the local text-property keymap
9304 of the place clicked on, rather than point. */
9305 if (last_real_key_start == 0
9306 && CONSP (XCDR (key))
9307 && ! localized_local_map)
9309 Lisp_Object map_here, start, pos;
9311 localized_local_map = 1;
9312 start = EVENT_START (key);
9314 if (CONSP (start) && POSN_INBUFFER_P (start))
9316 pos = POSN_BUFFER_POSN (start);
9317 if (INTEGERP (pos)
9318 && XINT (pos) >= BEGV
9319 && XINT (pos) <= ZV)
9321 map_here = get_local_map (XINT (pos),
9322 current_buffer, Qlocal_map);
9323 if (!EQ (map_here, orig_local_map))
9325 orig_local_map = map_here;
9326 ++localized_local_map;
9329 map_here = get_local_map (XINT (pos),
9330 current_buffer, Qkeymap);
9331 if (!EQ (map_here, orig_keymap))
9333 orig_keymap = map_here;
9334 ++localized_local_map;
9337 if (localized_local_map > 1)
9339 keybuf[t] = key;
9340 mock_input = t + 1;
9342 goto replay_sequence;
9348 /* Expand mode-line and scroll-bar events into two events:
9349 use posn as a fake prefix key. */
9350 if (SYMBOLP (posn)
9351 && (NILP (fake_prefixed_keys)
9352 || NILP (Fmemq (key, fake_prefixed_keys))))
9354 if (t + 1 >= bufsize)
9355 error ("Key sequence too long");
9357 keybuf[t] = posn;
9358 keybuf[t + 1] = key;
9359 mock_input = t + 2;
9361 /* Record that a fake prefix key has been generated
9362 for KEY. Don't modify the event; this would
9363 prevent proper action when the event is pushed
9364 back into unread-command-events. */
9365 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9367 /* If on a mode line string with a local keymap,
9368 reconsider the key sequence with that keymap. */
9369 if (string = POSN_STRING (EVENT_START (key)),
9370 (CONSP (string) && STRINGP (XCAR (string))))
9372 Lisp_Object pos, map, map2;
9374 pos = XCDR (string);
9375 string = XCAR (string);
9376 if (XINT (pos) >= 0
9377 && XINT (pos) < SCHARS (string))
9379 map = Fget_text_property (pos, Qlocal_map, string);
9380 if (!NILP (map))
9381 orig_local_map = map;
9382 map2 = Fget_text_property (pos, Qkeymap, string);
9383 if (!NILP (map2))
9384 orig_keymap = map2;
9385 if (!NILP (map) || !NILP (map2))
9386 goto replay_sequence;
9390 goto replay_key;
9392 else if (NILP (from_string)
9393 && (string = POSN_STRING (EVENT_START (key)),
9394 (CONSP (string) && STRINGP (XCAR (string)))))
9396 /* For a click on a string, i.e. overlay string or a
9397 string displayed via the `display' property,
9398 consider `local-map' and `keymap' properties of
9399 that string. */
9400 Lisp_Object pos, map, map2;
9402 pos = XCDR (string);
9403 string = XCAR (string);
9404 if (XINT (pos) >= 0
9405 && XINT (pos) < SCHARS (string))
9407 map = Fget_text_property (pos, Qlocal_map, string);
9408 if (!NILP (map))
9409 orig_local_map = map;
9410 map2 = Fget_text_property (pos, Qkeymap, string);
9411 if (!NILP (map2))
9412 orig_keymap = map2;
9414 if (!NILP (map) || !NILP (map2))
9416 from_string = string;
9417 keybuf[t++] = key;
9418 mock_input = t;
9419 goto replay_sequence;
9424 else if (CONSP (XCDR (key))
9425 && CONSP (EVENT_START (key))
9426 && CONSP (XCDR (EVENT_START (key))))
9428 Lisp_Object posn;
9430 posn = POSN_POSN (EVENT_START (key));
9431 /* Handle menu-bar events:
9432 insert the dummy prefix event `menu-bar'. */
9433 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9435 if (t + 1 >= bufsize)
9436 error ("Key sequence too long");
9437 keybuf[t] = posn;
9438 keybuf[t+1] = key;
9440 /* Zap the position in key, so we know that we've
9441 expanded it, and don't try to do so again. */
9442 POSN_SET_POSN (EVENT_START (key),
9443 Fcons (posn, Qnil));
9445 mock_input = t + 2;
9446 goto replay_sequence;
9448 else if (CONSP (posn))
9450 /* We're looking at the second event of a
9451 sequence which we expanded before. Set
9452 last_real_key_start appropriately. */
9453 if (last_real_key_start == t && t > 0)
9454 last_real_key_start = t - 1;
9459 /* We have finally decided that KEY is something we might want
9460 to look up. */
9461 first_binding = (follow_key (key,
9462 nmaps - first_binding,
9463 submaps + first_binding,
9464 defs + first_binding,
9465 submaps + first_binding)
9466 + first_binding);
9468 /* If KEY wasn't bound, we'll try some fallbacks. */
9469 if (first_binding < nmaps)
9470 /* This is needed for the following scenario:
9471 event 0: a down-event that gets dropped by calling replay_key.
9472 event 1: some normal prefix like C-h.
9473 After event 0, first_unbound is 0, after event 1 fkey.start
9474 and keytran.start are both 1, so when we see that C-h is bound,
9475 we need to update first_unbound. */
9476 first_unbound = max (t + 1, first_unbound);
9477 else
9479 Lisp_Object head;
9481 /* Remember the position to put an upper bound on fkey.start. */
9482 first_unbound = min (t, first_unbound);
9484 head = EVENT_HEAD (key);
9485 if (help_char_p (head) && t > 0)
9487 read_key_sequence_cmd = Vprefix_help_command;
9488 keybuf[t++] = key;
9489 last_nonmenu_event = key;
9490 /* The Microsoft C compiler can't handle the goto that
9491 would go here. */
9492 dummyflag = 1;
9493 break;
9496 if (SYMBOLP (head))
9498 Lisp_Object breakdown;
9499 int modifiers;
9501 breakdown = parse_modifiers (head);
9502 modifiers = XINT (XCAR (XCDR (breakdown)));
9503 /* Attempt to reduce an unbound mouse event to a simpler
9504 event that is bound:
9505 Drags reduce to clicks.
9506 Double-clicks reduce to clicks.
9507 Triple-clicks reduce to double-clicks, then to clicks.
9508 Down-clicks are eliminated.
9509 Double-downs reduce to downs, then are eliminated.
9510 Triple-downs reduce to double-downs, then to downs,
9511 then are eliminated. */
9512 if (modifiers & (down_modifier | drag_modifier
9513 | double_modifier | triple_modifier))
9515 while (modifiers & (down_modifier | drag_modifier
9516 | double_modifier | triple_modifier))
9518 Lisp_Object new_head, new_click;
9519 if (modifiers & triple_modifier)
9520 modifiers ^= (double_modifier | triple_modifier);
9521 else if (modifiers & double_modifier)
9522 modifiers &= ~double_modifier;
9523 else if (modifiers & drag_modifier)
9524 modifiers &= ~drag_modifier;
9525 else
9527 /* Dispose of this `down' event by simply jumping
9528 back to replay_key, to get another event.
9530 Note that if this event came from mock input,
9531 then just jumping back to replay_key will just
9532 hand it to us again. So we have to wipe out any
9533 mock input.
9535 We could delete keybuf[t] and shift everything
9536 after that to the left by one spot, but we'd also
9537 have to fix up any variable that points into
9538 keybuf, and shifting isn't really necessary
9539 anyway.
9541 Adding prefixes for non-textual mouse clicks
9542 creates two characters of mock input, and both
9543 must be thrown away. If we're only looking at
9544 the prefix now, we can just jump back to
9545 replay_key. On the other hand, if we've already
9546 processed the prefix, and now the actual click
9547 itself is giving us trouble, then we've lost the
9548 state of the keymaps we want to backtrack to, and
9549 we need to replay the whole sequence to rebuild
9552 Beyond that, only function key expansion could
9553 create more than two keys, but that should never
9554 generate mouse events, so it's okay to zero
9555 mock_input in that case too.
9557 FIXME: The above paragraph seems just plain
9558 wrong, if you consider things like
9559 xterm-mouse-mode. -stef
9561 Isn't this just the most wonderful code ever? */
9563 /* If mock_input > t + 1, the above simplification
9564 will actually end up dropping keys on the floor.
9565 This is probably OK for now, but even
9566 if mock_input <= t + 1, we need to adjust fkey
9567 and keytran.
9568 Typical case [header-line down-mouse-N]:
9569 mock_input = 2, t = 1, fkey.end = 1,
9570 last_real_key_start = 0. */
9571 if (fkey.end > last_real_key_start)
9573 fkey.end = fkey.start
9574 = min (last_real_key_start, fkey.start);
9575 fkey.map = fkey.parent;
9576 if (keytran.end > last_real_key_start)
9578 keytran.end = keytran.start
9579 = min (last_real_key_start, keytran.start);
9580 keytran.map = keytran.parent;
9583 if (t == last_real_key_start)
9585 mock_input = 0;
9586 goto replay_key;
9588 else
9590 mock_input = last_real_key_start;
9591 goto replay_sequence;
9595 new_head
9596 = apply_modifiers (modifiers, XCAR (breakdown));
9597 new_click
9598 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9600 /* Look for a binding for this new key. follow_key
9601 promises that it didn't munge submaps the
9602 last time we called it, since key was unbound. */
9603 first_binding
9604 = (follow_key (new_click,
9605 nmaps - local_first_binding,
9606 submaps + local_first_binding,
9607 defs + local_first_binding,
9608 submaps + local_first_binding)
9609 + local_first_binding);
9611 /* If that click is bound, go for it. */
9612 if (first_binding < nmaps)
9614 key = new_click;
9615 break;
9617 /* Otherwise, we'll leave key set to the drag event. */
9623 keybuf[t++] = key;
9624 /* Normally, last_nonmenu_event gets the previous key we read.
9625 But when a mouse popup menu is being used,
9626 we don't update last_nonmenu_event; it continues to hold the mouse
9627 event that preceded the first level of menu. */
9628 if (!used_mouse_menu)
9629 last_nonmenu_event = key;
9631 /* Record what part of this_command_keys is the current key sequence. */
9632 this_single_command_key_start = this_command_key_count - t;
9634 if (first_binding < nmaps && NILP (submaps[first_binding]))
9635 /* There is a binding and it's not a prefix.
9636 There is thus no function-key in this sequence.
9637 Moving fkey.start is important in this case to allow keytran.start
9638 to go over the sequence before we return (since we keep the
9639 invariant that keytran.end <= fkey.start). */
9641 if (fkey.start < t)
9642 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9644 else
9645 /* If the sequence is unbound, see if we can hang a function key
9646 off the end of it. */
9647 /* Continue scan from fkey.end until we find a bound suffix. */
9648 while (fkey.end < t)
9650 struct gcpro gcpro1, gcpro2, gcpro3;
9651 int done, diff;
9653 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9654 done = keyremap_step (keybuf, bufsize, &fkey,
9655 max (t, mock_input),
9656 /* If there's a binding (i.e.
9657 first_binding >= nmaps) we don't want
9658 to apply this function-key-mapping. */
9659 fkey.end + 1 == t && first_binding >= nmaps,
9660 &diff, prompt);
9661 UNGCPRO;
9662 if (done)
9664 mock_input = diff + max (t, mock_input);
9665 goto replay_sequence;
9669 /* Look for this sequence in key-translation-map.
9670 Scan from keytran.end until we find a bound suffix. */
9671 while (keytran.end < fkey.start)
9673 struct gcpro gcpro1, gcpro2, gcpro3;
9674 int done, diff;
9676 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9677 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9678 1, &diff, prompt);
9679 UNGCPRO;
9680 if (done)
9682 mock_input = diff + max (t, mock_input);
9683 /* Adjust the function-key-map counters. */
9684 fkey.end += diff;
9685 fkey.start += diff;
9687 goto replay_sequence;
9691 /* If KEY is not defined in any of the keymaps,
9692 and cannot be part of a function key or translation,
9693 and is an upper case letter
9694 use the corresponding lower-case letter instead. */
9695 if (first_binding >= nmaps
9696 && fkey.start >= t && keytran.start >= t
9697 && INTEGERP (key)
9698 && ((((XINT (key) & 0x3ffff)
9699 < XCHAR_TABLE (current_buffer->downcase_table)->size)
9700 && UPPERCASEP (XINT (key) & 0x3ffff))
9701 || (XINT (key) & shift_modifier)))
9703 Lisp_Object new_key;
9705 original_uppercase = key;
9706 original_uppercase_position = t - 1;
9708 if (XINT (key) & shift_modifier)
9709 XSETINT (new_key, XINT (key) & ~shift_modifier);
9710 else
9711 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9712 | (XINT (key) & ~0x3ffff)));
9714 /* We have to do this unconditionally, regardless of whether
9715 the lower-case char is defined in the keymaps, because they
9716 might get translated through function-key-map. */
9717 keybuf[t - 1] = new_key;
9718 mock_input = max (t, mock_input);
9720 goto replay_sequence;
9722 /* If KEY is not defined in any of the keymaps,
9723 and cannot be part of a function key or translation,
9724 and is a shifted function key,
9725 use the corresponding unshifted function key instead. */
9726 if (first_binding >= nmaps
9727 && fkey.start >= t && keytran.start >= t
9728 && SYMBOLP (key))
9730 Lisp_Object breakdown;
9731 int modifiers;
9733 breakdown = parse_modifiers (key);
9734 modifiers = XINT (XCAR (XCDR (breakdown)));
9735 if (modifiers & shift_modifier)
9737 Lisp_Object new_key;
9739 original_uppercase = key;
9740 original_uppercase_position = t - 1;
9742 modifiers &= ~shift_modifier;
9743 new_key = apply_modifiers (modifiers,
9744 XCAR (breakdown));
9746 keybuf[t - 1] = new_key;
9747 mock_input = max (t, mock_input);
9748 fkey.start = fkey.end = 0;
9749 keytran.start = keytran.end = 0;
9751 goto replay_sequence;
9756 if (!dummyflag)
9757 read_key_sequence_cmd = (first_binding < nmaps
9758 ? defs[first_binding]
9759 : Qnil);
9761 unread_switch_frame = delayed_switch_frame;
9762 unbind_to (count, Qnil);
9764 /* Don't downcase the last character if the caller says don't.
9765 Don't downcase it if the result is undefined, either. */
9766 if ((dont_downcase_last || first_binding >= nmaps)
9767 && t > 0
9768 && t - 1 == original_uppercase_position)
9769 keybuf[t - 1] = original_uppercase;
9771 /* Occasionally we fabricate events, perhaps by expanding something
9772 according to function-key-map, or by adding a prefix symbol to a
9773 mouse click in the scroll bar or modeline. In this cases, return
9774 the entire generated key sequence, even if we hit an unbound
9775 prefix or a definition before the end. This means that you will
9776 be able to push back the event properly, and also means that
9777 read-key-sequence will always return a logical unit.
9779 Better ideas? */
9780 for (; t < mock_input; t++)
9782 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9783 && NILP (Fzerop (Vecho_keystrokes)))
9784 echo_char (keybuf[t]);
9785 add_command_key (keybuf[t]);
9790 UNGCPRO;
9791 return t;
9794 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9795 doc: /* Read a sequence of keystrokes and return as a string or vector.
9796 The sequence is sufficient to specify a non-prefix command in the
9797 current local and global maps.
9799 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9800 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9801 as a continuation of the previous key.
9803 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9804 convert the last event to lower case. (Normally any upper case event
9805 is converted to lower case if the original event is undefined and the lower
9806 case equivalent is defined.) A non-nil value is appropriate for reading
9807 a key sequence to be defined.
9809 A C-g typed while in this function is treated like any other character,
9810 and `quit-flag' is not set.
9812 If the key sequence starts with a mouse click, then the sequence is read
9813 using the keymaps of the buffer of the window clicked in, not the buffer
9814 of the selected window as normal.
9816 `read-key-sequence' drops unbound button-down events, since you normally
9817 only care about the click or drag events which follow them. If a drag
9818 or multi-click event is unbound, but the corresponding click event would
9819 be bound, `read-key-sequence' turns the event into a click event at the
9820 drag's starting position. This means that you don't have to distinguish
9821 between click and drag, double, or triple events unless you want to.
9823 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9824 lines separating windows, and scroll bars with imaginary keys
9825 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9827 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9828 function will process a switch-frame event if the user switches frames
9829 before typing anything. If the user switches frames in the middle of a
9830 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9831 is nil, then the event will be put off until after the current key sequence.
9833 `read-key-sequence' checks `function-key-map' for function key
9834 sequences, where they wouldn't conflict with ordinary bindings. See
9835 `function-key-map' for more details.
9837 The optional fifth argument COMMAND-LOOP, if non-nil, means
9838 that this key sequence is being read by something that will
9839 read commands one after another. It should be nil if the caller
9840 will read just one key sequence. */)
9841 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9842 command_loop)
9843 Lisp_Object prompt, continue_echo, dont_downcase_last;
9844 Lisp_Object can_return_switch_frame, command_loop;
9846 Lisp_Object keybuf[30];
9847 register int i;
9848 struct gcpro gcpro1;
9849 int count = SPECPDL_INDEX ();
9851 if (!NILP (prompt))
9852 CHECK_STRING (prompt);
9853 QUIT;
9855 specbind (Qinput_method_exit_on_first_char,
9856 (NILP (command_loop) ? Qt : Qnil));
9857 specbind (Qinput_method_use_echo_area,
9858 (NILP (command_loop) ? Qt : Qnil));
9860 bzero (keybuf, sizeof keybuf);
9861 GCPRO1 (keybuf[0]);
9862 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9864 if (NILP (continue_echo))
9866 this_command_key_count = 0;
9867 this_command_key_count_reset = 0;
9868 this_single_command_key_start = 0;
9871 #ifdef HAVE_X_WINDOWS
9872 if (display_hourglass_p)
9873 cancel_hourglass ();
9874 #endif
9876 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9877 prompt, ! NILP (dont_downcase_last),
9878 ! NILP (can_return_switch_frame), 0);
9880 #if 0 /* The following is fine for code reading a key sequence and
9881 then proceeding with a lenghty computation, but it's not good
9882 for code reading keys in a loop, like an input method. */
9883 #ifdef HAVE_X_WINDOWS
9884 if (display_hourglass_p)
9885 start_hourglass ();
9886 #endif
9887 #endif
9889 if (i == -1)
9891 Vquit_flag = Qt;
9892 QUIT;
9894 UNGCPRO;
9895 return unbind_to (count, make_event_array (i, keybuf));
9898 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9899 Sread_key_sequence_vector, 1, 5, 0,
9900 doc: /* Like `read-key-sequence' but always return a vector. */)
9901 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9902 command_loop)
9903 Lisp_Object prompt, continue_echo, dont_downcase_last;
9904 Lisp_Object can_return_switch_frame, command_loop;
9906 Lisp_Object keybuf[30];
9907 register int i;
9908 struct gcpro gcpro1;
9909 int count = SPECPDL_INDEX ();
9911 if (!NILP (prompt))
9912 CHECK_STRING (prompt);
9913 QUIT;
9915 specbind (Qinput_method_exit_on_first_char,
9916 (NILP (command_loop) ? Qt : Qnil));
9917 specbind (Qinput_method_use_echo_area,
9918 (NILP (command_loop) ? Qt : Qnil));
9920 bzero (keybuf, sizeof keybuf);
9921 GCPRO1 (keybuf[0]);
9922 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9924 if (NILP (continue_echo))
9926 this_command_key_count = 0;
9927 this_command_key_count_reset = 0;
9928 this_single_command_key_start = 0;
9931 #ifdef HAVE_X_WINDOWS
9932 if (display_hourglass_p)
9933 cancel_hourglass ();
9934 #endif
9936 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9937 prompt, ! NILP (dont_downcase_last),
9938 ! NILP (can_return_switch_frame), 0);
9940 #ifdef HAVE_X_WINDOWS
9941 if (display_hourglass_p)
9942 start_hourglass ();
9943 #endif
9945 if (i == -1)
9947 Vquit_flag = Qt;
9948 QUIT;
9950 UNGCPRO;
9951 return unbind_to (count, Fvector (i, keybuf));
9954 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9955 doc: /* Execute CMD as an editor command.
9956 CMD must be a symbol that satisfies the `commandp' predicate.
9957 Optional second arg RECORD-FLAG non-nil
9958 means unconditionally put this command in `command-history'.
9959 Otherwise, that is done only if an arg is read using the minibuffer.
9960 The argument KEYS specifies the value to use instead of (this-command-keys)
9961 when reading the arguments; if it is nil, (this-command-keys) is used.
9962 The argument SPECIAL, if non-nil, means that this command is executing
9963 a special event, so ignore the prefix argument and don't clear it. */)
9964 (cmd, record_flag, keys, special)
9965 Lisp_Object cmd, record_flag, keys, special;
9967 register Lisp_Object final;
9968 register Lisp_Object tem;
9969 Lisp_Object prefixarg;
9970 struct backtrace backtrace;
9971 extern int debug_on_next_call;
9973 debug_on_next_call = 0;
9975 if (NILP (special))
9977 prefixarg = current_kboard->Vprefix_arg;
9978 Vcurrent_prefix_arg = prefixarg;
9979 current_kboard->Vprefix_arg = Qnil;
9981 else
9982 prefixarg = Qnil;
9984 if (SYMBOLP (cmd))
9986 tem = Fget (cmd, Qdisabled);
9987 if (!NILP (tem) && !NILP (Vrun_hooks))
9989 tem = Fsymbol_value (Qdisabled_command_function);
9990 if (!NILP (tem))
9991 return call1 (Vrun_hooks, Qdisabled_command_function);
9995 while (1)
9997 final = Findirect_function (cmd, Qnil);
9999 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
10001 struct gcpro gcpro1, gcpro2;
10003 GCPRO2 (cmd, prefixarg);
10004 do_autoload (final, cmd);
10005 UNGCPRO;
10007 else
10008 break;
10011 if (STRINGP (final) || VECTORP (final))
10013 /* If requested, place the macro in the command history. For
10014 other sorts of commands, call-interactively takes care of
10015 this. */
10016 if (!NILP (record_flag))
10018 Vcommand_history
10019 = Fcons (Fcons (Qexecute_kbd_macro,
10020 Fcons (final, Fcons (prefixarg, Qnil))),
10021 Vcommand_history);
10023 /* Don't keep command history around forever. */
10024 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
10026 tem = Fnthcdr (Vhistory_length, Vcommand_history);
10027 if (CONSP (tem))
10028 XSETCDR (tem, Qnil);
10032 return Fexecute_kbd_macro (final, prefixarg, Qnil);
10035 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
10037 backtrace.next = backtrace_list;
10038 backtrace_list = &backtrace;
10039 backtrace.function = &Qcall_interactively;
10040 backtrace.args = &cmd;
10041 backtrace.nargs = 1;
10042 backtrace.evalargs = 0;
10043 backtrace.debug_on_exit = 0;
10045 tem = Fcall_interactively (cmd, record_flag, keys);
10047 backtrace_list = backtrace.next;
10048 return tem;
10050 return Qnil;
10055 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
10056 1, 1, "P",
10057 doc: /* Read function name, then read its arguments and call it.
10059 To pass a numeric argument to the command you are invoking with, specify
10060 the numeric argument to this command.
10062 Noninteractively, the argument PREFIXARG is the prefix argument to
10063 give to the command you invoke, if it asks for an argument. */)
10064 (prefixarg)
10065 Lisp_Object prefixarg;
10067 Lisp_Object function;
10068 char buf[40];
10069 int saved_last_point_position;
10070 Lisp_Object saved_keys, saved_last_point_position_buffer;
10071 Lisp_Object bindings, value;
10072 struct gcpro gcpro1, gcpro2, gcpro3;
10073 #ifdef HAVE_X_WINDOWS
10074 /* The call to Fcompleting_read wil start and cancel the hourglass,
10075 but if the hourglass was already scheduled, this means that no
10076 hourglass will be shown for the actual M-x command itself.
10077 So we restart it if it is already scheduled. Note that checking
10078 hourglass_shown_p is not enough, normally the hourglass is not shown,
10079 just scheduled to be shown. */
10080 int hstarted = hourglass_started ();
10081 #endif
10083 saved_keys = Fvector (this_command_key_count,
10084 XVECTOR (this_command_keys)->contents);
10085 saved_last_point_position_buffer = last_point_position_buffer;
10086 saved_last_point_position = last_point_position;
10087 buf[0] = 0;
10088 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
10090 if (EQ (prefixarg, Qminus))
10091 strcpy (buf, "- ");
10092 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
10093 strcpy (buf, "C-u ");
10094 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
10095 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
10096 else if (INTEGERP (prefixarg))
10097 sprintf (buf, "%ld ", (long) XINT (prefixarg));
10099 /* This isn't strictly correct if execute-extended-command
10100 is bound to anything else. Perhaps it should use
10101 this_command_keys? */
10102 strcat (buf, "M-x ");
10104 /* Prompt with buf, and then read a string, completing from and
10105 restricting to the set of all defined commands. Don't provide
10106 any initial input. Save the command read on the extended-command
10107 history list. */
10108 function = Fcompleting_read (build_string (buf),
10109 Vobarray, Qcommandp,
10110 Qt, Qnil, Qextended_command_history, Qnil,
10111 Qnil);
10113 #ifdef HAVE_X_WINDOWS
10114 if (hstarted) start_hourglass ();
10115 #endif
10117 if (STRINGP (function) && SCHARS (function) == 0)
10118 error ("No command name given");
10120 /* Set this_command_keys to the concatenation of saved_keys and
10121 function, followed by a RET. */
10123 Lisp_Object *keys;
10124 int i;
10126 this_command_key_count = 0;
10127 this_command_key_count_reset = 0;
10128 this_single_command_key_start = 0;
10130 keys = XVECTOR (saved_keys)->contents;
10131 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
10132 add_command_key (keys[i]);
10134 for (i = 0; i < SCHARS (function); i++)
10135 add_command_key (Faref (function, make_number (i)));
10137 add_command_key (make_number ('\015'));
10140 last_point_position = saved_last_point_position;
10141 last_point_position_buffer = saved_last_point_position_buffer;
10143 UNGCPRO;
10145 function = Fintern (function, Qnil);
10146 current_kboard->Vprefix_arg = prefixarg;
10147 Vthis_command = function;
10148 real_this_command = function;
10150 /* If enabled, show which key runs this command. */
10151 if (!NILP (Vsuggest_key_bindings)
10152 && NILP (Vexecuting_kbd_macro)
10153 && SYMBOLP (function))
10154 bindings = Fwhere_is_internal (function, Voverriding_local_map,
10155 Qt, Qnil, Qnil);
10156 else
10157 bindings = Qnil;
10159 value = Qnil;
10160 GCPRO2 (bindings, value);
10161 value = Fcommand_execute (function, Qt, Qnil, Qnil);
10163 /* If the command has a key binding, print it now. */
10164 if (!NILP (bindings)
10165 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
10166 Qmouse_movement)))
10168 /* But first wait, and skip the message if there is input. */
10169 Lisp_Object waited;
10171 /* If this command displayed something in the echo area;
10172 wait a few seconds, then display our suggestion message. */
10173 if (NILP (echo_area_buffer[0]))
10174 waited = sit_for (make_number (0), 0, 2);
10175 else if (NUMBERP (Vsuggest_key_bindings))
10176 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10177 else
10178 waited = sit_for (make_number (2), 0, 2);
10180 if (!NILP (waited) && ! CONSP (Vunread_command_events))
10182 Lisp_Object binding;
10183 char *newmessage;
10184 int message_p = push_message ();
10185 int count = SPECPDL_INDEX ();
10187 record_unwind_protect (pop_message_unwind, Qnil);
10188 binding = Fkey_description (bindings, Qnil);
10190 newmessage
10191 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
10192 + SBYTES (binding)
10193 + 100);
10194 sprintf (newmessage, "You can run the command `%s' with %s",
10195 SDATA (SYMBOL_NAME (function)),
10196 SDATA (binding));
10197 message2_nolog (newmessage,
10198 strlen (newmessage),
10199 STRING_MULTIBYTE (binding));
10200 if (NUMBERP (Vsuggest_key_bindings))
10201 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10202 else
10203 waited = sit_for (make_number (2), 0, 2);
10205 if (!NILP (waited) && message_p)
10206 restore_message ();
10208 unbind_to (count, Qnil);
10212 RETURN_UNGCPRO (value);
10216 /* Return nonzero if input events are pending. */
10219 detect_input_pending ()
10221 if (!input_pending)
10222 get_input_pending (&input_pending, 0);
10224 return input_pending;
10227 /* Return nonzero if input events other than mouse movements are
10228 pending. */
10231 detect_input_pending_ignore_squeezables ()
10233 if (!input_pending)
10234 get_input_pending (&input_pending, READABLE_EVENTS_IGNORE_SQUEEZABLES);
10236 return input_pending;
10239 /* Return nonzero if input events are pending, and run any pending timers. */
10242 detect_input_pending_run_timers (do_display)
10243 int do_display;
10245 int old_timers_run = timers_run;
10247 if (!input_pending)
10248 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
10250 if (old_timers_run != timers_run && do_display)
10252 redisplay_preserve_echo_area (8);
10253 /* The following fixes a bug when using lazy-lock with
10254 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
10255 from an idle timer function. The symptom of the bug is that
10256 the cursor sometimes doesn't become visible until the next X
10257 event is processed. --gerd. */
10258 if (rif)
10259 rif->flush_display (NULL);
10262 return input_pending;
10265 /* This is called in some cases before a possible quit.
10266 It cases the next call to detect_input_pending to recompute input_pending.
10267 So calling this function unnecessarily can't do any harm. */
10269 void
10270 clear_input_pending ()
10272 input_pending = 0;
10275 /* Return nonzero if there are pending requeued events.
10276 This isn't used yet. The hope is to make wait_reading_process_output
10277 call it, and return if it runs Lisp code that unreads something.
10278 The problem is, kbd_buffer_get_event needs to be fixed to know what
10279 to do in that case. It isn't trivial. */
10282 requeued_events_pending_p ()
10284 return (!NILP (Vunread_command_events) || unread_command_char != -1);
10288 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
10289 doc: /* Return t if command input is currently available with no wait.
10290 Actually, the value is nil only if we can be sure that no input is available;
10291 if there is a doubt, the value is t. */)
10294 if (!NILP (Vunread_command_events) || unread_command_char != -1
10295 || !NILP (Vunread_post_input_method_events)
10296 || !NILP (Vunread_input_method_events))
10297 return (Qt);
10299 get_input_pending (&input_pending,
10300 READABLE_EVENTS_DO_TIMERS_NOW
10301 | READABLE_EVENTS_FILTER_EVENTS);
10302 return input_pending > 0 ? Qt : Qnil;
10305 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
10306 doc: /* Return vector of last 300 events, not counting those from keyboard macros. */)
10309 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
10310 Lisp_Object val;
10312 if (total_keys < NUM_RECENT_KEYS)
10313 return Fvector (total_keys, keys);
10314 else
10316 val = Fvector (NUM_RECENT_KEYS, keys);
10317 bcopy (keys + recent_keys_index,
10318 XVECTOR (val)->contents,
10319 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
10320 bcopy (keys,
10321 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
10322 recent_keys_index * sizeof (Lisp_Object));
10323 return val;
10327 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10328 doc: /* Return the key sequence that invoked this command.
10329 However, if the command has called `read-key-sequence', it returns
10330 the last key sequence that has been read.
10331 The value is a string or a vector.
10333 See also `this-command-keys-vector'. */)
10336 return make_event_array (this_command_key_count,
10337 XVECTOR (this_command_keys)->contents);
10340 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10341 doc: /* Return the key sequence that invoked this command, as a vector.
10342 However, if the command has called `read-key-sequence', it returns
10343 the last key sequence that has been read.
10345 See also `this-command-keys'. */)
10348 return Fvector (this_command_key_count,
10349 XVECTOR (this_command_keys)->contents);
10352 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10353 Sthis_single_command_keys, 0, 0, 0,
10354 doc: /* Return the key sequence that invoked this command.
10355 More generally, it returns the last key sequence read, either by
10356 the command loop or by `read-key-sequence'.
10357 Unlike `this-command-keys', this function's value
10358 does not include prefix arguments.
10359 The value is always a vector. */)
10362 return Fvector (this_command_key_count
10363 - this_single_command_key_start,
10364 (XVECTOR (this_command_keys)->contents
10365 + this_single_command_key_start));
10368 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10369 Sthis_single_command_raw_keys, 0, 0, 0,
10370 doc: /* Return the raw events that were read for this command.
10371 More generally, it returns the last key sequence read, either by
10372 the command loop or by `read-key-sequence'.
10373 Unlike `this-single-command-keys', this function's value
10374 shows the events before all translations (except for input methods).
10375 The value is always a vector. */)
10378 return Fvector (raw_keybuf_count,
10379 (XVECTOR (raw_keybuf)->contents));
10382 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
10383 Sreset_this_command_lengths, 0, 0, 0,
10384 doc: /* Make the unread events replace the last command and echo.
10385 Used in `universal-argument-other-key'.
10387 `universal-argument-other-key' rereads the event just typed.
10388 It then gets translated through `function-key-map'.
10389 The translated event has to replace the real events,
10390 both in the value of (this-command-keys) and in echoing.
10391 To achieve this, `universal-argument-other-key' calls
10392 `reset-this-command-lengths', which discards the record of reading
10393 these events the first time. */)
10396 this_command_key_count = before_command_key_count;
10397 if (this_command_key_count < this_single_command_key_start)
10398 this_single_command_key_start = this_command_key_count;
10400 echo_truncate (before_command_echo_length);
10402 /* Cause whatever we put into unread-command-events
10403 to echo as if it were being freshly read from the keyboard. */
10404 this_command_key_count_reset = 1;
10406 return Qnil;
10409 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10410 Sclear_this_command_keys, 0, 1, 0,
10411 doc: /* Clear out the vector that `this-command-keys' returns.
10412 Also clear the record of the last 100 events, unless optional arg
10413 KEEP-RECORD is non-nil. */)
10414 (keep_record)
10415 Lisp_Object keep_record;
10417 int i;
10419 this_command_key_count = 0;
10420 this_command_key_count_reset = 0;
10422 if (NILP (keep_record))
10424 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
10425 XVECTOR (recent_keys)->contents[i] = Qnil;
10426 total_keys = 0;
10427 recent_keys_index = 0;
10429 return Qnil;
10432 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10433 doc: /* Return the current depth in recursive edits. */)
10436 Lisp_Object temp;
10437 XSETFASTINT (temp, command_loop_level + minibuf_level);
10438 return temp;
10441 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10442 "FOpen dribble file: ",
10443 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10444 If FILE is nil, close any open dribble file. */)
10445 (file)
10446 Lisp_Object file;
10448 if (dribble)
10450 BLOCK_INPUT;
10451 fclose (dribble);
10452 UNBLOCK_INPUT;
10453 dribble = 0;
10455 if (!NILP (file))
10457 file = Fexpand_file_name (file, Qnil);
10458 dribble = fopen (SDATA (file), "w");
10459 if (dribble == 0)
10460 report_file_error ("Opening dribble", Fcons (file, Qnil));
10462 return Qnil;
10465 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10466 doc: /* Discard the contents of the terminal input buffer.
10467 Also end any kbd macro being defined. */)
10470 if (!NILP (current_kboard->defining_kbd_macro))
10472 /* Discard the last command from the macro. */
10473 Fcancel_kbd_macro_events ();
10474 end_kbd_macro ();
10477 update_mode_lines++;
10479 Vunread_command_events = Qnil;
10480 unread_command_char = -1;
10482 discard_tty_input ();
10484 kbd_fetch_ptr = kbd_store_ptr;
10485 input_pending = 0;
10487 return Qnil;
10490 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10491 doc: /* Stop Emacs and return to superior process. You can resume later.
10492 If `cannot-suspend' is non-nil, or if the system doesn't support job
10493 control, run a subshell instead.
10495 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10496 to be read as terminal input by Emacs's parent, after suspension.
10498 Before suspending, run the normal hook `suspend-hook'.
10499 After resumption run the normal hook `suspend-resume-hook'.
10501 Some operating systems cannot stop the Emacs process and resume it later.
10502 On such systems, Emacs starts a subshell instead of suspending. */)
10503 (stuffstring)
10504 Lisp_Object stuffstring;
10506 int count = SPECPDL_INDEX ();
10507 int old_height, old_width;
10508 int width, height;
10509 struct gcpro gcpro1;
10511 if (!NILP (stuffstring))
10512 CHECK_STRING (stuffstring);
10514 /* Run the functions in suspend-hook. */
10515 if (!NILP (Vrun_hooks))
10516 call1 (Vrun_hooks, intern ("suspend-hook"));
10518 GCPRO1 (stuffstring);
10519 get_frame_size (&old_width, &old_height);
10520 reset_sys_modes ();
10521 /* sys_suspend can get an error if it tries to fork a subshell
10522 and the system resources aren't available for that. */
10523 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
10524 Qnil);
10525 stuff_buffered_input (stuffstring);
10526 if (cannot_suspend)
10527 sys_subshell ();
10528 else
10529 sys_suspend ();
10530 unbind_to (count, Qnil);
10532 /* Check if terminal/window size has changed.
10533 Note that this is not useful when we are running directly
10534 with a window system; but suspend should be disabled in that case. */
10535 get_frame_size (&width, &height);
10536 if (width != old_width || height != old_height)
10537 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10539 /* Run suspend-resume-hook. */
10540 if (!NILP (Vrun_hooks))
10541 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10543 UNGCPRO;
10544 return Qnil;
10547 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10548 Then in any case stuff anything Emacs has read ahead and not used. */
10550 void
10551 stuff_buffered_input (stuffstring)
10552 Lisp_Object stuffstring;
10554 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10555 register unsigned char *p;
10557 if (STRINGP (stuffstring))
10559 register int count;
10561 p = SDATA (stuffstring);
10562 count = SBYTES (stuffstring);
10563 while (count-- > 0)
10564 stuff_char (*p++);
10565 stuff_char ('\n');
10568 /* Anything we have read ahead, put back for the shell to read. */
10569 /* ?? What should this do when we have multiple keyboards??
10570 Should we ignore anything that was typed in at the "wrong" kboard?
10572 rms: we should stuff everything back into the kboard
10573 it came from. */
10574 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10577 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10578 kbd_fetch_ptr = kbd_buffer;
10579 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10580 stuff_char (kbd_fetch_ptr->code);
10582 clear_event (kbd_fetch_ptr);
10585 input_pending = 0;
10586 #endif /* SIGTSTP */
10589 void
10590 set_waiting_for_input (time_to_clear)
10591 EMACS_TIME *time_to_clear;
10593 input_available_clear_time = time_to_clear;
10595 /* Tell interrupt_signal to throw back to read_char, */
10596 waiting_for_input = 1;
10598 /* If interrupt_signal was called before and buffered a C-g,
10599 make it run again now, to avoid timing error. */
10600 if (!NILP (Vquit_flag))
10601 quit_throw_to_read_char ();
10604 void
10605 clear_waiting_for_input ()
10607 /* Tell interrupt_signal not to throw back to read_char, */
10608 waiting_for_input = 0;
10609 input_available_clear_time = 0;
10612 /* This routine is called at interrupt level in response to C-g.
10614 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10615 is called from kbd_buffer_store_event, in handling SIGIO or
10616 SIGTINT.
10618 If `waiting_for_input' is non zero, then unless `echoing' is
10619 nonzero, immediately throw back to read_char.
10621 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10622 eval to throw, when it gets a chance. If quit-flag is already
10623 non-nil, it stops the job right away. */
10625 static SIGTYPE
10626 interrupt_signal (signalnum) /* If we don't have an argument, */
10627 int signalnum; /* some compilers complain in signal calls. */
10629 char c;
10630 /* Must preserve main program's value of errno. */
10631 int old_errno = errno;
10632 struct frame *sf = SELECTED_FRAME ();
10634 #if defined (USG) && !defined (POSIX_SIGNALS)
10635 if (!read_socket_hook && NILP (Vwindow_system))
10637 /* USG systems forget handlers when they are used;
10638 must reestablish each time */
10639 signal (SIGINT, interrupt_signal);
10640 signal (SIGQUIT, interrupt_signal);
10642 #endif /* USG */
10644 SIGNAL_THREAD_CHECK (signalnum);
10645 cancel_echoing ();
10647 if (!NILP (Vquit_flag)
10648 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
10650 /* If SIGINT isn't blocked, don't let us be interrupted by
10651 another SIGINT, it might be harmful due to non-reentrancy
10652 in I/O functions. */
10653 sigblock (sigmask (SIGINT));
10655 fflush (stdout);
10656 reset_sys_modes ();
10658 #ifdef SIGTSTP /* Support possible in later USG versions */
10660 * On systems which can suspend the current process and return to the original
10661 * shell, this command causes the user to end up back at the shell.
10662 * The "Auto-save" and "Abort" questions are not asked until
10663 * the user elects to return to emacs, at which point he can save the current
10664 * job and either dump core or continue.
10666 sys_suspend ();
10667 #else
10668 #ifdef VMS
10669 if (sys_suspend () == -1)
10671 printf ("Not running as a subprocess;\n");
10672 printf ("you can continue or abort.\n");
10674 #else /* not VMS */
10675 /* Perhaps should really fork an inferior shell?
10676 But that would not provide any way to get back
10677 to the original shell, ever. */
10678 printf ("No support for stopping a process on this operating system;\n");
10679 printf ("you can continue or abort.\n");
10680 #endif /* not VMS */
10681 #endif /* not SIGTSTP */
10682 #ifdef MSDOS
10683 /* We must remain inside the screen area when the internal terminal
10684 is used. Note that [Enter] is not echoed by dos. */
10685 cursor_to (0, 0);
10686 #endif
10687 /* It doesn't work to autosave while GC is in progress;
10688 the code used for auto-saving doesn't cope with the mark bit. */
10689 if (!gc_in_progress)
10691 printf ("Auto-save? (y or n) ");
10692 fflush (stdout);
10693 if (((c = getchar ()) & ~040) == 'Y')
10695 Fdo_auto_save (Qt, Qnil);
10696 #ifdef MSDOS
10697 printf ("\r\nAuto-save done");
10698 #else /* not MSDOS */
10699 printf ("Auto-save done\n");
10700 #endif /* not MSDOS */
10702 while (c != '\n') c = getchar ();
10704 else
10706 /* During GC, it must be safe to reenable quitting again. */
10707 Vinhibit_quit = Qnil;
10708 #ifdef MSDOS
10709 printf ("\r\n");
10710 #endif /* not MSDOS */
10711 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10712 printf ("but will instead do a real quit after garbage collection ends\r\n");
10713 fflush (stdout);
10716 #ifdef MSDOS
10717 printf ("\r\nAbort? (y or n) ");
10718 #else /* not MSDOS */
10719 #ifdef VMS
10720 printf ("Abort (and enter debugger)? (y or n) ");
10721 #else /* not VMS */
10722 printf ("Abort (and dump core)? (y or n) ");
10723 #endif /* not VMS */
10724 #endif /* not MSDOS */
10725 fflush (stdout);
10726 if (((c = getchar ()) & ~040) == 'Y')
10727 abort ();
10728 while (c != '\n') c = getchar ();
10729 #ifdef MSDOS
10730 printf ("\r\nContinuing...\r\n");
10731 #else /* not MSDOS */
10732 printf ("Continuing...\n");
10733 #endif /* not MSDOS */
10734 fflush (stdout);
10735 init_sys_modes ();
10736 sigfree ();
10738 else
10740 /* If executing a function that wants to be interrupted out of
10741 and the user has not deferred quitting by binding `inhibit-quit'
10742 then quit right away. */
10743 if (immediate_quit && NILP (Vinhibit_quit))
10745 struct gl_state_s saved;
10746 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10748 immediate_quit = 0;
10749 sigfree ();
10750 saved = gl_state;
10751 GCPRO4 (saved.object, saved.global_code,
10752 saved.current_syntax_table, saved.old_prop);
10753 Fsignal (Qquit, Qnil);
10754 gl_state = saved;
10755 UNGCPRO;
10757 else
10758 /* Else request quit when it's safe */
10759 Vquit_flag = Qt;
10762 if (waiting_for_input && !echoing)
10763 quit_throw_to_read_char ();
10765 errno = old_errno;
10768 /* Handle a C-g by making read_char return C-g. */
10770 void
10771 quit_throw_to_read_char ()
10773 sigfree ();
10774 /* Prevent another signal from doing this before we finish. */
10775 clear_waiting_for_input ();
10776 input_pending = 0;
10778 Vunread_command_events = Qnil;
10779 unread_command_char = -1;
10781 #if 0 /* Currently, sit_for is called from read_char without turning
10782 off polling. And that can call set_waiting_for_input.
10783 It seems to be harmless. */
10784 #ifdef POLL_FOR_INPUT
10785 /* May be > 1 if in recursive minibuffer. */
10786 if (poll_suppress_count == 0)
10787 abort ();
10788 #endif
10789 #endif
10790 if (FRAMEP (internal_last_event_frame)
10791 && !EQ (internal_last_event_frame, selected_frame))
10792 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10793 0, 0);
10795 _longjmp (getcjmp, 1);
10798 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10799 doc: /* Set mode of reading keyboard input.
10800 First arg INTERRUPT non-nil means use input interrupts;
10801 nil means use CBREAK mode.
10802 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10803 (no effect except in CBREAK mode).
10804 Third arg META t means accept 8-bit input (for a Meta key).
10805 META nil means ignore the top bit, on the assumption it is parity.
10806 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10807 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10808 See also `current-input-mode'. */)
10809 (interrupt, flow, meta, quit)
10810 Lisp_Object interrupt, flow, meta, quit;
10812 if (!NILP (quit)
10813 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10814 error ("set-input-mode: QUIT must be an ASCII character");
10816 #ifdef POLL_FOR_INPUT
10817 stop_polling ();
10818 #endif
10820 #ifndef DOS_NT
10821 /* this causes startup screen to be restored and messes with the mouse */
10822 reset_sys_modes ();
10823 #endif
10825 #ifdef SIGIO
10826 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10827 if (read_socket_hook)
10829 /* When using X, don't give the user a real choice,
10830 because we haven't implemented the mechanisms to support it. */
10831 #ifdef NO_SOCK_SIGIO
10832 interrupt_input = 0;
10833 #else /* not NO_SOCK_SIGIO */
10834 interrupt_input = 1;
10835 #endif /* NO_SOCK_SIGIO */
10837 else
10838 interrupt_input = !NILP (interrupt);
10839 #else /* not SIGIO */
10840 interrupt_input = 0;
10841 #endif /* not SIGIO */
10843 /* Our VMS input only works by interrupts, as of now. */
10844 #ifdef VMS
10845 interrupt_input = 1;
10846 #endif
10848 flow_control = !NILP (flow);
10849 if (NILP (meta))
10850 meta_key = 0;
10851 else if (EQ (meta, Qt))
10852 meta_key = 1;
10853 else
10854 meta_key = 2;
10855 if (!NILP (quit))
10856 /* Don't let this value be out of range. */
10857 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10859 #ifndef DOS_NT
10860 init_sys_modes ();
10861 #endif
10863 #ifdef POLL_FOR_INPUT
10864 poll_suppress_count = 1;
10865 start_polling ();
10866 #endif
10867 return Qnil;
10870 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10871 doc: /* Return information about the way Emacs currently reads keyboard input.
10872 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10873 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10874 nil, Emacs is using CBREAK mode.
10875 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10876 terminal; this does not apply if Emacs uses interrupt-driven input.
10877 META is t if accepting 8-bit input with 8th bit as Meta flag.
10878 META nil means ignoring the top bit, on the assumption it is parity.
10879 META is neither t nor nil if accepting 8-bit input and using
10880 all 8 bits as the character code.
10881 QUIT is the character Emacs currently uses to quit.
10882 The elements of this list correspond to the arguments of
10883 `set-input-mode'. */)
10886 Lisp_Object val[4];
10888 val[0] = interrupt_input ? Qt : Qnil;
10889 val[1] = flow_control ? Qt : Qnil;
10890 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10891 XSETFASTINT (val[3], quit_char);
10893 return Flist (sizeof (val) / sizeof (val[0]), val);
10896 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
10897 doc: /* Return position information for pixel coordinates X and Y.
10898 By default, X and Y are relative to text area of the selected window.
10899 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
10900 If optional fourth arg WHOLE is non-nil, X is relative to the left
10901 edge of the window.
10903 The return value is similar to a mouse click position:
10904 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10905 IMAGE (DX . DY) (WIDTH . HEIGHT))
10906 The `posn-' functions access elements of such lists. */)
10907 (x, y, frame_or_window, whole)
10908 Lisp_Object x, y, frame_or_window, whole;
10910 CHECK_NATNUM (x);
10911 CHECK_NATNUM (y);
10913 if (NILP (frame_or_window))
10914 frame_or_window = selected_window;
10916 if (WINDOWP (frame_or_window))
10918 struct window *w;
10920 CHECK_LIVE_WINDOW (frame_or_window);
10922 w = XWINDOW (frame_or_window);
10923 XSETINT (x, (XINT (x)
10924 + WINDOW_LEFT_EDGE_X (w)
10925 + (NILP (whole)
10926 ? window_box_left_offset (w, TEXT_AREA)
10927 : 0)));
10928 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
10929 frame_or_window = w->frame;
10932 CHECK_LIVE_FRAME (frame_or_window);
10934 return make_lispy_position (XFRAME (frame_or_window), &x, &y, 0);
10937 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
10938 doc: /* Return position information for buffer POS in WINDOW.
10939 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10941 Return nil if position is not visible in window. Otherwise,
10942 the return value is similar to that returned by `event-start' for
10943 a mouse click at the upper left corner of the glyph corresponding
10944 to the given buffer position:
10945 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10946 IMAGE (DX . DY) (WIDTH . HEIGHT))
10947 The `posn-' functions access elements of such lists. */)
10948 (pos, window)
10949 Lisp_Object pos, window;
10951 Lisp_Object tem;
10953 if (NILP (window))
10954 window = selected_window;
10956 tem = Fpos_visible_in_window_p (pos, window, Qt);
10957 if (!NILP (tem))
10959 Lisp_Object x = XCAR (tem);
10960 Lisp_Object y = XCAR (XCDR (tem));
10962 /* Point invisible due to hscrolling? */
10963 if (XINT (x) < 0)
10964 return Qnil;
10965 tem = Fposn_at_x_y (x, y, window, Qnil);
10968 return tem;
10973 * Set up a new kboard object with reasonable initial values.
10975 void
10976 init_kboard (kb)
10977 KBOARD *kb;
10979 kb->Voverriding_terminal_local_map = Qnil;
10980 kb->Vlast_command = Qnil;
10981 kb->Vreal_last_command = Qnil;
10982 kb->Vlast_repeatable_command = Qnil;
10983 kb->Vprefix_arg = Qnil;
10984 kb->Vlast_prefix_arg = Qnil;
10985 kb->kbd_queue = Qnil;
10986 kb->kbd_queue_has_data = 0;
10987 kb->immediate_echo = 0;
10988 kb->echo_string = Qnil;
10989 kb->echo_after_prompt = -1;
10990 kb->kbd_macro_buffer = 0;
10991 kb->kbd_macro_bufsize = 0;
10992 kb->defining_kbd_macro = Qnil;
10993 kb->Vlast_kbd_macro = Qnil;
10994 kb->reference_count = 0;
10995 kb->Vsystem_key_alist = Qnil;
10996 kb->system_key_syms = Qnil;
10997 kb->Vdefault_minibuffer_frame = Qnil;
11001 * Destroy the contents of a kboard object, but not the object itself.
11002 * We use this just before deleting it, or if we're going to initialize
11003 * it a second time.
11005 static void
11006 wipe_kboard (kb)
11007 KBOARD *kb;
11009 if (kb->kbd_macro_buffer)
11010 xfree (kb->kbd_macro_buffer);
11013 #ifdef MULTI_KBOARD
11015 /* Free KB and memory referenced from it. */
11017 void
11018 delete_kboard (kb)
11019 KBOARD *kb;
11021 KBOARD **kbp;
11023 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
11024 if (*kbp == NULL)
11025 abort ();
11026 *kbp = kb->next_kboard;
11028 /* Prevent a dangling reference to KB. */
11029 if (kb == current_kboard
11030 && FRAMEP (selected_frame)
11031 && FRAME_LIVE_P (XFRAME (selected_frame)))
11033 current_kboard = XFRAME (selected_frame)->kboard;
11034 if (current_kboard == kb)
11035 abort ();
11038 wipe_kboard (kb);
11039 xfree (kb);
11042 #endif /* MULTI_KBOARD */
11044 void
11045 init_keyboard ()
11047 /* This is correct before outermost invocation of the editor loop */
11048 command_loop_level = -1;
11049 immediate_quit = 0;
11050 quit_char = Ctl ('g');
11051 Vunread_command_events = Qnil;
11052 unread_command_char = -1;
11053 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
11054 total_keys = 0;
11055 recent_keys_index = 0;
11056 kbd_fetch_ptr = kbd_buffer;
11057 kbd_store_ptr = kbd_buffer;
11058 #ifdef HAVE_MOUSE
11059 do_mouse_tracking = Qnil;
11060 #endif
11061 input_pending = 0;
11062 interrupt_input_blocked = 0;
11063 interrupt_input_pending = 0;
11065 /* This means that command_loop_1 won't try to select anything the first
11066 time through. */
11067 internal_last_event_frame = Qnil;
11068 Vlast_event_frame = internal_last_event_frame;
11070 #ifdef MULTI_KBOARD
11071 current_kboard = initial_kboard;
11072 #endif
11073 wipe_kboard (current_kboard);
11074 init_kboard (current_kboard);
11076 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
11078 signal (SIGINT, interrupt_signal);
11079 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
11080 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
11081 SIGQUIT and we can't tell which one it will give us. */
11082 signal (SIGQUIT, interrupt_signal);
11083 #endif /* HAVE_TERMIO */
11085 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11086 #ifdef SIGIO
11087 if (!noninteractive)
11088 signal (SIGIO, input_available_signal);
11089 #endif /* SIGIO */
11091 /* Use interrupt input by default, if it works and noninterrupt input
11092 has deficiencies. */
11094 #ifdef INTERRUPT_INPUT
11095 interrupt_input = 1;
11096 #else
11097 interrupt_input = 0;
11098 #endif
11100 /* Our VMS input only works by interrupts, as of now. */
11101 #ifdef VMS
11102 interrupt_input = 1;
11103 #endif
11105 sigfree ();
11106 dribble = 0;
11108 if (keyboard_init_hook)
11109 (*keyboard_init_hook) ();
11111 #ifdef POLL_FOR_INPUT
11112 poll_suppress_count = 1;
11113 start_polling ();
11114 #endif
11117 /* This type's only use is in syms_of_keyboard, to initialize the
11118 event header symbols and put properties on them. */
11119 struct event_head {
11120 Lisp_Object *var;
11121 char *name;
11122 Lisp_Object *kind;
11125 struct event_head head_table[] = {
11126 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
11127 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
11128 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
11129 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
11130 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
11131 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
11132 /* `select-window' should be handled just like `switch-frame'
11133 in read_key_sequence. */
11134 {&Qselect_window, "select-window", &Qswitch_frame}
11137 void
11138 syms_of_keyboard ()
11140 Vpre_help_message = Qnil;
11141 staticpro (&Vpre_help_message);
11143 Vlispy_mouse_stem = build_string ("mouse");
11144 staticpro (&Vlispy_mouse_stem);
11146 /* Tool-bars. */
11147 QCimage = intern (":image");
11148 staticpro (&QCimage);
11150 staticpro (&Qhelp_echo);
11151 Qhelp_echo = intern ("help-echo");
11153 staticpro (&Qrtl);
11154 Qrtl = intern (":rtl");
11156 staticpro (&item_properties);
11157 item_properties = Qnil;
11159 staticpro (&tool_bar_item_properties);
11160 tool_bar_item_properties = Qnil;
11161 staticpro (&tool_bar_items_vector);
11162 tool_bar_items_vector = Qnil;
11164 staticpro (&real_this_command);
11165 real_this_command = Qnil;
11167 Qtimer_event_handler = intern ("timer-event-handler");
11168 staticpro (&Qtimer_event_handler);
11170 Qdisabled_command_function = intern ("disabled-command-function");
11171 staticpro (&Qdisabled_command_function);
11173 Qself_insert_command = intern ("self-insert-command");
11174 staticpro (&Qself_insert_command);
11176 Qforward_char = intern ("forward-char");
11177 staticpro (&Qforward_char);
11179 Qbackward_char = intern ("backward-char");
11180 staticpro (&Qbackward_char);
11182 Qdisabled = intern ("disabled");
11183 staticpro (&Qdisabled);
11185 Qundefined = intern ("undefined");
11186 staticpro (&Qundefined);
11188 Qpre_command_hook = intern ("pre-command-hook");
11189 staticpro (&Qpre_command_hook);
11191 Qpost_command_hook = intern ("post-command-hook");
11192 staticpro (&Qpost_command_hook);
11194 Qdeferred_action_function = intern ("deferred-action-function");
11195 staticpro (&Qdeferred_action_function);
11197 Qcommand_hook_internal = intern ("command-hook-internal");
11198 staticpro (&Qcommand_hook_internal);
11200 Qfunction_key = intern ("function-key");
11201 staticpro (&Qfunction_key);
11202 Qmouse_click = intern ("mouse-click");
11203 staticpro (&Qmouse_click);
11204 #if defined (WINDOWSNT) || defined (MAC_OS)
11205 Qlanguage_change = intern ("language-change");
11206 staticpro (&Qlanguage_change);
11207 #endif
11208 Qdrag_n_drop = intern ("drag-n-drop");
11209 staticpro (&Qdrag_n_drop);
11211 Qsave_session = intern ("save-session");
11212 staticpro (&Qsave_session);
11214 #ifdef MAC_OS
11215 Qmac_apple_event = intern ("mac-apple-event");
11216 staticpro (&Qmac_apple_event);
11217 #endif
11219 Qmenu_enable = intern ("menu-enable");
11220 staticpro (&Qmenu_enable);
11221 Qmenu_alias = intern ("menu-alias");
11222 staticpro (&Qmenu_alias);
11223 QCenable = intern (":enable");
11224 staticpro (&QCenable);
11225 QCvisible = intern (":visible");
11226 staticpro (&QCvisible);
11227 QChelp = intern (":help");
11228 staticpro (&QChelp);
11229 QCfilter = intern (":filter");
11230 staticpro (&QCfilter);
11231 QCbutton = intern (":button");
11232 staticpro (&QCbutton);
11233 QCkeys = intern (":keys");
11234 staticpro (&QCkeys);
11235 QCkey_sequence = intern (":key-sequence");
11236 staticpro (&QCkey_sequence);
11237 QCtoggle = intern (":toggle");
11238 staticpro (&QCtoggle);
11239 QCradio = intern (":radio");
11240 staticpro (&QCradio);
11242 Qmode_line = intern ("mode-line");
11243 staticpro (&Qmode_line);
11244 Qvertical_line = intern ("vertical-line");
11245 staticpro (&Qvertical_line);
11246 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
11247 staticpro (&Qvertical_scroll_bar);
11248 Qmenu_bar = intern ("menu-bar");
11249 staticpro (&Qmenu_bar);
11251 #ifdef HAVE_MOUSE
11252 Qmouse_fixup_help_message = intern ("mouse-fixup-help-message");
11253 staticpro (&Qmouse_fixup_help_message);
11254 #endif
11256 Qabove_handle = intern ("above-handle");
11257 staticpro (&Qabove_handle);
11258 Qhandle = intern ("handle");
11259 staticpro (&Qhandle);
11260 Qbelow_handle = intern ("below-handle");
11261 staticpro (&Qbelow_handle);
11262 Qup = intern ("up");
11263 staticpro (&Qup);
11264 Qdown = intern ("down");
11265 staticpro (&Qdown);
11266 Qtop = intern ("top");
11267 staticpro (&Qtop);
11268 Qbottom = intern ("bottom");
11269 staticpro (&Qbottom);
11270 Qend_scroll = intern ("end-scroll");
11271 staticpro (&Qend_scroll);
11272 Qratio = intern ("ratio");
11273 staticpro (&Qratio);
11275 Qevent_kind = intern ("event-kind");
11276 staticpro (&Qevent_kind);
11277 Qevent_symbol_elements = intern ("event-symbol-elements");
11278 staticpro (&Qevent_symbol_elements);
11279 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
11280 staticpro (&Qevent_symbol_element_mask);
11281 Qmodifier_cache = intern ("modifier-cache");
11282 staticpro (&Qmodifier_cache);
11284 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
11285 staticpro (&Qrecompute_lucid_menubar);
11286 Qactivate_menubar_hook = intern ("activate-menubar-hook");
11287 staticpro (&Qactivate_menubar_hook);
11289 Qpolling_period = intern ("polling-period");
11290 staticpro (&Qpolling_period);
11292 Qinput_method_function = intern ("input-method-function");
11293 staticpro (&Qinput_method_function);
11295 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
11296 staticpro (&Qinput_method_exit_on_first_char);
11297 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
11298 staticpro (&Qinput_method_use_echo_area);
11300 Fset (Qinput_method_exit_on_first_char, Qnil);
11301 Fset (Qinput_method_use_echo_area, Qnil);
11303 last_point_position_buffer = Qnil;
11304 last_point_position_window = Qnil;
11307 struct event_head *p;
11309 for (p = head_table;
11310 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
11311 p++)
11313 *p->var = intern (p->name);
11314 staticpro (p->var);
11315 Fput (*p->var, Qevent_kind, *p->kind);
11316 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
11320 button_down_location = Fmake_vector (make_number (1), Qnil);
11321 staticpro (&button_down_location);
11322 mouse_syms = Fmake_vector (make_number (1), Qnil);
11323 staticpro (&mouse_syms);
11324 wheel_syms = Fmake_vector (make_number (2), Qnil);
11325 staticpro (&wheel_syms);
11328 int i;
11329 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
11331 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11332 for (i = 0; i < len; i++)
11333 if (modifier_names[i])
11334 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
11335 staticpro (&modifier_symbols);
11338 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11339 staticpro (&recent_keys);
11341 this_command_keys = Fmake_vector (make_number (40), Qnil);
11342 staticpro (&this_command_keys);
11344 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11345 staticpro (&raw_keybuf);
11347 Qextended_command_history = intern ("extended-command-history");
11348 Fset (Qextended_command_history, Qnil);
11349 staticpro (&Qextended_command_history);
11351 accent_key_syms = Qnil;
11352 staticpro (&accent_key_syms);
11354 func_key_syms = Qnil;
11355 staticpro (&func_key_syms);
11357 drag_n_drop_syms = Qnil;
11358 staticpro (&drag_n_drop_syms);
11360 unread_switch_frame = Qnil;
11361 staticpro (&unread_switch_frame);
11363 internal_last_event_frame = Qnil;
11364 staticpro (&internal_last_event_frame);
11366 read_key_sequence_cmd = Qnil;
11367 staticpro (&read_key_sequence_cmd);
11369 menu_bar_one_keymap_changed_items = Qnil;
11370 staticpro (&menu_bar_one_keymap_changed_items);
11372 menu_bar_items_vector = Qnil;
11373 staticpro (&menu_bar_items_vector);
11375 help_form_saved_window_configs = Qnil;
11376 staticpro (&help_form_saved_window_configs);
11378 defsubr (&Scurrent_idle_time);
11379 defsubr (&Sevent_convert_list);
11380 defsubr (&Sread_key_sequence);
11381 defsubr (&Sread_key_sequence_vector);
11382 defsubr (&Srecursive_edit);
11383 #ifdef HAVE_MOUSE
11384 defsubr (&Strack_mouse);
11385 #endif
11386 defsubr (&Sinput_pending_p);
11387 defsubr (&Scommand_execute);
11388 defsubr (&Srecent_keys);
11389 defsubr (&Sthis_command_keys);
11390 defsubr (&Sthis_command_keys_vector);
11391 defsubr (&Sthis_single_command_keys);
11392 defsubr (&Sthis_single_command_raw_keys);
11393 defsubr (&Sreset_this_command_lengths);
11394 defsubr (&Sclear_this_command_keys);
11395 defsubr (&Ssuspend_emacs);
11396 defsubr (&Sabort_recursive_edit);
11397 defsubr (&Sexit_recursive_edit);
11398 defsubr (&Srecursion_depth);
11399 defsubr (&Stop_level);
11400 defsubr (&Sdiscard_input);
11401 defsubr (&Sopen_dribble_file);
11402 defsubr (&Sset_input_mode);
11403 defsubr (&Scurrent_input_mode);
11404 defsubr (&Sexecute_extended_command);
11405 defsubr (&Sposn_at_point);
11406 defsubr (&Sposn_at_x_y);
11408 DEFVAR_LISP ("last-command-char", &last_command_char,
11409 doc: /* Last input event that was part of a command. */);
11411 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
11412 doc: /* Last input event that was part of a command. */);
11414 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
11415 doc: /* Last input event in a command, except for mouse menu events.
11416 Mouse menus give back keys that don't look like mouse events;
11417 this variable holds the actual mouse event that led to the menu,
11418 so that you can determine whether the command was run by mouse or not. */);
11420 DEFVAR_LISP ("last-input-char", &last_input_char,
11421 doc: /* Last input event. */);
11423 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
11424 doc: /* Last input event. */);
11426 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
11427 doc: /* List of events to be read as the command input.
11428 These events are processed first, before actual keyboard input.
11429 Events read from this list are not normally added to `this-command-keys',
11430 as they will already have been added once as they were read for the first time.
11431 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11432 Vunread_command_events = Qnil;
11434 DEFVAR_INT ("unread-command-char", &unread_command_char,
11435 doc: /* If not -1, an object to be read as next command input event. */);
11437 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
11438 doc: /* List of events to be processed as input by input methods.
11439 These events are processed before `unread-command-events'
11440 and actual keyboard input, but are not given to `input-method-function'. */);
11441 Vunread_post_input_method_events = Qnil;
11443 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
11444 doc: /* List of events to be processed as input by input methods.
11445 These events are processed after `unread-command-events', but
11446 before actual keyboard input.
11447 If there's an active input method, the events are given to
11448 `input-method-function'. */);
11449 Vunread_input_method_events = Qnil;
11451 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
11452 doc: /* Meta-prefix character code.
11453 Meta-foo as command input turns into this character followed by foo. */);
11454 XSETINT (meta_prefix_char, 033);
11456 DEFVAR_KBOARD ("last-command", Vlast_command,
11457 doc: /* The last command executed.
11458 Normally a symbol with a function definition, but can be whatever was found
11459 in the keymap, or whatever the variable `this-command' was set to by that
11460 command.
11462 The value `mode-exit' is special; it means that the previous command
11463 read an event that told it to exit, and it did so and unread that event.
11464 In other words, the present command is the event that made the previous
11465 command exit.
11467 The value `kill-region' is special; it means that the previous command
11468 was a kill command. */);
11470 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11471 doc: /* Same as `last-command', but never altered by Lisp code. */);
11473 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command,
11474 doc: /* Last command that may be repeated.
11475 The last command executed that was not bound to an input event.
11476 This is the command `repeat' will try to repeat. */);
11478 DEFVAR_LISP ("this-command", &Vthis_command,
11479 doc: /* The command now being executed.
11480 The command can set this variable; whatever is put here
11481 will be in `last-command' during the following command. */);
11482 Vthis_command = Qnil;
11484 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
11485 doc: /* The command bound to the current key sequence before remapping.
11486 It equals `this-command' if the original command was not remapped through
11487 any of the active keymaps. Otherwise, the value of `this-command' is the
11488 result of looking up the original command in the active keymaps. */);
11489 Vthis_original_command = Qnil;
11491 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
11492 doc: /* *Number of input events between auto-saves.
11493 Zero means disable autosaving due to number of characters typed. */);
11494 auto_save_interval = 300;
11496 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
11497 doc: /* *Number of seconds idle time before auto-save.
11498 Zero or nil means disable auto-saving due to idleness.
11499 After auto-saving due to this many seconds of idle time,
11500 Emacs also does a garbage collection if that seems to be warranted. */);
11501 XSETFASTINT (Vauto_save_timeout, 30);
11503 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
11504 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11505 The value may be integer or floating point. */);
11506 Vecho_keystrokes = make_number (1);
11508 DEFVAR_INT ("polling-period", &polling_period,
11509 doc: /* *Interval between polling for input during Lisp execution.
11510 The reason for polling is to make C-g work to stop a running program.
11511 Polling is needed only when using X windows and SIGIO does not work.
11512 Polling is automatically disabled in all other cases. */);
11513 polling_period = 2;
11515 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
11516 doc: /* *Maximum time between mouse clicks to make a double-click.
11517 Measured in milliseconds. The value nil means disable double-click
11518 recognition; t means double-clicks have no time limit and are detected
11519 by position only. */);
11520 Vdouble_click_time = make_number (500);
11522 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
11523 doc: /* *Maximum mouse movement between clicks to make a double-click.
11524 On window-system frames, value is the number of pixels the mouse may have
11525 moved horizontally or vertically between two clicks to make a double-click.
11526 On non window-system frames, value is interpreted in units of 1/8 characters
11527 instead of pixels.
11529 This variable is also the threshold for motion of the mouse
11530 to count as a drag. */);
11531 double_click_fuzz = 3;
11533 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
11534 doc: /* *Non-nil means inhibit local map menu bar menus. */);
11535 inhibit_local_menu_bar_menus = 0;
11537 DEFVAR_INT ("num-input-keys", &num_input_keys,
11538 doc: /* Number of complete key sequences read as input so far.
11539 This includes key sequences read from keyboard macros.
11540 The number is effectively the number of interactive command invocations. */);
11541 num_input_keys = 0;
11543 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
11544 doc: /* Number of input events read from the keyboard so far.
11545 This does not include events generated by keyboard macros. */);
11546 num_nonmacro_input_events = 0;
11548 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
11549 doc: /* The frame in which the most recently read event occurred.
11550 If the last event came from a keyboard macro, this is set to `macro'. */);
11551 Vlast_event_frame = Qnil;
11553 /* This variable is set up in sysdep.c. */
11554 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
11555 doc: /* The ERASE character as set by the user with stty. */);
11557 DEFVAR_LISP ("help-char", &Vhelp_char,
11558 doc: /* Character to recognize as meaning Help.
11559 When it is read, do `(eval help-form)', and display result if it's a string.
11560 If the value of `help-form' is nil, this char can be read normally. */);
11561 XSETINT (Vhelp_char, Ctl ('H'));
11563 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
11564 doc: /* List of input events to recognize as meaning Help.
11565 These work just like the value of `help-char' (see that). */);
11566 Vhelp_event_list = Qnil;
11568 DEFVAR_LISP ("help-form", &Vhelp_form,
11569 doc: /* Form to execute when character `help-char' is read.
11570 If the form returns a string, that string is displayed.
11571 If `help-form' is nil, the help char is not recognized. */);
11572 Vhelp_form = Qnil;
11574 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
11575 doc: /* Command to run when `help-char' character follows a prefix key.
11576 This command is used only when there is no actual binding
11577 for that character after that prefix key. */);
11578 Vprefix_help_command = Qnil;
11580 DEFVAR_LISP ("top-level", &Vtop_level,
11581 doc: /* Form to evaluate when Emacs starts up.
11582 Useful to set before you dump a modified Emacs. */);
11583 Vtop_level = Qnil;
11585 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11586 doc: /* Translate table for keyboard input, or nil.
11587 If non-nil, the value should be a char-table. Each character read
11588 from the keyboard is looked up in this char-table. If the value found
11589 there is non-nil, then it is used instead of the actual input character.
11591 The value can also be a string or vector, but this is considered obsolete.
11592 If it is a string or vector of length N, character codes N and up are left
11593 untranslated. In a vector, an element which is nil means "no translation".
11595 This is applied to the characters supplied to input methods, not their
11596 output. See also `translation-table-for-input'. */);
11597 Vkeyboard_translate_table = Qnil;
11599 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
11600 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11601 \(Even if the operating system has support for stopping a process.\) */);
11602 cannot_suspend = 0;
11604 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
11605 doc: /* Non-nil means prompt with menus when appropriate.
11606 This is done when reading from a keymap that has a prompt string,
11607 for elements that have prompt strings.
11608 The menu is displayed on the screen
11609 if X menus were enabled at configuration
11610 time and the previous event was a mouse click prefix key.
11611 Otherwise, menu prompting uses the echo area. */);
11612 menu_prompting = 1;
11614 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
11615 doc: /* Character to see next line of menu prompt.
11616 Type this character while in a menu prompt to rotate around the lines of it. */);
11617 XSETINT (menu_prompt_more_char, ' ');
11619 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
11620 doc: /* A mask of additional modifier keys to use with every keyboard character.
11621 Emacs applies the modifiers of the character stored here to each keyboard
11622 character it reads. For example, after evaluating the expression
11623 (setq extra-keyboard-modifiers ?\\C-x)
11624 all input characters will have the control modifier applied to them.
11626 Note that the character ?\\C-@, equivalent to the integer zero, does
11627 not count as a control character; rather, it counts as a character
11628 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11629 cancels any modification. */);
11630 extra_keyboard_modifiers = 0;
11632 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
11633 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11634 The command loop sets this to nil before each command,
11635 and tests the value when the command returns.
11636 Buffer modification stores t in this variable. */);
11637 Vdeactivate_mark = Qnil;
11639 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
11640 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
11641 Vcommand_hook_internal = Qnil;
11643 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
11644 doc: /* Normal hook run before each command is executed.
11645 If an unhandled error happens in running this hook,
11646 the hook value is set to nil, since otherwise the error
11647 might happen repeatedly and make Emacs nonfunctional. */);
11648 Vpre_command_hook = Qnil;
11650 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
11651 doc: /* Normal hook run after each command is executed.
11652 If an unhandled error happens in running this hook,
11653 the hook value is set to nil, since otherwise the error
11654 might happen repeatedly and make Emacs nonfunctional. */);
11655 Vpost_command_hook = Qnil;
11657 #if 0
11658 DEFVAR_LISP ("echo-area-clear-hook", ...,
11659 doc: /* Normal hook run when clearing the echo area. */);
11660 #endif
11661 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11662 staticpro (&Qecho_area_clear_hook);
11663 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
11665 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
11666 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11667 Vlucid_menu_bar_dirty_flag = Qnil;
11669 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
11670 doc: /* List of menu bar items to move to the end of the menu bar.
11671 The elements of the list are event types that may have menu bar bindings. */);
11672 Vmenu_bar_final_items = Qnil;
11674 DEFVAR_KBOARD ("overriding-terminal-local-map",
11675 Voverriding_terminal_local_map,
11676 doc: /* Per-terminal keymap that overrides all other local keymaps.
11677 If this variable is non-nil, it is used as a keymap instead of the
11678 buffer's local map, and the minor mode keymaps and text property keymaps.
11679 It also replaces `overriding-local-map'.
11681 This variable is intended to let commands such as `universal-argument'
11682 set up a different keymap for reading the next command. */);
11684 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
11685 doc: /* Keymap that overrides all other local keymaps.
11686 If this variable is non-nil, it is used as a keymap--replacing the
11687 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11688 Voverriding_local_map = Qnil;
11690 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
11691 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11692 Otherwise, the menu bar continues to reflect the buffer's local map
11693 and the minor mode maps regardless of `overriding-local-map'. */);
11694 Voverriding_local_map_menu_flag = Qnil;
11696 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
11697 doc: /* Keymap defining bindings for special events to execute at low level. */);
11698 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11700 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11701 doc: /* *Non-nil means generate motion events for mouse motion. */);
11703 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11704 doc: /* Alist of system-specific X windows key symbols.
11705 Each element should have the form (N . SYMBOL) where N is the
11706 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11707 and SYMBOL is its name. */);
11709 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
11710 doc: /* List of deferred actions to be performed at a later time.
11711 The precise format isn't relevant here; we just check whether it is nil. */);
11712 Vdeferred_action_list = Qnil;
11714 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
11715 doc: /* Function to call to handle deferred actions, after each command.
11716 This function is called with no arguments after each command
11717 whenever `deferred-action-list' is non-nil. */);
11718 Vdeferred_action_function = Qnil;
11720 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
11721 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11722 The value can be a length of time to show the message for.
11723 If the value is non-nil and not a number, we wait 2 seconds. */);
11724 Vsuggest_key_bindings = Qt;
11726 DEFVAR_LISP ("timer-list", &Vtimer_list,
11727 doc: /* List of active absolute time timers in order of increasing time. */);
11728 Vtimer_list = Qnil;
11730 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
11731 doc: /* List of active idle-time timers in order of increasing time. */);
11732 Vtimer_idle_list = Qnil;
11734 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
11735 doc: /* If non-nil, the function that implements the current input method.
11736 It's called with one argument, a printing character that was just read.
11737 \(That means a character with code 040...0176.)
11738 Typically this function uses `read-event' to read additional events.
11739 When it does so, it should first bind `input-method-function' to nil
11740 so it will not be called recursively.
11742 The function should return a list of zero or more events
11743 to be used as input. If it wants to put back some events
11744 to be reconsidered, separately, by the input method,
11745 it can add them to the beginning of `unread-command-events'.
11747 The input method function can find in `input-method-previous-method'
11748 the previous echo area message.
11750 The input method function should refer to the variables
11751 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11752 for guidance on what to do. */);
11753 Vinput_method_function = Qnil;
11755 DEFVAR_LISP ("input-method-previous-message",
11756 &Vinput_method_previous_message,
11757 doc: /* When `input-method-function' is called, hold the previous echo area message.
11758 This variable exists because `read-event' clears the echo area
11759 before running the input method. It is nil if there was no message. */);
11760 Vinput_method_previous_message = Qnil;
11762 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
11763 doc: /* If non-nil, the function that implements the display of help.
11764 It's called with one argument, the help string to display. */);
11765 Vshow_help_function = Qnil;
11767 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
11768 doc: /* If non-nil, suppress point adjustment after executing a command.
11770 After a command is executed, if point is moved into a region that has
11771 special properties (e.g. composition, display), we adjust point to
11772 the boundary of the region. But, when a command sets this variable to
11773 non-nil, we suppress the point adjustment.
11775 This variable is set to nil before reading a command, and is checked
11776 just after executing the command. */);
11777 Vdisable_point_adjustment = Qnil;
11779 DEFVAR_LISP ("global-disable-point-adjustment",
11780 &Vglobal_disable_point_adjustment,
11781 doc: /* *If non-nil, always suppress point adjustment.
11783 The default value is nil, in which case, point adjustment are
11784 suppressed only after special commands that set
11785 `disable-point-adjustment' (which see) to non-nil. */);
11786 Vglobal_disable_point_adjustment = Qnil;
11788 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
11789 doc: /* *How long to display an echo-area message when the minibuffer is active.
11790 If the value is not a number, such messages don't time out. */);
11791 Vminibuffer_message_timeout = make_number (2);
11793 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input,
11794 doc: /* If non-nil, any keyboard input throws to this symbol.
11795 The value of that variable is passed to `quit-flag' and later causes a
11796 peculiar kind of quitting. */);
11797 Vthrow_on_input = Qnil;
11799 DEFVAR_LISP ("command-error-function", &Vcommand_error_function,
11800 doc: /* If non-nil, function to output error messages.
11801 The arguments are the error data, a list of the form
11802 (SIGNALED-CONDITIONS . SIGNAL-DATA)
11803 such as just as `condition-case' would bind its variable to,
11804 the context (a string which normally goes at the start of the message),
11805 and the Lisp function within which the error was signaled. */);
11806 Vcommand_error_function = Qnil;
11808 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
11809 &Venable_disabled_menus_and_buttons,
11810 doc: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
11812 Help functions bind this to allow help on disabled menu items
11813 and tool-bar buttons. */);
11814 Venable_disabled_menus_and_buttons = Qnil;
11817 void
11818 keys_of_keyboard ()
11820 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11821 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11822 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11823 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11824 initial_define_key (meta_map, 'x', "execute-extended-command");
11826 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11827 "handle-delete-frame");
11828 /* Here we used to use `ignore-event' which would simple set prefix-arg to
11829 current-prefix-arg, as is done in `handle-switch-frame'.
11830 But `handle-switch-frame is not run from the special-map.
11831 Commands from that map are run in a special way that automatically
11832 preserves the prefix-arg. Restoring the prefix arg here is not just
11833 redundant but harmful:
11834 - C-u C-x v =
11835 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
11836 - after the first prompt, the exit-minibuffer-hook is run which may
11837 iconify a frame and thus push a `iconify-frame' event.
11838 - after running exit-minibuffer-hook, current-prefix-arg is
11839 restored to the non-nil value it had before the prompt.
11840 - we enter the second prompt.
11841 current-prefix-arg is non-nil, prefix-arg is nil.
11842 - before running the first real event, we run the special iconify-frame
11843 event, but we pass the `special' arg to execute-command so
11844 current-prefix-arg and prefix-arg are left untouched.
11845 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
11846 - the next key event will have a spuriously non-nil current-prefix-arg. */
11847 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11848 "ignore");
11849 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11850 "ignore");
11851 /* Handling it at such a low-level causes read_key_sequence to get
11852 * confused because it doesn't realize that the current_buffer was
11853 * changed by read_char.
11855 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11856 * "handle-select-window"); */
11857 initial_define_lispy_key (Vspecial_event_map, "save-session",
11858 "handle-save-session");
11861 /* Mark the pointers in the kboard objects.
11862 Called by the Fgarbage_collector. */
11863 void
11864 mark_kboards ()
11866 KBOARD *kb;
11867 Lisp_Object *p;
11868 for (kb = all_kboards; kb; kb = kb->next_kboard)
11870 if (kb->kbd_macro_buffer)
11871 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11872 mark_object (*p);
11873 mark_object (kb->Voverriding_terminal_local_map);
11874 mark_object (kb->Vlast_command);
11875 mark_object (kb->Vreal_last_command);
11876 mark_object (kb->Vlast_repeatable_command);
11877 mark_object (kb->Vprefix_arg);
11878 mark_object (kb->Vlast_prefix_arg);
11879 mark_object (kb->kbd_queue);
11880 mark_object (kb->defining_kbd_macro);
11881 mark_object (kb->Vlast_kbd_macro);
11882 mark_object (kb->Vsystem_key_alist);
11883 mark_object (kb->system_key_syms);
11884 mark_object (kb->Vdefault_minibuffer_frame);
11885 mark_object (kb->echo_string);
11888 struct input_event *event;
11889 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11891 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11892 event = kbd_buffer;
11893 if (event->kind != SELECTION_REQUEST_EVENT
11894 && event->kind != SELECTION_CLEAR_EVENT)
11896 mark_object (event->x);
11897 mark_object (event->y);
11899 mark_object (event->frame_or_window);
11900 mark_object (event->arg);
11905 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11906 (do not change this comment) */