(set-frame-configuration): Assign name parameter only
[emacs.git] / src / keyboard.c
blob538c0a0d1b04e7619fdb2becfe00fcf3c8919e48
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 /* Break loop if there's an unread command event. Needed in
3999 moused window autoselection which uses a timer to insert such
4000 events. */
4001 if (CONSP (Vunread_command_events))
4002 break;
4004 if (kbd_fetch_ptr != kbd_store_ptr)
4005 break;
4006 #ifdef HAVE_MOUSE
4007 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4008 break;
4009 #endif
4011 /* If the quit flag is set, then read_char will return
4012 quit_char, so that counts as "available input." */
4013 if (!NILP (Vquit_flag))
4014 quit_throw_to_read_char ();
4016 /* One way or another, wait until input is available; then, if
4017 interrupt handlers have not read it, read it now. */
4019 #ifdef OLDVMS
4020 wait_for_kbd_input ();
4021 #else
4022 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4023 #ifdef SIGIO
4024 gobble_input (0);
4025 #endif /* SIGIO */
4026 if (kbd_fetch_ptr != kbd_store_ptr)
4027 break;
4028 #ifdef HAVE_MOUSE
4029 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4030 break;
4031 #endif
4032 if (end_time)
4034 EMACS_TIME duration;
4035 EMACS_GET_TIME (duration);
4036 if (EMACS_TIME_GE (duration, *end_time))
4037 return Qnil; /* finished waiting */
4038 else
4040 EMACS_SUB_TIME (duration, *end_time, duration);
4041 wait_reading_process_output (EMACS_SECS (duration),
4042 EMACS_USECS (duration),
4043 -1, 1, Qnil, NULL, 0);
4046 else
4047 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0);
4049 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
4050 /* Pass 1 for EXPECT since we just waited to have input. */
4051 read_avail_input (1);
4052 #endif /* not VMS */
4055 if (CONSP (Vunread_command_events))
4057 Lisp_Object first;
4058 first = XCAR (Vunread_command_events);
4059 Vunread_command_events = XCDR (Vunread_command_events);
4060 *kbp = current_kboard;
4061 return first;
4064 /* At this point, we know that there is a readable event available
4065 somewhere. If the event queue is empty, then there must be a
4066 mouse movement enabled and available. */
4067 if (kbd_fetch_ptr != kbd_store_ptr)
4069 struct input_event *event;
4071 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4072 ? kbd_fetch_ptr
4073 : kbd_buffer);
4075 last_event_timestamp = event->timestamp;
4077 #ifdef MULTI_KBOARD
4078 *kbp = event_to_kboard (event);
4079 if (*kbp == 0)
4080 *kbp = current_kboard; /* Better than returning null ptr? */
4081 #else
4082 *kbp = &the_only_kboard;
4083 #endif
4085 obj = Qnil;
4087 /* These two kinds of events get special handling
4088 and don't actually appear to the command loop.
4089 We return nil for them. */
4090 if (event->kind == SELECTION_REQUEST_EVENT
4091 || event->kind == SELECTION_CLEAR_EVENT)
4093 #ifdef HAVE_X11
4094 struct input_event copy;
4096 /* Remove it from the buffer before processing it,
4097 since otherwise swallow_events will see it
4098 and process it again. */
4099 copy = *event;
4100 kbd_fetch_ptr = event + 1;
4101 input_pending = readable_events (0);
4102 x_handle_selection_event (&copy);
4103 #else
4104 /* We're getting selection request events, but we don't have
4105 a window system. */
4106 abort ();
4107 #endif
4110 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4111 else if (event->kind == DELETE_WINDOW_EVENT)
4113 /* Make an event (delete-frame (FRAME)). */
4114 obj = Fcons (event->frame_or_window, Qnil);
4115 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
4116 kbd_fetch_ptr = event + 1;
4118 #endif
4119 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4120 else if (event->kind == ICONIFY_EVENT)
4122 /* Make an event (iconify-frame (FRAME)). */
4123 obj = Fcons (event->frame_or_window, Qnil);
4124 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
4125 kbd_fetch_ptr = event + 1;
4127 else if (event->kind == DEICONIFY_EVENT)
4129 /* Make an event (make-frame-visible (FRAME)). */
4130 obj = Fcons (event->frame_or_window, Qnil);
4131 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
4132 kbd_fetch_ptr = event + 1;
4134 #endif
4135 else if (event->kind == BUFFER_SWITCH_EVENT)
4137 /* The value doesn't matter here; only the type is tested. */
4138 XSETBUFFER (obj, current_buffer);
4139 kbd_fetch_ptr = event + 1;
4141 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
4142 || defined (USE_GTK)
4143 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
4145 kbd_fetch_ptr = event + 1;
4146 input_pending = readable_events (0);
4147 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
4148 x_activate_menubar (XFRAME (event->frame_or_window));
4150 #endif
4151 #if defined (WINDOWSNT) || defined (MAC_OS)
4152 else if (event->kind == LANGUAGE_CHANGE_EVENT)
4154 #ifdef MAC_OS
4155 /* Make an event (language-change (KEY_SCRIPT)). */
4156 obj = Fcons (make_number (event->code), Qnil);
4157 #else
4158 /* Make an event (language-change (FRAME CHARSET LCID)). */
4159 obj = Fcons (event->frame_or_window, Qnil);
4160 #endif
4161 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
4162 kbd_fetch_ptr = event + 1;
4164 #endif
4165 else if (event->kind == SAVE_SESSION_EVENT)
4167 obj = Fcons (Qsave_session, Qnil);
4168 kbd_fetch_ptr = event + 1;
4170 /* Just discard these, by returning nil.
4171 With MULTI_KBOARD, these events are used as placeholders
4172 when we need to randomly delete events from the queue.
4173 (They shouldn't otherwise be found in the buffer,
4174 but on some machines it appears they do show up
4175 even without MULTI_KBOARD.) */
4176 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4177 mouse events during a popup-menu call. */
4178 else if (event->kind == NO_EVENT)
4179 kbd_fetch_ptr = event + 1;
4180 else if (event->kind == HELP_EVENT)
4182 Lisp_Object object, position, help, frame, window;
4184 frame = event->frame_or_window;
4185 object = event->arg;
4186 position = make_number (event->code);
4187 window = event->x;
4188 help = event->y;
4189 clear_event (event);
4191 kbd_fetch_ptr = event + 1;
4192 if (!WINDOWP (window))
4193 window = Qnil;
4194 obj = Fcons (Qhelp_echo,
4195 list5 (frame, help, window, object, position));
4197 else if (event->kind == FOCUS_IN_EVENT)
4199 /* Notification of a FocusIn event. The frame receiving the
4200 focus is in event->frame_or_window. Generate a
4201 switch-frame event if necessary. */
4202 Lisp_Object frame, focus;
4204 frame = event->frame_or_window;
4205 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4206 if (FRAMEP (focus))
4207 frame = focus;
4209 if (!EQ (frame, internal_last_event_frame)
4210 && !EQ (frame, selected_frame))
4211 obj = make_lispy_switch_frame (frame);
4212 internal_last_event_frame = frame;
4213 kbd_fetch_ptr = event + 1;
4215 else
4217 /* If this event is on a different frame, return a switch-frame this
4218 time, and leave the event in the queue for next time. */
4219 Lisp_Object frame;
4220 Lisp_Object focus;
4222 frame = event->frame_or_window;
4223 if (CONSP (frame))
4224 frame = XCAR (frame);
4225 else if (WINDOWP (frame))
4226 frame = WINDOW_FRAME (XWINDOW (frame));
4228 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4229 if (! NILP (focus))
4230 frame = focus;
4232 if (! EQ (frame, internal_last_event_frame)
4233 && !EQ (frame, selected_frame))
4234 obj = make_lispy_switch_frame (frame);
4235 internal_last_event_frame = frame;
4237 /* If we didn't decide to make a switch-frame event, go ahead
4238 and build a real event from the queue entry. */
4240 if (NILP (obj))
4242 obj = make_lispy_event (event);
4244 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4245 || defined (USE_GTK)
4246 /* If this was a menu selection, then set the flag to inhibit
4247 writing to last_nonmenu_event. Don't do this if the event
4248 we're returning is (menu-bar), though; that indicates the
4249 beginning of the menu sequence, and we might as well leave
4250 that as the `event with parameters' for this selection. */
4251 if (used_mouse_menu
4252 && !EQ (event->frame_or_window, event->arg)
4253 && (event->kind == MENU_BAR_EVENT
4254 || event->kind == TOOL_BAR_EVENT))
4255 *used_mouse_menu = 1;
4256 #endif
4258 /* Wipe out this event, to catch bugs. */
4259 clear_event (event);
4260 kbd_fetch_ptr = event + 1;
4264 #ifdef HAVE_MOUSE
4265 /* Try generating a mouse motion event. */
4266 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4268 FRAME_PTR f = some_mouse_moved ();
4269 Lisp_Object bar_window;
4270 enum scroll_bar_part part;
4271 Lisp_Object x, y;
4272 unsigned long time;
4274 *kbp = current_kboard;
4275 /* Note that this uses F to determine which display to look at.
4276 If there is no valid info, it does not store anything
4277 so x remains nil. */
4278 x = Qnil;
4279 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
4281 obj = Qnil;
4283 /* Decide if we should generate a switch-frame event. Don't
4284 generate switch-frame events for motion outside of all Emacs
4285 frames. */
4286 if (!NILP (x) && f)
4288 Lisp_Object frame;
4290 frame = FRAME_FOCUS_FRAME (f);
4291 if (NILP (frame))
4292 XSETFRAME (frame, f);
4294 if (! EQ (frame, internal_last_event_frame)
4295 && !EQ (frame, selected_frame))
4296 obj = make_lispy_switch_frame (frame);
4297 internal_last_event_frame = frame;
4300 /* If we didn't decide to make a switch-frame event, go ahead and
4301 return a mouse-motion event. */
4302 if (!NILP (x) && NILP (obj))
4303 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4305 #endif /* HAVE_MOUSE */
4306 else
4307 /* We were promised by the above while loop that there was
4308 something for us to read! */
4309 abort ();
4311 input_pending = readable_events (0);
4313 Vlast_event_frame = internal_last_event_frame;
4315 return (obj);
4318 /* Process any events that are not user-visible,
4319 then return, without reading any user-visible events. */
4321 void
4322 swallow_events (do_display)
4323 int do_display;
4325 int old_timers_run;
4327 while (kbd_fetch_ptr != kbd_store_ptr)
4329 struct input_event *event;
4331 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4332 ? kbd_fetch_ptr
4333 : kbd_buffer);
4335 last_event_timestamp = event->timestamp;
4337 /* These two kinds of events get special handling
4338 and don't actually appear to the command loop. */
4339 if (event->kind == SELECTION_REQUEST_EVENT
4340 || event->kind == SELECTION_CLEAR_EVENT)
4342 #ifdef HAVE_X11
4343 struct input_event copy;
4345 /* Remove it from the buffer before processing it,
4346 since otherwise swallow_events called recursively could see it
4347 and process it again. */
4348 copy = *event;
4349 kbd_fetch_ptr = event + 1;
4350 input_pending = readable_events (0);
4351 x_handle_selection_event (&copy);
4352 #else
4353 /* We're getting selection request events, but we don't have
4354 a window system. */
4355 abort ();
4356 #endif
4358 else
4359 break;
4362 old_timers_run = timers_run;
4363 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
4365 if (timers_run != old_timers_run && do_display)
4366 redisplay_preserve_echo_area (7);
4369 /* Record the start of when Emacs is idle,
4370 for the sake of running idle-time timers. */
4372 static void
4373 timer_start_idle ()
4375 Lisp_Object timers;
4377 /* If we are already in the idle state, do nothing. */
4378 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4379 return;
4381 EMACS_GET_TIME (timer_idleness_start_time);
4383 timer_last_idleness_start_time = timer_idleness_start_time;
4385 /* Mark all idle-time timers as once again candidates for running. */
4386 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4388 Lisp_Object timer;
4390 timer = XCAR (timers);
4392 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4393 continue;
4394 XVECTOR (timer)->contents[0] = Qnil;
4398 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4400 static void
4401 timer_stop_idle ()
4403 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4406 /* Resume idle timer from last idle start time. */
4408 static void
4409 timer_resume_idle ()
4411 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4412 return;
4414 timer_idleness_start_time = timer_last_idleness_start_time;
4417 /* This is only for debugging. */
4418 struct input_event last_timer_event;
4420 /* Check whether a timer has fired. To prevent larger problems we simply
4421 disregard elements that are not proper timers. Do not make a circular
4422 timer list for the time being.
4424 Returns the number of seconds to wait until the next timer fires. If a
4425 timer is triggering now, return zero seconds.
4426 If no timer is active, return -1 seconds.
4428 If a timer is ripe, we run it, with quitting turned off.
4430 DO_IT_NOW is now ignored. It used to mean that we should
4431 run the timer directly instead of queueing a timer-event.
4432 Now we always run timers directly. */
4434 EMACS_TIME
4435 timer_check (do_it_now)
4436 int do_it_now;
4438 EMACS_TIME nexttime;
4439 EMACS_TIME now, idleness_now;
4440 Lisp_Object timers, idle_timers, chosen_timer;
4441 struct gcpro gcpro1, gcpro2, gcpro3;
4443 EMACS_SET_SECS (nexttime, -1);
4444 EMACS_SET_USECS (nexttime, -1);
4446 /* Always consider the ordinary timers. */
4447 timers = Vtimer_list;
4448 /* Consider the idle timers only if Emacs is idle. */
4449 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4450 idle_timers = Vtimer_idle_list;
4451 else
4452 idle_timers = Qnil;
4453 chosen_timer = Qnil;
4454 GCPRO3 (timers, idle_timers, chosen_timer);
4456 if (CONSP (timers) || CONSP (idle_timers))
4458 EMACS_GET_TIME (now);
4459 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4460 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4463 while (CONSP (timers) || CONSP (idle_timers))
4465 Lisp_Object *vector;
4466 Lisp_Object timer = Qnil, idle_timer = Qnil;
4467 EMACS_TIME timer_time, idle_timer_time;
4468 EMACS_TIME difference, timer_difference, idle_timer_difference;
4470 /* Skip past invalid timers and timers already handled. */
4471 if (!NILP (timers))
4473 timer = XCAR (timers);
4474 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4476 timers = XCDR (timers);
4477 continue;
4479 vector = XVECTOR (timer)->contents;
4481 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4482 || !INTEGERP (vector[3])
4483 || ! NILP (vector[0]))
4485 timers = XCDR (timers);
4486 continue;
4489 if (!NILP (idle_timers))
4491 timer = XCAR (idle_timers);
4492 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4494 idle_timers = XCDR (idle_timers);
4495 continue;
4497 vector = XVECTOR (timer)->contents;
4499 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4500 || !INTEGERP (vector[3])
4501 || ! NILP (vector[0]))
4503 idle_timers = XCDR (idle_timers);
4504 continue;
4508 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4509 based on the next ordinary timer.
4510 TIMER_DIFFERENCE is the distance in time from NOW to when
4511 this timer becomes ripe (negative if it's already ripe). */
4512 if (!NILP (timers))
4514 timer = XCAR (timers);
4515 vector = XVECTOR (timer)->contents;
4516 EMACS_SET_SECS (timer_time,
4517 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4518 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4519 EMACS_SUB_TIME (timer_difference, timer_time, now);
4522 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4523 based on the next idle timer. */
4524 if (!NILP (idle_timers))
4526 idle_timer = XCAR (idle_timers);
4527 vector = XVECTOR (idle_timer)->contents;
4528 EMACS_SET_SECS (idle_timer_time,
4529 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4530 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4531 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4534 /* Decide which timer is the next timer,
4535 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4536 Also step down the list where we found that timer. */
4538 if (! NILP (timers) && ! NILP (idle_timers))
4540 EMACS_TIME temp;
4541 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4542 if (EMACS_TIME_NEG_P (temp))
4544 chosen_timer = timer;
4545 timers = XCDR (timers);
4546 difference = timer_difference;
4548 else
4550 chosen_timer = idle_timer;
4551 idle_timers = XCDR (idle_timers);
4552 difference = idle_timer_difference;
4555 else if (! NILP (timers))
4557 chosen_timer = timer;
4558 timers = XCDR (timers);
4559 difference = timer_difference;
4561 else
4563 chosen_timer = idle_timer;
4564 idle_timers = XCDR (idle_timers);
4565 difference = idle_timer_difference;
4567 vector = XVECTOR (chosen_timer)->contents;
4569 /* If timer is ripe, run it if it hasn't been run. */
4570 if (EMACS_TIME_NEG_P (difference)
4571 || (EMACS_SECS (difference) == 0
4572 && EMACS_USECS (difference) == 0))
4574 if (NILP (vector[0]))
4576 int was_locked = single_kboard;
4577 int count = SPECPDL_INDEX ();
4578 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4580 /* Mark the timer as triggered to prevent problems if the lisp
4581 code fails to reschedule it right. */
4582 vector[0] = Qt;
4584 specbind (Qinhibit_quit, Qt);
4586 call1 (Qtimer_event_handler, chosen_timer);
4587 Vdeactivate_mark = old_deactivate_mark;
4588 timers_run++;
4589 unbind_to (count, Qnil);
4591 /* Resume allowing input from any kboard, if that was true before. */
4592 if (!was_locked)
4593 any_kboard_state ();
4595 /* Since we have handled the event,
4596 we don't need to tell the caller to wake up and do it. */
4599 else
4600 /* When we encounter a timer that is still waiting,
4601 return the amount of time to wait before it is ripe. */
4603 UNGCPRO;
4604 return difference;
4608 /* No timers are pending in the future. */
4609 /* Return 0 if we generated an event, and -1 if not. */
4610 UNGCPRO;
4611 return nexttime;
4614 DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0,
4615 doc: /* Return the current length of Emacs idleness.
4616 The value is returned as a list of three integers. The first has the
4617 most significant 16 bits of the seconds, while the second has the
4618 least significant 16 bits. The third integer gives the microsecond
4619 count.
4621 The microsecond count is zero on systems that do not provide
4622 resolution finer than a second. */)
4625 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4627 EMACS_TIME now, idleness_now;
4629 EMACS_GET_TIME (now);
4630 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4632 return list3 (make_number ((EMACS_SECS (idleness_now) >> 16) & 0xffff),
4633 make_number ((EMACS_SECS (idleness_now) >> 0) & 0xffff),
4634 make_number (EMACS_USECS (idleness_now)));
4637 return Qnil;
4640 /* Caches for modify_event_symbol. */
4641 static Lisp_Object accent_key_syms;
4642 static Lisp_Object func_key_syms;
4643 static Lisp_Object mouse_syms;
4644 static Lisp_Object wheel_syms;
4645 static Lisp_Object drag_n_drop_syms;
4647 /* This is a list of keysym codes for special "accent" characters.
4648 It parallels lispy_accent_keys. */
4650 static int lispy_accent_codes[] =
4652 #ifdef XK_dead_circumflex
4653 XK_dead_circumflex,
4654 #else
4656 #endif
4657 #ifdef XK_dead_grave
4658 XK_dead_grave,
4659 #else
4661 #endif
4662 #ifdef XK_dead_tilde
4663 XK_dead_tilde,
4664 #else
4666 #endif
4667 #ifdef XK_dead_diaeresis
4668 XK_dead_diaeresis,
4669 #else
4671 #endif
4672 #ifdef XK_dead_macron
4673 XK_dead_macron,
4674 #else
4676 #endif
4677 #ifdef XK_dead_degree
4678 XK_dead_degree,
4679 #else
4681 #endif
4682 #ifdef XK_dead_acute
4683 XK_dead_acute,
4684 #else
4686 #endif
4687 #ifdef XK_dead_cedilla
4688 XK_dead_cedilla,
4689 #else
4691 #endif
4692 #ifdef XK_dead_breve
4693 XK_dead_breve,
4694 #else
4696 #endif
4697 #ifdef XK_dead_ogonek
4698 XK_dead_ogonek,
4699 #else
4701 #endif
4702 #ifdef XK_dead_caron
4703 XK_dead_caron,
4704 #else
4706 #endif
4707 #ifdef XK_dead_doubleacute
4708 XK_dead_doubleacute,
4709 #else
4711 #endif
4712 #ifdef XK_dead_abovedot
4713 XK_dead_abovedot,
4714 #else
4716 #endif
4717 #ifdef XK_dead_abovering
4718 XK_dead_abovering,
4719 #else
4721 #endif
4722 #ifdef XK_dead_iota
4723 XK_dead_iota,
4724 #else
4726 #endif
4727 #ifdef XK_dead_belowdot
4728 XK_dead_belowdot,
4729 #else
4731 #endif
4732 #ifdef XK_dead_voiced_sound
4733 XK_dead_voiced_sound,
4734 #else
4736 #endif
4737 #ifdef XK_dead_semivoiced_sound
4738 XK_dead_semivoiced_sound,
4739 #else
4741 #endif
4742 #ifdef XK_dead_hook
4743 XK_dead_hook,
4744 #else
4746 #endif
4747 #ifdef XK_dead_horn
4748 XK_dead_horn,
4749 #else
4751 #endif
4754 /* This is a list of Lisp names for special "accent" characters.
4755 It parallels lispy_accent_codes. */
4757 static char *lispy_accent_keys[] =
4759 "dead-circumflex",
4760 "dead-grave",
4761 "dead-tilde",
4762 "dead-diaeresis",
4763 "dead-macron",
4764 "dead-degree",
4765 "dead-acute",
4766 "dead-cedilla",
4767 "dead-breve",
4768 "dead-ogonek",
4769 "dead-caron",
4770 "dead-doubleacute",
4771 "dead-abovedot",
4772 "dead-abovering",
4773 "dead-iota",
4774 "dead-belowdot",
4775 "dead-voiced-sound",
4776 "dead-semivoiced-sound",
4777 "dead-hook",
4778 "dead-horn",
4781 #ifdef HAVE_NTGUI
4782 #define FUNCTION_KEY_OFFSET 0x0
4784 char *lispy_function_keys[] =
4786 0, /* 0 */
4788 0, /* VK_LBUTTON 0x01 */
4789 0, /* VK_RBUTTON 0x02 */
4790 "cancel", /* VK_CANCEL 0x03 */
4791 0, /* VK_MBUTTON 0x04 */
4793 0, 0, 0, /* 0x05 .. 0x07 */
4795 "backspace", /* VK_BACK 0x08 */
4796 "tab", /* VK_TAB 0x09 */
4798 0, 0, /* 0x0A .. 0x0B */
4800 "clear", /* VK_CLEAR 0x0C */
4801 "return", /* VK_RETURN 0x0D */
4803 0, 0, /* 0x0E .. 0x0F */
4805 0, /* VK_SHIFT 0x10 */
4806 0, /* VK_CONTROL 0x11 */
4807 0, /* VK_MENU 0x12 */
4808 "pause", /* VK_PAUSE 0x13 */
4809 "capslock", /* VK_CAPITAL 0x14 */
4811 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4813 "escape", /* VK_ESCAPE 0x1B */
4815 0, 0, 0, 0, /* 0x1C .. 0x1F */
4817 0, /* VK_SPACE 0x20 */
4818 "prior", /* VK_PRIOR 0x21 */
4819 "next", /* VK_NEXT 0x22 */
4820 "end", /* VK_END 0x23 */
4821 "home", /* VK_HOME 0x24 */
4822 "left", /* VK_LEFT 0x25 */
4823 "up", /* VK_UP 0x26 */
4824 "right", /* VK_RIGHT 0x27 */
4825 "down", /* VK_DOWN 0x28 */
4826 "select", /* VK_SELECT 0x29 */
4827 "print", /* VK_PRINT 0x2A */
4828 "execute", /* VK_EXECUTE 0x2B */
4829 "snapshot", /* VK_SNAPSHOT 0x2C */
4830 "insert", /* VK_INSERT 0x2D */
4831 "delete", /* VK_DELETE 0x2E */
4832 "help", /* VK_HELP 0x2F */
4834 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4836 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4838 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4840 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4842 0, 0, 0, 0, 0, 0, 0, 0, 0,
4843 0, 0, 0, 0, 0, 0, 0, 0, 0,
4844 0, 0, 0, 0, 0, 0, 0, 0,
4846 "lwindow", /* VK_LWIN 0x5B */
4847 "rwindow", /* VK_RWIN 0x5C */
4848 "apps", /* VK_APPS 0x5D */
4850 0, 0, /* 0x5E .. 0x5F */
4852 "kp-0", /* VK_NUMPAD0 0x60 */
4853 "kp-1", /* VK_NUMPAD1 0x61 */
4854 "kp-2", /* VK_NUMPAD2 0x62 */
4855 "kp-3", /* VK_NUMPAD3 0x63 */
4856 "kp-4", /* VK_NUMPAD4 0x64 */
4857 "kp-5", /* VK_NUMPAD5 0x65 */
4858 "kp-6", /* VK_NUMPAD6 0x66 */
4859 "kp-7", /* VK_NUMPAD7 0x67 */
4860 "kp-8", /* VK_NUMPAD8 0x68 */
4861 "kp-9", /* VK_NUMPAD9 0x69 */
4862 "kp-multiply", /* VK_MULTIPLY 0x6A */
4863 "kp-add", /* VK_ADD 0x6B */
4864 "kp-separator", /* VK_SEPARATOR 0x6C */
4865 "kp-subtract", /* VK_SUBTRACT 0x6D */
4866 "kp-decimal", /* VK_DECIMAL 0x6E */
4867 "kp-divide", /* VK_DIVIDE 0x6F */
4868 "f1", /* VK_F1 0x70 */
4869 "f2", /* VK_F2 0x71 */
4870 "f3", /* VK_F3 0x72 */
4871 "f4", /* VK_F4 0x73 */
4872 "f5", /* VK_F5 0x74 */
4873 "f6", /* VK_F6 0x75 */
4874 "f7", /* VK_F7 0x76 */
4875 "f8", /* VK_F8 0x77 */
4876 "f9", /* VK_F9 0x78 */
4877 "f10", /* VK_F10 0x79 */
4878 "f11", /* VK_F11 0x7A */
4879 "f12", /* VK_F12 0x7B */
4880 "f13", /* VK_F13 0x7C */
4881 "f14", /* VK_F14 0x7D */
4882 "f15", /* VK_F15 0x7E */
4883 "f16", /* VK_F16 0x7F */
4884 "f17", /* VK_F17 0x80 */
4885 "f18", /* VK_F18 0x81 */
4886 "f19", /* VK_F19 0x82 */
4887 "f20", /* VK_F20 0x83 */
4888 "f21", /* VK_F21 0x84 */
4889 "f22", /* VK_F22 0x85 */
4890 "f23", /* VK_F23 0x86 */
4891 "f24", /* VK_F24 0x87 */
4893 0, 0, 0, 0, /* 0x88 .. 0x8B */
4894 0, 0, 0, 0, /* 0x8C .. 0x8F */
4896 "kp-numlock", /* VK_NUMLOCK 0x90 */
4897 "scroll", /* VK_SCROLL 0x91 */
4899 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4900 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4901 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4902 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4903 "kp-end", /* VK_NUMPAD_END 0x96 */
4904 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4905 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4906 "kp-up", /* VK_NUMPAD_UP 0x99 */
4907 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4908 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4909 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4910 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4912 0, 0, /* 0x9E .. 0x9F */
4915 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4916 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4917 * No other API or message will distinguish left and right keys this way.
4919 /* 0xA0 .. 0xEF */
4921 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4922 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4923 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4924 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4925 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4927 /* 0xF0 .. 0xF5 */
4929 0, 0, 0, 0, 0, 0,
4931 "attn", /* VK_ATTN 0xF6 */
4932 "crsel", /* VK_CRSEL 0xF7 */
4933 "exsel", /* VK_EXSEL 0xF8 */
4934 "ereof", /* VK_EREOF 0xF9 */
4935 "play", /* VK_PLAY 0xFA */
4936 "zoom", /* VK_ZOOM 0xFB */
4937 "noname", /* VK_NONAME 0xFC */
4938 "pa1", /* VK_PA1 0xFD */
4939 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4940 0 /* 0xFF */
4943 #else /* not HAVE_NTGUI */
4945 /* This should be dealt with in XTread_socket now, and that doesn't
4946 depend on the client system having the Kana syms defined. See also
4947 the XK_kana_A case below. */
4948 #if 0
4949 #ifdef XK_kana_A
4950 static char *lispy_kana_keys[] =
4952 /* X Keysym value */
4953 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4954 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4955 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4956 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4957 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4958 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4959 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4960 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4961 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4962 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4963 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4964 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4965 "kana-i", "kana-u", "kana-e", "kana-o",
4966 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4967 "prolongedsound", "kana-A", "kana-I", "kana-U",
4968 "kana-E", "kana-O", "kana-KA", "kana-KI",
4969 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4970 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4971 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4972 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4973 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4974 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4975 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4976 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4977 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4978 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4979 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4980 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4982 #endif /* XK_kana_A */
4983 #endif /* 0 */
4985 #define FUNCTION_KEY_OFFSET 0xff00
4987 /* You'll notice that this table is arranged to be conveniently
4988 indexed by X Windows keysym values. */
4989 static char *lispy_function_keys[] =
4991 /* X Keysym value */
4993 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4994 "backspace", "tab", "linefeed", "clear",
4995 0, "return", 0, 0,
4996 0, 0, 0, "pause", /* 0xff10...1f */
4997 0, 0, 0, 0, 0, 0, 0, "escape",
4998 0, 0, 0, 0,
4999 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
5000 "romaji", "hiragana", "katakana", "hiragana-katakana",
5001 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
5002 "massyo", "kana-lock", "kana-shift", "eisu-shift",
5003 "eisu-toggle", /* 0xff30...3f */
5004 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5005 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
5007 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
5008 "down", "prior", "next", "end",
5009 "begin", 0, 0, 0, 0, 0, 0, 0,
5010 "select", /* 0xff60 */ /* IsMiscFunctionKey */
5011 "print",
5012 "execute",
5013 "insert",
5014 0, /* 0xff64 */
5015 "undo",
5016 "redo",
5017 "menu",
5018 "find",
5019 "cancel",
5020 "help",
5021 "break", /* 0xff6b */
5023 0, 0, 0, 0,
5024 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
5025 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
5026 "kp-space", /* 0xff80 */ /* IsKeypadKey */
5027 0, 0, 0, 0, 0, 0, 0, 0,
5028 "kp-tab", /* 0xff89 */
5029 0, 0, 0,
5030 "kp-enter", /* 0xff8d */
5031 0, 0, 0,
5032 "kp-f1", /* 0xff91 */
5033 "kp-f2",
5034 "kp-f3",
5035 "kp-f4",
5036 "kp-home", /* 0xff95 */
5037 "kp-left",
5038 "kp-up",
5039 "kp-right",
5040 "kp-down",
5041 "kp-prior", /* kp-page-up */
5042 "kp-next", /* kp-page-down */
5043 "kp-end",
5044 "kp-begin",
5045 "kp-insert",
5046 "kp-delete",
5047 0, /* 0xffa0 */
5048 0, 0, 0, 0, 0, 0, 0, 0, 0,
5049 "kp-multiply", /* 0xffaa */
5050 "kp-add",
5051 "kp-separator",
5052 "kp-subtract",
5053 "kp-decimal",
5054 "kp-divide", /* 0xffaf */
5055 "kp-0", /* 0xffb0 */
5056 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5057 0, /* 0xffba */
5058 0, 0,
5059 "kp-equal", /* 0xffbd */
5060 "f1", /* 0xffbe */ /* IsFunctionKey */
5061 "f2",
5062 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5063 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5064 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5065 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5066 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5067 0, 0, 0, 0, 0, 0, 0, 0,
5068 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5069 0, 0, 0, 0, 0, 0, 0, "delete"
5072 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5073 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5075 static char *iso_lispy_function_keys[] =
5077 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5078 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5079 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5080 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5081 "iso-lefttab", /* 0xfe20 */
5082 "iso-move-line-up", "iso-move-line-down",
5083 "iso-partial-line-up", "iso-partial-line-down",
5084 "iso-partial-space-left", "iso-partial-space-right",
5085 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5086 "iso-release-margin-left", "iso-release-margin-right",
5087 "iso-release-both-margins",
5088 "iso-fast-cursor-left", "iso-fast-cursor-right",
5089 "iso-fast-cursor-up", "iso-fast-cursor-down",
5090 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5091 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5094 #endif /* not HAVE_NTGUI */
5096 Lisp_Object Vlispy_mouse_stem;
5098 static char *lispy_wheel_names[] =
5100 "wheel-up", "wheel-down"
5103 /* drag-n-drop events are generated when a set of selected files are
5104 dragged from another application and dropped onto an Emacs window. */
5105 static char *lispy_drag_n_drop_names[] =
5107 "drag-n-drop"
5110 /* Scroll bar parts. */
5111 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
5112 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
5113 Lisp_Object Qtop, Qratio;
5115 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
5116 Lisp_Object *scroll_bar_parts[] = {
5117 &Qabove_handle, &Qhandle, &Qbelow_handle,
5118 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
5121 /* A vector, indexed by button number, giving the down-going location
5122 of currently depressed buttons, both scroll bar and non-scroll bar.
5124 The elements have the form
5125 (BUTTON-NUMBER MODIFIER-MASK . REST)
5126 where REST is the cdr of a position as it would be reported in the event.
5128 The make_lispy_event function stores positions here to tell the
5129 difference between click and drag events, and to store the starting
5130 location to be included in drag events. */
5132 static Lisp_Object button_down_location;
5134 /* Information about the most recent up-going button event: Which
5135 button, what location, and what time. */
5137 static int last_mouse_button;
5138 static int last_mouse_x;
5139 static int last_mouse_y;
5140 static unsigned long button_down_time;
5142 /* The maximum time between clicks to make a double-click, or Qnil to
5143 disable double-click detection, or Qt for no time limit. */
5145 Lisp_Object Vdouble_click_time;
5147 /* Maximum number of pixels the mouse may be moved between clicks
5148 to make a double-click. */
5150 EMACS_INT double_click_fuzz;
5152 /* The number of clicks in this multiple-click. */
5154 int double_click_count;
5156 /* Return position of a mouse click or wheel event */
5158 static Lisp_Object
5159 make_lispy_position (f, x, y, time)
5160 struct frame *f;
5161 Lisp_Object *x, *y;
5162 unsigned long time;
5164 Lisp_Object window;
5165 enum window_part part;
5166 Lisp_Object posn = Qnil;
5167 Lisp_Object extra_info = Qnil;
5168 int wx, wy;
5170 /* Set `window' to the window under frame pixel coordinates (x,y) */
5171 if (f)
5172 window = window_from_coordinates (f, XINT (*x), XINT (*y),
5173 &part, &wx, &wy, 0);
5174 else
5175 window = Qnil;
5177 if (WINDOWP (window))
5179 /* It's a click in window window at frame coordinates (x,y) */
5180 struct window *w = XWINDOW (window);
5181 Lisp_Object string_info = Qnil;
5182 int textpos = -1, rx = -1, ry = -1;
5183 int dx = -1, dy = -1;
5184 int width = -1, height = -1;
5185 Lisp_Object object = Qnil;
5187 /* Set event coordinates to window-relative coordinates
5188 for constructing the Lisp event below. */
5189 XSETINT (*x, wx);
5190 XSETINT (*y, wy);
5192 if (part == ON_TEXT)
5194 wx += WINDOW_LEFT_MARGIN_WIDTH (w);
5196 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5198 /* Mode line or header line. Look for a string under
5199 the mouse that may have a `local-map' property. */
5200 Lisp_Object string;
5201 int charpos;
5203 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5204 rx = wx, ry = wy;
5205 string = mode_line_string (w, part, &rx, &ry, &charpos,
5206 &object, &dx, &dy, &width, &height);
5207 if (STRINGP (string))
5208 string_info = Fcons (string, make_number (charpos));
5209 if (w == XWINDOW (selected_window))
5210 textpos = PT;
5211 else
5212 textpos = XMARKER (w->pointm)->charpos;
5214 else if (part == ON_VERTICAL_BORDER)
5216 posn = Qvertical_line;
5217 wx = -1;
5218 dx = 0;
5219 width = 1;
5221 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5223 Lisp_Object string;
5224 int charpos;
5226 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5227 rx = wx, ry = wy;
5228 string = marginal_area_string (w, part, &rx, &ry, &charpos,
5229 &object, &dx, &dy, &width, &height);
5230 if (STRINGP (string))
5231 string_info = Fcons (string, make_number (charpos));
5232 if (part == ON_LEFT_MARGIN)
5233 wx = 0;
5234 else
5235 wx = window_box_right_offset (w, TEXT_AREA) - 1;
5237 else if (part == ON_LEFT_FRINGE)
5239 posn = Qleft_fringe;
5240 rx = 0;
5241 dx = wx;
5242 wx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5244 : window_box_width (w, LEFT_MARGIN_AREA));
5245 dx -= wx;
5247 else if (part == ON_RIGHT_FRINGE)
5249 posn = Qright_fringe;
5250 rx = 0;
5251 dx = wx;
5252 wx = (window_box_width (w, LEFT_MARGIN_AREA)
5253 + window_box_width (w, TEXT_AREA)
5254 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5255 ? window_box_width (w, RIGHT_MARGIN_AREA)
5256 : 0));
5257 dx -= wx;
5259 else
5261 /* Note: We have no special posn for part == ON_SCROLL_BAR. */
5262 wx = max (WINDOW_LEFT_MARGIN_WIDTH (w), wx);
5265 if (textpos < 0)
5267 Lisp_Object string2, object2 = Qnil;
5268 struct display_pos p;
5269 int dx2, dy2;
5270 int width2, height2;
5271 string2 = buffer_posn_from_coords (w, &wx, &wy, &p,
5272 &object2, &dx2, &dy2,
5273 &width2, &height2);
5274 textpos = CHARPOS (p.pos);
5275 if (rx < 0) rx = wx;
5276 if (ry < 0) ry = wy;
5277 if (dx < 0) dx = dx2;
5278 if (dy < 0) dy = dy2;
5279 if (width < 0) width = width2;
5280 if (height < 0) height = height2;
5282 if (NILP (posn))
5284 posn = make_number (textpos);
5285 if (STRINGP (string2))
5286 string_info = Fcons (string2,
5287 make_number (CHARPOS (p.string_pos)));
5289 if (NILP (object))
5290 object = object2;
5293 #ifdef HAVE_WINDOW_SYSTEM
5294 if (IMAGEP (object))
5296 Lisp_Object image_map, hotspot;
5297 if ((image_map = Fplist_get (XCDR (object), QCmap),
5298 !NILP (image_map))
5299 && (hotspot = find_hot_spot (image_map, dx, dy),
5300 CONSP (hotspot))
5301 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5302 posn = XCAR (hotspot);
5304 #endif
5306 /* Object info */
5307 extra_info = Fcons (object,
5308 Fcons (Fcons (make_number (dx),
5309 make_number (dy)),
5310 Fcons (Fcons (make_number (width),
5311 make_number (height)),
5312 Qnil)));
5314 /* String info */
5315 extra_info = Fcons (string_info,
5316 Fcons (make_number (textpos),
5317 Fcons (Fcons (make_number (rx),
5318 make_number (ry)),
5319 extra_info)));
5321 else if (f != 0)
5323 XSETFRAME (window, f);
5325 else
5327 window = Qnil;
5328 XSETFASTINT (*x, 0);
5329 XSETFASTINT (*y, 0);
5332 return Fcons (window,
5333 Fcons (posn,
5334 Fcons (Fcons (*x, *y),
5335 Fcons (make_number (time),
5336 extra_info))));
5339 /* Given a struct input_event, build the lisp event which represents
5340 it. If EVENT is 0, build a mouse movement event from the mouse
5341 movement buffer, which should have a movement event in it.
5343 Note that events must be passed to this function in the order they
5344 are received; this function stores the location of button presses
5345 in order to build drag events when the button is released. */
5347 static Lisp_Object
5348 make_lispy_event (event)
5349 struct input_event *event;
5351 int i;
5353 switch (SWITCH_ENUM_CAST (event->kind))
5355 /* A simple keystroke. */
5356 case ASCII_KEYSTROKE_EVENT:
5358 Lisp_Object lispy_c;
5359 int c = event->code & 0377;
5360 /* Turn ASCII characters into control characters
5361 when proper. */
5362 if (event->modifiers & ctrl_modifier)
5363 c = make_ctrl_char (c);
5365 /* Add in the other modifier bits. We took care of ctrl_modifier
5366 just above, and the shift key was taken care of by the X code,
5367 and applied to control characters by make_ctrl_char. */
5368 c |= (event->modifiers
5369 & (meta_modifier | alt_modifier
5370 | hyper_modifier | super_modifier));
5371 /* Distinguish Shift-SPC from SPC. */
5372 if ((event->code & 0377) == 040
5373 && event->modifiers & shift_modifier)
5374 c |= shift_modifier;
5375 button_down_time = 0;
5376 XSETFASTINT (lispy_c, c);
5377 return lispy_c;
5380 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5382 Lisp_Object lispy_c;
5383 int c = event->code;
5385 /* Add in the other modifier bits. We took care of ctrl_modifier
5386 just above, and the shift key was taken care of by the X code,
5387 and applied to control characters by make_ctrl_char. */
5388 c |= (event->modifiers
5389 & (meta_modifier | alt_modifier
5390 | hyper_modifier | super_modifier | ctrl_modifier));
5391 /* What about the `shift' modifier ? */
5392 button_down_time = 0;
5393 XSETFASTINT (lispy_c, c);
5394 return lispy_c;
5397 /* A function key. The symbol may need to have modifier prefixes
5398 tacked onto it. */
5399 case NON_ASCII_KEYSTROKE_EVENT:
5400 button_down_time = 0;
5402 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5403 if (event->code == lispy_accent_codes[i])
5404 return modify_event_symbol (i,
5405 event->modifiers,
5406 Qfunction_key, Qnil,
5407 lispy_accent_keys, &accent_key_syms,
5408 (sizeof (lispy_accent_keys)
5409 / sizeof (lispy_accent_keys[0])));
5411 #if 0
5412 #ifdef XK_kana_A
5413 if (event->code >= 0x400 && event->code < 0x500)
5414 return modify_event_symbol (event->code - 0x400,
5415 event->modifiers & ~shift_modifier,
5416 Qfunction_key, Qnil,
5417 lispy_kana_keys, &func_key_syms,
5418 (sizeof (lispy_kana_keys)
5419 / sizeof (lispy_kana_keys[0])));
5420 #endif /* XK_kana_A */
5421 #endif /* 0 */
5423 #ifdef ISO_FUNCTION_KEY_OFFSET
5424 if (event->code < FUNCTION_KEY_OFFSET
5425 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5426 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5427 event->modifiers,
5428 Qfunction_key, Qnil,
5429 iso_lispy_function_keys, &func_key_syms,
5430 (sizeof (iso_lispy_function_keys)
5431 / sizeof (iso_lispy_function_keys[0])));
5432 #endif
5434 /* Handle system-specific or unknown keysyms. */
5435 if (event->code & (1 << 28)
5436 || event->code - FUNCTION_KEY_OFFSET < 0
5437 || (event->code - FUNCTION_KEY_OFFSET
5438 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5439 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5441 /* We need to use an alist rather than a vector as the cache
5442 since we can't make a vector long enuf. */
5443 if (NILP (current_kboard->system_key_syms))
5444 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5445 return modify_event_symbol (event->code,
5446 event->modifiers,
5447 Qfunction_key,
5448 current_kboard->Vsystem_key_alist,
5449 0, &current_kboard->system_key_syms,
5450 (unsigned) -1);
5453 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5454 event->modifiers,
5455 Qfunction_key, Qnil,
5456 lispy_function_keys, &func_key_syms,
5457 (sizeof (lispy_function_keys)
5458 / sizeof (lispy_function_keys[0])));
5460 #ifdef HAVE_MOUSE
5461 /* A mouse click. Figure out where it is, decide whether it's
5462 a press, click or drag, and build the appropriate structure. */
5463 case MOUSE_CLICK_EVENT:
5464 #ifndef USE_TOOLKIT_SCROLL_BARS
5465 case SCROLL_BAR_CLICK_EVENT:
5466 #endif
5468 int button = event->code;
5469 int is_double;
5470 Lisp_Object position;
5471 Lisp_Object *start_pos_ptr;
5472 Lisp_Object start_pos;
5474 position = Qnil;
5476 /* Build the position as appropriate for this mouse click. */
5477 if (event->kind == MOUSE_CLICK_EVENT)
5479 struct frame *f = XFRAME (event->frame_or_window);
5480 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5481 int row, column;
5482 #endif
5484 /* Ignore mouse events that were made on frame that
5485 have been deleted. */
5486 if (! FRAME_LIVE_P (f))
5487 return Qnil;
5489 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5490 /* EVENT->x and EVENT->y are frame-relative pixel
5491 coordinates at this place. Under old redisplay, COLUMN
5492 and ROW are set to frame relative glyph coordinates
5493 which are then used to determine whether this click is
5494 in a menu (non-toolkit version). */
5495 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5496 &column, &row, NULL, 1);
5498 /* In the non-toolkit version, clicks on the menu bar
5499 are ordinary button events in the event buffer.
5500 Distinguish them, and invoke the menu.
5502 (In the toolkit version, the toolkit handles the menu bar
5503 and Emacs doesn't know about it until after the user
5504 makes a selection.) */
5505 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5506 && (event->modifiers & down_modifier))
5508 Lisp_Object items, item;
5509 int hpos;
5510 int i;
5512 #if 0
5513 /* Activate the menu bar on the down event. If the
5514 up event comes in before the menu code can deal with it,
5515 just ignore it. */
5516 if (! (event->modifiers & down_modifier))
5517 return Qnil;
5518 #endif
5520 /* Find the menu bar item under `column'. */
5521 item = Qnil;
5522 items = FRAME_MENU_BAR_ITEMS (f);
5523 for (i = 0; i < XVECTOR (items)->size; i += 4)
5525 Lisp_Object pos, string;
5526 string = AREF (items, i + 1);
5527 pos = AREF (items, i + 3);
5528 if (NILP (string))
5529 break;
5530 if (column >= XINT (pos)
5531 && column < XINT (pos) + SCHARS (string))
5533 item = AREF (items, i);
5534 break;
5538 /* ELisp manual 2.4b says (x y) are window relative but
5539 code says they are frame-relative. */
5540 position
5541 = Fcons (event->frame_or_window,
5542 Fcons (Qmenu_bar,
5543 Fcons (Fcons (event->x, event->y),
5544 Fcons (make_number (event->timestamp),
5545 Qnil))));
5547 return Fcons (item, Fcons (position, Qnil));
5549 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5551 position = make_lispy_position (f, &event->x, &event->y,
5552 event->timestamp);
5554 #ifndef USE_TOOLKIT_SCROLL_BARS
5555 else
5557 /* It's a scrollbar click. */
5558 Lisp_Object window;
5559 Lisp_Object portion_whole;
5560 Lisp_Object part;
5562 window = event->frame_or_window;
5563 portion_whole = Fcons (event->x, event->y);
5564 part = *scroll_bar_parts[(int) event->part];
5566 position
5567 = Fcons (window,
5568 Fcons (Qvertical_scroll_bar,
5569 Fcons (portion_whole,
5570 Fcons (make_number (event->timestamp),
5571 Fcons (part, Qnil)))));
5573 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5575 if (button >= ASIZE (button_down_location))
5577 button_down_location = larger_vector (button_down_location,
5578 button + 1, Qnil);
5579 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5582 start_pos_ptr = &AREF (button_down_location, button);
5583 start_pos = *start_pos_ptr;
5584 *start_pos_ptr = Qnil;
5587 /* On window-system frames, use the value of
5588 double-click-fuzz as is. On other frames, interpret it
5589 as a multiple of 1/8 characters. */
5590 struct frame *f;
5591 int fuzz;
5593 if (WINDOWP (event->frame_or_window))
5594 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5595 else if (FRAMEP (event->frame_or_window))
5596 f = XFRAME (event->frame_or_window);
5597 else
5598 abort ();
5600 if (FRAME_WINDOW_P (f))
5601 fuzz = double_click_fuzz;
5602 else
5603 fuzz = double_click_fuzz / 8;
5605 is_double = (button == last_mouse_button
5606 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5607 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5608 && button_down_time != 0
5609 && (EQ (Vdouble_click_time, Qt)
5610 || (INTEGERP (Vdouble_click_time)
5611 && ((int)(event->timestamp - button_down_time)
5612 < XINT (Vdouble_click_time)))));
5615 last_mouse_button = button;
5616 last_mouse_x = XINT (event->x);
5617 last_mouse_y = XINT (event->y);
5619 /* If this is a button press, squirrel away the location, so
5620 we can decide later whether it was a click or a drag. */
5621 if (event->modifiers & down_modifier)
5623 if (is_double)
5625 double_click_count++;
5626 event->modifiers |= ((double_click_count > 2)
5627 ? triple_modifier
5628 : double_modifier);
5630 else
5631 double_click_count = 1;
5632 button_down_time = event->timestamp;
5633 *start_pos_ptr = Fcopy_alist (position);
5634 ignore_mouse_drag_p = 0;
5637 /* Now we're releasing a button - check the co-ordinates to
5638 see if this was a click or a drag. */
5639 else if (event->modifiers & up_modifier)
5641 /* If we did not see a down before this up, ignore the up.
5642 Probably this happened because the down event chose a
5643 menu item. It would be an annoyance to treat the
5644 release of the button that chose the menu item as a
5645 separate event. */
5647 if (!CONSP (start_pos))
5648 return Qnil;
5650 event->modifiers &= ~up_modifier;
5651 #if 0 /* Formerly we treated an up with no down as a click event. */
5652 if (!CONSP (start_pos))
5653 event->modifiers |= click_modifier;
5654 else
5655 #endif
5657 Lisp_Object down;
5658 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5660 /* The third element of every position
5661 should be the (x,y) pair. */
5662 down = Fcar (Fcdr (Fcdr (start_pos)));
5663 if (CONSP (down)
5664 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5666 xdiff = XINT (event->x) - XINT (XCAR (down));
5667 ydiff = XINT (event->y) - XINT (XCDR (down));
5670 if (ignore_mouse_drag_p)
5672 event->modifiers |= click_modifier;
5673 ignore_mouse_drag_p = 0;
5675 else if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5676 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5677 /* Maybe the mouse has moved a lot, caused scrolling, and
5678 eventually ended up at the same screen position (but
5679 not buffer position) in which case it is a drag, not
5680 a click. */
5681 /* FIXME: OTOH if the buffer position has changed
5682 because of a timer or process filter rather than
5683 because of mouse movement, it should be considered as
5684 a click. But mouse-drag-region completely ignores
5685 this case and it hasn't caused any real problem, so
5686 it's probably OK to ignore it as well. */
5687 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5688 /* Mouse hasn't moved (much). */
5689 event->modifiers |= click_modifier;
5690 else
5692 button_down_time = 0;
5693 event->modifiers |= drag_modifier;
5696 /* Don't check is_double; treat this as multiple
5697 if the down-event was multiple. */
5698 if (double_click_count > 1)
5699 event->modifiers |= ((double_click_count > 2)
5700 ? triple_modifier
5701 : double_modifier);
5704 else
5705 /* Every mouse event should either have the down_modifier or
5706 the up_modifier set. */
5707 abort ();
5710 /* Get the symbol we should use for the mouse click. */
5711 Lisp_Object head;
5713 head = modify_event_symbol (button,
5714 event->modifiers,
5715 Qmouse_click, Vlispy_mouse_stem,
5716 NULL,
5717 &mouse_syms,
5718 XVECTOR (mouse_syms)->size);
5719 if (event->modifiers & drag_modifier)
5720 return Fcons (head,
5721 Fcons (start_pos,
5722 Fcons (position,
5723 Qnil)));
5724 else if (event->modifiers & (double_modifier | triple_modifier))
5725 return Fcons (head,
5726 Fcons (position,
5727 Fcons (make_number (double_click_count),
5728 Qnil)));
5729 else
5730 return Fcons (head,
5731 Fcons (position,
5732 Qnil));
5736 case WHEEL_EVENT:
5738 Lisp_Object position;
5739 Lisp_Object head;
5741 /* Build the position as appropriate for this mouse click. */
5742 struct frame *f = XFRAME (event->frame_or_window);
5744 /* Ignore wheel events that were made on frame that have been
5745 deleted. */
5746 if (! FRAME_LIVE_P (f))
5747 return Qnil;
5749 position = make_lispy_position (f, &event->x, &event->y,
5750 event->timestamp);
5752 /* Set double or triple modifiers to indicate the wheel speed. */
5754 /* On window-system frames, use the value of
5755 double-click-fuzz as is. On other frames, interpret it
5756 as a multiple of 1/8 characters. */
5757 struct frame *f;
5758 int fuzz;
5759 int is_double;
5761 if (WINDOWP (event->frame_or_window))
5762 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5763 else if (FRAMEP (event->frame_or_window))
5764 f = XFRAME (event->frame_or_window);
5765 else
5766 abort ();
5768 if (FRAME_WINDOW_P (f))
5769 fuzz = double_click_fuzz;
5770 else
5771 fuzz = double_click_fuzz / 8;
5773 is_double = (last_mouse_button < 0
5774 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5775 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5776 && button_down_time != 0
5777 && (EQ (Vdouble_click_time, Qt)
5778 || (INTEGERP (Vdouble_click_time)
5779 && ((int)(event->timestamp - button_down_time)
5780 < XINT (Vdouble_click_time)))));
5781 if (is_double)
5783 double_click_count++;
5784 event->modifiers |= ((double_click_count > 2)
5785 ? triple_modifier
5786 : double_modifier);
5788 else
5790 double_click_count = 1;
5791 event->modifiers |= click_modifier;
5794 button_down_time = event->timestamp;
5795 /* Use a negative value to distinguish wheel from mouse button. */
5796 last_mouse_button = -1;
5797 last_mouse_x = XINT (event->x);
5798 last_mouse_y = XINT (event->y);
5802 int symbol_num;
5804 if (event->modifiers & up_modifier)
5806 /* Emit a wheel-up event. */
5807 event->modifiers &= ~up_modifier;
5808 symbol_num = 0;
5810 else if (event->modifiers & down_modifier)
5812 /* Emit a wheel-down event. */
5813 event->modifiers &= ~down_modifier;
5814 symbol_num = 1;
5816 else
5817 /* Every wheel event should either have the down_modifier or
5818 the up_modifier set. */
5819 abort ();
5821 /* Get the symbol we should use for the wheel event. */
5822 head = modify_event_symbol (symbol_num,
5823 event->modifiers,
5824 Qmouse_click,
5825 Qnil,
5826 lispy_wheel_names,
5827 &wheel_syms,
5828 ASIZE (wheel_syms));
5831 if (event->modifiers & (double_modifier | triple_modifier))
5832 return Fcons (head,
5833 Fcons (position,
5834 Fcons (make_number (double_click_count),
5835 Qnil)));
5836 else
5837 return Fcons (head,
5838 Fcons (position,
5839 Qnil));
5843 #ifdef USE_TOOLKIT_SCROLL_BARS
5845 /* We don't have down and up events if using toolkit scroll bars,
5846 so make this always a click event. Store in the `part' of
5847 the Lisp event a symbol which maps to the following actions:
5849 `above_handle' page up
5850 `below_handle' page down
5851 `up' line up
5852 `down' line down
5853 `top' top of buffer
5854 `bottom' bottom of buffer
5855 `handle' thumb has been dragged.
5856 `end-scroll' end of interaction with scroll bar
5858 The incoming input_event contains in its `part' member an
5859 index of type `enum scroll_bar_part' which we can use as an
5860 index in scroll_bar_parts to get the appropriate symbol. */
5862 case SCROLL_BAR_CLICK_EVENT:
5864 Lisp_Object position, head, window, portion_whole, part;
5866 window = event->frame_or_window;
5867 portion_whole = Fcons (event->x, event->y);
5868 part = *scroll_bar_parts[(int) event->part];
5870 position
5871 = Fcons (window,
5872 Fcons (Qvertical_scroll_bar,
5873 Fcons (portion_whole,
5874 Fcons (make_number (event->timestamp),
5875 Fcons (part, Qnil)))));
5877 /* Always treat scroll bar events as clicks. */
5878 event->modifiers |= click_modifier;
5879 event->modifiers &= ~up_modifier;
5881 if (event->code >= ASIZE (mouse_syms))
5882 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5884 /* Get the symbol we should use for the mouse click. */
5885 head = modify_event_symbol (event->code,
5886 event->modifiers,
5887 Qmouse_click,
5888 Vlispy_mouse_stem,
5889 NULL, &mouse_syms,
5890 XVECTOR (mouse_syms)->size);
5891 return Fcons (head, Fcons (position, Qnil));
5894 #endif /* USE_TOOLKIT_SCROLL_BARS */
5896 #ifdef WINDOWSNT
5897 case W32_SCROLL_BAR_CLICK_EVENT:
5899 int button = event->code;
5900 int is_double;
5901 Lisp_Object position;
5902 Lisp_Object *start_pos_ptr;
5903 Lisp_Object start_pos;
5906 Lisp_Object window;
5907 Lisp_Object portion_whole;
5908 Lisp_Object part;
5910 window = event->frame_or_window;
5911 portion_whole = Fcons (event->x, event->y);
5912 part = *scroll_bar_parts[(int) event->part];
5914 position
5915 = Fcons (window,
5916 Fcons (Qvertical_scroll_bar,
5917 Fcons (portion_whole,
5918 Fcons (make_number (event->timestamp),
5919 Fcons (part, Qnil)))));
5922 /* Always treat W32 scroll bar events as clicks. */
5923 event->modifiers |= click_modifier;
5926 /* Get the symbol we should use for the mouse click. */
5927 Lisp_Object head;
5929 head = modify_event_symbol (button,
5930 event->modifiers,
5931 Qmouse_click,
5932 Vlispy_mouse_stem,
5933 NULL, &mouse_syms,
5934 XVECTOR (mouse_syms)->size);
5935 return Fcons (head,
5936 Fcons (position,
5937 Qnil));
5940 #endif /* WINDOWSNT */
5942 case DRAG_N_DROP_EVENT:
5944 FRAME_PTR f;
5945 Lisp_Object head, position;
5946 Lisp_Object files;
5948 f = XFRAME (event->frame_or_window);
5949 files = event->arg;
5951 /* Ignore mouse events that were made on frames that
5952 have been deleted. */
5953 if (! FRAME_LIVE_P (f))
5954 return Qnil;
5956 position = make_lispy_position (f, &event->x, &event->y,
5957 event->timestamp);
5959 head = modify_event_symbol (0, event->modifiers,
5960 Qdrag_n_drop, Qnil,
5961 lispy_drag_n_drop_names,
5962 &drag_n_drop_syms, 1);
5963 return Fcons (head,
5964 Fcons (position,
5965 Fcons (files,
5966 Qnil)));
5968 #endif /* HAVE_MOUSE */
5970 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5971 || defined (USE_GTK)
5972 case MENU_BAR_EVENT:
5973 if (EQ (event->arg, event->frame_or_window))
5974 /* This is the prefix key. We translate this to
5975 `(menu_bar)' because the code in keyboard.c for menu
5976 events, which we use, relies on this. */
5977 return Fcons (Qmenu_bar, Qnil);
5978 return event->arg;
5979 #endif
5981 case SELECT_WINDOW_EVENT:
5982 /* Make an event (select-window (WINDOW)). */
5983 return Fcons (Qselect_window,
5984 Fcons (Fcons (event->frame_or_window, Qnil),
5985 Qnil));
5987 case TOOL_BAR_EVENT:
5988 if (EQ (event->arg, event->frame_or_window))
5989 /* This is the prefix key. We translate this to
5990 `(tool_bar)' because the code in keyboard.c for tool bar
5991 events, which we use, relies on this. */
5992 return Fcons (Qtool_bar, Qnil);
5993 else if (SYMBOLP (event->arg))
5994 return apply_modifiers (event->modifiers, event->arg);
5995 return event->arg;
5997 case USER_SIGNAL_EVENT:
5998 /* A user signal. */
6000 char *name = find_user_signal_name (event->code);
6001 if (!name)
6002 abort ();
6003 return intern (name);
6006 case SAVE_SESSION_EVENT:
6007 return Qsave_session;
6009 #ifdef MAC_OS
6010 case MAC_APPLE_EVENT:
6012 Lisp_Object spec[2];
6014 spec[0] = event->x;
6015 spec[1] = event->y;
6016 return Fcons (Qmac_apple_event,
6017 Fcons (Fvector (2, spec),
6018 Fcons (event->arg, Qnil)));
6020 #endif
6022 /* The 'kind' field of the event is something we don't recognize. */
6023 default:
6024 abort ();
6028 #ifdef HAVE_MOUSE
6030 static Lisp_Object
6031 make_lispy_movement (frame, bar_window, part, x, y, time)
6032 FRAME_PTR frame;
6033 Lisp_Object bar_window;
6034 enum scroll_bar_part part;
6035 Lisp_Object x, y;
6036 unsigned long time;
6038 /* Is it a scroll bar movement? */
6039 if (frame && ! NILP (bar_window))
6041 Lisp_Object part_sym;
6043 part_sym = *scroll_bar_parts[(int) part];
6044 return Fcons (Qscroll_bar_movement,
6045 (Fcons (Fcons (bar_window,
6046 Fcons (Qvertical_scroll_bar,
6047 Fcons (Fcons (x, y),
6048 Fcons (make_number (time),
6049 Fcons (part_sym,
6050 Qnil))))),
6051 Qnil)));
6054 /* Or is it an ordinary mouse movement? */
6055 else
6057 Lisp_Object position;
6059 position = make_lispy_position (frame, &x, &y, time);
6061 return Fcons (Qmouse_movement,
6062 Fcons (position,
6063 Qnil));
6067 #endif /* HAVE_MOUSE */
6069 /* Construct a switch frame event. */
6070 static Lisp_Object
6071 make_lispy_switch_frame (frame)
6072 Lisp_Object frame;
6074 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
6077 /* Manipulating modifiers. */
6079 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6081 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6082 SYMBOL's name of the end of the modifiers; the string from this
6083 position is the unmodified symbol name.
6085 This doesn't use any caches. */
6087 static int
6088 parse_modifiers_uncached (symbol, modifier_end)
6089 Lisp_Object symbol;
6090 int *modifier_end;
6092 Lisp_Object name;
6093 int i;
6094 int modifiers;
6096 CHECK_SYMBOL (symbol);
6098 modifiers = 0;
6099 name = SYMBOL_NAME (symbol);
6101 for (i = 0; i+2 <= SBYTES (name); )
6103 int this_mod_end = 0;
6104 int this_mod = 0;
6106 /* See if the name continues with a modifier word.
6107 Check that the word appears, but don't check what follows it.
6108 Set this_mod and this_mod_end to record what we find. */
6110 switch (SREF (name, i))
6112 #define SINGLE_LETTER_MOD(BIT) \
6113 (this_mod_end = i + 1, this_mod = BIT)
6115 case 'A':
6116 SINGLE_LETTER_MOD (alt_modifier);
6117 break;
6119 case 'C':
6120 SINGLE_LETTER_MOD (ctrl_modifier);
6121 break;
6123 case 'H':
6124 SINGLE_LETTER_MOD (hyper_modifier);
6125 break;
6127 case 'M':
6128 SINGLE_LETTER_MOD (meta_modifier);
6129 break;
6131 case 'S':
6132 SINGLE_LETTER_MOD (shift_modifier);
6133 break;
6135 case 's':
6136 SINGLE_LETTER_MOD (super_modifier);
6137 break;
6139 #undef SINGLE_LETTER_MOD
6141 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6142 if (i + LEN + 1 <= SBYTES (name) \
6143 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
6145 this_mod_end = i + LEN; \
6146 this_mod = BIT; \
6149 case 'd':
6150 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6151 MULTI_LETTER_MOD (down_modifier, "down", 4);
6152 MULTI_LETTER_MOD (double_modifier, "double", 6);
6153 break;
6155 case 't':
6156 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6157 break;
6158 #undef MULTI_LETTER_MOD
6162 /* If we found no modifier, stop looking for them. */
6163 if (this_mod_end == 0)
6164 break;
6166 /* Check there is a dash after the modifier, so that it
6167 really is a modifier. */
6168 if (this_mod_end >= SBYTES (name)
6169 || SREF (name, this_mod_end) != '-')
6170 break;
6172 /* This modifier is real; look for another. */
6173 modifiers |= this_mod;
6174 i = this_mod_end + 1;
6177 /* Should we include the `click' modifier? */
6178 if (! (modifiers & (down_modifier | drag_modifier
6179 | double_modifier | triple_modifier))
6180 && i + 7 == SBYTES (name)
6181 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
6182 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6183 modifiers |= click_modifier;
6185 if (modifier_end)
6186 *modifier_end = i;
6188 return modifiers;
6191 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6192 prepended to the string BASE[0..BASE_LEN-1].
6193 This doesn't use any caches. */
6194 static Lisp_Object
6195 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
6196 int modifiers;
6197 char *base;
6198 int base_len, base_len_byte;
6200 /* Since BASE could contain nulls, we can't use intern here; we have
6201 to use Fintern, which expects a genuine Lisp_String, and keeps a
6202 reference to it. */
6203 char *new_mods
6204 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6205 int mod_len;
6208 char *p = new_mods;
6210 /* Only the event queue may use the `up' modifier; it should always
6211 be turned into a click or drag event before presented to lisp code. */
6212 if (modifiers & up_modifier)
6213 abort ();
6215 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6216 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6217 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6218 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6219 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6220 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6221 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
6222 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
6223 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
6224 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
6225 /* The click modifier is denoted by the absence of other modifiers. */
6227 *p = '\0';
6229 mod_len = p - new_mods;
6233 Lisp_Object new_name;
6235 new_name = make_uninit_multibyte_string (mod_len + base_len,
6236 mod_len + base_len_byte);
6237 bcopy (new_mods, SDATA (new_name), mod_len);
6238 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
6240 return Fintern (new_name, Qnil);
6245 static char *modifier_names[] =
6247 "up", "down", "drag", "click", "double", "triple", 0, 0,
6248 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6249 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6251 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6253 static Lisp_Object modifier_symbols;
6255 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6256 static Lisp_Object
6257 lispy_modifier_list (modifiers)
6258 int modifiers;
6260 Lisp_Object modifier_list;
6261 int i;
6263 modifier_list = Qnil;
6264 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6265 if (modifiers & (1<<i))
6266 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
6267 modifier_list);
6269 return modifier_list;
6273 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6274 where UNMODIFIED is the unmodified form of SYMBOL,
6275 MASK is the set of modifiers present in SYMBOL's name.
6276 This is similar to parse_modifiers_uncached, but uses the cache in
6277 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6278 Qevent_symbol_elements property. */
6280 Lisp_Object
6281 parse_modifiers (symbol)
6282 Lisp_Object symbol;
6284 Lisp_Object elements;
6286 elements = Fget (symbol, Qevent_symbol_element_mask);
6287 if (CONSP (elements))
6288 return elements;
6289 else
6291 int end;
6292 int modifiers = parse_modifiers_uncached (symbol, &end);
6293 Lisp_Object unmodified;
6294 Lisp_Object mask;
6296 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
6297 SBYTES (SYMBOL_NAME (symbol)) - end),
6298 Qnil);
6300 if (modifiers & ~INTMASK)
6301 abort ();
6302 XSETFASTINT (mask, modifiers);
6303 elements = Fcons (unmodified, Fcons (mask, Qnil));
6305 /* Cache the parsing results on SYMBOL. */
6306 Fput (symbol, Qevent_symbol_element_mask,
6307 elements);
6308 Fput (symbol, Qevent_symbol_elements,
6309 Fcons (unmodified, lispy_modifier_list (modifiers)));
6311 /* Since we know that SYMBOL is modifiers applied to unmodified,
6312 it would be nice to put that in unmodified's cache.
6313 But we can't, since we're not sure that parse_modifiers is
6314 canonical. */
6316 return elements;
6320 /* Apply the modifiers MODIFIERS to the symbol BASE.
6321 BASE must be unmodified.
6323 This is like apply_modifiers_uncached, but uses BASE's
6324 Qmodifier_cache property, if present. It also builds
6325 Qevent_symbol_elements properties, since it has that info anyway.
6327 apply_modifiers copies the value of BASE's Qevent_kind property to
6328 the modified symbol. */
6329 static Lisp_Object
6330 apply_modifiers (modifiers, base)
6331 int modifiers;
6332 Lisp_Object base;
6334 Lisp_Object cache, index, entry, new_symbol;
6336 /* Mask out upper bits. We don't know where this value's been. */
6337 modifiers &= INTMASK;
6339 /* The click modifier never figures into cache indices. */
6340 cache = Fget (base, Qmodifier_cache);
6341 XSETFASTINT (index, (modifiers & ~click_modifier));
6342 entry = assq_no_quit (index, cache);
6344 if (CONSP (entry))
6345 new_symbol = XCDR (entry);
6346 else
6348 /* We have to create the symbol ourselves. */
6349 new_symbol = apply_modifiers_uncached (modifiers,
6350 SDATA (SYMBOL_NAME (base)),
6351 SCHARS (SYMBOL_NAME (base)),
6352 SBYTES (SYMBOL_NAME (base)));
6354 /* Add the new symbol to the base's cache. */
6355 entry = Fcons (index, new_symbol);
6356 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6358 /* We have the parsing info now for free, so we could add it to
6359 the caches:
6360 XSETFASTINT (index, modifiers);
6361 Fput (new_symbol, Qevent_symbol_element_mask,
6362 Fcons (base, Fcons (index, Qnil)));
6363 Fput (new_symbol, Qevent_symbol_elements,
6364 Fcons (base, lispy_modifier_list (modifiers)));
6365 Sadly, this is only correct if `base' is indeed a base event,
6366 which is not necessarily the case. -stef */
6369 /* Make sure this symbol is of the same kind as BASE.
6371 You'd think we could just set this once and for all when we
6372 intern the symbol above, but reorder_modifiers may call us when
6373 BASE's property isn't set right; we can't assume that just
6374 because it has a Qmodifier_cache property it must have its
6375 Qevent_kind set right as well. */
6376 if (NILP (Fget (new_symbol, Qevent_kind)))
6378 Lisp_Object kind;
6380 kind = Fget (base, Qevent_kind);
6381 if (! NILP (kind))
6382 Fput (new_symbol, Qevent_kind, kind);
6385 return new_symbol;
6389 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6390 return a symbol with the modifiers placed in the canonical order.
6391 Canonical order is alphabetical, except for down and drag, which
6392 always come last. The 'click' modifier is never written out.
6394 Fdefine_key calls this to make sure that (for example) C-M-foo
6395 and M-C-foo end up being equivalent in the keymap. */
6397 Lisp_Object
6398 reorder_modifiers (symbol)
6399 Lisp_Object symbol;
6401 /* It's hopefully okay to write the code this way, since everything
6402 will soon be in caches, and no consing will be done at all. */
6403 Lisp_Object parsed;
6405 parsed = parse_modifiers (symbol);
6406 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6407 XCAR (parsed));
6411 /* For handling events, we often want to produce a symbol whose name
6412 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6413 to some base, like the name of a function key or mouse button.
6414 modify_event_symbol produces symbols of this sort.
6416 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6417 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6418 in the table.
6420 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6421 into symbol names, or a string specifying a name stem used to
6422 construct a symbol name or the form `STEM-N', where N is the decimal
6423 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6424 non-nil; otherwise NAME_TABLE is used.
6426 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6427 persist between calls to modify_event_symbol that it can use to
6428 store a cache of the symbols it's generated for this NAME_TABLE
6429 before. The object stored there may be a vector or an alist.
6431 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6433 MODIFIERS is a set of modifier bits (as given in struct input_events)
6434 whose prefixes should be applied to the symbol name.
6436 SYMBOL_KIND is the value to be placed in the event_kind property of
6437 the returned symbol.
6439 The symbols we create are supposed to have an
6440 `event-symbol-elements' property, which lists the modifiers present
6441 in the symbol's name. */
6443 static Lisp_Object
6444 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
6445 name_table, symbol_table, table_size)
6446 int symbol_num;
6447 unsigned modifiers;
6448 Lisp_Object symbol_kind;
6449 Lisp_Object name_alist_or_stem;
6450 char **name_table;
6451 Lisp_Object *symbol_table;
6452 unsigned int table_size;
6454 Lisp_Object value;
6455 Lisp_Object symbol_int;
6457 /* Get rid of the "vendor-specific" bit here. */
6458 XSETINT (symbol_int, symbol_num & 0xffffff);
6460 /* Is this a request for a valid symbol? */
6461 if (symbol_num < 0 || symbol_num >= table_size)
6462 return Qnil;
6464 if (CONSP (*symbol_table))
6465 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6467 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6468 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6469 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6470 we've never used that symbol before. */
6471 else
6473 if (! VECTORP (*symbol_table)
6474 || XVECTOR (*symbol_table)->size != table_size)
6476 Lisp_Object size;
6478 XSETFASTINT (size, table_size);
6479 *symbol_table = Fmake_vector (size, Qnil);
6482 value = XVECTOR (*symbol_table)->contents[symbol_num];
6485 /* Have we already used this symbol before? */
6486 if (NILP (value))
6488 /* No; let's create it. */
6489 if (CONSP (name_alist_or_stem))
6490 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6491 else if (STRINGP (name_alist_or_stem))
6493 int len = SBYTES (name_alist_or_stem);
6494 char *buf = (char *) alloca (len + 50);
6495 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6496 (long) XINT (symbol_int) + 1);
6497 value = intern (buf);
6499 else if (name_table != 0 && name_table[symbol_num])
6500 value = intern (name_table[symbol_num]);
6502 #ifdef HAVE_WINDOW_SYSTEM
6503 if (NILP (value))
6505 char *name = x_get_keysym_name (symbol_num);
6506 if (name)
6507 value = intern (name);
6509 #endif
6511 if (NILP (value))
6513 char buf[20];
6514 sprintf (buf, "key-%d", symbol_num);
6515 value = intern (buf);
6518 if (CONSP (*symbol_table))
6519 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6520 else
6521 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6523 /* Fill in the cache entries for this symbol; this also
6524 builds the Qevent_symbol_elements property, which the user
6525 cares about. */
6526 apply_modifiers (modifiers & click_modifier, value);
6527 Fput (value, Qevent_kind, symbol_kind);
6530 /* Apply modifiers to that symbol. */
6531 return apply_modifiers (modifiers, value);
6534 /* Convert a list that represents an event type,
6535 such as (ctrl meta backspace), into the usual representation of that
6536 event type as a number or a symbol. */
6538 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6539 doc: /* Convert the event description list EVENT-DESC to an event type.
6540 EVENT-DESC should contain one base event type (a character or symbol)
6541 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6542 drag, down, double or triple). The base must be last.
6543 The return value is an event type (a character or symbol) which
6544 has the same base event type and all the specified modifiers. */)
6545 (event_desc)
6546 Lisp_Object event_desc;
6548 Lisp_Object base;
6549 int modifiers = 0;
6550 Lisp_Object rest;
6552 base = Qnil;
6553 rest = event_desc;
6554 while (CONSP (rest))
6556 Lisp_Object elt;
6557 int this = 0;
6559 elt = XCAR (rest);
6560 rest = XCDR (rest);
6562 /* Given a symbol, see if it is a modifier name. */
6563 if (SYMBOLP (elt) && CONSP (rest))
6564 this = parse_solitary_modifier (elt);
6566 if (this != 0)
6567 modifiers |= this;
6568 else if (!NILP (base))
6569 error ("Two bases given in one event");
6570 else
6571 base = elt;
6575 /* Let the symbol A refer to the character A. */
6576 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6577 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6579 if (INTEGERP (base))
6581 /* Turn (shift a) into A. */
6582 if ((modifiers & shift_modifier) != 0
6583 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6585 XSETINT (base, XINT (base) - ('a' - 'A'));
6586 modifiers &= ~shift_modifier;
6589 /* Turn (control a) into C-a. */
6590 if (modifiers & ctrl_modifier)
6591 return make_number ((modifiers & ~ctrl_modifier)
6592 | make_ctrl_char (XINT (base)));
6593 else
6594 return make_number (modifiers | XINT (base));
6596 else if (SYMBOLP (base))
6597 return apply_modifiers (modifiers, base);
6598 else
6600 error ("Invalid base event");
6601 return Qnil;
6605 /* Try to recognize SYMBOL as a modifier name.
6606 Return the modifier flag bit, or 0 if not recognized. */
6608 static int
6609 parse_solitary_modifier (symbol)
6610 Lisp_Object symbol;
6612 Lisp_Object name = SYMBOL_NAME (symbol);
6614 switch (SREF (name, 0))
6616 #define SINGLE_LETTER_MOD(BIT) \
6617 if (SBYTES (name) == 1) \
6618 return BIT;
6620 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6621 if (LEN == SBYTES (name) \
6622 && ! strncmp (SDATA (name), NAME, LEN)) \
6623 return BIT;
6625 case 'A':
6626 SINGLE_LETTER_MOD (alt_modifier);
6627 break;
6629 case 'a':
6630 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6631 break;
6633 case 'C':
6634 SINGLE_LETTER_MOD (ctrl_modifier);
6635 break;
6637 case 'c':
6638 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6639 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6640 break;
6642 case 'H':
6643 SINGLE_LETTER_MOD (hyper_modifier);
6644 break;
6646 case 'h':
6647 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6648 break;
6650 case 'M':
6651 SINGLE_LETTER_MOD (meta_modifier);
6652 break;
6654 case 'm':
6655 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6656 break;
6658 case 'S':
6659 SINGLE_LETTER_MOD (shift_modifier);
6660 break;
6662 case 's':
6663 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6664 MULTI_LETTER_MOD (super_modifier, "super", 5);
6665 SINGLE_LETTER_MOD (super_modifier);
6666 break;
6668 case 'd':
6669 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6670 MULTI_LETTER_MOD (down_modifier, "down", 4);
6671 MULTI_LETTER_MOD (double_modifier, "double", 6);
6672 break;
6674 case 't':
6675 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6676 break;
6678 #undef SINGLE_LETTER_MOD
6679 #undef MULTI_LETTER_MOD
6682 return 0;
6685 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6686 Such a list is not valid as an event,
6687 but it can be a Lucid-style event type list. */
6690 lucid_event_type_list_p (object)
6691 Lisp_Object object;
6693 Lisp_Object tail;
6695 if (! CONSP (object))
6696 return 0;
6698 if (EQ (XCAR (object), Qhelp_echo)
6699 || EQ (XCAR (object), Qvertical_line)
6700 || EQ (XCAR (object), Qmode_line)
6701 || EQ (XCAR (object), Qheader_line))
6702 return 0;
6704 for (tail = object; CONSP (tail); tail = XCDR (tail))
6706 Lisp_Object elt;
6707 elt = XCAR (tail);
6708 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6709 return 0;
6712 return NILP (tail);
6715 /* Store into *addr a value nonzero if terminal input chars are available.
6716 Serves the purpose of ioctl (0, FIONREAD, addr)
6717 but works even if FIONREAD does not exist.
6718 (In fact, this may actually read some input.)
6720 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6721 timer events that are ripe.
6722 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6723 events (FOCUS_IN_EVENT).
6724 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6725 movements and toolkit scroll bar thumb drags. */
6727 static void
6728 get_input_pending (addr, flags)
6729 int *addr;
6730 int flags;
6732 /* First of all, have we already counted some input? */
6733 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6735 /* If input is being read as it arrives, and we have none, there is none. */
6736 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6737 return;
6739 /* Try to read some input and see how much we get. */
6740 gobble_input (0);
6741 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6744 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6746 void
6747 gobble_input (expected)
6748 int expected;
6750 #ifndef VMS
6751 #ifdef SIGIO
6752 if (interrupt_input)
6754 SIGMASKTYPE mask;
6755 mask = sigblock (sigmask (SIGIO));
6756 read_avail_input (expected);
6757 sigsetmask (mask);
6759 else
6760 #ifdef POLL_FOR_INPUT
6761 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6763 SIGMASKTYPE mask;
6764 mask = sigblock (sigmask (SIGALRM));
6765 read_avail_input (expected);
6766 sigsetmask (mask);
6768 else
6769 #endif
6770 #endif
6771 read_avail_input (expected);
6772 #endif
6775 /* Put a BUFFER_SWITCH_EVENT in the buffer
6776 so that read_key_sequence will notice the new current buffer. */
6778 void
6779 record_asynch_buffer_change ()
6781 struct input_event event;
6782 Lisp_Object tem;
6783 EVENT_INIT (event);
6785 event.kind = BUFFER_SWITCH_EVENT;
6786 event.frame_or_window = Qnil;
6787 event.arg = Qnil;
6789 #ifdef subprocesses
6790 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6791 The purpose of the event is to make read_key_sequence look up the
6792 keymaps again. If we aren't in read_key_sequence, we don't need one,
6793 and the event could cause trouble by messing up (input-pending-p). */
6794 tem = Fwaiting_for_user_input_p ();
6795 if (NILP (tem))
6796 return;
6797 #else
6798 /* We never need these events if we have no asynchronous subprocesses. */
6799 return;
6800 #endif
6802 /* Make sure no interrupt happens while storing the event. */
6803 #ifdef SIGIO
6804 if (interrupt_input)
6806 SIGMASKTYPE mask;
6807 mask = sigblock (sigmask (SIGIO));
6808 kbd_buffer_store_event (&event);
6809 sigsetmask (mask);
6811 else
6812 #endif
6814 stop_polling ();
6815 kbd_buffer_store_event (&event);
6816 start_polling ();
6820 #ifndef VMS
6822 /* Read any terminal input already buffered up by the system
6823 into the kbd_buffer, but do not wait.
6825 EXPECTED should be nonzero if the caller knows there is some input.
6827 Except on VMS, all input is read by this function.
6828 If interrupt_input is nonzero, this function MUST be called
6829 only when SIGIO is blocked.
6831 Returns the number of keyboard chars read, or -1 meaning
6832 this is a bad time to try to read input. */
6834 static int
6835 read_avail_input (expected)
6836 int expected;
6838 register int i;
6839 int nread = 0;
6841 /* Store pending user signal events, if any. */
6842 if (store_user_signal_events ())
6843 expected = 0;
6845 if (read_socket_hook)
6847 int nr;
6848 struct input_event hold_quit;
6850 EVENT_INIT (hold_quit);
6851 hold_quit.kind = NO_EVENT;
6853 /* No need for FIONREAD or fcntl; just say don't wait. */
6854 while (nr = (*read_socket_hook) (input_fd, expected, &hold_quit), nr > 0)
6856 nread += nr;
6857 expected = 0;
6859 if (hold_quit.kind != NO_EVENT)
6860 kbd_buffer_store_event (&hold_quit);
6862 else
6864 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6865 the kbd_buffer can really hold. That may prevent loss
6866 of characters on some systems when input is stuffed at us. */
6867 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6868 int n_to_read;
6870 /* Determine how many characters we should *try* to read. */
6871 #ifdef WINDOWSNT
6872 return 0;
6873 #else /* not WINDOWSNT */
6874 #ifdef MSDOS
6875 n_to_read = dos_keysns ();
6876 if (n_to_read == 0)
6877 return 0;
6878 #else /* not MSDOS */
6879 #ifdef FIONREAD
6880 /* Find out how much input is available. */
6881 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6882 /* Formerly simply reported no input, but that sometimes led to
6883 a failure of Emacs to terminate.
6884 SIGHUP seems appropriate if we can't reach the terminal. */
6885 /* ??? Is it really right to send the signal just to this process
6886 rather than to the whole process group?
6887 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6889 if (! noninteractive)
6890 kill (getpid (), SIGHUP);
6891 else
6892 n_to_read = 0;
6894 if (n_to_read == 0)
6895 return 0;
6896 if (n_to_read > sizeof cbuf)
6897 n_to_read = sizeof cbuf;
6898 #else /* no FIONREAD */
6899 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6900 /* Read some input if available, but don't wait. */
6901 n_to_read = sizeof cbuf;
6902 fcntl (input_fd, F_SETFL, O_NDELAY);
6903 #else
6904 you lose;
6905 #endif
6906 #endif
6907 #endif /* not MSDOS */
6908 #endif /* not WINDOWSNT */
6910 /* Now read; for one reason or another, this will not block.
6911 NREAD is set to the number of chars read. */
6914 #ifdef MSDOS
6915 cbuf[0] = dos_keyread ();
6916 nread = 1;
6917 #else
6918 nread = emacs_read (input_fd, cbuf, n_to_read);
6919 #endif
6920 /* POSIX infers that processes which are not in the session leader's
6921 process group won't get SIGHUP's at logout time. BSDI adheres to
6922 this part standard and returns -1 from read (0) with errno==EIO
6923 when the control tty is taken away.
6924 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6925 if (nread == -1 && errno == EIO)
6926 kill (0, SIGHUP);
6927 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6928 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6929 This looks incorrect, but it isn't, because _BSD causes
6930 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6931 and that causes a value other than 0 when there is no input. */
6932 if (nread == 0)
6933 kill (0, SIGHUP);
6934 #endif
6936 while (
6937 /* We used to retry the read if it was interrupted.
6938 But this does the wrong thing when O_NDELAY causes
6939 an EAGAIN error. Does anybody know of a situation
6940 where a retry is actually needed? */
6941 #if 0
6942 nread < 0 && (errno == EAGAIN
6943 #ifdef EFAULT
6944 || errno == EFAULT
6945 #endif
6946 #ifdef EBADSLT
6947 || errno == EBADSLT
6948 #endif
6950 #else
6952 #endif
6955 #ifndef FIONREAD
6956 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6957 fcntl (input_fd, F_SETFL, 0);
6958 #endif /* USG or DGUX or CYGWIN */
6959 #endif /* no FIONREAD */
6960 for (i = 0; i < nread; i++)
6962 struct input_event buf;
6963 EVENT_INIT (buf);
6964 buf.kind = ASCII_KEYSTROKE_EVENT;
6965 buf.modifiers = 0;
6966 if (meta_key == 1 && (cbuf[i] & 0x80))
6967 buf.modifiers = meta_modifier;
6968 if (meta_key != 2)
6969 cbuf[i] &= ~0x80;
6971 buf.code = cbuf[i];
6972 buf.frame_or_window = selected_frame;
6973 buf.arg = Qnil;
6975 kbd_buffer_store_event (&buf);
6976 /* Don't look at input that follows a C-g too closely.
6977 This reduces lossage due to autorepeat on C-g. */
6978 if (buf.kind == ASCII_KEYSTROKE_EVENT
6979 && buf.code == quit_char)
6980 break;
6984 return nread;
6986 #endif /* not VMS */
6988 void
6989 handle_async_input ()
6991 #ifdef BSD4_1
6992 extern int select_alarmed;
6993 #endif
6995 interrupt_input_pending = 0;
6997 while (1)
6999 int nread;
7000 nread = read_avail_input (1);
7001 /* -1 means it's not ok to read the input now.
7002 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
7003 0 means there was no keyboard input available. */
7004 if (nread <= 0)
7005 break;
7007 #ifdef BSD4_1
7008 select_alarmed = 1; /* Force the select emulator back to life */
7009 #endif
7013 #ifdef SIGIO /* for entire page */
7014 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7016 static SIGTYPE
7017 input_available_signal (signo)
7018 int signo;
7020 /* Must preserve main program's value of errno. */
7021 int old_errno = errno;
7022 #if defined (USG) && !defined (POSIX_SIGNALS)
7023 /* USG systems forget handlers when they are used;
7024 must reestablish each time */
7025 signal (signo, input_available_signal);
7026 #endif /* USG */
7028 #ifdef BSD4_1
7029 sigisheld (SIGIO);
7030 #endif
7032 #ifdef SYNC_INPUT
7033 interrupt_input_pending = 1;
7034 #else
7035 SIGNAL_THREAD_CHECK (signo);
7036 #endif
7038 if (input_available_clear_time)
7039 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
7041 #ifndef SYNC_INPUT
7042 handle_async_input ();
7043 #endif
7045 #ifdef BSD4_1
7046 sigfree ();
7047 #endif
7048 errno = old_errno;
7050 #endif /* SIGIO */
7052 /* Send ourselves a SIGIO.
7054 This function exists so that the UNBLOCK_INPUT macro in
7055 blockinput.h can have some way to take care of input we put off
7056 dealing with, without assuming that every file which uses
7057 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
7058 void
7059 reinvoke_input_signal ()
7061 #ifdef SIGIO
7062 handle_async_input ();
7063 #endif
7068 /* User signal events. */
7070 struct user_signal_info
7072 /* Signal number. */
7073 int sig;
7075 /* Name of the signal. */
7076 char *name;
7078 /* Number of pending signals. */
7079 int npending;
7081 struct user_signal_info *next;
7084 /* List of user signals. */
7085 static struct user_signal_info *user_signals = NULL;
7087 void
7088 add_user_signal (sig, name)
7089 int sig;
7090 const char *name;
7092 struct user_signal_info *p;
7094 for (p = user_signals; p; p = p->next)
7095 if (p->sig == sig)
7096 /* Already added. */
7097 return;
7099 p = xmalloc (sizeof (struct user_signal_info));
7100 p->sig = sig;
7101 p->name = xstrdup (name);
7102 p->npending = 0;
7103 p->next = user_signals;
7104 user_signals = p;
7106 signal (sig, handle_user_signal);
7109 static SIGTYPE
7110 handle_user_signal (sig)
7111 int sig;
7113 int old_errno = errno;
7114 struct user_signal_info *p;
7116 #if defined (USG) && !defined (POSIX_SIGNALS)
7117 /* USG systems forget handlers when they are used;
7118 must reestablish each time */
7119 signal (sig, handle_user_signal);
7120 #endif
7122 SIGNAL_THREAD_CHECK (sig);
7124 for (p = user_signals; p; p = p->next)
7125 if (p->sig == sig)
7127 p->npending++;
7128 #ifdef SIGIO
7129 if (interrupt_input)
7130 kill (getpid (), SIGIO);
7131 else
7132 #endif
7134 /* Tell wait_reading_process_output that it needs to wake
7135 up and look around. */
7136 if (input_available_clear_time)
7137 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
7139 break;
7142 errno = old_errno;
7145 static char *
7146 find_user_signal_name (sig)
7147 int sig;
7149 struct user_signal_info *p;
7151 for (p = user_signals; p; p = p->next)
7152 if (p->sig == sig)
7153 return p->name;
7155 return NULL;
7158 static int
7159 store_user_signal_events ()
7161 struct user_signal_info *p;
7162 struct input_event buf;
7163 int nstored = 0;
7165 for (p = user_signals; p; p = p->next)
7166 if (p->npending > 0)
7168 SIGMASKTYPE mask;
7170 if (nstored == 0)
7172 bzero (&buf, sizeof buf);
7173 buf.kind = USER_SIGNAL_EVENT;
7174 buf.frame_or_window = selected_frame;
7176 nstored += p->npending;
7178 mask = sigblock (sigmask (p->sig));
7181 buf.code = p->sig;
7182 kbd_buffer_store_event (&buf);
7183 p->npending--;
7185 while (p->npending > 0);
7186 sigsetmask (mask);
7189 return nstored;
7193 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
7194 static Lisp_Object menu_bar_one_keymap_changed_items;
7196 /* These variables hold the vector under construction within
7197 menu_bar_items and its subroutines, and the current index
7198 for storing into that vector. */
7199 static Lisp_Object menu_bar_items_vector;
7200 static int menu_bar_items_index;
7202 /* Return a vector of menu items for a menu bar, appropriate
7203 to the current buffer. Each item has three elements in the vector:
7204 KEY STRING MAPLIST.
7206 OLD is an old vector we can optionally reuse, or nil. */
7208 Lisp_Object
7209 menu_bar_items (old)
7210 Lisp_Object old;
7212 /* The number of keymaps we're scanning right now, and the number of
7213 keymaps we have allocated space for. */
7214 int nmaps;
7216 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7217 in the current keymaps, or nil where it is not a prefix. */
7218 Lisp_Object *maps;
7220 Lisp_Object def, tail;
7222 Lisp_Object result;
7224 int mapno;
7225 Lisp_Object oquit;
7227 int i;
7229 /* In order to build the menus, we need to call the keymap
7230 accessors. They all call QUIT. But this function is called
7231 during redisplay, during which a quit is fatal. So inhibit
7232 quitting while building the menus.
7233 We do this instead of specbind because (1) errors will clear it anyway
7234 and (2) this avoids risk of specpdl overflow. */
7235 oquit = Vinhibit_quit;
7236 Vinhibit_quit = Qt;
7238 if (!NILP (old))
7239 menu_bar_items_vector = old;
7240 else
7241 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
7242 menu_bar_items_index = 0;
7244 /* Build our list of keymaps.
7245 If we recognize a function key and replace its escape sequence in
7246 keybuf with its symbol, or if the sequence starts with a mouse
7247 click and we need to switch buffers, we jump back here to rebuild
7248 the initial keymaps from the current buffer. */
7250 Lisp_Object *tmaps;
7252 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7253 if (!NILP (Voverriding_local_map_menu_flag))
7255 /* Yes, use them (if non-nil) as well as the global map. */
7256 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7257 nmaps = 0;
7258 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7259 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7260 if (!NILP (Voverriding_local_map))
7261 maps[nmaps++] = Voverriding_local_map;
7263 else
7265 /* No, so use major and minor mode keymaps and keymap property.
7266 Note that menu-bar bindings in the local-map and keymap
7267 properties may not work reliable, as they are only
7268 recognized when the menu-bar (or mode-line) is updated,
7269 which does not normally happen after every command. */
7270 Lisp_Object tem;
7271 int nminor;
7272 nminor = current_minor_maps (NULL, &tmaps);
7273 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7274 nmaps = 0;
7275 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7276 maps[nmaps++] = tem;
7277 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7278 nmaps += nminor;
7279 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7281 maps[nmaps++] = current_global_map;
7284 /* Look up in each map the dummy prefix key `menu-bar'. */
7286 result = Qnil;
7288 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7289 if (!NILP (maps[mapno]))
7291 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7292 0, 1);
7293 if (CONSP (def))
7295 menu_bar_one_keymap_changed_items = Qnil;
7296 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
7300 /* Move to the end those items that should be at the end. */
7302 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7304 int i;
7305 int end = menu_bar_items_index;
7307 for (i = 0; i < end; i += 4)
7308 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
7310 Lisp_Object tem0, tem1, tem2, tem3;
7311 /* Move the item at index I to the end,
7312 shifting all the others forward. */
7313 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
7314 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
7315 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7316 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
7317 if (end > i + 4)
7318 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7319 &XVECTOR (menu_bar_items_vector)->contents[i],
7320 (end - i - 4) * sizeof (Lisp_Object));
7321 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
7322 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
7323 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
7324 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
7325 break;
7329 /* Add nil, nil, nil, nil at the end. */
7330 i = menu_bar_items_index;
7331 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7333 Lisp_Object tem;
7334 tem = Fmake_vector (make_number (2 * i), Qnil);
7335 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7336 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7337 menu_bar_items_vector = tem;
7339 /* Add this item. */
7340 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7341 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7342 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7343 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7344 menu_bar_items_index = i;
7346 Vinhibit_quit = oquit;
7347 return menu_bar_items_vector;
7350 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7351 If there's already an item for KEY, add this DEF to it. */
7353 Lisp_Object item_properties;
7355 static void
7356 menu_bar_item (key, item, dummy1, dummy2)
7357 Lisp_Object key, item, dummy1;
7358 void *dummy2;
7360 struct gcpro gcpro1;
7361 int i;
7362 Lisp_Object tem;
7364 if (EQ (item, Qundefined))
7366 /* If a map has an explicit `undefined' as definition,
7367 discard any previously made menu bar item. */
7369 for (i = 0; i < menu_bar_items_index; i += 4)
7370 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7372 if (menu_bar_items_index > i + 4)
7373 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7374 &XVECTOR (menu_bar_items_vector)->contents[i],
7375 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
7376 menu_bar_items_index -= 4;
7380 /* If this keymap has already contributed to this KEY,
7381 don't contribute to it a second time. */
7382 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7383 if (!NILP (tem) || NILP (item))
7384 return;
7386 menu_bar_one_keymap_changed_items
7387 = Fcons (key, menu_bar_one_keymap_changed_items);
7389 /* We add to menu_bar_one_keymap_changed_items before doing the
7390 parse_menu_item, so that if it turns out it wasn't a menu item,
7391 it still correctly hides any further menu item. */
7392 GCPRO1 (key);
7393 i = parse_menu_item (item, 0, 1);
7394 UNGCPRO;
7395 if (!i)
7396 return;
7398 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7400 /* Find any existing item for this KEY. */
7401 for (i = 0; i < menu_bar_items_index; i += 4)
7402 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7403 break;
7405 /* If we did not find this KEY, add it at the end. */
7406 if (i == menu_bar_items_index)
7408 /* If vector is too small, get a bigger one. */
7409 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7411 Lisp_Object tem;
7412 tem = Fmake_vector (make_number (2 * i), Qnil);
7413 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7414 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7415 menu_bar_items_vector = tem;
7418 /* Add this item. */
7419 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
7420 XVECTOR (menu_bar_items_vector)->contents[i++]
7421 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7422 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
7423 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
7424 menu_bar_items_index = i;
7426 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7427 else
7429 Lisp_Object old;
7430 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7431 /* If the new and the old items are not both keymaps,
7432 the lookup will only find `item'. */
7433 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7434 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
7438 /* This is used as the handler when calling menu_item_eval_property. */
7439 static Lisp_Object
7440 menu_item_eval_property_1 (arg)
7441 Lisp_Object arg;
7443 /* If we got a quit from within the menu computation,
7444 quit all the way out of it. This takes care of C-] in the debugger. */
7445 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7446 Fsignal (Qquit, Qnil);
7448 return Qnil;
7451 /* Evaluate an expression and return the result (or nil if something
7452 went wrong). Used to evaluate dynamic parts of menu items. */
7453 Lisp_Object
7454 menu_item_eval_property (sexpr)
7455 Lisp_Object sexpr;
7457 int count = SPECPDL_INDEX ();
7458 Lisp_Object val;
7459 specbind (Qinhibit_redisplay, Qt);
7460 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7461 menu_item_eval_property_1);
7462 return unbind_to (count, val);
7465 /* This function parses a menu item and leaves the result in the
7466 vector item_properties.
7467 ITEM is a key binding, a possible menu item.
7468 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7469 evaluate dynamic expressions in the menu item.
7470 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7471 top level.
7472 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7473 parse_menu_item returns true if the item is a menu item and false
7474 otherwise. */
7477 parse_menu_item (item, notreal, inmenubar)
7478 Lisp_Object item;
7479 int notreal, inmenubar;
7481 Lisp_Object def, tem, item_string, start;
7482 Lisp_Object cachelist;
7483 Lisp_Object filter;
7484 Lisp_Object keyhint;
7485 int i;
7486 int newcache = 0;
7488 cachelist = Qnil;
7489 filter = Qnil;
7490 keyhint = Qnil;
7492 if (!CONSP (item))
7493 return 0;
7495 /* Create item_properties vector if necessary. */
7496 if (NILP (item_properties))
7497 item_properties
7498 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7500 /* Initialize optional entries. */
7501 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7502 AREF (item_properties, i) = Qnil;
7503 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7505 /* Save the item here to protect it from GC. */
7506 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
7508 item_string = XCAR (item);
7510 start = item;
7511 item = XCDR (item);
7512 if (STRINGP (item_string))
7514 /* Old format menu item. */
7515 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7517 /* Maybe help string. */
7518 if (CONSP (item) && STRINGP (XCAR (item)))
7520 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7521 start = item;
7522 item = XCDR (item);
7525 /* Maybe key binding cache. */
7526 if (CONSP (item) && CONSP (XCAR (item))
7527 && (NILP (XCAR (XCAR (item)))
7528 || VECTORP (XCAR (XCAR (item)))))
7530 cachelist = XCAR (item);
7531 item = XCDR (item);
7534 /* This is the real definition--the function to run. */
7535 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
7537 /* Get enable property, if any. */
7538 if (SYMBOLP (item))
7540 tem = Fget (item, Qmenu_enable);
7541 if (!NILP (Venable_disabled_menus_and_buttons))
7542 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7543 else if (!NILP (tem))
7544 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7547 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7549 /* New format menu item. */
7550 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7551 start = XCDR (item);
7552 if (CONSP (start))
7554 /* We have a real binding. */
7555 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
7557 item = XCDR (start);
7558 /* Is there a cache list with key equivalences. */
7559 if (CONSP (item) && CONSP (XCAR (item)))
7561 cachelist = XCAR (item);
7562 item = XCDR (item);
7565 /* Parse properties. */
7566 while (CONSP (item) && CONSP (XCDR (item)))
7568 tem = XCAR (item);
7569 item = XCDR (item);
7571 if (EQ (tem, QCenable))
7573 if (!NILP (Venable_disabled_menus_and_buttons))
7574 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7575 else
7576 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
7578 else if (EQ (tem, QCvisible) && !notreal)
7580 /* If got a visible property and that evaluates to nil
7581 then ignore this item. */
7582 tem = menu_item_eval_property (XCAR (item));
7583 if (NILP (tem))
7584 return 0;
7586 else if (EQ (tem, QChelp))
7587 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7588 else if (EQ (tem, QCfilter))
7589 filter = item;
7590 else if (EQ (tem, QCkey_sequence))
7592 tem = XCAR (item);
7593 if (NILP (cachelist)
7594 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7595 /* Be GC protected. Set keyhint to item instead of tem. */
7596 keyhint = item;
7598 else if (EQ (tem, QCkeys))
7600 tem = XCAR (item);
7601 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
7602 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7604 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7606 Lisp_Object type;
7607 tem = XCAR (item);
7608 type = XCAR (tem);
7609 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7611 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7612 = XCDR (tem);
7613 AREF (item_properties, ITEM_PROPERTY_TYPE)
7614 = type;
7617 item = XCDR (item);
7620 else if (inmenubar || !NILP (start))
7621 return 0;
7623 else
7624 return 0; /* not a menu item */
7626 /* If item string is not a string, evaluate it to get string.
7627 If we don't get a string, skip this item. */
7628 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7629 if (!(STRINGP (item_string) || notreal))
7631 item_string = menu_item_eval_property (item_string);
7632 if (!STRINGP (item_string))
7633 return 0;
7634 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7637 /* If got a filter apply it on definition. */
7638 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7639 if (!NILP (filter))
7641 def = menu_item_eval_property (list2 (XCAR (filter),
7642 list2 (Qquote, def)));
7644 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
7647 /* Enable or disable selection of item. */
7648 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7649 if (!EQ (tem, Qt))
7651 if (notreal)
7652 tem = Qt;
7653 else
7654 tem = menu_item_eval_property (tem);
7655 if (inmenubar && NILP (tem))
7656 return 0; /* Ignore disabled items in menu bar. */
7657 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7660 /* If we got no definition, this item is just unselectable text which
7661 is OK in a submenu but not in the menubar. */
7662 if (NILP (def))
7663 return (inmenubar ? 0 : 1);
7665 /* See if this is a separate pane or a submenu. */
7666 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7667 tem = get_keymap (def, 0, 1);
7668 /* For a subkeymap, just record its details and exit. */
7669 if (CONSP (tem))
7671 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7672 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7673 return 1;
7676 /* At the top level in the menu bar, do likewise for commands also.
7677 The menu bar does not display equivalent key bindings anyway.
7678 ITEM_PROPERTY_DEF is already set up properly. */
7679 if (inmenubar > 0)
7680 return 1;
7682 /* This is a command. See if there is an equivalent key binding. */
7683 if (NILP (cachelist))
7685 /* We have to create a cachelist. */
7686 CHECK_IMPURE (start);
7687 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7688 cachelist = XCAR (XCDR (start));
7689 newcache = 1;
7690 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7691 if (!NILP (keyhint))
7693 XSETCAR (cachelist, XCAR (keyhint));
7694 newcache = 0;
7696 else if (STRINGP (tem))
7698 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7699 XSETCAR (cachelist, Qt);
7703 tem = XCAR (cachelist);
7704 if (!EQ (tem, Qt))
7706 int chkcache = 0;
7707 Lisp_Object prefix;
7709 if (!NILP (tem))
7710 tem = Fkey_binding (tem, Qnil, Qnil, Qnil);
7712 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7713 if (CONSP (prefix))
7715 def = XCAR (prefix);
7716 prefix = XCDR (prefix);
7718 else
7719 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7721 if (NILP (XCAR (cachelist))) /* Have no saved key. */
7723 if (newcache /* Always check first time. */
7724 /* Should we check everything when precomputing key
7725 bindings? */
7726 /* If something had no key binding before, don't recheck it
7727 because that is too slow--except if we have a list of
7728 rebound commands in Vdefine_key_rebound_commands, do
7729 recheck any command that appears in that list. */
7730 || (CONSP (Vdefine_key_rebound_commands)
7731 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7732 chkcache = 1;
7734 /* We had a saved key. Is it still bound to the command? */
7735 else if (NILP (tem)
7736 || (!EQ (tem, def)
7737 /* If the command is an alias for another
7738 (such as lmenu.el set it up), check if the
7739 original command matches the cached command. */
7740 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7741 chkcache = 1; /* Need to recompute key binding. */
7743 if (chkcache)
7745 /* Recompute equivalent key binding. If the command is an alias
7746 for another (such as lmenu.el set it up), see if the original
7747 command name has equivalent keys. Otherwise look up the
7748 specified command itself. We don't try both, because that
7749 makes lmenu menus slow. */
7750 if (SYMBOLP (def)
7751 && SYMBOLP (XSYMBOL (def)->function)
7752 && ! NILP (Fget (def, Qmenu_alias)))
7753 def = XSYMBOL (def)->function;
7754 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7755 XSETCAR (cachelist, tem);
7756 if (NILP (tem))
7758 XSETCDR (cachelist, Qnil);
7759 chkcache = 0;
7762 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7764 tem = XCAR (cachelist);
7765 chkcache = 1;
7768 newcache = chkcache;
7769 if (chkcache)
7771 tem = Fkey_description (tem, Qnil);
7772 if (CONSP (prefix))
7774 if (STRINGP (XCAR (prefix)))
7775 tem = concat2 (XCAR (prefix), tem);
7776 if (STRINGP (XCDR (prefix)))
7777 tem = concat2 (tem, XCDR (prefix));
7779 XSETCDR (cachelist, tem);
7783 tem = XCDR (cachelist);
7784 if (newcache && !NILP (tem))
7786 tem = concat3 (build_string (" ("), tem, build_string (")"));
7787 XSETCDR (cachelist, tem);
7790 /* If we only want to precompute equivalent key bindings, stop here. */
7791 if (notreal)
7792 return 1;
7794 /* If we have an equivalent key binding, use that. */
7795 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7797 /* Include this when menu help is implemented.
7798 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7799 if (!(NILP (tem) || STRINGP (tem)))
7801 tem = menu_item_eval_property (tem);
7802 if (!STRINGP (tem))
7803 tem = Qnil;
7804 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7808 /* Handle radio buttons or toggle boxes. */
7809 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7810 if (!NILP (tem))
7811 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7812 = menu_item_eval_property (tem);
7814 return 1;
7819 /***********************************************************************
7820 Tool-bars
7821 ***********************************************************************/
7823 /* A vector holding tool bar items while they are parsed in function
7824 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7825 in the vector. */
7827 static Lisp_Object tool_bar_items_vector;
7829 /* A vector holding the result of parse_tool_bar_item. Layout is like
7830 the one for a single item in tool_bar_items_vector. */
7832 static Lisp_Object tool_bar_item_properties;
7834 /* Next free index in tool_bar_items_vector. */
7836 static int ntool_bar_items;
7838 /* The symbols `tool-bar', `:image' and `:rtl'. */
7840 extern Lisp_Object Qtool_bar;
7841 Lisp_Object QCimage;
7842 Lisp_Object Qrtl;
7844 /* Function prototypes. */
7846 static void init_tool_bar_items P_ ((Lisp_Object));
7847 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
7848 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7849 static void append_tool_bar_item P_ ((void));
7852 /* Return a vector of tool bar items for keymaps currently in effect.
7853 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7854 tool bar items found. */
7856 Lisp_Object
7857 tool_bar_items (reuse, nitems)
7858 Lisp_Object reuse;
7859 int *nitems;
7861 Lisp_Object *maps;
7862 int nmaps, i;
7863 Lisp_Object oquit;
7864 Lisp_Object *tmaps;
7866 *nitems = 0;
7868 /* In order to build the menus, we need to call the keymap
7869 accessors. They all call QUIT. But this function is called
7870 during redisplay, during which a quit is fatal. So inhibit
7871 quitting while building the menus. We do this instead of
7872 specbind because (1) errors will clear it anyway and (2) this
7873 avoids risk of specpdl overflow. */
7874 oquit = Vinhibit_quit;
7875 Vinhibit_quit = Qt;
7877 /* Initialize tool_bar_items_vector and protect it from GC. */
7878 init_tool_bar_items (reuse);
7880 /* Build list of keymaps in maps. Set nmaps to the number of maps
7881 to process. */
7883 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7884 if (!NILP (Voverriding_local_map_menu_flag))
7886 /* Yes, use them (if non-nil) as well as the global map. */
7887 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7888 nmaps = 0;
7889 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7890 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7891 if (!NILP (Voverriding_local_map))
7892 maps[nmaps++] = Voverriding_local_map;
7894 else
7896 /* No, so use major and minor mode keymaps and keymap property.
7897 Note that tool-bar bindings in the local-map and keymap
7898 properties may not work reliable, as they are only
7899 recognized when the tool-bar (or mode-line) is updated,
7900 which does not normally happen after every command. */
7901 Lisp_Object tem;
7902 int nminor;
7903 nminor = current_minor_maps (NULL, &tmaps);
7904 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7905 nmaps = 0;
7906 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7907 maps[nmaps++] = tem;
7908 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7909 nmaps += nminor;
7910 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7913 /* Add global keymap at the end. */
7914 maps[nmaps++] = current_global_map;
7916 /* Process maps in reverse order and look up in each map the prefix
7917 key `tool-bar'. */
7918 for (i = nmaps - 1; i >= 0; --i)
7919 if (!NILP (maps[i]))
7921 Lisp_Object keymap;
7923 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7924 if (CONSP (keymap))
7925 map_keymap (keymap, process_tool_bar_item, Qnil, NULL, 1);
7928 Vinhibit_quit = oquit;
7929 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7930 return tool_bar_items_vector;
7934 /* Process the definition of KEY which is DEF. */
7936 static void
7937 process_tool_bar_item (key, def, data, args)
7938 Lisp_Object key, def, data;
7939 void *args;
7941 int i;
7942 extern Lisp_Object Qundefined;
7943 struct gcpro gcpro1, gcpro2;
7945 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7946 eval. */
7947 GCPRO2 (key, def);
7949 if (EQ (def, Qundefined))
7951 /* If a map has an explicit `undefined' as definition,
7952 discard any previously made item. */
7953 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7955 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7957 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7959 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7960 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7961 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7962 * sizeof (Lisp_Object)));
7963 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7964 break;
7968 else if (parse_tool_bar_item (key, def))
7969 /* Append a new tool bar item to tool_bar_items_vector. Accept
7970 more than one definition for the same key. */
7971 append_tool_bar_item ();
7973 UNGCPRO;
7977 /* Parse a tool bar item specification ITEM for key KEY and return the
7978 result in tool_bar_item_properties. Value is zero if ITEM is
7979 invalid.
7981 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7983 CAPTION is the caption of the item, If it's not a string, it is
7984 evaluated to get a string.
7986 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7987 as binding are currently ignored.
7989 The following properties are recognized:
7991 - `:enable FORM'.
7993 FORM is evaluated and specifies whether the tool bar item is
7994 enabled or disabled.
7996 - `:visible FORM'
7998 FORM is evaluated and specifies whether the tool bar item is visible.
8000 - `:filter FUNCTION'
8002 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
8003 result is stored as the new binding.
8005 - `:button (TYPE SELECTED)'
8007 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8008 and specifies whether the button is selected (pressed) or not.
8010 - `:image IMAGES'
8012 IMAGES is either a single image specification or a vector of four
8013 image specifications. See enum tool_bar_item_images.
8015 - `:help HELP-STRING'.
8017 Gives a help string to display for the tool bar item. */
8019 static int
8020 parse_tool_bar_item (key, item)
8021 Lisp_Object key, item;
8023 /* Access slot with index IDX of vector tool_bar_item_properties. */
8024 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
8026 Lisp_Object filter = Qnil;
8027 Lisp_Object caption;
8028 int i;
8030 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
8031 Rule out items that aren't lists, don't start with
8032 `menu-item' or whose rest following `tool-bar-item' is not a
8033 list. */
8034 if (!CONSP (item)
8035 || !EQ (XCAR (item), Qmenu_item)
8036 || (item = XCDR (item),
8037 !CONSP (item)))
8038 return 0;
8040 /* Create tool_bar_item_properties vector if necessary. Reset it to
8041 defaults. */
8042 if (VECTORP (tool_bar_item_properties))
8044 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
8045 PROP (i) = Qnil;
8047 else
8048 tool_bar_item_properties
8049 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
8051 /* Set defaults. */
8052 PROP (TOOL_BAR_ITEM_KEY) = key;
8053 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
8055 /* Get the caption of the item. If the caption is not a string,
8056 evaluate it to get a string. If we don't get a string, skip this
8057 item. */
8058 caption = XCAR (item);
8059 if (!STRINGP (caption))
8061 caption = menu_item_eval_property (caption);
8062 if (!STRINGP (caption))
8063 return 0;
8065 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
8067 /* Give up if rest following the caption is not a list. */
8068 item = XCDR (item);
8069 if (!CONSP (item))
8070 return 0;
8072 /* Store the binding. */
8073 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
8074 item = XCDR (item);
8076 /* Ignore cached key binding, if any. */
8077 if (CONSP (item) && CONSP (XCAR (item)))
8078 item = XCDR (item);
8080 /* Process the rest of the properties. */
8081 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
8083 Lisp_Object key, value;
8085 key = XCAR (item);
8086 value = XCAR (XCDR (item));
8088 if (EQ (key, QCenable))
8090 /* `:enable FORM'. */
8091 if (!NILP (Venable_disabled_menus_and_buttons))
8092 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
8093 else
8094 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
8096 else if (EQ (key, QCvisible))
8098 /* `:visible FORM'. If got a visible property and that
8099 evaluates to nil then ignore this item. */
8100 if (NILP (menu_item_eval_property (value)))
8101 return 0;
8103 else if (EQ (key, QChelp))
8104 /* `:help HELP-STRING'. */
8105 PROP (TOOL_BAR_ITEM_HELP) = value;
8106 else if (EQ (key, QCfilter))
8107 /* ':filter FORM'. */
8108 filter = value;
8109 else if (EQ (key, QCbutton) && CONSP (value))
8111 /* `:button (TYPE . SELECTED)'. */
8112 Lisp_Object type, selected;
8114 type = XCAR (value);
8115 selected = XCDR (value);
8116 if (EQ (type, QCtoggle) || EQ (type, QCradio))
8118 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
8119 PROP (TOOL_BAR_ITEM_TYPE) = type;
8122 else if (EQ (key, QCimage)
8123 && (CONSP (value)
8124 || (VECTORP (value) && XVECTOR (value)->size == 4)))
8125 /* Value is either a single image specification or a vector
8126 of 4 such specifications for the different button states. */
8127 PROP (TOOL_BAR_ITEM_IMAGES) = value;
8128 else if (EQ (key, Qrtl))
8129 /* ':rtl STRING' */
8130 PROP (TOOL_BAR_ITEM_RTL_IMAGE) = value;
8133 /* If got a filter apply it on binding. */
8134 if (!NILP (filter))
8135 PROP (TOOL_BAR_ITEM_BINDING)
8136 = menu_item_eval_property (list2 (filter,
8137 list2 (Qquote,
8138 PROP (TOOL_BAR_ITEM_BINDING))));
8140 /* See if the binding is a keymap. Give up if it is. */
8141 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
8142 return 0;
8144 /* Enable or disable selection of item. */
8145 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
8146 PROP (TOOL_BAR_ITEM_ENABLED_P)
8147 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
8149 /* Handle radio buttons or toggle boxes. */
8150 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
8151 PROP (TOOL_BAR_ITEM_SELECTED_P)
8152 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
8154 return 1;
8156 #undef PROP
8160 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8161 that can be reused. */
8163 static void
8164 init_tool_bar_items (reuse)
8165 Lisp_Object reuse;
8167 if (VECTORP (reuse))
8168 tool_bar_items_vector = reuse;
8169 else
8170 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
8171 ntool_bar_items = 0;
8175 /* Append parsed tool bar item properties from
8176 tool_bar_item_properties */
8178 static void
8179 append_tool_bar_item ()
8181 Lisp_Object *to, *from;
8183 /* Enlarge tool_bar_items_vector if necessary. */
8184 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
8185 >= XVECTOR (tool_bar_items_vector)->size)
8187 Lisp_Object new_vector;
8188 int old_size = XVECTOR (tool_bar_items_vector)->size;
8190 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
8191 bcopy (XVECTOR (tool_bar_items_vector)->contents,
8192 XVECTOR (new_vector)->contents,
8193 old_size * sizeof (Lisp_Object));
8194 tool_bar_items_vector = new_vector;
8197 /* Append entries from tool_bar_item_properties to the end of
8198 tool_bar_items_vector. */
8199 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
8200 from = XVECTOR (tool_bar_item_properties)->contents;
8201 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
8202 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
8209 /* Read a character using menus based on maps in the array MAPS.
8210 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
8211 Return t if we displayed a menu but the user rejected it.
8213 PREV_EVENT is the previous input event, or nil if we are reading
8214 the first event of a key sequence.
8216 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
8217 if we used a mouse menu to read the input, or zero otherwise. If
8218 USED_MOUSE_MENU is null, we don't dereference it.
8220 The prompting is done based on the prompt-string of the map
8221 and the strings associated with various map elements.
8223 This can be done with X menus or with menus put in the minibuf.
8224 These are done in different ways, depending on how the input will be read.
8225 Menus using X are done after auto-saving in read-char, getting the input
8226 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8227 and do auto-saving in the inner call of read_char. */
8229 static Lisp_Object
8230 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
8231 int nmaps;
8232 Lisp_Object *maps;
8233 Lisp_Object prev_event;
8234 int *used_mouse_menu;
8236 int mapno;
8237 register Lisp_Object name = Qnil;
8239 if (used_mouse_menu)
8240 *used_mouse_menu = 0;
8242 /* Use local over global Menu maps */
8244 if (! menu_prompting)
8245 return Qnil;
8247 /* Optionally disregard all but the global map. */
8248 if (inhibit_local_menu_bar_menus)
8250 maps += (nmaps - 1);
8251 nmaps = 1;
8254 /* Get the menu name from the first map that has one (a prompt string). */
8255 for (mapno = 0; mapno < nmaps; mapno++)
8257 name = Fkeymap_prompt (maps[mapno]);
8258 if (!NILP (name))
8259 break;
8262 /* If we don't have any menus, just read a character normally. */
8263 if (!STRINGP (name))
8264 return Qnil;
8266 #ifdef HAVE_MENUS
8267 /* If we got to this point via a mouse click,
8268 use a real menu for mouse selection. */
8269 if (EVENT_HAS_PARAMETERS (prev_event)
8270 && !EQ (XCAR (prev_event), Qmenu_bar)
8271 && !EQ (XCAR (prev_event), Qtool_bar))
8273 /* Display the menu and get the selection. */
8274 Lisp_Object *realmaps
8275 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
8276 Lisp_Object value;
8277 int nmaps1 = 0;
8279 /* Use the maps that are not nil. */
8280 for (mapno = 0; mapno < nmaps; mapno++)
8281 if (!NILP (maps[mapno]))
8282 realmaps[nmaps1++] = maps[mapno];
8284 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
8285 if (CONSP (value))
8287 Lisp_Object tem;
8289 record_menu_key (XCAR (value));
8291 /* If we got multiple events, unread all but
8292 the first.
8293 There is no way to prevent those unread events
8294 from showing up later in last_nonmenu_event.
8295 So turn symbol and integer events into lists,
8296 to indicate that they came from a mouse menu,
8297 so that when present in last_nonmenu_event
8298 they won't confuse things. */
8299 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
8301 record_menu_key (XCAR (tem));
8302 if (SYMBOLP (XCAR (tem))
8303 || INTEGERP (XCAR (tem)))
8304 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8307 /* If we got more than one event, put all but the first
8308 onto this list to be read later.
8309 Return just the first event now. */
8310 Vunread_command_events
8311 = nconc2 (XCDR (value), Vunread_command_events);
8312 value = XCAR (value);
8314 else if (NILP (value))
8315 value = Qt;
8316 if (used_mouse_menu)
8317 *used_mouse_menu = 1;
8318 return value;
8320 #endif /* HAVE_MENUS */
8321 return Qnil ;
8324 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8325 We make this bigger when necessary, and never free it. */
8326 static char *read_char_minibuf_menu_text;
8327 /* Size of that buffer. */
8328 static int read_char_minibuf_menu_width;
8330 static Lisp_Object
8331 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
8332 int commandflag ;
8333 int nmaps;
8334 Lisp_Object *maps;
8336 int mapno;
8337 register Lisp_Object name;
8338 int nlength;
8339 /* FIXME: Use the minibuffer's frame width. */
8340 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8341 int idx = -1;
8342 int nobindings = 1;
8343 Lisp_Object rest, vector;
8344 char *menu;
8346 vector = Qnil;
8347 name = Qnil;
8349 if (! menu_prompting)
8350 return Qnil;
8352 /* Make sure we have a big enough buffer for the menu text. */
8353 if (read_char_minibuf_menu_text == 0)
8355 read_char_minibuf_menu_width = width + 4;
8356 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
8358 else if (width + 4 > read_char_minibuf_menu_width)
8360 read_char_minibuf_menu_width = width + 4;
8361 read_char_minibuf_menu_text
8362 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
8364 menu = read_char_minibuf_menu_text;
8366 /* Get the menu name from the first map that has one (a prompt string). */
8367 for (mapno = 0; mapno < nmaps; mapno++)
8369 name = Fkeymap_prompt (maps[mapno]);
8370 if (!NILP (name))
8371 break;
8374 /* If we don't have any menus, just read a character normally. */
8375 if (!STRINGP (name))
8376 return Qnil;
8378 /* Prompt string always starts with map's prompt, and a space. */
8379 strcpy (menu, SDATA (name));
8380 nlength = SBYTES (name);
8381 menu[nlength++] = ':';
8382 menu[nlength++] = ' ';
8383 menu[nlength] = 0;
8385 /* Start prompting at start of first map. */
8386 mapno = 0;
8387 rest = maps[mapno];
8389 /* Present the documented bindings, a line at a time. */
8390 while (1)
8392 int notfirst = 0;
8393 int i = nlength;
8394 Lisp_Object obj;
8395 int ch;
8396 Lisp_Object orig_defn_macro;
8398 /* Loop over elements of map. */
8399 while (i < width)
8401 Lisp_Object elt;
8403 /* If reached end of map, start at beginning of next map. */
8404 if (NILP (rest))
8406 mapno++;
8407 /* At end of last map, wrap around to first map if just starting,
8408 or end this line if already have something on it. */
8409 if (mapno == nmaps)
8411 mapno = 0;
8412 if (notfirst || nobindings) break;
8414 rest = maps[mapno];
8417 /* Look at the next element of the map. */
8418 if (idx >= 0)
8419 elt = XVECTOR (vector)->contents[idx];
8420 else
8421 elt = Fcar_safe (rest);
8423 if (idx < 0 && VECTORP (elt))
8425 /* If we found a dense table in the keymap,
8426 advanced past it, but start scanning its contents. */
8427 rest = Fcdr_safe (rest);
8428 vector = elt;
8429 idx = 0;
8431 else
8433 /* An ordinary element. */
8434 Lisp_Object event, tem;
8436 if (idx < 0)
8438 event = Fcar_safe (elt); /* alist */
8439 elt = Fcdr_safe (elt);
8441 else
8443 XSETINT (event, idx); /* vector */
8446 /* Ignore the element if it has no prompt string. */
8447 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8449 /* 1 if the char to type matches the string. */
8450 int char_matches;
8451 Lisp_Object upcased_event, downcased_event;
8452 Lisp_Object desc = Qnil;
8453 Lisp_Object s
8454 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8456 upcased_event = Fupcase (event);
8457 downcased_event = Fdowncase (event);
8458 char_matches = (XINT (upcased_event) == SREF (s, 0)
8459 || XINT (downcased_event) == SREF (s, 0));
8460 if (! char_matches)
8461 desc = Fsingle_key_description (event, Qnil);
8463 #if 0 /* It is redundant to list the equivalent key bindings because
8464 the prefix is what the user has already typed. */
8466 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8467 if (!NILP (tem))
8468 /* Insert equivalent keybinding. */
8469 s = concat2 (s, tem);
8470 #endif
8472 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8473 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8475 /* Insert button prefix. */
8476 Lisp_Object selected
8477 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8478 if (EQ (tem, QCradio))
8479 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8480 else
8481 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8482 s = concat2 (tem, s);
8486 /* If we have room for the prompt string, add it to this line.
8487 If this is the first on the line, always add it. */
8488 if ((SCHARS (s) + i + 2
8489 + (char_matches ? 0 : SCHARS (desc) + 3))
8490 < width
8491 || !notfirst)
8493 int thiswidth;
8495 /* Punctuate between strings. */
8496 if (notfirst)
8498 strcpy (menu + i, ", ");
8499 i += 2;
8501 notfirst = 1;
8502 nobindings = 0 ;
8504 /* If the char to type doesn't match the string's
8505 first char, explicitly show what char to type. */
8506 if (! char_matches)
8508 /* Add as much of string as fits. */
8509 thiswidth = SCHARS (desc);
8510 if (thiswidth + i > width)
8511 thiswidth = width - i;
8512 bcopy (SDATA (desc), menu + i, thiswidth);
8513 i += thiswidth;
8514 strcpy (menu + i, " = ");
8515 i += 3;
8518 /* Add as much of string as fits. */
8519 thiswidth = SCHARS (s);
8520 if (thiswidth + i > width)
8521 thiswidth = width - i;
8522 bcopy (SDATA (s), menu + i, thiswidth);
8523 i += thiswidth;
8524 menu[i] = 0;
8526 else
8528 /* If this element does not fit, end the line now,
8529 and save the element for the next line. */
8530 strcpy (menu + i, "...");
8531 break;
8535 /* Move past this element. */
8536 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8537 /* Handle reaching end of dense table. */
8538 idx = -1;
8539 if (idx >= 0)
8540 idx++;
8541 else
8542 rest = Fcdr_safe (rest);
8546 /* Prompt with that and read response. */
8547 message2_nolog (menu, strlen (menu),
8548 ! NILP (current_buffer->enable_multibyte_characters));
8550 /* Make believe its not a keyboard macro in case the help char
8551 is pressed. Help characters are not recorded because menu prompting
8552 is not used on replay.
8554 orig_defn_macro = current_kboard->defining_kbd_macro;
8555 current_kboard->defining_kbd_macro = Qnil;
8557 obj = read_char (commandflag, 0, 0, Qt, 0, NULL);
8558 while (BUFFERP (obj));
8559 current_kboard->defining_kbd_macro = orig_defn_macro;
8561 if (!INTEGERP (obj))
8562 return obj;
8563 else
8564 ch = XINT (obj);
8566 if (! EQ (obj, menu_prompt_more_char)
8567 && (!INTEGERP (menu_prompt_more_char)
8568 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8570 if (!NILP (current_kboard->defining_kbd_macro))
8571 store_kbd_macro_char (obj);
8572 return obj;
8574 /* Help char - go round again */
8578 /* Reading key sequences. */
8580 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8581 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8582 keymap, or nil otherwise. Return the index of the first keymap in
8583 which KEY has any binding, or NMAPS if no map has a binding.
8585 If KEY is a meta ASCII character, treat it like meta-prefix-char
8586 followed by the corresponding non-meta character. Keymaps in
8587 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8588 NEXT.
8590 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8591 unmodified.
8593 NEXT may be the same array as CURRENT. */
8595 static int
8596 follow_key (key, nmaps, current, defs, next)
8597 Lisp_Object key;
8598 Lisp_Object *current, *defs, *next;
8599 int nmaps;
8601 int i, first_binding;
8603 first_binding = nmaps;
8604 for (i = nmaps - 1; i >= 0; i--)
8606 if (! NILP (current[i]))
8608 defs[i] = access_keymap (current[i], key, 1, 0, 1);
8609 if (! NILP (defs[i]))
8610 first_binding = i;
8612 else
8613 defs[i] = Qnil;
8616 /* Given the set of bindings we've found, produce the next set of maps. */
8617 if (first_binding < nmaps)
8618 for (i = 0; i < nmaps; i++)
8619 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8621 return first_binding;
8624 /* Structure used to keep track of partial application of key remapping
8625 such as Vfunction_key_map and Vkey_translation_map. */
8626 typedef struct keyremap
8628 /* This is the map originally specified for this use. */
8629 Lisp_Object parent;
8630 /* This is a submap reached by looking up, in PARENT,
8631 the events from START to END. */
8632 Lisp_Object map;
8633 /* Positions [START, END) in the key sequence buffer
8634 are the key that we have scanned so far.
8635 Those events are the ones that we will replace
8636 if PAREHT maps them into a key sequence. */
8637 int start, end;
8638 } keyremap;
8640 /* Lookup KEY in MAP.
8641 MAP is a keymap mapping keys to key vectors or functions.
8642 If the mapping is a function and DO_FUNCTION is non-zero, then
8643 the function is called with PROMPT as parameter and its return
8644 value is used as the return value of this function (after checking
8645 that it is indeed a vector). */
8647 static Lisp_Object
8648 access_keymap_keyremap (map, key, prompt, do_funcall)
8649 Lisp_Object map, key, prompt;
8650 int do_funcall;
8652 Lisp_Object next;
8654 next = access_keymap (map, key, 1, 0, 1);
8656 /* Handle symbol with autoload definition. */
8657 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8658 && CONSP (XSYMBOL (next)->function)
8659 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
8660 do_autoload (XSYMBOL (next)->function, next);
8662 /* Handle a symbol whose function definition is a keymap
8663 or an array. */
8664 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8665 && (ARRAYP (XSYMBOL (next)->function)
8666 || KEYMAPP (XSYMBOL (next)->function)))
8667 next = XSYMBOL (next)->function;
8669 /* If the keymap gives a function, not an
8670 array, then call the function with one arg and use
8671 its value instead. */
8672 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
8674 Lisp_Object tem;
8675 tem = next;
8677 next = call1 (next, prompt);
8678 /* If the function returned something invalid,
8679 barf--don't ignore it.
8680 (To ignore it safely, we would need to gcpro a bunch of
8681 other variables.) */
8682 if (! (VECTORP (next) || STRINGP (next)))
8683 error ("Function %s returns invalid key sequence", tem);
8685 return next;
8688 /* Do one step of the key remapping used for function-key-map and
8689 key-translation-map:
8690 KEYBUF is the buffer holding the input events.
8691 BUFSIZE is its maximum size.
8692 FKEY is a pointer to the keyremap structure to use.
8693 INPUT is the index of the last element in KEYBUF.
8694 DOIT if non-zero says that the remapping can actually take place.
8695 DIFF is used to return the number of keys added/removed by the remapping.
8696 PARENT is the root of the keymap.
8697 PROMPT is the prompt to use if the remapping happens through a function.
8698 The return value is non-zero if the remapping actually took place. */
8700 static int
8701 keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
8702 Lisp_Object *keybuf, prompt;
8703 keyremap *fkey;
8704 int input, doit, *diff, bufsize;
8706 Lisp_Object next, key;
8708 key = keybuf[fkey->end++];
8710 if (KEYMAPP (fkey->parent))
8711 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8712 else
8713 next = Qnil;
8715 /* If keybuf[fkey->start..fkey->end] is bound in the
8716 map and we're in a position to do the key remapping, replace it with
8717 the binding and restart with fkey->start at the end. */
8718 if ((VECTORP (next) || STRINGP (next)) && doit)
8720 int len = XFASTINT (Flength (next));
8721 int i;
8723 *diff = len - (fkey->end - fkey->start);
8725 if (input + *diff >= bufsize)
8726 error ("Key sequence too long");
8728 /* Shift the keys that follow fkey->end. */
8729 if (*diff < 0)
8730 for (i = fkey->end; i < input; i++)
8731 keybuf[i + *diff] = keybuf[i];
8732 else if (*diff > 0)
8733 for (i = input - 1; i >= fkey->end; i--)
8734 keybuf[i + *diff] = keybuf[i];
8735 /* Overwrite the old keys with the new ones. */
8736 for (i = 0; i < len; i++)
8737 keybuf[fkey->start + i]
8738 = Faref (next, make_number (i));
8740 fkey->start = fkey->end += *diff;
8741 fkey->map = fkey->parent;
8743 return 1;
8746 fkey->map = get_keymap (next, 0, 1);
8748 /* If we no longer have a bound suffix, try a new position for
8749 fkey->start. */
8750 if (!CONSP (fkey->map))
8752 fkey->end = ++fkey->start;
8753 fkey->map = fkey->parent;
8755 return 0;
8758 /* Read a sequence of keys that ends with a non prefix character,
8759 storing it in KEYBUF, a buffer of size BUFSIZE.
8760 Prompt with PROMPT.
8761 Return the length of the key sequence stored.
8762 Return -1 if the user rejected a command menu.
8764 Echo starting immediately unless `prompt' is 0.
8766 Where a key sequence ends depends on the currently active keymaps.
8767 These include any minor mode keymaps active in the current buffer,
8768 the current buffer's local map, and the global map.
8770 If a key sequence has no other bindings, we check Vfunction_key_map
8771 to see if some trailing subsequence might be the beginning of a
8772 function key's sequence. If so, we try to read the whole function
8773 key, and substitute its symbolic name into the key sequence.
8775 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8776 `double-' events into similar click events, if that would make them
8777 bound. We try to turn `triple-' events first into `double-' events,
8778 then into clicks.
8780 If we get a mouse click in a mode line, vertical divider, or other
8781 non-text area, we treat the click as if it were prefixed by the
8782 symbol denoting that area - `mode-line', `vertical-line', or
8783 whatever.
8785 If the sequence starts with a mouse click, we read the key sequence
8786 with respect to the buffer clicked on, not the current buffer.
8788 If the user switches frames in the midst of a key sequence, we put
8789 off the switch-frame event until later; the next call to
8790 read_char will return it.
8792 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8793 from the selected window's buffer. */
8795 static int
8796 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8797 can_return_switch_frame, fix_current_buffer)
8798 Lisp_Object *keybuf;
8799 int bufsize;
8800 Lisp_Object prompt;
8801 int dont_downcase_last;
8802 int can_return_switch_frame;
8803 int fix_current_buffer;
8805 volatile Lisp_Object from_string;
8806 volatile int count = SPECPDL_INDEX ();
8808 /* How many keys there are in the current key sequence. */
8809 volatile int t;
8811 /* The length of the echo buffer when we started reading, and
8812 the length of this_command_keys when we started reading. */
8813 volatile int echo_start;
8814 volatile int keys_start;
8816 /* The number of keymaps we're scanning right now, and the number of
8817 keymaps we have allocated space for. */
8818 volatile int nmaps;
8819 volatile int nmaps_allocated = 0;
8821 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8822 the current keymaps. */
8823 Lisp_Object *volatile defs = NULL;
8825 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8826 in the current keymaps, or nil where it is not a prefix. */
8827 Lisp_Object *volatile submaps = NULL;
8829 /* The local map to start out with at start of key sequence. */
8830 volatile Lisp_Object orig_local_map;
8832 /* The map from the `keymap' property to start out with at start of
8833 key sequence. */
8834 volatile Lisp_Object orig_keymap;
8836 /* 1 if we have already considered switching to the local-map property
8837 of the place where a mouse click occurred. */
8838 volatile int localized_local_map = 0;
8840 /* The index in submaps[] of the first keymap that has a binding for
8841 this key sequence. In other words, the lowest i such that
8842 submaps[i] is non-nil. */
8843 volatile int first_binding;
8844 /* Index of the first key that has no binding.
8845 It is useless to try fkey.start larger than that. */
8846 volatile int first_unbound;
8848 /* If t < mock_input, then KEYBUF[t] should be read as the next
8849 input key.
8851 We use this to recover after recognizing a function key. Once we
8852 realize that a suffix of the current key sequence is actually a
8853 function key's escape sequence, we replace the suffix with the
8854 function key's binding from Vfunction_key_map. Now keybuf
8855 contains a new and different key sequence, so the echo area,
8856 this_command_keys, and the submaps and defs arrays are wrong. In
8857 this situation, we set mock_input to t, set t to 0, and jump to
8858 restart_sequence; the loop will read keys from keybuf up until
8859 mock_input, thus rebuilding the state; and then it will resume
8860 reading characters from the keyboard. */
8861 volatile int mock_input = 0;
8863 /* If the sequence is unbound in submaps[], then
8864 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8865 and fkey.map is its binding.
8867 These might be > t, indicating that all function key scanning
8868 should hold off until t reaches them. We do this when we've just
8869 recognized a function key, to avoid searching for the function
8870 key's again in Vfunction_key_map. */
8871 volatile keyremap fkey;
8873 /* Likewise, for key_translation_map. */
8874 volatile keyremap keytran;
8876 /* If we receive a `switch-frame' or `select-window' event in the middle of
8877 a key sequence, we put it off for later.
8878 While we're reading, we keep the event here. */
8879 volatile Lisp_Object delayed_switch_frame;
8881 /* See the comment below... */
8882 #if defined (GOBBLE_FIRST_EVENT)
8883 Lisp_Object first_event;
8884 #endif
8886 volatile Lisp_Object original_uppercase;
8887 volatile int original_uppercase_position = -1;
8889 /* Gets around Microsoft compiler limitations. */
8890 int dummyflag = 0;
8892 struct buffer *starting_buffer;
8894 /* List of events for which a fake prefix key has been generated. */
8895 volatile Lisp_Object fake_prefixed_keys = Qnil;
8897 #if defined (GOBBLE_FIRST_EVENT)
8898 int junk;
8899 #endif
8901 struct gcpro gcpro1;
8903 GCPRO1 (fake_prefixed_keys);
8904 raw_keybuf_count = 0;
8906 last_nonmenu_event = Qnil;
8908 delayed_switch_frame = Qnil;
8909 fkey.map = fkey.parent = Vfunction_key_map;
8910 keytran.map = keytran.parent = Vkey_translation_map;
8911 fkey.start = fkey.end = 0;
8912 keytran.start = keytran.end = 0;
8914 if (INTERACTIVE)
8916 if (!NILP (prompt))
8917 echo_prompt (prompt);
8918 else if (cursor_in_echo_area
8919 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8920 && NILP (Fzerop (Vecho_keystrokes)))
8921 /* This doesn't put in a dash if the echo buffer is empty, so
8922 you don't always see a dash hanging out in the minibuffer. */
8923 echo_dash ();
8926 /* Record the initial state of the echo area and this_command_keys;
8927 we will need to restore them if we replay a key sequence. */
8928 if (INTERACTIVE)
8929 echo_start = echo_length ();
8930 keys_start = this_command_key_count;
8931 this_single_command_key_start = keys_start;
8933 #if defined (GOBBLE_FIRST_EVENT)
8934 /* This doesn't quite work, because some of the things that read_char
8935 does cannot safely be bypassed. It seems too risky to try to make
8936 this work right. */
8938 /* Read the first char of the sequence specially, before setting
8939 up any keymaps, in case a filter runs and switches buffers on us. */
8940 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8941 &junk, NULL);
8942 #endif /* GOBBLE_FIRST_EVENT */
8944 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8945 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8946 from_string = Qnil;
8948 /* We jump here when the key sequence has been thoroughly changed, and
8949 we need to rescan it starting from the beginning. When we jump here,
8950 keybuf[0..mock_input] holds the sequence we should reread. */
8951 replay_sequence:
8953 starting_buffer = current_buffer;
8954 first_unbound = bufsize + 1;
8956 /* Build our list of keymaps.
8957 If we recognize a function key and replace its escape sequence in
8958 keybuf with its symbol, or if the sequence starts with a mouse
8959 click and we need to switch buffers, we jump back here to rebuild
8960 the initial keymaps from the current buffer. */
8961 nmaps = 0;
8963 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8965 if (2 > nmaps_allocated)
8967 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
8968 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
8969 nmaps_allocated = 2;
8971 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8972 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8974 else if (!NILP (Voverriding_local_map))
8976 if (2 > nmaps_allocated)
8978 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
8979 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
8980 nmaps_allocated = 2;
8982 if (!NILP (Voverriding_local_map))
8983 submaps[nmaps++] = Voverriding_local_map;
8985 else
8987 int nminor;
8988 int total;
8989 Lisp_Object *maps;
8991 nminor = current_minor_maps (0, &maps);
8992 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8994 if (total > nmaps_allocated)
8996 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8997 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8998 nmaps_allocated = total;
9001 if (!NILP (orig_keymap))
9002 submaps[nmaps++] = orig_keymap;
9004 bcopy (maps, (void *) (submaps + nmaps),
9005 nminor * sizeof (submaps[0]));
9007 nmaps += nminor;
9009 submaps[nmaps++] = orig_local_map;
9011 submaps[nmaps++] = current_global_map;
9013 /* Find an accurate initial value for first_binding. */
9014 for (first_binding = 0; first_binding < nmaps; first_binding++)
9015 if (! NILP (submaps[first_binding]))
9016 break;
9018 /* Start from the beginning in keybuf. */
9019 t = 0;
9021 /* These are no-ops the first time through, but if we restart, they
9022 revert the echo area and this_command_keys to their original state. */
9023 this_command_key_count = keys_start;
9024 if (INTERACTIVE && t < mock_input)
9025 echo_truncate (echo_start);
9027 /* If the best binding for the current key sequence is a keymap, or
9028 we may be looking at a function key's escape sequence, keep on
9029 reading. */
9030 while (first_binding < nmaps
9031 /* Keep reading as long as there's a prefix binding. */
9032 ? !NILP (submaps[first_binding])
9033 /* Don't return in the middle of a possible function key sequence,
9034 if the only bindings we found were via case conversion.
9035 Thus, if ESC O a has a function-key-map translation
9036 and ESC o has a binding, don't return after ESC O,
9037 so that we can translate ESC O plus the next character. */
9038 : (fkey.start < t || keytran.start < t))
9040 Lisp_Object key;
9041 int used_mouse_menu = 0;
9043 /* Where the last real key started. If we need to throw away a
9044 key that has expanded into more than one element of keybuf
9045 (say, a mouse click on the mode line which is being treated
9046 as [mode-line (mouse-...)], then we backtrack to this point
9047 of keybuf. */
9048 volatile int last_real_key_start;
9050 /* These variables are analogous to echo_start and keys_start;
9051 while those allow us to restart the entire key sequence,
9052 echo_local_start and keys_local_start allow us to throw away
9053 just one key. */
9054 volatile int echo_local_start, keys_local_start, local_first_binding;
9056 eassert (fkey.end == t || (fkey.end > t && fkey.end <= mock_input));
9057 eassert (fkey.start <= fkey.end);
9058 eassert (keytran.start <= keytran.end);
9059 /* key-translation-map is applied *after* function-key-map. */
9060 eassert (keytran.end <= fkey.start);
9062 if (first_unbound < fkey.start && first_unbound < keytran.start)
9063 { /* The prefix upto first_unbound has no binding and has
9064 no translation left to do either, so we know it's unbound.
9065 If we don't stop now, we risk staying here indefinitely
9066 (if the user keeps entering fkey or keytran prefixes
9067 like C-c ESC ESC ESC ESC ...) */
9068 int i;
9069 for (i = first_unbound + 1; i < t; i++)
9070 keybuf[i - first_unbound - 1] = keybuf[i];
9071 mock_input = t - first_unbound - 1;
9072 fkey.end = fkey.start -= first_unbound + 1;
9073 fkey.map = fkey.parent;
9074 keytran.end = keytran.start -= first_unbound + 1;
9075 keytran.map = keytran.parent;
9076 goto replay_sequence;
9079 if (t >= bufsize)
9080 error ("Key sequence too long");
9082 if (INTERACTIVE)
9083 echo_local_start = echo_length ();
9084 keys_local_start = this_command_key_count;
9085 local_first_binding = first_binding;
9087 replay_key:
9088 /* These are no-ops, unless we throw away a keystroke below and
9089 jumped back up to replay_key; in that case, these restore the
9090 variables to their original state, allowing us to replay the
9091 loop. */
9092 if (INTERACTIVE && t < mock_input)
9093 echo_truncate (echo_local_start);
9094 this_command_key_count = keys_local_start;
9095 first_binding = local_first_binding;
9097 /* By default, assume each event is "real". */
9098 last_real_key_start = t;
9100 /* Does mock_input indicate that we are re-reading a key sequence? */
9101 if (t < mock_input)
9103 key = keybuf[t];
9104 add_command_key (key);
9105 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9106 && NILP (Fzerop (Vecho_keystrokes)))
9107 echo_char (key);
9110 /* If not, we should actually read a character. */
9111 else
9114 #ifdef MULTI_KBOARD
9115 KBOARD *interrupted_kboard = current_kboard;
9116 struct frame *interrupted_frame = SELECTED_FRAME ();
9117 if (setjmp (wrong_kboard_jmpbuf))
9119 if (!NILP (delayed_switch_frame))
9121 interrupted_kboard->kbd_queue
9122 = Fcons (delayed_switch_frame,
9123 interrupted_kboard->kbd_queue);
9124 delayed_switch_frame = Qnil;
9126 while (t > 0)
9127 interrupted_kboard->kbd_queue
9128 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
9130 /* If the side queue is non-empty, ensure it begins with a
9131 switch-frame, so we'll replay it in the right context. */
9132 if (CONSP (interrupted_kboard->kbd_queue)
9133 && (key = XCAR (interrupted_kboard->kbd_queue),
9134 !(EVENT_HAS_PARAMETERS (key)
9135 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
9136 Qswitch_frame))))
9138 Lisp_Object frame;
9139 XSETFRAME (frame, interrupted_frame);
9140 interrupted_kboard->kbd_queue
9141 = Fcons (make_lispy_switch_frame (frame),
9142 interrupted_kboard->kbd_queue);
9144 mock_input = 0;
9145 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9146 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9147 goto replay_sequence;
9149 #endif
9150 key = read_char (NILP (prompt), nmaps,
9151 (Lisp_Object *) submaps, last_nonmenu_event,
9152 &used_mouse_menu, NULL);
9155 /* read_char returns t when it shows a menu and the user rejects it.
9156 Just return -1. */
9157 if (EQ (key, Qt))
9159 unbind_to (count, Qnil);
9160 UNGCPRO;
9161 return -1;
9164 /* read_char returns -1 at the end of a macro.
9165 Emacs 18 handles this by returning immediately with a
9166 zero, so that's what we'll do. */
9167 if (INTEGERP (key) && XINT (key) == -1)
9169 t = 0;
9170 /* The Microsoft C compiler can't handle the goto that
9171 would go here. */
9172 dummyflag = 1;
9173 break;
9176 /* If the current buffer has been changed from under us, the
9177 keymap may have changed, so replay the sequence. */
9178 if (BUFFERP (key))
9180 timer_resume_idle ();
9182 mock_input = t;
9183 /* Reset the current buffer from the selected window
9184 in case something changed the former and not the latter.
9185 This is to be more consistent with the behavior
9186 of the command_loop_1. */
9187 if (fix_current_buffer)
9189 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9190 Fkill_emacs (Qnil);
9191 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
9192 Fset_buffer (XWINDOW (selected_window)->buffer);
9195 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9196 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9197 goto replay_sequence;
9200 /* If we have a quit that was typed in another frame, and
9201 quit_throw_to_read_char switched buffers,
9202 replay to get the right keymap. */
9203 if (INTEGERP (key)
9204 && XINT (key) == quit_char
9205 && current_buffer != starting_buffer)
9207 GROW_RAW_KEYBUF;
9208 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9209 keybuf[t++] = key;
9210 mock_input = t;
9211 Vquit_flag = Qnil;
9212 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9213 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9214 goto replay_sequence;
9217 Vquit_flag = Qnil;
9219 if (EVENT_HAS_PARAMETERS (key)
9220 /* Either a `switch-frame' or a `select-window' event. */
9221 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
9223 /* If we're at the beginning of a key sequence, and the caller
9224 says it's okay, go ahead and return this event. If we're
9225 in the midst of a key sequence, delay it until the end. */
9226 if (t > 0 || !can_return_switch_frame)
9228 delayed_switch_frame = key;
9229 goto replay_key;
9233 GROW_RAW_KEYBUF;
9234 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9237 /* Clicks in non-text areas get prefixed by the symbol
9238 in their CHAR-ADDRESS field. For example, a click on
9239 the mode line is prefixed by the symbol `mode-line'.
9241 Furthermore, key sequences beginning with mouse clicks
9242 are read using the keymaps of the buffer clicked on, not
9243 the current buffer. So we may have to switch the buffer
9244 here.
9246 When we turn one event into two events, we must make sure
9247 that neither of the two looks like the original--so that,
9248 if we replay the events, they won't be expanded again.
9249 If not for this, such reexpansion could happen either here
9250 or when user programs play with this-command-keys. */
9251 if (EVENT_HAS_PARAMETERS (key))
9253 Lisp_Object kind;
9254 Lisp_Object string;
9256 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
9257 if (EQ (kind, Qmouse_click))
9259 Lisp_Object window, posn;
9261 window = POSN_WINDOW (EVENT_START (key));
9262 posn = POSN_POSN (EVENT_START (key));
9264 if (CONSP (posn)
9265 || (!NILP (fake_prefixed_keys)
9266 && !NILP (Fmemq (key, fake_prefixed_keys))))
9268 /* We're looking a second time at an event for which
9269 we generated a fake prefix key. Set
9270 last_real_key_start appropriately. */
9271 if (t > 0)
9272 last_real_key_start = t - 1;
9275 /* Key sequences beginning with mouse clicks are
9276 read using the keymaps in the buffer clicked on,
9277 not the current buffer. If we're at the
9278 beginning of a key sequence, switch buffers. */
9279 if (last_real_key_start == 0
9280 && WINDOWP (window)
9281 && BUFFERP (XWINDOW (window)->buffer)
9282 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
9284 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9285 keybuf[t] = key;
9286 mock_input = t + 1;
9288 /* Arrange to go back to the original buffer once we're
9289 done reading the key sequence. Note that we can't
9290 use save_excursion_{save,restore} here, because they
9291 save point as well as the current buffer; we don't
9292 want to save point, because redisplay may change it,
9293 to accommodate a Fset_window_start or something. We
9294 don't want to do this at the top of the function,
9295 because we may get input from a subprocess which
9296 wants to change the selected window and stuff (say,
9297 emacsclient). */
9298 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
9300 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9301 Fkill_emacs (Qnil);
9302 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
9303 orig_local_map = get_local_map (PT, current_buffer,
9304 Qlocal_map);
9305 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9306 goto replay_sequence;
9309 /* For a mouse click, get the local text-property keymap
9310 of the place clicked on, rather than point. */
9311 if (last_real_key_start == 0
9312 && CONSP (XCDR (key))
9313 && ! localized_local_map)
9315 Lisp_Object map_here, start, pos;
9317 localized_local_map = 1;
9318 start = EVENT_START (key);
9320 if (CONSP (start) && POSN_INBUFFER_P (start))
9322 pos = POSN_BUFFER_POSN (start);
9323 if (INTEGERP (pos)
9324 && XINT (pos) >= BEGV
9325 && XINT (pos) <= ZV)
9327 map_here = get_local_map (XINT (pos),
9328 current_buffer, Qlocal_map);
9329 if (!EQ (map_here, orig_local_map))
9331 orig_local_map = map_here;
9332 ++localized_local_map;
9335 map_here = get_local_map (XINT (pos),
9336 current_buffer, Qkeymap);
9337 if (!EQ (map_here, orig_keymap))
9339 orig_keymap = map_here;
9340 ++localized_local_map;
9343 if (localized_local_map > 1)
9345 keybuf[t] = key;
9346 mock_input = t + 1;
9348 goto replay_sequence;
9354 /* Expand mode-line and scroll-bar events into two events:
9355 use posn as a fake prefix key. */
9356 if (SYMBOLP (posn)
9357 && (NILP (fake_prefixed_keys)
9358 || NILP (Fmemq (key, fake_prefixed_keys))))
9360 if (t + 1 >= bufsize)
9361 error ("Key sequence too long");
9363 keybuf[t] = posn;
9364 keybuf[t + 1] = key;
9365 mock_input = t + 2;
9367 /* Record that a fake prefix key has been generated
9368 for KEY. Don't modify the event; this would
9369 prevent proper action when the event is pushed
9370 back into unread-command-events. */
9371 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9373 /* If on a mode line string with a local keymap,
9374 reconsider the key sequence with that keymap. */
9375 if (string = POSN_STRING (EVENT_START (key)),
9376 (CONSP (string) && STRINGP (XCAR (string))))
9378 Lisp_Object pos, map, map2;
9380 pos = XCDR (string);
9381 string = XCAR (string);
9382 if (XINT (pos) >= 0
9383 && XINT (pos) < SCHARS (string))
9385 map = Fget_text_property (pos, Qlocal_map, string);
9386 if (!NILP (map))
9387 orig_local_map = map;
9388 map2 = Fget_text_property (pos, Qkeymap, string);
9389 if (!NILP (map2))
9390 orig_keymap = map2;
9391 if (!NILP (map) || !NILP (map2))
9392 goto replay_sequence;
9396 goto replay_key;
9398 else if (NILP (from_string)
9399 && (string = POSN_STRING (EVENT_START (key)),
9400 (CONSP (string) && STRINGP (XCAR (string)))))
9402 /* For a click on a string, i.e. overlay string or a
9403 string displayed via the `display' property,
9404 consider `local-map' and `keymap' properties of
9405 that string. */
9406 Lisp_Object pos, map, map2;
9408 pos = XCDR (string);
9409 string = XCAR (string);
9410 if (XINT (pos) >= 0
9411 && XINT (pos) < SCHARS (string))
9413 map = Fget_text_property (pos, Qlocal_map, string);
9414 if (!NILP (map))
9415 orig_local_map = map;
9416 map2 = Fget_text_property (pos, Qkeymap, string);
9417 if (!NILP (map2))
9418 orig_keymap = map2;
9420 if (!NILP (map) || !NILP (map2))
9422 from_string = string;
9423 keybuf[t++] = key;
9424 mock_input = t;
9425 goto replay_sequence;
9430 else if (CONSP (XCDR (key))
9431 && CONSP (EVENT_START (key))
9432 && CONSP (XCDR (EVENT_START (key))))
9434 Lisp_Object posn;
9436 posn = POSN_POSN (EVENT_START (key));
9437 /* Handle menu-bar events:
9438 insert the dummy prefix event `menu-bar'. */
9439 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9441 if (t + 1 >= bufsize)
9442 error ("Key sequence too long");
9443 keybuf[t] = posn;
9444 keybuf[t+1] = key;
9446 /* Zap the position in key, so we know that we've
9447 expanded it, and don't try to do so again. */
9448 POSN_SET_POSN (EVENT_START (key),
9449 Fcons (posn, Qnil));
9451 mock_input = t + 2;
9452 goto replay_sequence;
9454 else if (CONSP (posn))
9456 /* We're looking at the second event of a
9457 sequence which we expanded before. Set
9458 last_real_key_start appropriately. */
9459 if (last_real_key_start == t && t > 0)
9460 last_real_key_start = t - 1;
9465 /* We have finally decided that KEY is something we might want
9466 to look up. */
9467 first_binding = (follow_key (key,
9468 nmaps - first_binding,
9469 submaps + first_binding,
9470 defs + first_binding,
9471 submaps + first_binding)
9472 + first_binding);
9474 /* If KEY wasn't bound, we'll try some fallbacks. */
9475 if (first_binding < nmaps)
9476 /* This is needed for the following scenario:
9477 event 0: a down-event that gets dropped by calling replay_key.
9478 event 1: some normal prefix like C-h.
9479 After event 0, first_unbound is 0, after event 1 fkey.start
9480 and keytran.start are both 1, so when we see that C-h is bound,
9481 we need to update first_unbound. */
9482 first_unbound = max (t + 1, first_unbound);
9483 else
9485 Lisp_Object head;
9487 /* Remember the position to put an upper bound on fkey.start. */
9488 first_unbound = min (t, first_unbound);
9490 head = EVENT_HEAD (key);
9491 if (help_char_p (head) && t > 0)
9493 read_key_sequence_cmd = Vprefix_help_command;
9494 keybuf[t++] = key;
9495 last_nonmenu_event = key;
9496 /* The Microsoft C compiler can't handle the goto that
9497 would go here. */
9498 dummyflag = 1;
9499 break;
9502 if (SYMBOLP (head))
9504 Lisp_Object breakdown;
9505 int modifiers;
9507 breakdown = parse_modifiers (head);
9508 modifiers = XINT (XCAR (XCDR (breakdown)));
9509 /* Attempt to reduce an unbound mouse event to a simpler
9510 event that is bound:
9511 Drags reduce to clicks.
9512 Double-clicks reduce to clicks.
9513 Triple-clicks reduce to double-clicks, then to clicks.
9514 Down-clicks are eliminated.
9515 Double-downs reduce to downs, then are eliminated.
9516 Triple-downs reduce to double-downs, then to downs,
9517 then are eliminated. */
9518 if (modifiers & (down_modifier | drag_modifier
9519 | double_modifier | triple_modifier))
9521 while (modifiers & (down_modifier | drag_modifier
9522 | double_modifier | triple_modifier))
9524 Lisp_Object new_head, new_click;
9525 if (modifiers & triple_modifier)
9526 modifiers ^= (double_modifier | triple_modifier);
9527 else if (modifiers & double_modifier)
9528 modifiers &= ~double_modifier;
9529 else if (modifiers & drag_modifier)
9530 modifiers &= ~drag_modifier;
9531 else
9533 /* Dispose of this `down' event by simply jumping
9534 back to replay_key, to get another event.
9536 Note that if this event came from mock input,
9537 then just jumping back to replay_key will just
9538 hand it to us again. So we have to wipe out any
9539 mock input.
9541 We could delete keybuf[t] and shift everything
9542 after that to the left by one spot, but we'd also
9543 have to fix up any variable that points into
9544 keybuf, and shifting isn't really necessary
9545 anyway.
9547 Adding prefixes for non-textual mouse clicks
9548 creates two characters of mock input, and both
9549 must be thrown away. If we're only looking at
9550 the prefix now, we can just jump back to
9551 replay_key. On the other hand, if we've already
9552 processed the prefix, and now the actual click
9553 itself is giving us trouble, then we've lost the
9554 state of the keymaps we want to backtrack to, and
9555 we need to replay the whole sequence to rebuild
9558 Beyond that, only function key expansion could
9559 create more than two keys, but that should never
9560 generate mouse events, so it's okay to zero
9561 mock_input in that case too.
9563 FIXME: The above paragraph seems just plain
9564 wrong, if you consider things like
9565 xterm-mouse-mode. -stef
9567 Isn't this just the most wonderful code ever? */
9569 /* If mock_input > t + 1, the above simplification
9570 will actually end up dropping keys on the floor.
9571 This is probably OK for now, but even
9572 if mock_input <= t + 1, we need to adjust fkey
9573 and keytran.
9574 Typical case [header-line down-mouse-N]:
9575 mock_input = 2, t = 1, fkey.end = 1,
9576 last_real_key_start = 0. */
9577 if (fkey.end > last_real_key_start)
9579 fkey.end = fkey.start
9580 = min (last_real_key_start, fkey.start);
9581 fkey.map = fkey.parent;
9582 if (keytran.end > last_real_key_start)
9584 keytran.end = keytran.start
9585 = min (last_real_key_start, keytran.start);
9586 keytran.map = keytran.parent;
9589 if (t == last_real_key_start)
9591 mock_input = 0;
9592 goto replay_key;
9594 else
9596 mock_input = last_real_key_start;
9597 goto replay_sequence;
9601 new_head
9602 = apply_modifiers (modifiers, XCAR (breakdown));
9603 new_click
9604 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9606 /* Look for a binding for this new key. follow_key
9607 promises that it didn't munge submaps the
9608 last time we called it, since key was unbound. */
9609 first_binding
9610 = (follow_key (new_click,
9611 nmaps - local_first_binding,
9612 submaps + local_first_binding,
9613 defs + local_first_binding,
9614 submaps + local_first_binding)
9615 + local_first_binding);
9617 /* If that click is bound, go for it. */
9618 if (first_binding < nmaps)
9620 key = new_click;
9621 break;
9623 /* Otherwise, we'll leave key set to the drag event. */
9629 keybuf[t++] = key;
9630 /* Normally, last_nonmenu_event gets the previous key we read.
9631 But when a mouse popup menu is being used,
9632 we don't update last_nonmenu_event; it continues to hold the mouse
9633 event that preceded the first level of menu. */
9634 if (!used_mouse_menu)
9635 last_nonmenu_event = key;
9637 /* Record what part of this_command_keys is the current key sequence. */
9638 this_single_command_key_start = this_command_key_count - t;
9640 if (first_binding < nmaps && NILP (submaps[first_binding]))
9641 /* There is a binding and it's not a prefix.
9642 There is thus no function-key in this sequence.
9643 Moving fkey.start is important in this case to allow keytran.start
9644 to go over the sequence before we return (since we keep the
9645 invariant that keytran.end <= fkey.start). */
9647 if (fkey.start < t)
9648 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9650 else
9651 /* If the sequence is unbound, see if we can hang a function key
9652 off the end of it. */
9653 /* Continue scan from fkey.end until we find a bound suffix. */
9654 while (fkey.end < t)
9656 struct gcpro gcpro1, gcpro2, gcpro3;
9657 int done, diff;
9659 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9660 done = keyremap_step (keybuf, bufsize, &fkey,
9661 max (t, mock_input),
9662 /* If there's a binding (i.e.
9663 first_binding >= nmaps) we don't want
9664 to apply this function-key-mapping. */
9665 fkey.end + 1 == t && first_binding >= nmaps,
9666 &diff, prompt);
9667 UNGCPRO;
9668 if (done)
9670 mock_input = diff + max (t, mock_input);
9671 goto replay_sequence;
9675 /* Look for this sequence in key-translation-map.
9676 Scan from keytran.end until we find a bound suffix. */
9677 while (keytran.end < fkey.start)
9679 struct gcpro gcpro1, gcpro2, gcpro3;
9680 int done, diff;
9682 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9683 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9684 1, &diff, prompt);
9685 UNGCPRO;
9686 if (done)
9688 mock_input = diff + max (t, mock_input);
9689 /* Adjust the function-key-map counters. */
9690 fkey.end += diff;
9691 fkey.start += diff;
9693 goto replay_sequence;
9697 /* If KEY is not defined in any of the keymaps,
9698 and cannot be part of a function key or translation,
9699 and is an upper case letter
9700 use the corresponding lower-case letter instead. */
9701 if (first_binding >= nmaps
9702 && fkey.start >= t && keytran.start >= t
9703 && INTEGERP (key)
9704 && ((((XINT (key) & 0x3ffff)
9705 < XCHAR_TABLE (current_buffer->downcase_table)->size)
9706 && UPPERCASEP (XINT (key) & 0x3ffff))
9707 || (XINT (key) & shift_modifier)))
9709 Lisp_Object new_key;
9711 original_uppercase = key;
9712 original_uppercase_position = t - 1;
9714 if (XINT (key) & shift_modifier)
9715 XSETINT (new_key, XINT (key) & ~shift_modifier);
9716 else
9717 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9718 | (XINT (key) & ~0x3ffff)));
9720 /* We have to do this unconditionally, regardless of whether
9721 the lower-case char is defined in the keymaps, because they
9722 might get translated through function-key-map. */
9723 keybuf[t - 1] = new_key;
9724 mock_input = max (t, mock_input);
9726 goto replay_sequence;
9728 /* If KEY is not defined in any of the keymaps,
9729 and cannot be part of a function key or translation,
9730 and is a shifted function key,
9731 use the corresponding unshifted function key instead. */
9732 if (first_binding >= nmaps
9733 && fkey.start >= t && keytran.start >= t
9734 && SYMBOLP (key))
9736 Lisp_Object breakdown;
9737 int modifiers;
9739 breakdown = parse_modifiers (key);
9740 modifiers = XINT (XCAR (XCDR (breakdown)));
9741 if (modifiers & shift_modifier)
9743 Lisp_Object new_key;
9745 original_uppercase = key;
9746 original_uppercase_position = t - 1;
9748 modifiers &= ~shift_modifier;
9749 new_key = apply_modifiers (modifiers,
9750 XCAR (breakdown));
9752 keybuf[t - 1] = new_key;
9753 mock_input = max (t, mock_input);
9754 fkey.start = fkey.end = 0;
9755 keytran.start = keytran.end = 0;
9757 goto replay_sequence;
9762 if (!dummyflag)
9763 read_key_sequence_cmd = (first_binding < nmaps
9764 ? defs[first_binding]
9765 : Qnil);
9767 unread_switch_frame = delayed_switch_frame;
9768 unbind_to (count, Qnil);
9770 /* Don't downcase the last character if the caller says don't.
9771 Don't downcase it if the result is undefined, either. */
9772 if ((dont_downcase_last || first_binding >= nmaps)
9773 && t > 0
9774 && t - 1 == original_uppercase_position)
9775 keybuf[t - 1] = original_uppercase;
9777 /* Occasionally we fabricate events, perhaps by expanding something
9778 according to function-key-map, or by adding a prefix symbol to a
9779 mouse click in the scroll bar or modeline. In this cases, return
9780 the entire generated key sequence, even if we hit an unbound
9781 prefix or a definition before the end. This means that you will
9782 be able to push back the event properly, and also means that
9783 read-key-sequence will always return a logical unit.
9785 Better ideas? */
9786 for (; t < mock_input; t++)
9788 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9789 && NILP (Fzerop (Vecho_keystrokes)))
9790 echo_char (keybuf[t]);
9791 add_command_key (keybuf[t]);
9796 UNGCPRO;
9797 return t;
9800 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9801 doc: /* Read a sequence of keystrokes and return as a string or vector.
9802 The sequence is sufficient to specify a non-prefix command in the
9803 current local and global maps.
9805 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9806 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9807 as a continuation of the previous key.
9809 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9810 convert the last event to lower case. (Normally any upper case event
9811 is converted to lower case if the original event is undefined and the lower
9812 case equivalent is defined.) A non-nil value is appropriate for reading
9813 a key sequence to be defined.
9815 A C-g typed while in this function is treated like any other character,
9816 and `quit-flag' is not set.
9818 If the key sequence starts with a mouse click, then the sequence is read
9819 using the keymaps of the buffer of the window clicked in, not the buffer
9820 of the selected window as normal.
9822 `read-key-sequence' drops unbound button-down events, since you normally
9823 only care about the click or drag events which follow them. If a drag
9824 or multi-click event is unbound, but the corresponding click event would
9825 be bound, `read-key-sequence' turns the event into a click event at the
9826 drag's starting position. This means that you don't have to distinguish
9827 between click and drag, double, or triple events unless you want to.
9829 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9830 lines separating windows, and scroll bars with imaginary keys
9831 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9833 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9834 function will process a switch-frame event if the user switches frames
9835 before typing anything. If the user switches frames in the middle of a
9836 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9837 is nil, then the event will be put off until after the current key sequence.
9839 `read-key-sequence' checks `function-key-map' for function key
9840 sequences, where they wouldn't conflict with ordinary bindings. See
9841 `function-key-map' for more details.
9843 The optional fifth argument COMMAND-LOOP, if non-nil, means
9844 that this key sequence is being read by something that will
9845 read commands one after another. It should be nil if the caller
9846 will read just one key sequence. */)
9847 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9848 command_loop)
9849 Lisp_Object prompt, continue_echo, dont_downcase_last;
9850 Lisp_Object can_return_switch_frame, command_loop;
9852 Lisp_Object keybuf[30];
9853 register int i;
9854 struct gcpro gcpro1;
9855 int count = SPECPDL_INDEX ();
9857 if (!NILP (prompt))
9858 CHECK_STRING (prompt);
9859 QUIT;
9861 specbind (Qinput_method_exit_on_first_char,
9862 (NILP (command_loop) ? Qt : Qnil));
9863 specbind (Qinput_method_use_echo_area,
9864 (NILP (command_loop) ? Qt : Qnil));
9866 bzero (keybuf, sizeof keybuf);
9867 GCPRO1 (keybuf[0]);
9868 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9870 if (NILP (continue_echo))
9872 this_command_key_count = 0;
9873 this_command_key_count_reset = 0;
9874 this_single_command_key_start = 0;
9877 #ifdef HAVE_X_WINDOWS
9878 if (display_hourglass_p)
9879 cancel_hourglass ();
9880 #endif
9882 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9883 prompt, ! NILP (dont_downcase_last),
9884 ! NILP (can_return_switch_frame), 0);
9886 #if 0 /* The following is fine for code reading a key sequence and
9887 then proceeding with a lenghty computation, but it's not good
9888 for code reading keys in a loop, like an input method. */
9889 #ifdef HAVE_X_WINDOWS
9890 if (display_hourglass_p)
9891 start_hourglass ();
9892 #endif
9893 #endif
9895 if (i == -1)
9897 Vquit_flag = Qt;
9898 QUIT;
9900 UNGCPRO;
9901 return unbind_to (count, make_event_array (i, keybuf));
9904 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9905 Sread_key_sequence_vector, 1, 5, 0,
9906 doc: /* Like `read-key-sequence' but always return a vector. */)
9907 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9908 command_loop)
9909 Lisp_Object prompt, continue_echo, dont_downcase_last;
9910 Lisp_Object can_return_switch_frame, command_loop;
9912 Lisp_Object keybuf[30];
9913 register int i;
9914 struct gcpro gcpro1;
9915 int count = SPECPDL_INDEX ();
9917 if (!NILP (prompt))
9918 CHECK_STRING (prompt);
9919 QUIT;
9921 specbind (Qinput_method_exit_on_first_char,
9922 (NILP (command_loop) ? Qt : Qnil));
9923 specbind (Qinput_method_use_echo_area,
9924 (NILP (command_loop) ? Qt : Qnil));
9926 bzero (keybuf, sizeof keybuf);
9927 GCPRO1 (keybuf[0]);
9928 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9930 if (NILP (continue_echo))
9932 this_command_key_count = 0;
9933 this_command_key_count_reset = 0;
9934 this_single_command_key_start = 0;
9937 #ifdef HAVE_X_WINDOWS
9938 if (display_hourglass_p)
9939 cancel_hourglass ();
9940 #endif
9942 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9943 prompt, ! NILP (dont_downcase_last),
9944 ! NILP (can_return_switch_frame), 0);
9946 #ifdef HAVE_X_WINDOWS
9947 if (display_hourglass_p)
9948 start_hourglass ();
9949 #endif
9951 if (i == -1)
9953 Vquit_flag = Qt;
9954 QUIT;
9956 UNGCPRO;
9957 return unbind_to (count, Fvector (i, keybuf));
9960 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9961 doc: /* Execute CMD as an editor command.
9962 CMD must be a symbol that satisfies the `commandp' predicate.
9963 Optional second arg RECORD-FLAG non-nil
9964 means unconditionally put this command in `command-history'.
9965 Otherwise, that is done only if an arg is read using the minibuffer.
9966 The argument KEYS specifies the value to use instead of (this-command-keys)
9967 when reading the arguments; if it is nil, (this-command-keys) is used.
9968 The argument SPECIAL, if non-nil, means that this command is executing
9969 a special event, so ignore the prefix argument and don't clear it. */)
9970 (cmd, record_flag, keys, special)
9971 Lisp_Object cmd, record_flag, keys, special;
9973 register Lisp_Object final;
9974 register Lisp_Object tem;
9975 Lisp_Object prefixarg;
9976 struct backtrace backtrace;
9977 extern int debug_on_next_call;
9979 debug_on_next_call = 0;
9981 if (NILP (special))
9983 prefixarg = current_kboard->Vprefix_arg;
9984 Vcurrent_prefix_arg = prefixarg;
9985 current_kboard->Vprefix_arg = Qnil;
9987 else
9988 prefixarg = Qnil;
9990 if (SYMBOLP (cmd))
9992 tem = Fget (cmd, Qdisabled);
9993 if (!NILP (tem) && !NILP (Vrun_hooks))
9995 tem = Fsymbol_value (Qdisabled_command_function);
9996 if (!NILP (tem))
9997 return call1 (Vrun_hooks, Qdisabled_command_function);
10001 while (1)
10003 final = Findirect_function (cmd, Qnil);
10005 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
10007 struct gcpro gcpro1, gcpro2;
10009 GCPRO2 (cmd, prefixarg);
10010 do_autoload (final, cmd);
10011 UNGCPRO;
10013 else
10014 break;
10017 if (STRINGP (final) || VECTORP (final))
10019 /* If requested, place the macro in the command history. For
10020 other sorts of commands, call-interactively takes care of
10021 this. */
10022 if (!NILP (record_flag))
10024 Vcommand_history
10025 = Fcons (Fcons (Qexecute_kbd_macro,
10026 Fcons (final, Fcons (prefixarg, Qnil))),
10027 Vcommand_history);
10029 /* Don't keep command history around forever. */
10030 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
10032 tem = Fnthcdr (Vhistory_length, Vcommand_history);
10033 if (CONSP (tem))
10034 XSETCDR (tem, Qnil);
10038 return Fexecute_kbd_macro (final, prefixarg, Qnil);
10041 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
10043 backtrace.next = backtrace_list;
10044 backtrace_list = &backtrace;
10045 backtrace.function = &Qcall_interactively;
10046 backtrace.args = &cmd;
10047 backtrace.nargs = 1;
10048 backtrace.evalargs = 0;
10049 backtrace.debug_on_exit = 0;
10051 tem = Fcall_interactively (cmd, record_flag, keys);
10053 backtrace_list = backtrace.next;
10054 return tem;
10056 return Qnil;
10061 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
10062 1, 1, "P",
10063 doc: /* Read function name, then read its arguments and call it.
10065 To pass a numeric argument to the command you are invoking with, specify
10066 the numeric argument to this command.
10068 Noninteractively, the argument PREFIXARG is the prefix argument to
10069 give to the command you invoke, if it asks for an argument. */)
10070 (prefixarg)
10071 Lisp_Object prefixarg;
10073 Lisp_Object function;
10074 char buf[40];
10075 int saved_last_point_position;
10076 Lisp_Object saved_keys, saved_last_point_position_buffer;
10077 Lisp_Object bindings, value;
10078 struct gcpro gcpro1, gcpro2, gcpro3;
10079 #ifdef HAVE_X_WINDOWS
10080 /* The call to Fcompleting_read wil start and cancel the hourglass,
10081 but if the hourglass was already scheduled, this means that no
10082 hourglass will be shown for the actual M-x command itself.
10083 So we restart it if it is already scheduled. Note that checking
10084 hourglass_shown_p is not enough, normally the hourglass is not shown,
10085 just scheduled to be shown. */
10086 int hstarted = hourglass_started ();
10087 #endif
10089 saved_keys = Fvector (this_command_key_count,
10090 XVECTOR (this_command_keys)->contents);
10091 saved_last_point_position_buffer = last_point_position_buffer;
10092 saved_last_point_position = last_point_position;
10093 buf[0] = 0;
10094 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
10096 if (EQ (prefixarg, Qminus))
10097 strcpy (buf, "- ");
10098 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
10099 strcpy (buf, "C-u ");
10100 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
10101 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
10102 else if (INTEGERP (prefixarg))
10103 sprintf (buf, "%ld ", (long) XINT (prefixarg));
10105 /* This isn't strictly correct if execute-extended-command
10106 is bound to anything else. Perhaps it should use
10107 this_command_keys? */
10108 strcat (buf, "M-x ");
10110 /* Prompt with buf, and then read a string, completing from and
10111 restricting to the set of all defined commands. Don't provide
10112 any initial input. Save the command read on the extended-command
10113 history list. */
10114 function = Fcompleting_read (build_string (buf),
10115 Vobarray, Qcommandp,
10116 Qt, Qnil, Qextended_command_history, Qnil,
10117 Qnil);
10119 #ifdef HAVE_X_WINDOWS
10120 if (hstarted) start_hourglass ();
10121 #endif
10123 if (STRINGP (function) && SCHARS (function) == 0)
10124 error ("No command name given");
10126 /* Set this_command_keys to the concatenation of saved_keys and
10127 function, followed by a RET. */
10129 Lisp_Object *keys;
10130 int i;
10132 this_command_key_count = 0;
10133 this_command_key_count_reset = 0;
10134 this_single_command_key_start = 0;
10136 keys = XVECTOR (saved_keys)->contents;
10137 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
10138 add_command_key (keys[i]);
10140 for (i = 0; i < SCHARS (function); i++)
10141 add_command_key (Faref (function, make_number (i)));
10143 add_command_key (make_number ('\015'));
10146 last_point_position = saved_last_point_position;
10147 last_point_position_buffer = saved_last_point_position_buffer;
10149 UNGCPRO;
10151 function = Fintern (function, Qnil);
10152 current_kboard->Vprefix_arg = prefixarg;
10153 Vthis_command = function;
10154 real_this_command = function;
10156 /* If enabled, show which key runs this command. */
10157 if (!NILP (Vsuggest_key_bindings)
10158 && NILP (Vexecuting_kbd_macro)
10159 && SYMBOLP (function))
10160 bindings = Fwhere_is_internal (function, Voverriding_local_map,
10161 Qt, Qnil, Qnil);
10162 else
10163 bindings = Qnil;
10165 value = Qnil;
10166 GCPRO2 (bindings, value);
10167 value = Fcommand_execute (function, Qt, Qnil, Qnil);
10169 /* If the command has a key binding, print it now. */
10170 if (!NILP (bindings)
10171 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
10172 Qmouse_movement)))
10174 /* But first wait, and skip the message if there is input. */
10175 Lisp_Object waited;
10177 /* If this command displayed something in the echo area;
10178 wait a few seconds, then display our suggestion message. */
10179 if (NILP (echo_area_buffer[0]))
10180 waited = sit_for (make_number (0), 0, 2);
10181 else if (NUMBERP (Vsuggest_key_bindings))
10182 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10183 else
10184 waited = sit_for (make_number (2), 0, 2);
10186 if (!NILP (waited) && ! CONSP (Vunread_command_events))
10188 Lisp_Object binding;
10189 char *newmessage;
10190 int message_p = push_message ();
10191 int count = SPECPDL_INDEX ();
10193 record_unwind_protect (pop_message_unwind, Qnil);
10194 binding = Fkey_description (bindings, Qnil);
10196 newmessage
10197 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
10198 + SBYTES (binding)
10199 + 100);
10200 sprintf (newmessage, "You can run the command `%s' with %s",
10201 SDATA (SYMBOL_NAME (function)),
10202 SDATA (binding));
10203 message2_nolog (newmessage,
10204 strlen (newmessage),
10205 STRING_MULTIBYTE (binding));
10206 if (NUMBERP (Vsuggest_key_bindings))
10207 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10208 else
10209 waited = sit_for (make_number (2), 0, 2);
10211 if (!NILP (waited) && message_p)
10212 restore_message ();
10214 unbind_to (count, Qnil);
10218 RETURN_UNGCPRO (value);
10222 /* Return nonzero if input events are pending. */
10225 detect_input_pending ()
10227 if (!input_pending)
10228 get_input_pending (&input_pending, 0);
10230 return input_pending;
10233 /* Return nonzero if input events other than mouse movements are
10234 pending. */
10237 detect_input_pending_ignore_squeezables ()
10239 if (!input_pending)
10240 get_input_pending (&input_pending, READABLE_EVENTS_IGNORE_SQUEEZABLES);
10242 return input_pending;
10245 /* Return nonzero if input events are pending, and run any pending timers. */
10248 detect_input_pending_run_timers (do_display)
10249 int do_display;
10251 int old_timers_run = timers_run;
10253 if (!input_pending)
10254 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
10256 if (old_timers_run != timers_run && do_display)
10258 redisplay_preserve_echo_area (8);
10259 /* The following fixes a bug when using lazy-lock with
10260 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
10261 from an idle timer function. The symptom of the bug is that
10262 the cursor sometimes doesn't become visible until the next X
10263 event is processed. --gerd. */
10264 if (rif)
10265 rif->flush_display (NULL);
10268 return input_pending;
10271 /* This is called in some cases before a possible quit.
10272 It cases the next call to detect_input_pending to recompute input_pending.
10273 So calling this function unnecessarily can't do any harm. */
10275 void
10276 clear_input_pending ()
10278 input_pending = 0;
10281 /* Return nonzero if there are pending requeued events.
10282 This isn't used yet. The hope is to make wait_reading_process_output
10283 call it, and return if it runs Lisp code that unreads something.
10284 The problem is, kbd_buffer_get_event needs to be fixed to know what
10285 to do in that case. It isn't trivial. */
10288 requeued_events_pending_p ()
10290 return (!NILP (Vunread_command_events) || unread_command_char != -1);
10294 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
10295 doc: /* Return t if command input is currently available with no wait.
10296 Actually, the value is nil only if we can be sure that no input is available;
10297 if there is a doubt, the value is t. */)
10300 if (!NILP (Vunread_command_events) || unread_command_char != -1
10301 || !NILP (Vunread_post_input_method_events)
10302 || !NILP (Vunread_input_method_events))
10303 return (Qt);
10305 get_input_pending (&input_pending,
10306 READABLE_EVENTS_DO_TIMERS_NOW
10307 | READABLE_EVENTS_FILTER_EVENTS);
10308 return input_pending > 0 ? Qt : Qnil;
10311 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
10312 doc: /* Return vector of last 300 events, not counting those from keyboard macros. */)
10315 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
10316 Lisp_Object val;
10318 if (total_keys < NUM_RECENT_KEYS)
10319 return Fvector (total_keys, keys);
10320 else
10322 val = Fvector (NUM_RECENT_KEYS, keys);
10323 bcopy (keys + recent_keys_index,
10324 XVECTOR (val)->contents,
10325 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
10326 bcopy (keys,
10327 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
10328 recent_keys_index * sizeof (Lisp_Object));
10329 return val;
10333 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10334 doc: /* Return the key sequence that invoked this command.
10335 However, if the command has called `read-key-sequence', it returns
10336 the last key sequence that has been read.
10337 The value is a string or a vector.
10339 See also `this-command-keys-vector'. */)
10342 return make_event_array (this_command_key_count,
10343 XVECTOR (this_command_keys)->contents);
10346 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10347 doc: /* Return the key sequence that invoked this command, as a vector.
10348 However, if the command has called `read-key-sequence', it returns
10349 the last key sequence that has been read.
10351 See also `this-command-keys'. */)
10354 return Fvector (this_command_key_count,
10355 XVECTOR (this_command_keys)->contents);
10358 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10359 Sthis_single_command_keys, 0, 0, 0,
10360 doc: /* Return the key sequence that invoked this command.
10361 More generally, it returns the last key sequence read, either by
10362 the command loop or by `read-key-sequence'.
10363 Unlike `this-command-keys', this function's value
10364 does not include prefix arguments.
10365 The value is always a vector. */)
10368 return Fvector (this_command_key_count
10369 - this_single_command_key_start,
10370 (XVECTOR (this_command_keys)->contents
10371 + this_single_command_key_start));
10374 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10375 Sthis_single_command_raw_keys, 0, 0, 0,
10376 doc: /* Return the raw events that were read for this command.
10377 More generally, it returns the last key sequence read, either by
10378 the command loop or by `read-key-sequence'.
10379 Unlike `this-single-command-keys', this function's value
10380 shows the events before all translations (except for input methods).
10381 The value is always a vector. */)
10384 return Fvector (raw_keybuf_count,
10385 (XVECTOR (raw_keybuf)->contents));
10388 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
10389 Sreset_this_command_lengths, 0, 0, 0,
10390 doc: /* Make the unread events replace the last command and echo.
10391 Used in `universal-argument-other-key'.
10393 `universal-argument-other-key' rereads the event just typed.
10394 It then gets translated through `function-key-map'.
10395 The translated event has to replace the real events,
10396 both in the value of (this-command-keys) and in echoing.
10397 To achieve this, `universal-argument-other-key' calls
10398 `reset-this-command-lengths', which discards the record of reading
10399 these events the first time. */)
10402 this_command_key_count = before_command_key_count;
10403 if (this_command_key_count < this_single_command_key_start)
10404 this_single_command_key_start = this_command_key_count;
10406 echo_truncate (before_command_echo_length);
10408 /* Cause whatever we put into unread-command-events
10409 to echo as if it were being freshly read from the keyboard. */
10410 this_command_key_count_reset = 1;
10412 return Qnil;
10415 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10416 Sclear_this_command_keys, 0, 1, 0,
10417 doc: /* Clear out the vector that `this-command-keys' returns.
10418 Also clear the record of the last 100 events, unless optional arg
10419 KEEP-RECORD is non-nil. */)
10420 (keep_record)
10421 Lisp_Object keep_record;
10423 int i;
10425 this_command_key_count = 0;
10426 this_command_key_count_reset = 0;
10428 if (NILP (keep_record))
10430 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
10431 XVECTOR (recent_keys)->contents[i] = Qnil;
10432 total_keys = 0;
10433 recent_keys_index = 0;
10435 return Qnil;
10438 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10439 doc: /* Return the current depth in recursive edits. */)
10442 Lisp_Object temp;
10443 XSETFASTINT (temp, command_loop_level + minibuf_level);
10444 return temp;
10447 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10448 "FOpen dribble file: ",
10449 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10450 If FILE is nil, close any open dribble file. */)
10451 (file)
10452 Lisp_Object file;
10454 if (dribble)
10456 BLOCK_INPUT;
10457 fclose (dribble);
10458 UNBLOCK_INPUT;
10459 dribble = 0;
10461 if (!NILP (file))
10463 file = Fexpand_file_name (file, Qnil);
10464 dribble = fopen (SDATA (file), "w");
10465 if (dribble == 0)
10466 report_file_error ("Opening dribble", Fcons (file, Qnil));
10468 return Qnil;
10471 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10472 doc: /* Discard the contents of the terminal input buffer.
10473 Also end any kbd macro being defined. */)
10476 if (!NILP (current_kboard->defining_kbd_macro))
10478 /* Discard the last command from the macro. */
10479 Fcancel_kbd_macro_events ();
10480 end_kbd_macro ();
10483 update_mode_lines++;
10485 Vunread_command_events = Qnil;
10486 unread_command_char = -1;
10488 discard_tty_input ();
10490 kbd_fetch_ptr = kbd_store_ptr;
10491 input_pending = 0;
10493 return Qnil;
10496 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10497 doc: /* Stop Emacs and return to superior process. You can resume later.
10498 If `cannot-suspend' is non-nil, or if the system doesn't support job
10499 control, run a subshell instead.
10501 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10502 to be read as terminal input by Emacs's parent, after suspension.
10504 Before suspending, run the normal hook `suspend-hook'.
10505 After resumption run the normal hook `suspend-resume-hook'.
10507 Some operating systems cannot stop the Emacs process and resume it later.
10508 On such systems, Emacs starts a subshell instead of suspending. */)
10509 (stuffstring)
10510 Lisp_Object stuffstring;
10512 int count = SPECPDL_INDEX ();
10513 int old_height, old_width;
10514 int width, height;
10515 struct gcpro gcpro1;
10517 if (!NILP (stuffstring))
10518 CHECK_STRING (stuffstring);
10520 /* Run the functions in suspend-hook. */
10521 if (!NILP (Vrun_hooks))
10522 call1 (Vrun_hooks, intern ("suspend-hook"));
10524 GCPRO1 (stuffstring);
10525 get_frame_size (&old_width, &old_height);
10526 reset_sys_modes ();
10527 /* sys_suspend can get an error if it tries to fork a subshell
10528 and the system resources aren't available for that. */
10529 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
10530 Qnil);
10531 stuff_buffered_input (stuffstring);
10532 if (cannot_suspend)
10533 sys_subshell ();
10534 else
10535 sys_suspend ();
10536 unbind_to (count, Qnil);
10538 /* Check if terminal/window size has changed.
10539 Note that this is not useful when we are running directly
10540 with a window system; but suspend should be disabled in that case. */
10541 get_frame_size (&width, &height);
10542 if (width != old_width || height != old_height)
10543 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10545 /* Run suspend-resume-hook. */
10546 if (!NILP (Vrun_hooks))
10547 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10549 UNGCPRO;
10550 return Qnil;
10553 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10554 Then in any case stuff anything Emacs has read ahead and not used. */
10556 void
10557 stuff_buffered_input (stuffstring)
10558 Lisp_Object stuffstring;
10560 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10561 register unsigned char *p;
10563 if (STRINGP (stuffstring))
10565 register int count;
10567 p = SDATA (stuffstring);
10568 count = SBYTES (stuffstring);
10569 while (count-- > 0)
10570 stuff_char (*p++);
10571 stuff_char ('\n');
10574 /* Anything we have read ahead, put back for the shell to read. */
10575 /* ?? What should this do when we have multiple keyboards??
10576 Should we ignore anything that was typed in at the "wrong" kboard?
10578 rms: we should stuff everything back into the kboard
10579 it came from. */
10580 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10583 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10584 kbd_fetch_ptr = kbd_buffer;
10585 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10586 stuff_char (kbd_fetch_ptr->code);
10588 clear_event (kbd_fetch_ptr);
10591 input_pending = 0;
10592 #endif /* SIGTSTP */
10595 void
10596 set_waiting_for_input (time_to_clear)
10597 EMACS_TIME *time_to_clear;
10599 input_available_clear_time = time_to_clear;
10601 /* Tell interrupt_signal to throw back to read_char, */
10602 waiting_for_input = 1;
10604 /* If interrupt_signal was called before and buffered a C-g,
10605 make it run again now, to avoid timing error. */
10606 if (!NILP (Vquit_flag))
10607 quit_throw_to_read_char ();
10610 void
10611 clear_waiting_for_input ()
10613 /* Tell interrupt_signal not to throw back to read_char, */
10614 waiting_for_input = 0;
10615 input_available_clear_time = 0;
10618 /* This routine is called at interrupt level in response to C-g.
10620 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10621 is called from kbd_buffer_store_event, in handling SIGIO or
10622 SIGTINT.
10624 If `waiting_for_input' is non zero, then unless `echoing' is
10625 nonzero, immediately throw back to read_char.
10627 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10628 eval to throw, when it gets a chance. If quit-flag is already
10629 non-nil, it stops the job right away. */
10631 static SIGTYPE
10632 interrupt_signal (signalnum) /* If we don't have an argument, */
10633 int signalnum; /* some compilers complain in signal calls. */
10635 char c;
10636 /* Must preserve main program's value of errno. */
10637 int old_errno = errno;
10638 struct frame *sf = SELECTED_FRAME ();
10640 #if defined (USG) && !defined (POSIX_SIGNALS)
10641 if (!read_socket_hook && NILP (Vwindow_system))
10643 /* USG systems forget handlers when they are used;
10644 must reestablish each time */
10645 signal (SIGINT, interrupt_signal);
10646 signal (SIGQUIT, interrupt_signal);
10648 #endif /* USG */
10650 SIGNAL_THREAD_CHECK (signalnum);
10651 cancel_echoing ();
10653 if (!NILP (Vquit_flag)
10654 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
10656 /* If SIGINT isn't blocked, don't let us be interrupted by
10657 another SIGINT, it might be harmful due to non-reentrancy
10658 in I/O functions. */
10659 sigblock (sigmask (SIGINT));
10661 fflush (stdout);
10662 reset_sys_modes ();
10664 #ifdef SIGTSTP /* Support possible in later USG versions */
10666 * On systems which can suspend the current process and return to the original
10667 * shell, this command causes the user to end up back at the shell.
10668 * The "Auto-save" and "Abort" questions are not asked until
10669 * the user elects to return to emacs, at which point he can save the current
10670 * job and either dump core or continue.
10672 sys_suspend ();
10673 #else
10674 #ifdef VMS
10675 if (sys_suspend () == -1)
10677 printf ("Not running as a subprocess;\n");
10678 printf ("you can continue or abort.\n");
10680 #else /* not VMS */
10681 /* Perhaps should really fork an inferior shell?
10682 But that would not provide any way to get back
10683 to the original shell, ever. */
10684 printf ("No support for stopping a process on this operating system;\n");
10685 printf ("you can continue or abort.\n");
10686 #endif /* not VMS */
10687 #endif /* not SIGTSTP */
10688 #ifdef MSDOS
10689 /* We must remain inside the screen area when the internal terminal
10690 is used. Note that [Enter] is not echoed by dos. */
10691 cursor_to (0, 0);
10692 #endif
10693 /* It doesn't work to autosave while GC is in progress;
10694 the code used for auto-saving doesn't cope with the mark bit. */
10695 if (!gc_in_progress)
10697 printf ("Auto-save? (y or n) ");
10698 fflush (stdout);
10699 if (((c = getchar ()) & ~040) == 'Y')
10701 Fdo_auto_save (Qt, Qnil);
10702 #ifdef MSDOS
10703 printf ("\r\nAuto-save done");
10704 #else /* not MSDOS */
10705 printf ("Auto-save done\n");
10706 #endif /* not MSDOS */
10708 while (c != '\n') c = getchar ();
10710 else
10712 /* During GC, it must be safe to reenable quitting again. */
10713 Vinhibit_quit = Qnil;
10714 #ifdef MSDOS
10715 printf ("\r\n");
10716 #endif /* not MSDOS */
10717 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10718 printf ("but will instead do a real quit after garbage collection ends\r\n");
10719 fflush (stdout);
10722 #ifdef MSDOS
10723 printf ("\r\nAbort? (y or n) ");
10724 #else /* not MSDOS */
10725 #ifdef VMS
10726 printf ("Abort (and enter debugger)? (y or n) ");
10727 #else /* not VMS */
10728 printf ("Abort (and dump core)? (y or n) ");
10729 #endif /* not VMS */
10730 #endif /* not MSDOS */
10731 fflush (stdout);
10732 if (((c = getchar ()) & ~040) == 'Y')
10733 abort ();
10734 while (c != '\n') c = getchar ();
10735 #ifdef MSDOS
10736 printf ("\r\nContinuing...\r\n");
10737 #else /* not MSDOS */
10738 printf ("Continuing...\n");
10739 #endif /* not MSDOS */
10740 fflush (stdout);
10741 init_sys_modes ();
10742 sigfree ();
10744 else
10746 /* If executing a function that wants to be interrupted out of
10747 and the user has not deferred quitting by binding `inhibit-quit'
10748 then quit right away. */
10749 if (immediate_quit && NILP (Vinhibit_quit))
10751 struct gl_state_s saved;
10752 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10754 immediate_quit = 0;
10755 sigfree ();
10756 saved = gl_state;
10757 GCPRO4 (saved.object, saved.global_code,
10758 saved.current_syntax_table, saved.old_prop);
10759 Fsignal (Qquit, Qnil);
10760 gl_state = saved;
10761 UNGCPRO;
10763 else
10764 /* Else request quit when it's safe */
10765 Vquit_flag = Qt;
10768 if (waiting_for_input && !echoing)
10769 quit_throw_to_read_char ();
10771 errno = old_errno;
10774 /* Handle a C-g by making read_char return C-g. */
10776 void
10777 quit_throw_to_read_char ()
10779 sigfree ();
10780 /* Prevent another signal from doing this before we finish. */
10781 clear_waiting_for_input ();
10782 input_pending = 0;
10784 Vunread_command_events = Qnil;
10785 unread_command_char = -1;
10787 #if 0 /* Currently, sit_for is called from read_char without turning
10788 off polling. And that can call set_waiting_for_input.
10789 It seems to be harmless. */
10790 #ifdef POLL_FOR_INPUT
10791 /* May be > 1 if in recursive minibuffer. */
10792 if (poll_suppress_count == 0)
10793 abort ();
10794 #endif
10795 #endif
10796 if (FRAMEP (internal_last_event_frame)
10797 && !EQ (internal_last_event_frame, selected_frame))
10798 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10799 0, 0);
10801 _longjmp (getcjmp, 1);
10804 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10805 doc: /* Set mode of reading keyboard input.
10806 First arg INTERRUPT non-nil means use input interrupts;
10807 nil means use CBREAK mode.
10808 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10809 (no effect except in CBREAK mode).
10810 Third arg META t means accept 8-bit input (for a Meta key).
10811 META nil means ignore the top bit, on the assumption it is parity.
10812 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10813 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10814 See also `current-input-mode'. */)
10815 (interrupt, flow, meta, quit)
10816 Lisp_Object interrupt, flow, meta, quit;
10818 if (!NILP (quit)
10819 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10820 error ("set-input-mode: QUIT must be an ASCII character");
10822 #ifdef POLL_FOR_INPUT
10823 stop_polling ();
10824 #endif
10826 #ifndef DOS_NT
10827 /* this causes startup screen to be restored and messes with the mouse */
10828 reset_sys_modes ();
10829 #endif
10831 #ifdef SIGIO
10832 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10833 if (read_socket_hook)
10835 /* When using X, don't give the user a real choice,
10836 because we haven't implemented the mechanisms to support it. */
10837 #ifdef NO_SOCK_SIGIO
10838 interrupt_input = 0;
10839 #else /* not NO_SOCK_SIGIO */
10840 interrupt_input = 1;
10841 #endif /* NO_SOCK_SIGIO */
10843 else
10844 interrupt_input = !NILP (interrupt);
10845 #else /* not SIGIO */
10846 interrupt_input = 0;
10847 #endif /* not SIGIO */
10849 /* Our VMS input only works by interrupts, as of now. */
10850 #ifdef VMS
10851 interrupt_input = 1;
10852 #endif
10854 flow_control = !NILP (flow);
10855 if (NILP (meta))
10856 meta_key = 0;
10857 else if (EQ (meta, Qt))
10858 meta_key = 1;
10859 else
10860 meta_key = 2;
10861 if (!NILP (quit))
10862 /* Don't let this value be out of range. */
10863 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10865 #ifndef DOS_NT
10866 init_sys_modes ();
10867 #endif
10869 #ifdef POLL_FOR_INPUT
10870 poll_suppress_count = 1;
10871 start_polling ();
10872 #endif
10873 return Qnil;
10876 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10877 doc: /* Return information about the way Emacs currently reads keyboard input.
10878 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10879 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10880 nil, Emacs is using CBREAK mode.
10881 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10882 terminal; this does not apply if Emacs uses interrupt-driven input.
10883 META is t if accepting 8-bit input with 8th bit as Meta flag.
10884 META nil means ignoring the top bit, on the assumption it is parity.
10885 META is neither t nor nil if accepting 8-bit input and using
10886 all 8 bits as the character code.
10887 QUIT is the character Emacs currently uses to quit.
10888 The elements of this list correspond to the arguments of
10889 `set-input-mode'. */)
10892 Lisp_Object val[4];
10894 val[0] = interrupt_input ? Qt : Qnil;
10895 val[1] = flow_control ? Qt : Qnil;
10896 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10897 XSETFASTINT (val[3], quit_char);
10899 return Flist (sizeof (val) / sizeof (val[0]), val);
10902 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
10903 doc: /* Return position information for pixel coordinates X and Y.
10904 By default, X and Y are relative to text area of the selected window.
10905 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
10906 If optional fourth arg WHOLE is non-nil, X is relative to the left
10907 edge of the window.
10909 The return value is similar to a mouse click position:
10910 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10911 IMAGE (DX . DY) (WIDTH . HEIGHT))
10912 The `posn-' functions access elements of such lists. */)
10913 (x, y, frame_or_window, whole)
10914 Lisp_Object x, y, frame_or_window, whole;
10916 CHECK_NATNUM (x);
10917 CHECK_NATNUM (y);
10919 if (NILP (frame_or_window))
10920 frame_or_window = selected_window;
10922 if (WINDOWP (frame_or_window))
10924 struct window *w;
10926 CHECK_LIVE_WINDOW (frame_or_window);
10928 w = XWINDOW (frame_or_window);
10929 XSETINT (x, (XINT (x)
10930 + WINDOW_LEFT_EDGE_X (w)
10931 + (NILP (whole)
10932 ? window_box_left_offset (w, TEXT_AREA)
10933 : 0)));
10934 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
10935 frame_or_window = w->frame;
10938 CHECK_LIVE_FRAME (frame_or_window);
10940 return make_lispy_position (XFRAME (frame_or_window), &x, &y, 0);
10943 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
10944 doc: /* Return position information for buffer POS in WINDOW.
10945 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10947 Return nil if position is not visible in window. Otherwise,
10948 the return value is similar to that returned by `event-start' for
10949 a mouse click at the upper left corner of the glyph corresponding
10950 to the given buffer position:
10951 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10952 IMAGE (DX . DY) (WIDTH . HEIGHT))
10953 The `posn-' functions access elements of such lists. */)
10954 (pos, window)
10955 Lisp_Object pos, window;
10957 Lisp_Object tem;
10959 if (NILP (window))
10960 window = selected_window;
10962 tem = Fpos_visible_in_window_p (pos, window, Qt);
10963 if (!NILP (tem))
10965 Lisp_Object x = XCAR (tem);
10966 Lisp_Object y = XCAR (XCDR (tem));
10968 /* Point invisible due to hscrolling? */
10969 if (XINT (x) < 0)
10970 return Qnil;
10971 tem = Fposn_at_x_y (x, y, window, Qnil);
10974 return tem;
10979 * Set up a new kboard object with reasonable initial values.
10981 void
10982 init_kboard (kb)
10983 KBOARD *kb;
10985 kb->Voverriding_terminal_local_map = Qnil;
10986 kb->Vlast_command = Qnil;
10987 kb->Vreal_last_command = Qnil;
10988 kb->Vlast_repeatable_command = Qnil;
10989 kb->Vprefix_arg = Qnil;
10990 kb->Vlast_prefix_arg = Qnil;
10991 kb->kbd_queue = Qnil;
10992 kb->kbd_queue_has_data = 0;
10993 kb->immediate_echo = 0;
10994 kb->echo_string = Qnil;
10995 kb->echo_after_prompt = -1;
10996 kb->kbd_macro_buffer = 0;
10997 kb->kbd_macro_bufsize = 0;
10998 kb->defining_kbd_macro = Qnil;
10999 kb->Vlast_kbd_macro = Qnil;
11000 kb->reference_count = 0;
11001 kb->Vsystem_key_alist = Qnil;
11002 kb->system_key_syms = Qnil;
11003 kb->Vdefault_minibuffer_frame = Qnil;
11007 * Destroy the contents of a kboard object, but not the object itself.
11008 * We use this just before deleting it, or if we're going to initialize
11009 * it a second time.
11011 static void
11012 wipe_kboard (kb)
11013 KBOARD *kb;
11015 if (kb->kbd_macro_buffer)
11016 xfree (kb->kbd_macro_buffer);
11019 #ifdef MULTI_KBOARD
11021 /* Free KB and memory referenced from it. */
11023 void
11024 delete_kboard (kb)
11025 KBOARD *kb;
11027 KBOARD **kbp;
11029 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
11030 if (*kbp == NULL)
11031 abort ();
11032 *kbp = kb->next_kboard;
11034 /* Prevent a dangling reference to KB. */
11035 if (kb == current_kboard
11036 && FRAMEP (selected_frame)
11037 && FRAME_LIVE_P (XFRAME (selected_frame)))
11039 current_kboard = XFRAME (selected_frame)->kboard;
11040 if (current_kboard == kb)
11041 abort ();
11044 wipe_kboard (kb);
11045 xfree (kb);
11048 #endif /* MULTI_KBOARD */
11050 void
11051 init_keyboard ()
11053 /* This is correct before outermost invocation of the editor loop */
11054 command_loop_level = -1;
11055 immediate_quit = 0;
11056 quit_char = Ctl ('g');
11057 Vunread_command_events = Qnil;
11058 unread_command_char = -1;
11059 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
11060 total_keys = 0;
11061 recent_keys_index = 0;
11062 kbd_fetch_ptr = kbd_buffer;
11063 kbd_store_ptr = kbd_buffer;
11064 #ifdef HAVE_MOUSE
11065 do_mouse_tracking = Qnil;
11066 #endif
11067 input_pending = 0;
11068 interrupt_input_blocked = 0;
11069 interrupt_input_pending = 0;
11071 /* This means that command_loop_1 won't try to select anything the first
11072 time through. */
11073 internal_last_event_frame = Qnil;
11074 Vlast_event_frame = internal_last_event_frame;
11076 #ifdef MULTI_KBOARD
11077 current_kboard = initial_kboard;
11078 #endif
11079 wipe_kboard (current_kboard);
11080 init_kboard (current_kboard);
11082 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
11084 signal (SIGINT, interrupt_signal);
11085 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
11086 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
11087 SIGQUIT and we can't tell which one it will give us. */
11088 signal (SIGQUIT, interrupt_signal);
11089 #endif /* HAVE_TERMIO */
11091 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11092 #ifdef SIGIO
11093 if (!noninteractive)
11094 signal (SIGIO, input_available_signal);
11095 #endif /* SIGIO */
11097 /* Use interrupt input by default, if it works and noninterrupt input
11098 has deficiencies. */
11100 #ifdef INTERRUPT_INPUT
11101 interrupt_input = 1;
11102 #else
11103 interrupt_input = 0;
11104 #endif
11106 /* Our VMS input only works by interrupts, as of now. */
11107 #ifdef VMS
11108 interrupt_input = 1;
11109 #endif
11111 sigfree ();
11112 dribble = 0;
11114 if (keyboard_init_hook)
11115 (*keyboard_init_hook) ();
11117 #ifdef POLL_FOR_INPUT
11118 poll_suppress_count = 1;
11119 start_polling ();
11120 #endif
11123 /* This type's only use is in syms_of_keyboard, to initialize the
11124 event header symbols and put properties on them. */
11125 struct event_head {
11126 Lisp_Object *var;
11127 char *name;
11128 Lisp_Object *kind;
11131 struct event_head head_table[] = {
11132 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
11133 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
11134 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
11135 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
11136 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
11137 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
11138 /* `select-window' should be handled just like `switch-frame'
11139 in read_key_sequence. */
11140 {&Qselect_window, "select-window", &Qswitch_frame}
11143 void
11144 syms_of_keyboard ()
11146 Vpre_help_message = Qnil;
11147 staticpro (&Vpre_help_message);
11149 Vlispy_mouse_stem = build_string ("mouse");
11150 staticpro (&Vlispy_mouse_stem);
11152 /* Tool-bars. */
11153 QCimage = intern (":image");
11154 staticpro (&QCimage);
11156 staticpro (&Qhelp_echo);
11157 Qhelp_echo = intern ("help-echo");
11159 staticpro (&Qrtl);
11160 Qrtl = intern (":rtl");
11162 staticpro (&item_properties);
11163 item_properties = Qnil;
11165 staticpro (&tool_bar_item_properties);
11166 tool_bar_item_properties = Qnil;
11167 staticpro (&tool_bar_items_vector);
11168 tool_bar_items_vector = Qnil;
11170 staticpro (&real_this_command);
11171 real_this_command = Qnil;
11173 Qtimer_event_handler = intern ("timer-event-handler");
11174 staticpro (&Qtimer_event_handler);
11176 Qdisabled_command_function = intern ("disabled-command-function");
11177 staticpro (&Qdisabled_command_function);
11179 Qself_insert_command = intern ("self-insert-command");
11180 staticpro (&Qself_insert_command);
11182 Qforward_char = intern ("forward-char");
11183 staticpro (&Qforward_char);
11185 Qbackward_char = intern ("backward-char");
11186 staticpro (&Qbackward_char);
11188 Qdisabled = intern ("disabled");
11189 staticpro (&Qdisabled);
11191 Qundefined = intern ("undefined");
11192 staticpro (&Qundefined);
11194 Qpre_command_hook = intern ("pre-command-hook");
11195 staticpro (&Qpre_command_hook);
11197 Qpost_command_hook = intern ("post-command-hook");
11198 staticpro (&Qpost_command_hook);
11200 Qdeferred_action_function = intern ("deferred-action-function");
11201 staticpro (&Qdeferred_action_function);
11203 Qcommand_hook_internal = intern ("command-hook-internal");
11204 staticpro (&Qcommand_hook_internal);
11206 Qfunction_key = intern ("function-key");
11207 staticpro (&Qfunction_key);
11208 Qmouse_click = intern ("mouse-click");
11209 staticpro (&Qmouse_click);
11210 #if defined (WINDOWSNT) || defined (MAC_OS)
11211 Qlanguage_change = intern ("language-change");
11212 staticpro (&Qlanguage_change);
11213 #endif
11214 Qdrag_n_drop = intern ("drag-n-drop");
11215 staticpro (&Qdrag_n_drop);
11217 Qsave_session = intern ("save-session");
11218 staticpro (&Qsave_session);
11220 #ifdef MAC_OS
11221 Qmac_apple_event = intern ("mac-apple-event");
11222 staticpro (&Qmac_apple_event);
11223 #endif
11225 Qmenu_enable = intern ("menu-enable");
11226 staticpro (&Qmenu_enable);
11227 Qmenu_alias = intern ("menu-alias");
11228 staticpro (&Qmenu_alias);
11229 QCenable = intern (":enable");
11230 staticpro (&QCenable);
11231 QCvisible = intern (":visible");
11232 staticpro (&QCvisible);
11233 QChelp = intern (":help");
11234 staticpro (&QChelp);
11235 QCfilter = intern (":filter");
11236 staticpro (&QCfilter);
11237 QCbutton = intern (":button");
11238 staticpro (&QCbutton);
11239 QCkeys = intern (":keys");
11240 staticpro (&QCkeys);
11241 QCkey_sequence = intern (":key-sequence");
11242 staticpro (&QCkey_sequence);
11243 QCtoggle = intern (":toggle");
11244 staticpro (&QCtoggle);
11245 QCradio = intern (":radio");
11246 staticpro (&QCradio);
11248 Qmode_line = intern ("mode-line");
11249 staticpro (&Qmode_line);
11250 Qvertical_line = intern ("vertical-line");
11251 staticpro (&Qvertical_line);
11252 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
11253 staticpro (&Qvertical_scroll_bar);
11254 Qmenu_bar = intern ("menu-bar");
11255 staticpro (&Qmenu_bar);
11257 #ifdef HAVE_MOUSE
11258 Qmouse_fixup_help_message = intern ("mouse-fixup-help-message");
11259 staticpro (&Qmouse_fixup_help_message);
11260 #endif
11262 Qabove_handle = intern ("above-handle");
11263 staticpro (&Qabove_handle);
11264 Qhandle = intern ("handle");
11265 staticpro (&Qhandle);
11266 Qbelow_handle = intern ("below-handle");
11267 staticpro (&Qbelow_handle);
11268 Qup = intern ("up");
11269 staticpro (&Qup);
11270 Qdown = intern ("down");
11271 staticpro (&Qdown);
11272 Qtop = intern ("top");
11273 staticpro (&Qtop);
11274 Qbottom = intern ("bottom");
11275 staticpro (&Qbottom);
11276 Qend_scroll = intern ("end-scroll");
11277 staticpro (&Qend_scroll);
11278 Qratio = intern ("ratio");
11279 staticpro (&Qratio);
11281 Qevent_kind = intern ("event-kind");
11282 staticpro (&Qevent_kind);
11283 Qevent_symbol_elements = intern ("event-symbol-elements");
11284 staticpro (&Qevent_symbol_elements);
11285 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
11286 staticpro (&Qevent_symbol_element_mask);
11287 Qmodifier_cache = intern ("modifier-cache");
11288 staticpro (&Qmodifier_cache);
11290 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
11291 staticpro (&Qrecompute_lucid_menubar);
11292 Qactivate_menubar_hook = intern ("activate-menubar-hook");
11293 staticpro (&Qactivate_menubar_hook);
11295 Qpolling_period = intern ("polling-period");
11296 staticpro (&Qpolling_period);
11298 Qinput_method_function = intern ("input-method-function");
11299 staticpro (&Qinput_method_function);
11301 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
11302 staticpro (&Qinput_method_exit_on_first_char);
11303 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
11304 staticpro (&Qinput_method_use_echo_area);
11306 Fset (Qinput_method_exit_on_first_char, Qnil);
11307 Fset (Qinput_method_use_echo_area, Qnil);
11309 last_point_position_buffer = Qnil;
11310 last_point_position_window = Qnil;
11313 struct event_head *p;
11315 for (p = head_table;
11316 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
11317 p++)
11319 *p->var = intern (p->name);
11320 staticpro (p->var);
11321 Fput (*p->var, Qevent_kind, *p->kind);
11322 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
11326 button_down_location = Fmake_vector (make_number (1), Qnil);
11327 staticpro (&button_down_location);
11328 mouse_syms = Fmake_vector (make_number (1), Qnil);
11329 staticpro (&mouse_syms);
11330 wheel_syms = Fmake_vector (make_number (2), Qnil);
11331 staticpro (&wheel_syms);
11334 int i;
11335 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
11337 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11338 for (i = 0; i < len; i++)
11339 if (modifier_names[i])
11340 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
11341 staticpro (&modifier_symbols);
11344 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11345 staticpro (&recent_keys);
11347 this_command_keys = Fmake_vector (make_number (40), Qnil);
11348 staticpro (&this_command_keys);
11350 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11351 staticpro (&raw_keybuf);
11353 Qextended_command_history = intern ("extended-command-history");
11354 Fset (Qextended_command_history, Qnil);
11355 staticpro (&Qextended_command_history);
11357 accent_key_syms = Qnil;
11358 staticpro (&accent_key_syms);
11360 func_key_syms = Qnil;
11361 staticpro (&func_key_syms);
11363 drag_n_drop_syms = Qnil;
11364 staticpro (&drag_n_drop_syms);
11366 unread_switch_frame = Qnil;
11367 staticpro (&unread_switch_frame);
11369 internal_last_event_frame = Qnil;
11370 staticpro (&internal_last_event_frame);
11372 read_key_sequence_cmd = Qnil;
11373 staticpro (&read_key_sequence_cmd);
11375 menu_bar_one_keymap_changed_items = Qnil;
11376 staticpro (&menu_bar_one_keymap_changed_items);
11378 menu_bar_items_vector = Qnil;
11379 staticpro (&menu_bar_items_vector);
11381 help_form_saved_window_configs = Qnil;
11382 staticpro (&help_form_saved_window_configs);
11384 defsubr (&Scurrent_idle_time);
11385 defsubr (&Sevent_convert_list);
11386 defsubr (&Sread_key_sequence);
11387 defsubr (&Sread_key_sequence_vector);
11388 defsubr (&Srecursive_edit);
11389 #ifdef HAVE_MOUSE
11390 defsubr (&Strack_mouse);
11391 #endif
11392 defsubr (&Sinput_pending_p);
11393 defsubr (&Scommand_execute);
11394 defsubr (&Srecent_keys);
11395 defsubr (&Sthis_command_keys);
11396 defsubr (&Sthis_command_keys_vector);
11397 defsubr (&Sthis_single_command_keys);
11398 defsubr (&Sthis_single_command_raw_keys);
11399 defsubr (&Sreset_this_command_lengths);
11400 defsubr (&Sclear_this_command_keys);
11401 defsubr (&Ssuspend_emacs);
11402 defsubr (&Sabort_recursive_edit);
11403 defsubr (&Sexit_recursive_edit);
11404 defsubr (&Srecursion_depth);
11405 defsubr (&Stop_level);
11406 defsubr (&Sdiscard_input);
11407 defsubr (&Sopen_dribble_file);
11408 defsubr (&Sset_input_mode);
11409 defsubr (&Scurrent_input_mode);
11410 defsubr (&Sexecute_extended_command);
11411 defsubr (&Sposn_at_point);
11412 defsubr (&Sposn_at_x_y);
11414 DEFVAR_LISP ("last-command-char", &last_command_char,
11415 doc: /* Last input event that was part of a command. */);
11417 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
11418 doc: /* Last input event that was part of a command. */);
11420 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
11421 doc: /* Last input event in a command, except for mouse menu events.
11422 Mouse menus give back keys that don't look like mouse events;
11423 this variable holds the actual mouse event that led to the menu,
11424 so that you can determine whether the command was run by mouse or not. */);
11426 DEFVAR_LISP ("last-input-char", &last_input_char,
11427 doc: /* Last input event. */);
11429 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
11430 doc: /* Last input event. */);
11432 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
11433 doc: /* List of events to be read as the command input.
11434 These events are processed first, before actual keyboard input.
11435 Events read from this list are not normally added to `this-command-keys',
11436 as they will already have been added once as they were read for the first time.
11437 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11438 Vunread_command_events = Qnil;
11440 DEFVAR_INT ("unread-command-char", &unread_command_char,
11441 doc: /* If not -1, an object to be read as next command input event. */);
11443 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
11444 doc: /* List of events to be processed as input by input methods.
11445 These events are processed before `unread-command-events'
11446 and actual keyboard input, but are not given to `input-method-function'. */);
11447 Vunread_post_input_method_events = Qnil;
11449 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
11450 doc: /* List of events to be processed as input by input methods.
11451 These events are processed after `unread-command-events', but
11452 before actual keyboard input.
11453 If there's an active input method, the events are given to
11454 `input-method-function'. */);
11455 Vunread_input_method_events = Qnil;
11457 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
11458 doc: /* Meta-prefix character code.
11459 Meta-foo as command input turns into this character followed by foo. */);
11460 XSETINT (meta_prefix_char, 033);
11462 DEFVAR_KBOARD ("last-command", Vlast_command,
11463 doc: /* The last command executed.
11464 Normally a symbol with a function definition, but can be whatever was found
11465 in the keymap, or whatever the variable `this-command' was set to by that
11466 command.
11468 The value `mode-exit' is special; it means that the previous command
11469 read an event that told it to exit, and it did so and unread that event.
11470 In other words, the present command is the event that made the previous
11471 command exit.
11473 The value `kill-region' is special; it means that the previous command
11474 was a kill command. */);
11476 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11477 doc: /* Same as `last-command', but never altered by Lisp code. */);
11479 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command,
11480 doc: /* Last command that may be repeated.
11481 The last command executed that was not bound to an input event.
11482 This is the command `repeat' will try to repeat. */);
11484 DEFVAR_LISP ("this-command", &Vthis_command,
11485 doc: /* The command now being executed.
11486 The command can set this variable; whatever is put here
11487 will be in `last-command' during the following command. */);
11488 Vthis_command = Qnil;
11490 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
11491 doc: /* The command bound to the current key sequence before remapping.
11492 It equals `this-command' if the original command was not remapped through
11493 any of the active keymaps. Otherwise, the value of `this-command' is the
11494 result of looking up the original command in the active keymaps. */);
11495 Vthis_original_command = Qnil;
11497 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
11498 doc: /* *Number of input events between auto-saves.
11499 Zero means disable autosaving due to number of characters typed. */);
11500 auto_save_interval = 300;
11502 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
11503 doc: /* *Number of seconds idle time before auto-save.
11504 Zero or nil means disable auto-saving due to idleness.
11505 After auto-saving due to this many seconds of idle time,
11506 Emacs also does a garbage collection if that seems to be warranted. */);
11507 XSETFASTINT (Vauto_save_timeout, 30);
11509 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
11510 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11511 The value may be integer or floating point. */);
11512 Vecho_keystrokes = make_number (1);
11514 DEFVAR_INT ("polling-period", &polling_period,
11515 doc: /* *Interval between polling for input during Lisp execution.
11516 The reason for polling is to make C-g work to stop a running program.
11517 Polling is needed only when using X windows and SIGIO does not work.
11518 Polling is automatically disabled in all other cases. */);
11519 polling_period = 2;
11521 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
11522 doc: /* *Maximum time between mouse clicks to make a double-click.
11523 Measured in milliseconds. The value nil means disable double-click
11524 recognition; t means double-clicks have no time limit and are detected
11525 by position only. */);
11526 Vdouble_click_time = make_number (500);
11528 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
11529 doc: /* *Maximum mouse movement between clicks to make a double-click.
11530 On window-system frames, value is the number of pixels the mouse may have
11531 moved horizontally or vertically between two clicks to make a double-click.
11532 On non window-system frames, value is interpreted in units of 1/8 characters
11533 instead of pixels.
11535 This variable is also the threshold for motion of the mouse
11536 to count as a drag. */);
11537 double_click_fuzz = 3;
11539 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
11540 doc: /* *Non-nil means inhibit local map menu bar menus. */);
11541 inhibit_local_menu_bar_menus = 0;
11543 DEFVAR_INT ("num-input-keys", &num_input_keys,
11544 doc: /* Number of complete key sequences read as input so far.
11545 This includes key sequences read from keyboard macros.
11546 The number is effectively the number of interactive command invocations. */);
11547 num_input_keys = 0;
11549 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
11550 doc: /* Number of input events read from the keyboard so far.
11551 This does not include events generated by keyboard macros. */);
11552 num_nonmacro_input_events = 0;
11554 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
11555 doc: /* The frame in which the most recently read event occurred.
11556 If the last event came from a keyboard macro, this is set to `macro'. */);
11557 Vlast_event_frame = Qnil;
11559 /* This variable is set up in sysdep.c. */
11560 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
11561 doc: /* The ERASE character as set by the user with stty. */);
11563 DEFVAR_LISP ("help-char", &Vhelp_char,
11564 doc: /* Character to recognize as meaning Help.
11565 When it is read, do `(eval help-form)', and display result if it's a string.
11566 If the value of `help-form' is nil, this char can be read normally. */);
11567 XSETINT (Vhelp_char, Ctl ('H'));
11569 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
11570 doc: /* List of input events to recognize as meaning Help.
11571 These work just like the value of `help-char' (see that). */);
11572 Vhelp_event_list = Qnil;
11574 DEFVAR_LISP ("help-form", &Vhelp_form,
11575 doc: /* Form to execute when character `help-char' is read.
11576 If the form returns a string, that string is displayed.
11577 If `help-form' is nil, the help char is not recognized. */);
11578 Vhelp_form = Qnil;
11580 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
11581 doc: /* Command to run when `help-char' character follows a prefix key.
11582 This command is used only when there is no actual binding
11583 for that character after that prefix key. */);
11584 Vprefix_help_command = Qnil;
11586 DEFVAR_LISP ("top-level", &Vtop_level,
11587 doc: /* Form to evaluate when Emacs starts up.
11588 Useful to set before you dump a modified Emacs. */);
11589 Vtop_level = Qnil;
11591 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11592 doc: /* Translate table for keyboard input, or nil.
11593 If non-nil, the value should be a char-table. Each character read
11594 from the keyboard is looked up in this char-table. If the value found
11595 there is non-nil, then it is used instead of the actual input character.
11597 The value can also be a string or vector, but this is considered obsolete.
11598 If it is a string or vector of length N, character codes N and up are left
11599 untranslated. In a vector, an element which is nil means "no translation".
11601 This is applied to the characters supplied to input methods, not their
11602 output. See also `translation-table-for-input'. */);
11603 Vkeyboard_translate_table = Qnil;
11605 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
11606 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11607 \(Even if the operating system has support for stopping a process.\) */);
11608 cannot_suspend = 0;
11610 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
11611 doc: /* Non-nil means prompt with menus when appropriate.
11612 This is done when reading from a keymap that has a prompt string,
11613 for elements that have prompt strings.
11614 The menu is displayed on the screen
11615 if X menus were enabled at configuration
11616 time and the previous event was a mouse click prefix key.
11617 Otherwise, menu prompting uses the echo area. */);
11618 menu_prompting = 1;
11620 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
11621 doc: /* Character to see next line of menu prompt.
11622 Type this character while in a menu prompt to rotate around the lines of it. */);
11623 XSETINT (menu_prompt_more_char, ' ');
11625 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
11626 doc: /* A mask of additional modifier keys to use with every keyboard character.
11627 Emacs applies the modifiers of the character stored here to each keyboard
11628 character it reads. For example, after evaluating the expression
11629 (setq extra-keyboard-modifiers ?\\C-x)
11630 all input characters will have the control modifier applied to them.
11632 Note that the character ?\\C-@, equivalent to the integer zero, does
11633 not count as a control character; rather, it counts as a character
11634 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11635 cancels any modification. */);
11636 extra_keyboard_modifiers = 0;
11638 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
11639 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11640 The command loop sets this to nil before each command,
11641 and tests the value when the command returns.
11642 Buffer modification stores t in this variable. */);
11643 Vdeactivate_mark = Qnil;
11645 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
11646 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
11647 Vcommand_hook_internal = Qnil;
11649 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
11650 doc: /* Normal hook run before each command is executed.
11651 If an unhandled error happens in running this hook,
11652 the hook value is set to nil, since otherwise the error
11653 might happen repeatedly and make Emacs nonfunctional. */);
11654 Vpre_command_hook = Qnil;
11656 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
11657 doc: /* Normal hook run after each command is executed.
11658 If an unhandled error happens in running this hook,
11659 the hook value is set to nil, since otherwise the error
11660 might happen repeatedly and make Emacs nonfunctional. */);
11661 Vpost_command_hook = Qnil;
11663 #if 0
11664 DEFVAR_LISP ("echo-area-clear-hook", ...,
11665 doc: /* Normal hook run when clearing the echo area. */);
11666 #endif
11667 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11668 staticpro (&Qecho_area_clear_hook);
11669 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
11671 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
11672 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11673 Vlucid_menu_bar_dirty_flag = Qnil;
11675 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
11676 doc: /* List of menu bar items to move to the end of the menu bar.
11677 The elements of the list are event types that may have menu bar bindings. */);
11678 Vmenu_bar_final_items = Qnil;
11680 DEFVAR_KBOARD ("overriding-terminal-local-map",
11681 Voverriding_terminal_local_map,
11682 doc: /* Per-terminal keymap that overrides all other local keymaps.
11683 If this variable is non-nil, it is used as a keymap instead of the
11684 buffer's local map, and the minor mode keymaps and text property keymaps.
11685 It also replaces `overriding-local-map'.
11687 This variable is intended to let commands such as `universal-argument'
11688 set up a different keymap for reading the next command. */);
11690 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
11691 doc: /* Keymap that overrides all other local keymaps.
11692 If this variable is non-nil, it is used as a keymap--replacing the
11693 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11694 Voverriding_local_map = Qnil;
11696 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
11697 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11698 Otherwise, the menu bar continues to reflect the buffer's local map
11699 and the minor mode maps regardless of `overriding-local-map'. */);
11700 Voverriding_local_map_menu_flag = Qnil;
11702 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
11703 doc: /* Keymap defining bindings for special events to execute at low level. */);
11704 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11706 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11707 doc: /* *Non-nil means generate motion events for mouse motion. */);
11709 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11710 doc: /* Alist of system-specific X windows key symbols.
11711 Each element should have the form (N . SYMBOL) where N is the
11712 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11713 and SYMBOL is its name. */);
11715 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
11716 doc: /* List of deferred actions to be performed at a later time.
11717 The precise format isn't relevant here; we just check whether it is nil. */);
11718 Vdeferred_action_list = Qnil;
11720 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
11721 doc: /* Function to call to handle deferred actions, after each command.
11722 This function is called with no arguments after each command
11723 whenever `deferred-action-list' is non-nil. */);
11724 Vdeferred_action_function = Qnil;
11726 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
11727 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11728 The value can be a length of time to show the message for.
11729 If the value is non-nil and not a number, we wait 2 seconds. */);
11730 Vsuggest_key_bindings = Qt;
11732 DEFVAR_LISP ("timer-list", &Vtimer_list,
11733 doc: /* List of active absolute time timers in order of increasing time. */);
11734 Vtimer_list = Qnil;
11736 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
11737 doc: /* List of active idle-time timers in order of increasing time. */);
11738 Vtimer_idle_list = Qnil;
11740 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
11741 doc: /* If non-nil, the function that implements the current input method.
11742 It's called with one argument, a printing character that was just read.
11743 \(That means a character with code 040...0176.)
11744 Typically this function uses `read-event' to read additional events.
11745 When it does so, it should first bind `input-method-function' to nil
11746 so it will not be called recursively.
11748 The function should return a list of zero or more events
11749 to be used as input. If it wants to put back some events
11750 to be reconsidered, separately, by the input method,
11751 it can add them to the beginning of `unread-command-events'.
11753 The input method function can find in `input-method-previous-method'
11754 the previous echo area message.
11756 The input method function should refer to the variables
11757 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11758 for guidance on what to do. */);
11759 Vinput_method_function = Qnil;
11761 DEFVAR_LISP ("input-method-previous-message",
11762 &Vinput_method_previous_message,
11763 doc: /* When `input-method-function' is called, hold the previous echo area message.
11764 This variable exists because `read-event' clears the echo area
11765 before running the input method. It is nil if there was no message. */);
11766 Vinput_method_previous_message = Qnil;
11768 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
11769 doc: /* If non-nil, the function that implements the display of help.
11770 It's called with one argument, the help string to display. */);
11771 Vshow_help_function = Qnil;
11773 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
11774 doc: /* If non-nil, suppress point adjustment after executing a command.
11776 After a command is executed, if point is moved into a region that has
11777 special properties (e.g. composition, display), we adjust point to
11778 the boundary of the region. But, when a command sets this variable to
11779 non-nil, we suppress the point adjustment.
11781 This variable is set to nil before reading a command, and is checked
11782 just after executing the command. */);
11783 Vdisable_point_adjustment = Qnil;
11785 DEFVAR_LISP ("global-disable-point-adjustment",
11786 &Vglobal_disable_point_adjustment,
11787 doc: /* *If non-nil, always suppress point adjustment.
11789 The default value is nil, in which case, point adjustment are
11790 suppressed only after special commands that set
11791 `disable-point-adjustment' (which see) to non-nil. */);
11792 Vglobal_disable_point_adjustment = Qnil;
11794 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
11795 doc: /* *How long to display an echo-area message when the minibuffer is active.
11796 If the value is not a number, such messages don't time out. */);
11797 Vminibuffer_message_timeout = make_number (2);
11799 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input,
11800 doc: /* If non-nil, any keyboard input throws to this symbol.
11801 The value of that variable is passed to `quit-flag' and later causes a
11802 peculiar kind of quitting. */);
11803 Vthrow_on_input = Qnil;
11805 DEFVAR_LISP ("command-error-function", &Vcommand_error_function,
11806 doc: /* If non-nil, function to output error messages.
11807 The arguments are the error data, a list of the form
11808 (SIGNALED-CONDITIONS . SIGNAL-DATA)
11809 such as just as `condition-case' would bind its variable to,
11810 the context (a string which normally goes at the start of the message),
11811 and the Lisp function within which the error was signaled. */);
11812 Vcommand_error_function = Qnil;
11814 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
11815 &Venable_disabled_menus_and_buttons,
11816 doc: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
11818 Help functions bind this to allow help on disabled menu items
11819 and tool-bar buttons. */);
11820 Venable_disabled_menus_and_buttons = Qnil;
11823 void
11824 keys_of_keyboard ()
11826 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11827 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11828 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11829 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11830 initial_define_key (meta_map, 'x', "execute-extended-command");
11832 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11833 "handle-delete-frame");
11834 /* Here we used to use `ignore-event' which would simple set prefix-arg to
11835 current-prefix-arg, as is done in `handle-switch-frame'.
11836 But `handle-switch-frame is not run from the special-map.
11837 Commands from that map are run in a special way that automatically
11838 preserves the prefix-arg. Restoring the prefix arg here is not just
11839 redundant but harmful:
11840 - C-u C-x v =
11841 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
11842 - after the first prompt, the exit-minibuffer-hook is run which may
11843 iconify a frame and thus push a `iconify-frame' event.
11844 - after running exit-minibuffer-hook, current-prefix-arg is
11845 restored to the non-nil value it had before the prompt.
11846 - we enter the second prompt.
11847 current-prefix-arg is non-nil, prefix-arg is nil.
11848 - before running the first real event, we run the special iconify-frame
11849 event, but we pass the `special' arg to execute-command so
11850 current-prefix-arg and prefix-arg are left untouched.
11851 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
11852 - the next key event will have a spuriously non-nil current-prefix-arg. */
11853 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11854 "ignore");
11855 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11856 "ignore");
11857 /* Handling it at such a low-level causes read_key_sequence to get
11858 * confused because it doesn't realize that the current_buffer was
11859 * changed by read_char.
11861 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11862 * "handle-select-window"); */
11863 initial_define_lispy_key (Vspecial_event_map, "save-session",
11864 "handle-save-session");
11867 /* Mark the pointers in the kboard objects.
11868 Called by the Fgarbage_collector. */
11869 void
11870 mark_kboards ()
11872 KBOARD *kb;
11873 Lisp_Object *p;
11874 for (kb = all_kboards; kb; kb = kb->next_kboard)
11876 if (kb->kbd_macro_buffer)
11877 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11878 mark_object (*p);
11879 mark_object (kb->Voverriding_terminal_local_map);
11880 mark_object (kb->Vlast_command);
11881 mark_object (kb->Vreal_last_command);
11882 mark_object (kb->Vlast_repeatable_command);
11883 mark_object (kb->Vprefix_arg);
11884 mark_object (kb->Vlast_prefix_arg);
11885 mark_object (kb->kbd_queue);
11886 mark_object (kb->defining_kbd_macro);
11887 mark_object (kb->Vlast_kbd_macro);
11888 mark_object (kb->Vsystem_key_alist);
11889 mark_object (kb->system_key_syms);
11890 mark_object (kb->Vdefault_minibuffer_frame);
11891 mark_object (kb->echo_string);
11894 struct input_event *event;
11895 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11897 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11898 event = kbd_buffer;
11899 if (event->kind != SELECTION_REQUEST_EVENT
11900 && event->kind != SELECTION_CLEAR_EVENT)
11902 mark_object (event->x);
11903 mark_object (event->y);
11905 mark_object (event->frame_or_window);
11906 mark_object (event->arg);
11911 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11912 (do not change this comment) */