(gdb_pvec_type): A dummy variable for GDB's sake.
[emacs.git] / src / keyboard.c
blobaaeeeade541ad632f60dd96a50cc963012778728
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 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #include <config.h>
24 #include <signal.h>
25 #include <stdio.h>
26 #include "termchar.h"
27 #include "termopts.h"
28 #include "lisp.h"
29 #include "termhooks.h"
30 #include "macros.h"
31 #include "keyboard.h"
32 #include "frame.h"
33 #include "window.h"
34 #include "commands.h"
35 #include "buffer.h"
36 #include "charset.h"
37 #include "disptab.h"
38 #include "dispextern.h"
39 #include "syntax.h"
40 #include "intervals.h"
41 #include "keymap.h"
42 #include "blockinput.h"
43 #include "puresize.h"
44 #include "systime.h"
45 #include "atimer.h"
46 #include <setjmp.h>
47 #include <errno.h>
49 #ifdef HAVE_GTK_AND_PTHREAD
50 #include <pthread.h>
51 #endif
52 #ifdef MSDOS
53 #include "msdos.h"
54 #include <time.h>
55 #else /* not MSDOS */
56 #ifndef VMS
57 #include <sys/ioctl.h>
58 #endif
59 #endif /* not MSDOS */
61 #include "syssignal.h"
62 #include "systty.h"
64 #include <sys/types.h>
65 #ifdef HAVE_UNISTD_H
66 #include <unistd.h>
67 #endif
69 #ifdef HAVE_FCNTL_H
70 #include <fcntl.h>
71 #endif
73 /* This is to get the definitions of the XK_ symbols. */
74 #ifdef HAVE_X_WINDOWS
75 #include "xterm.h"
76 #endif
78 #ifdef HAVE_NTGUI
79 #include "w32term.h"
80 #endif /* HAVE_NTGUI */
82 #ifdef MAC_OS
83 #include "macterm.h"
84 #endif
86 #ifndef USE_CRT_DLL
87 extern int errno;
88 #endif
90 /* Variables for blockinput.h: */
92 /* Non-zero if interrupt input is blocked right now. */
93 int interrupt_input_blocked;
95 /* Nonzero means an input interrupt has arrived
96 during the current critical section. */
97 int interrupt_input_pending;
100 /* File descriptor to use for input. */
101 extern int input_fd;
103 #ifdef HAVE_WINDOW_SYSTEM
104 /* Make all keyboard buffers much bigger when using X windows. */
105 #ifdef MAC_OS8
106 /* But not too big (local data > 32K error) if on Mac OS Classic. */
107 #define KBD_BUFFER_SIZE 512
108 #else
109 #define KBD_BUFFER_SIZE 4096
110 #endif
111 #else /* No X-windows, character input */
112 #define KBD_BUFFER_SIZE 4096
113 #endif /* No X-windows */
115 #define abs(x) ((x) >= 0 ? (x) : -(x))
117 /* Following definition copied from eval.c */
119 struct backtrace
121 struct backtrace *next;
122 Lisp_Object *function;
123 Lisp_Object *args; /* Points to vector of args. */
124 int nargs; /* length of vector. If nargs is UNEVALLED,
125 args points to slot holding list of
126 unevalled args */
127 char evalargs;
128 /* Nonzero means call value of debugger when done with this operation. */
129 char debug_on_exit;
132 #ifdef MULTI_KBOARD
133 KBOARD *initial_kboard;
134 KBOARD *current_kboard;
135 KBOARD *all_kboards;
136 int single_kboard;
137 #else
138 KBOARD the_only_kboard;
139 #endif
141 /* Non-nil disable property on a command means
142 do not execute it; call disabled-command-function's value instead. */
143 Lisp_Object Qdisabled, Qdisabled_command_function;
145 #define NUM_RECENT_KEYS (100)
146 int recent_keys_index; /* Index for storing next element into recent_keys */
147 int total_keys; /* Total number of elements stored into recent_keys */
148 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
150 /* Vector holding the key sequence that invoked the current command.
151 It is reused for each command, and it may be longer than the current
152 sequence; this_command_key_count indicates how many elements
153 actually mean something.
154 It's easier to staticpro a single Lisp_Object than an array. */
155 Lisp_Object this_command_keys;
156 int this_command_key_count;
158 /* 1 after calling Freset_this_command_lengths.
159 Usually it is 0. */
160 int this_command_key_count_reset;
162 /* This vector is used as a buffer to record the events that were actually read
163 by read_key_sequence. */
164 Lisp_Object raw_keybuf;
165 int raw_keybuf_count;
167 #define GROW_RAW_KEYBUF \
168 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
170 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
171 Lisp_Object new; \
172 new = Fmake_vector (make_number (newsize), Qnil); \
173 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
174 raw_keybuf_count * sizeof (Lisp_Object)); \
175 raw_keybuf = new; \
178 /* Number of elements of this_command_keys
179 that precede this key sequence. */
180 int this_single_command_key_start;
182 /* Record values of this_command_key_count and echo_length ()
183 before this command was read. */
184 static int before_command_key_count;
185 static int before_command_echo_length;
187 extern int minbuf_level;
189 extern int message_enable_multibyte;
191 extern struct backtrace *backtrace_list;
193 /* If non-nil, the function that implements the display of help.
194 It's called with one argument, the help string to display. */
196 Lisp_Object Vshow_help_function;
198 /* If a string, the message displayed before displaying a help-echo
199 in the echo area. */
201 Lisp_Object Vpre_help_message;
203 /* Nonzero means do menu prompting. */
205 static int menu_prompting;
207 /* Character to see next line of menu prompt. */
209 static Lisp_Object menu_prompt_more_char;
211 /* For longjmp to where kbd input is being done. */
213 static jmp_buf getcjmp;
215 /* True while doing kbd input. */
216 int waiting_for_input;
218 /* True while displaying for echoing. Delays C-g throwing. */
220 int echoing;
222 /* Non-null means we can start echoing at the next input pause even
223 though there is something in the echo area. */
225 static struct kboard *ok_to_echo_at_next_pause;
227 /* The kboard last echoing, or null for none. Reset to 0 in
228 cancel_echoing. If non-null, and a current echo area message
229 exists, and echo_message_buffer is eq to the current message
230 buffer, we know that the message comes from echo_kboard. */
232 struct kboard *echo_kboard;
234 /* The buffer used for echoing. Set in echo_now, reset in
235 cancel_echoing. */
237 Lisp_Object echo_message_buffer;
239 /* Nonzero means disregard local maps for the menu bar. */
240 static int inhibit_local_menu_bar_menus;
242 /* Nonzero means C-g should cause immediate error-signal. */
243 int immediate_quit;
245 /* The user's ERASE setting. */
246 Lisp_Object Vtty_erase_char;
248 /* Character to recognize as the help char. */
249 Lisp_Object Vhelp_char;
251 /* List of other event types to recognize as meaning "help". */
252 Lisp_Object Vhelp_event_list;
254 /* Form to execute when help char is typed. */
255 Lisp_Object Vhelp_form;
257 /* Command to run when the help character follows a prefix key. */
258 Lisp_Object Vprefix_help_command;
260 /* List of items that should move to the end of the menu bar. */
261 Lisp_Object Vmenu_bar_final_items;
263 /* Non-nil means show the equivalent key-binding for
264 any M-x command that has one.
265 The value can be a length of time to show the message for.
266 If the value is non-nil and not a number, we wait 2 seconds. */
267 Lisp_Object Vsuggest_key_bindings;
269 /* How long to display an echo-area message when the minibuffer is active.
270 If the value is not a number, such messages don't time out. */
271 Lisp_Object Vminibuffer_message_timeout;
273 /* Character that causes a quit. Normally C-g.
275 If we are running on an ordinary terminal, this must be an ordinary
276 ASCII char, since we want to make it our interrupt character.
278 If we are not running on an ordinary terminal, it still needs to be
279 an ordinary ASCII char. This character needs to be recognized in
280 the input interrupt handler. At this point, the keystroke is
281 represented as a struct input_event, while the desired quit
282 character is specified as a lispy event. The mapping from struct
283 input_events to lispy events cannot run in an interrupt handler,
284 and the reverse mapping is difficult for anything but ASCII
285 keystrokes.
287 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
288 ASCII character. */
289 int quit_char;
291 extern Lisp_Object current_global_map;
292 extern int minibuf_level;
294 /* If non-nil, this is a map that overrides all other local maps. */
295 Lisp_Object Voverriding_local_map;
297 /* If non-nil, Voverriding_local_map applies to the menu bar. */
298 Lisp_Object Voverriding_local_map_menu_flag;
300 /* Keymap that defines special misc events that should
301 be processed immediately at a low level. */
302 Lisp_Object Vspecial_event_map;
304 /* Current depth in recursive edits. */
305 int command_loop_level;
307 /* Total number of times command_loop has read a key sequence. */
308 EMACS_INT num_input_keys;
310 /* Last input character read as a command. */
311 Lisp_Object last_command_char;
313 /* Last input character read as a command, not counting menus
314 reached by the mouse. */
315 Lisp_Object last_nonmenu_event;
317 /* Last input character read for any purpose. */
318 Lisp_Object last_input_char;
320 /* If not Qnil, a list of objects to be read as subsequent command input. */
321 Lisp_Object Vunread_command_events;
323 /* If not Qnil, a list of objects to be read as subsequent command input
324 including input method processing. */
325 Lisp_Object Vunread_input_method_events;
327 /* If not Qnil, a list of objects to be read as subsequent command input
328 but NOT including input method processing. */
329 Lisp_Object Vunread_post_input_method_events;
331 /* If not -1, an event to be read as subsequent command input. */
332 EMACS_INT unread_command_char;
334 /* If not Qnil, this is a switch-frame event which we decided to put
335 off until the end of a key sequence. This should be read as the
336 next command input, after any unread_command_events.
338 read_key_sequence uses this to delay switch-frame events until the
339 end of the key sequence; Fread_char uses it to put off switch-frame
340 events until a non-ASCII event is acceptable as input. */
341 Lisp_Object unread_switch_frame;
343 /* A mask of extra modifier bits to put into every keyboard char. */
344 EMACS_INT extra_keyboard_modifiers;
346 /* Char to use as prefix when a meta character is typed in.
347 This is bound on entry to minibuffer in case ESC is changed there. */
349 Lisp_Object meta_prefix_char;
351 /* Last size recorded for a current buffer which is not a minibuffer. */
352 static int last_non_minibuf_size;
354 /* Number of idle seconds before an auto-save and garbage collection. */
355 static Lisp_Object Vauto_save_timeout;
357 /* Total number of times read_char has returned. */
358 int num_input_events;
360 /* Total number of times read_char has returned, outside of macros. */
361 EMACS_INT num_nonmacro_input_events;
363 /* Auto-save automatically when this many characters have been typed
364 since the last time. */
366 static EMACS_INT auto_save_interval;
368 /* Value of num_nonmacro_input_events as of last auto save. */
370 int last_auto_save;
372 /* The command being executed by the command loop.
373 Commands may set this, and the value set will be copied into
374 current_kboard->Vlast_command instead of the actual command. */
375 Lisp_Object Vthis_command;
377 /* This is like Vthis_command, except that commands never set it. */
378 Lisp_Object real_this_command;
380 /* If the lookup of the command returns a binding, the original
381 command is stored in this-original-command. It is nil otherwise. */
382 Lisp_Object Vthis_original_command;
384 /* The value of point when the last command was started. */
385 int last_point_position;
387 /* The buffer that was current when the last command was started. */
388 Lisp_Object last_point_position_buffer;
390 /* The window that was selected when the last command was started. */
391 Lisp_Object last_point_position_window;
393 /* The frame in which the last input event occurred, or Qmacro if the
394 last event came from a macro. We use this to determine when to
395 generate switch-frame events. This may be cleared by functions
396 like Fselect_frame, to make sure that a switch-frame event is
397 generated by the next character. */
398 Lisp_Object internal_last_event_frame;
400 /* A user-visible version of the above, intended to allow users to
401 figure out where the last event came from, if the event doesn't
402 carry that information itself (i.e. if it was a character). */
403 Lisp_Object Vlast_event_frame;
405 /* The timestamp of the last input event we received from the X server.
406 X Windows wants this for selection ownership. */
407 unsigned long last_event_timestamp;
409 Lisp_Object Qself_insert_command;
410 Lisp_Object Qforward_char;
411 Lisp_Object Qbackward_char;
412 Lisp_Object Qundefined;
413 Lisp_Object Qtimer_event_handler;
415 /* read_key_sequence stores here the command definition of the
416 key sequence that it reads. */
417 Lisp_Object read_key_sequence_cmd;
419 /* Echo unfinished commands after this many seconds of pause. */
420 Lisp_Object Vecho_keystrokes;
422 /* Form to evaluate (if non-nil) when Emacs is started. */
423 Lisp_Object Vtop_level;
425 /* User-supplied table to translate input characters. */
426 Lisp_Object Vkeyboard_translate_table;
428 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
429 extern Lisp_Object Vfunction_key_map;
431 /* Another keymap that maps key sequences into key sequences.
432 This one takes precedence over ordinary definitions. */
433 extern Lisp_Object Vkey_translation_map;
435 /* If non-nil, this implements the current input method. */
436 Lisp_Object Vinput_method_function;
437 Lisp_Object Qinput_method_function;
439 /* When we call Vinput_method_function,
440 this holds the echo area message that was just erased. */
441 Lisp_Object Vinput_method_previous_message;
443 /* Non-nil means deactivate the mark at end of this command. */
444 Lisp_Object Vdeactivate_mark;
446 /* Menu bar specified in Lucid Emacs fashion. */
448 Lisp_Object Vlucid_menu_bar_dirty_flag;
449 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
451 Lisp_Object Qecho_area_clear_hook;
453 /* Hooks to run before and after each command. */
454 Lisp_Object Qpre_command_hook, Vpre_command_hook;
455 Lisp_Object Qpost_command_hook, Vpost_command_hook;
456 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
458 /* List of deferred actions to be performed at a later time.
459 The precise format isn't relevant here; we just check whether it is nil. */
460 Lisp_Object Vdeferred_action_list;
462 /* Function to call to handle deferred actions, when there are any. */
463 Lisp_Object Vdeferred_action_function;
464 Lisp_Object Qdeferred_action_function;
466 Lisp_Object Qinput_method_exit_on_first_char;
467 Lisp_Object Qinput_method_use_echo_area;
469 /* File in which we write all commands we read. */
470 FILE *dribble;
472 /* Nonzero if input is available. */
473 int input_pending;
475 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
476 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
478 int meta_key;
480 extern char *pending_malloc_warning;
482 /* Circular buffer for pre-read keyboard input. */
484 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
486 /* Pointer to next available character in kbd_buffer.
487 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
488 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
489 next available char is in kbd_buffer[0]. */
490 static struct input_event *kbd_fetch_ptr;
492 /* Pointer to next place to store character in kbd_buffer. This
493 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
494 character should go in kbd_buffer[0]. */
495 static struct input_event * volatile kbd_store_ptr;
497 /* The above pair of variables forms a "queue empty" flag. When we
498 enqueue a non-hook event, we increment kbd_store_ptr. When we
499 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
500 there is input available iff the two pointers are not equal.
502 Why not just have a flag set and cleared by the enqueuing and
503 dequeuing functions? Such a flag could be screwed up by interrupts
504 at inopportune times. */
506 /* If this flag is non-nil, we check mouse_moved to see when the
507 mouse moves, and motion events will appear in the input stream.
508 Otherwise, mouse motion is ignored. */
509 Lisp_Object do_mouse_tracking;
511 /* Symbols to head events. */
512 Lisp_Object Qmouse_movement;
513 Lisp_Object Qscroll_bar_movement;
514 Lisp_Object Qswitch_frame;
515 Lisp_Object Qdelete_frame;
516 Lisp_Object Qiconify_frame;
517 Lisp_Object Qmake_frame_visible;
518 Lisp_Object Qselect_window;
519 Lisp_Object Qhelp_echo;
521 #ifdef HAVE_MOUSE
522 Lisp_Object Qmouse_fixup_help_message;
523 #endif
525 /* Symbols to denote kinds of events. */
526 Lisp_Object Qfunction_key;
527 Lisp_Object Qmouse_click;
528 #if defined (WINDOWSNT) || defined (MAC_OS)
529 Lisp_Object Qlanguage_change;
530 #endif
531 Lisp_Object Qdrag_n_drop;
532 Lisp_Object Qsave_session;
533 #ifdef MAC_OS
534 Lisp_Object Qmac_apple_event;
535 #endif
537 /* Lisp_Object Qmouse_movement; - also an event header */
539 /* Properties of event headers. */
540 Lisp_Object Qevent_kind;
541 Lisp_Object Qevent_symbol_elements;
543 /* menu item parts */
544 Lisp_Object Qmenu_alias;
545 Lisp_Object Qmenu_enable;
546 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
547 Lisp_Object QCbutton, QCtoggle, QCradio;
548 extern Lisp_Object Vdefine_key_rebound_commands;
549 extern Lisp_Object Qmenu_item;
551 /* An event header symbol HEAD may have a property named
552 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
553 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
554 mask of modifiers applied to it. If present, this is used to help
555 speed up parse_modifiers. */
556 Lisp_Object Qevent_symbol_element_mask;
558 /* An unmodified event header BASE may have a property named
559 Qmodifier_cache, which is an alist mapping modifier masks onto
560 modified versions of BASE. If present, this helps speed up
561 apply_modifiers. */
562 Lisp_Object Qmodifier_cache;
564 /* Symbols to use for parts of windows. */
565 Lisp_Object Qmode_line;
566 Lisp_Object Qvertical_line;
567 Lisp_Object Qvertical_scroll_bar;
568 Lisp_Object Qmenu_bar;
569 extern Lisp_Object Qleft_margin, Qright_margin;
570 extern Lisp_Object Qleft_fringe, Qright_fringe;
571 extern Lisp_Object QCmap;
573 Lisp_Object recursive_edit_unwind (), command_loop ();
574 Lisp_Object Fthis_command_keys ();
575 Lisp_Object Qextended_command_history;
576 EMACS_TIME timer_check ();
578 extern Lisp_Object Vhistory_length, Vtranslation_table_for_input;
580 extern char *x_get_keysym_name ();
582 static void record_menu_key ();
583 static int echo_length ();
585 Lisp_Object Qpolling_period;
587 /* List of absolute timers. Appears in order of next scheduled event. */
588 Lisp_Object Vtimer_list;
590 /* List of idle time timers. Appears in order of next scheduled event. */
591 Lisp_Object Vtimer_idle_list;
593 /* Incremented whenever a timer is run. */
594 int timers_run;
596 extern Lisp_Object Vprint_level, Vprint_length;
598 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
599 happens. */
600 EMACS_TIME *input_available_clear_time;
602 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
603 Default is 1 if INTERRUPT_INPUT is defined. */
604 int interrupt_input;
606 /* Nonzero while interrupts are temporarily deferred during redisplay. */
607 int interrupts_deferred;
609 /* Nonzero means use ^S/^Q for flow control. */
610 int flow_control;
612 /* Allow m- file to inhibit use of FIONREAD. */
613 #ifdef BROKEN_FIONREAD
614 #undef FIONREAD
615 #endif
617 /* We are unable to use interrupts if FIONREAD is not available,
618 so flush SIGIO so we won't try. */
619 #if !defined (FIONREAD)
620 #ifdef SIGIO
621 #undef SIGIO
622 #endif
623 #endif
625 /* If we support a window system, turn on the code to poll periodically
626 to detect C-g. It isn't actually used when doing interrupt input. */
627 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
628 #define POLL_FOR_INPUT
629 #endif
631 /* After a command is executed, if point is moved into a region that
632 has specific properties (e.g. composition, display), we adjust
633 point to the boundary of the region. But, if a command sets this
634 variable to non-nil, we suppress this point adjustment. This
635 variable is set to nil before reading a command. */
637 Lisp_Object Vdisable_point_adjustment;
639 /* If non-nil, always disable point adjustment. */
641 Lisp_Object Vglobal_disable_point_adjustment;
643 /* The time when Emacs started being idle. */
645 static EMACS_TIME timer_idleness_start_time;
647 /* After Emacs stops being idle, this saves the last value
648 of timer_idleness_start_time from when it was idle. */
650 static EMACS_TIME timer_last_idleness_start_time;
653 /* Global variable declarations. */
655 /* Flags for readable_events. */
656 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
657 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
658 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
660 /* Function for init_keyboard to call with no args (if nonzero). */
661 void (*keyboard_init_hook) ();
663 static int read_avail_input P_ ((int));
664 static void get_input_pending P_ ((int *, int));
665 static int readable_events P_ ((int));
666 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
667 Lisp_Object, int *));
668 static Lisp_Object read_char_x_menu_prompt ();
669 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
670 Lisp_Object *));
671 static Lisp_Object make_lispy_event P_ ((struct input_event *));
672 #ifdef HAVE_MOUSE
673 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
674 enum scroll_bar_part,
675 Lisp_Object, Lisp_Object,
676 unsigned long));
677 #endif
678 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
679 Lisp_Object, char **,
680 Lisp_Object *, unsigned));
681 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
682 static int parse_solitary_modifier P_ ((Lisp_Object));
683 static int parse_solitary_modifier ();
684 static void save_getcjmp P_ ((jmp_buf));
685 static void save_getcjmp ();
686 static void restore_getcjmp P_ ((jmp_buf));
687 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
688 static void clear_event P_ ((struct input_event *));
689 static void any_kboard_state P_ ((void));
690 static SIGTYPE interrupt_signal P_ ((int signalnum));
691 static void timer_start_idle P_ ((void));
692 static void timer_stop_idle P_ ((void));
693 static void timer_resume_idle P_ ((void));
695 /* Nonzero means don't try to suspend even if the operating system seems
696 to support it. */
697 static int cannot_suspend;
699 extern Lisp_Object Qidentity, Qonly;
701 /* Install the string STR as the beginning of the string of echoing,
702 so that it serves as a prompt for the next character.
703 Also start echoing. */
705 void
706 echo_prompt (str)
707 Lisp_Object str;
709 current_kboard->echo_string = str;
710 current_kboard->echo_after_prompt = SCHARS (str);
711 echo_now ();
714 /* Add C to the echo string, if echoing is going on.
715 C can be a character, which is printed prettily ("M-C-x" and all that
716 jazz), or a symbol, whose name is printed. */
718 void
719 echo_char (c)
720 Lisp_Object c;
722 if (current_kboard->immediate_echo)
724 int size = KEY_DESCRIPTION_SIZE + 100;
725 char *buffer = (char *) alloca (size);
726 char *ptr = buffer;
727 Lisp_Object echo_string;
729 echo_string = current_kboard->echo_string;
731 /* If someone has passed us a composite event, use its head symbol. */
732 c = EVENT_HEAD (c);
734 if (INTEGERP (c))
736 ptr = push_key_description (XINT (c), ptr, 1);
738 else if (SYMBOLP (c))
740 Lisp_Object name = SYMBOL_NAME (c);
741 int nbytes = SBYTES (name);
743 if (size - (ptr - buffer) < nbytes)
745 int offset = ptr - buffer;
746 size = max (2 * size, size + nbytes);
747 buffer = (char *) alloca (size);
748 ptr = buffer + offset;
751 ptr += copy_text (SDATA (name), ptr, nbytes,
752 STRING_MULTIBYTE (name), 1);
755 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
756 && help_char_p (c))
758 const char *text = " (Type ? for further options)";
759 int len = strlen (text);
761 if (size - (ptr - buffer) < len)
763 int offset = ptr - buffer;
764 size += len;
765 buffer = (char *) alloca (size);
766 ptr = buffer + offset;
769 bcopy (text, ptr, len);
770 ptr += len;
773 /* Replace a dash from echo_dash with a space, otherwise
774 add a space at the end as a separator between keys. */
775 if (STRINGP (echo_string)
776 && SCHARS (echo_string) > 1)
778 Lisp_Object last_char, prev_char, idx;
780 idx = make_number (SCHARS (echo_string) - 2);
781 prev_char = Faref (echo_string, idx);
783 idx = make_number (SCHARS (echo_string) - 1);
784 last_char = Faref (echo_string, idx);
786 /* We test PREV_CHAR to make sure this isn't the echoing
787 of a minus-sign. */
788 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
789 Faset (echo_string, idx, make_number (' '));
790 else
791 echo_string = concat2 (echo_string, build_string (" "));
794 current_kboard->echo_string
795 = concat2 (echo_string, make_string (buffer, ptr - buffer));
797 echo_now ();
801 /* Temporarily add a dash to the end of the echo string if it's not
802 empty, so that it serves as a mini-prompt for the very next character. */
804 void
805 echo_dash ()
807 /* Do nothing if not echoing at all. */
808 if (NILP (current_kboard->echo_string))
809 return;
811 if (!current_kboard->immediate_echo
812 && SCHARS (current_kboard->echo_string) == 0)
813 return;
815 /* Do nothing if we just printed a prompt. */
816 if (current_kboard->echo_after_prompt
817 == SCHARS (current_kboard->echo_string))
818 return;
820 /* Do nothing if we have already put a dash at the end. */
821 if (SCHARS (current_kboard->echo_string) > 1)
823 Lisp_Object last_char, prev_char, idx;
825 idx = make_number (SCHARS (current_kboard->echo_string) - 2);
826 prev_char = Faref (current_kboard->echo_string, idx);
828 idx = make_number (SCHARS (current_kboard->echo_string) - 1);
829 last_char = Faref (current_kboard->echo_string, idx);
831 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
832 return;
835 /* Put a dash at the end of the buffer temporarily,
836 but make it go away when the next character is added. */
837 current_kboard->echo_string = concat2 (current_kboard->echo_string,
838 build_string ("-"));
839 echo_now ();
842 /* Display the current echo string, and begin echoing if not already
843 doing so. */
845 void
846 echo_now ()
848 if (!current_kboard->immediate_echo)
850 int i;
851 current_kboard->immediate_echo = 1;
853 for (i = 0; i < this_command_key_count; i++)
855 Lisp_Object c;
857 /* Set before_command_echo_length to the value that would
858 have been saved before the start of this subcommand in
859 command_loop_1, if we had already been echoing then. */
860 if (i == this_single_command_key_start)
861 before_command_echo_length = echo_length ();
863 c = XVECTOR (this_command_keys)->contents[i];
864 if (! (EVENT_HAS_PARAMETERS (c)
865 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
866 echo_char (c);
869 /* Set before_command_echo_length to the value that would
870 have been saved before the start of this subcommand in
871 command_loop_1, if we had already been echoing then. */
872 if (this_command_key_count == this_single_command_key_start)
873 before_command_echo_length = echo_length ();
875 /* Put a dash at the end to invite the user to type more. */
876 echo_dash ();
879 echoing = 1;
880 message3_nolog (current_kboard->echo_string,
881 SBYTES (current_kboard->echo_string),
882 STRING_MULTIBYTE (current_kboard->echo_string));
883 echoing = 0;
885 /* Record in what buffer we echoed, and from which kboard. */
886 echo_message_buffer = echo_area_buffer[0];
887 echo_kboard = current_kboard;
889 if (waiting_for_input && !NILP (Vquit_flag))
890 quit_throw_to_read_char ();
893 /* Turn off echoing, for the start of a new command. */
895 void
896 cancel_echoing ()
898 current_kboard->immediate_echo = 0;
899 current_kboard->echo_after_prompt = -1;
900 current_kboard->echo_string = Qnil;
901 ok_to_echo_at_next_pause = NULL;
902 echo_kboard = NULL;
903 echo_message_buffer = Qnil;
906 /* Return the length of the current echo string. */
908 static int
909 echo_length ()
911 return (STRINGP (current_kboard->echo_string)
912 ? SCHARS (current_kboard->echo_string)
913 : 0);
916 /* Truncate the current echo message to its first LEN chars.
917 This and echo_char get used by read_key_sequence when the user
918 switches frames while entering a key sequence. */
920 static void
921 echo_truncate (nchars)
922 int nchars;
924 if (STRINGP (current_kboard->echo_string))
925 current_kboard->echo_string
926 = Fsubstring (current_kboard->echo_string,
927 make_number (0), make_number (nchars));
928 truncate_echo_area (nchars);
932 /* Functions for manipulating this_command_keys. */
933 static void
934 add_command_key (key)
935 Lisp_Object key;
937 #if 0 /* Not needed after we made Freset_this_command_lengths
938 do the job immediately. */
939 /* If reset-this-command-length was called recently, obey it now.
940 See the doc string of that function for an explanation of why. */
941 if (before_command_restore_flag)
943 this_command_key_count = before_command_key_count_1;
944 if (this_command_key_count < this_single_command_key_start)
945 this_single_command_key_start = this_command_key_count;
946 echo_truncate (before_command_echo_length_1);
947 before_command_restore_flag = 0;
949 #endif
951 if (this_command_key_count >= ASIZE (this_command_keys))
952 this_command_keys = larger_vector (this_command_keys,
953 2 * ASIZE (this_command_keys),
954 Qnil);
956 AREF (this_command_keys, this_command_key_count) = key;
957 ++this_command_key_count;
961 Lisp_Object
962 recursive_edit_1 ()
964 int count = SPECPDL_INDEX ();
965 Lisp_Object val;
967 if (command_loop_level > 0)
969 specbind (Qstandard_output, Qt);
970 specbind (Qstandard_input, Qt);
973 #ifdef HAVE_X_WINDOWS
974 /* The command loop has started an hourglass timer, so we have to
975 cancel it here, otherwise it will fire because the recursive edit
976 can take some time. Do not check for display_hourglass_p here,
977 because it could already be nil. */
978 cancel_hourglass ();
979 #endif
981 /* This function may have been called from a debugger called from
982 within redisplay, for instance by Edebugging a function called
983 from fontification-functions. We want to allow redisplay in
984 the debugging session.
986 The recursive edit is left with a `(throw exit ...)'. The `exit'
987 tag is not caught anywhere in redisplay, i.e. when we leave the
988 recursive edit, the original redisplay leading to the recursive
989 edit will be unwound. The outcome should therefore be safe. */
990 specbind (Qinhibit_redisplay, Qnil);
991 redisplaying_p = 0;
993 val = command_loop ();
994 if (EQ (val, Qt))
995 Fsignal (Qquit, Qnil);
996 /* Handle throw from read_minibuf when using minibuffer
997 while it's active but we're in another window. */
998 if (STRINGP (val))
999 Fsignal (Qerror, Fcons (val, Qnil));
1001 return unbind_to (count, Qnil);
1004 /* When an auto-save happens, record the "time", and don't do again soon. */
1006 void
1007 record_auto_save ()
1009 last_auto_save = num_nonmacro_input_events;
1012 /* Make an auto save happen as soon as possible at command level. */
1014 void
1015 force_auto_save_soon ()
1017 last_auto_save = - auto_save_interval - 1;
1019 record_asynch_buffer_change ();
1022 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
1023 doc: /* Invoke the editor command loop recursively.
1024 To get out of the recursive edit, a command can do `(throw 'exit nil)';
1025 that tells this function to return.
1026 Alternatively, `(throw 'exit t)' makes this function signal an error.
1027 This function is called by the editor initialization to begin editing. */)
1030 int count = SPECPDL_INDEX ();
1031 Lisp_Object buffer;
1033 /* If we enter while input is blocked, don't lock up here.
1034 This may happen through the debugger during redisplay. */
1035 if (INPUT_BLOCKED_P)
1036 return Qnil;
1038 command_loop_level++;
1039 update_mode_lines = 1;
1041 if (command_loop_level
1042 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1043 buffer = Fcurrent_buffer ();
1044 else
1045 buffer = Qnil;
1047 /* If we leave recursive_edit_1 below with a `throw' for instance,
1048 like it is done in the splash screen display, we have to
1049 make sure that we restore single_kboard as command_loop_1
1050 would have done if it were left normally. */
1051 record_unwind_protect (recursive_edit_unwind,
1052 Fcons (buffer, single_kboard ? Qt : Qnil));
1054 recursive_edit_1 ();
1055 return unbind_to (count, Qnil);
1058 Lisp_Object
1059 recursive_edit_unwind (info)
1060 Lisp_Object info;
1062 if (BUFFERP (XCAR (info)))
1063 Fset_buffer (XCAR (info));
1065 if (NILP (XCDR (info)))
1066 any_kboard_state ();
1067 else
1068 single_kboard_state ();
1070 command_loop_level--;
1071 update_mode_lines = 1;
1072 return Qnil;
1076 static void
1077 any_kboard_state ()
1079 #ifdef MULTI_KBOARD
1080 #if 0 /* Theory: if there's anything in Vunread_command_events,
1081 it will right away be read by read_key_sequence,
1082 and then if we do switch KBOARDS, it will go into the side
1083 queue then. So we don't need to do anything special here -- rms. */
1084 if (CONSP (Vunread_command_events))
1086 current_kboard->kbd_queue
1087 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1088 current_kboard->kbd_queue_has_data = 1;
1090 Vunread_command_events = Qnil;
1091 #endif
1092 single_kboard = 0;
1093 #endif
1096 /* Switch to the single-kboard state, making current_kboard
1097 the only KBOARD from which further input is accepted. */
1099 void
1100 single_kboard_state ()
1102 #ifdef MULTI_KBOARD
1103 single_kboard = 1;
1104 #endif
1107 /* If we're in single_kboard state for kboard KBOARD,
1108 get out of it. */
1110 void
1111 not_single_kboard_state (kboard)
1112 KBOARD *kboard;
1114 #ifdef MULTI_KBOARD
1115 if (kboard == current_kboard)
1116 single_kboard = 0;
1117 #endif
1120 /* Maintain a stack of kboards, so other parts of Emacs
1121 can switch temporarily to the kboard of a given frame
1122 and then revert to the previous status. */
1124 struct kboard_stack
1126 KBOARD *kboard;
1127 struct kboard_stack *next;
1130 static struct kboard_stack *kboard_stack;
1132 void
1133 push_frame_kboard (f)
1134 FRAME_PTR f;
1136 #ifdef MULTI_KBOARD
1137 struct kboard_stack *p
1138 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1140 p->next = kboard_stack;
1141 p->kboard = current_kboard;
1142 kboard_stack = p;
1144 current_kboard = FRAME_KBOARD (f);
1145 #endif
1148 void
1149 pop_frame_kboard ()
1151 #ifdef MULTI_KBOARD
1152 struct kboard_stack *p = kboard_stack;
1153 current_kboard = p->kboard;
1154 kboard_stack = p->next;
1155 xfree (p);
1156 #endif
1159 /* Handle errors that are not handled at inner levels
1160 by printing an error message and returning to the editor command loop. */
1162 Lisp_Object
1163 cmd_error (data)
1164 Lisp_Object data;
1166 Lisp_Object old_level, old_length;
1167 char macroerror[50];
1169 #ifdef HAVE_X_WINDOWS
1170 if (display_hourglass_p)
1171 cancel_hourglass ();
1172 #endif
1174 if (!NILP (executing_kbd_macro))
1176 if (executing_kbd_macro_iterations == 1)
1177 sprintf (macroerror, "After 1 kbd macro iteration: ");
1178 else
1179 sprintf (macroerror, "After %d kbd macro iterations: ",
1180 executing_kbd_macro_iterations);
1182 else
1183 *macroerror = 0;
1185 Vstandard_output = Qt;
1186 Vstandard_input = Qt;
1187 Vexecuting_kbd_macro = Qnil;
1188 executing_kbd_macro = Qnil;
1189 current_kboard->Vprefix_arg = Qnil;
1190 current_kboard->Vlast_prefix_arg = Qnil;
1191 cancel_echoing ();
1193 /* Avoid unquittable loop if data contains a circular list. */
1194 old_level = Vprint_level;
1195 old_length = Vprint_length;
1196 XSETFASTINT (Vprint_level, 10);
1197 XSETFASTINT (Vprint_length, 10);
1198 cmd_error_internal (data, macroerror);
1199 Vprint_level = old_level;
1200 Vprint_length = old_length;
1202 Vquit_flag = Qnil;
1204 Vinhibit_quit = Qnil;
1205 #ifdef MULTI_KBOARD
1206 if (command_loop_level == 0 && minibuf_level == 0)
1207 any_kboard_state ();
1208 #endif
1210 return make_number (0);
1213 /* Take actions on handling an error. DATA is the data that describes
1214 the error.
1216 CONTEXT is a C-string containing ASCII characters only which
1217 describes the context in which the error happened. If we need to
1218 generalize CONTEXT to allow multibyte characters, make it a Lisp
1219 string. */
1221 void
1222 cmd_error_internal (data, context)
1223 Lisp_Object data;
1224 char *context;
1226 Lisp_Object stream;
1227 int kill_emacs_p = 0;
1228 struct frame *sf = SELECTED_FRAME ();
1230 Vquit_flag = Qnil;
1231 Vinhibit_quit = Qt;
1232 clear_message (1, 0);
1234 /* If the window system or terminal frame hasn't been initialized
1235 yet, or we're not interactive, it's best to dump this message out
1236 to stderr and exit. */
1237 if (!sf->glyphs_initialized_p
1238 /* This is the case of the frame dumped with Emacs, when we're
1239 running under a window system. */
1240 || (!NILP (Vwindow_system)
1241 && !inhibit_window_system
1242 && FRAME_TERMCAP_P (sf))
1243 || noninteractive)
1245 stream = Qexternal_debugging_output;
1246 kill_emacs_p = 1;
1248 else
1250 Fdiscard_input ();
1251 message_log_maybe_newline ();
1252 bitch_at_user ();
1253 stream = Qt;
1256 /* The immediate context is not interesting for Quits,
1257 since they are asyncronous. */
1258 if (EQ (XCAR (data), Qquit))
1259 Vsignaling_function = Qnil;
1261 print_error_message (data, stream, context, Vsignaling_function);
1263 Vsignaling_function = Qnil;
1265 /* If the window system or terminal frame hasn't been initialized
1266 yet, or we're in -batch mode, this error should cause Emacs to exit. */
1267 if (kill_emacs_p)
1269 Fterpri (stream);
1270 Fkill_emacs (make_number (-1));
1274 Lisp_Object command_loop_1 ();
1275 Lisp_Object command_loop_2 ();
1276 Lisp_Object top_level_1 ();
1278 /* Entry to editor-command-loop.
1279 This level has the catches for exiting/returning to editor command loop.
1280 It returns nil to exit recursive edit, t to abort it. */
1282 Lisp_Object
1283 command_loop ()
1285 if (command_loop_level > 0 || minibuf_level > 0)
1287 Lisp_Object val;
1288 val = internal_catch (Qexit, command_loop_2, Qnil);
1289 executing_kbd_macro = Qnil;
1290 return val;
1292 else
1293 while (1)
1295 internal_catch (Qtop_level, top_level_1, Qnil);
1296 /* Reset single_kboard in case top-level set it while
1297 evaluating an -f option, or we are stuck there for some
1298 other reason. */
1299 any_kboard_state ();
1300 internal_catch (Qtop_level, command_loop_2, Qnil);
1301 executing_kbd_macro = Qnil;
1303 /* End of file in -batch run causes exit here. */
1304 if (noninteractive)
1305 Fkill_emacs (Qt);
1309 /* Here we catch errors in execution of commands within the
1310 editing loop, and reenter the editing loop.
1311 When there is an error, cmd_error runs and returns a non-nil
1312 value to us. A value of nil means that command_loop_1 itself
1313 returned due to end of file (or end of kbd macro). */
1315 Lisp_Object
1316 command_loop_2 ()
1318 register Lisp_Object val;
1321 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1322 while (!NILP (val));
1324 return Qnil;
1327 Lisp_Object
1328 top_level_2 ()
1330 return Feval (Vtop_level);
1333 Lisp_Object
1334 top_level_1 ()
1336 /* On entry to the outer level, run the startup file */
1337 if (!NILP (Vtop_level))
1338 internal_condition_case (top_level_2, Qerror, cmd_error);
1339 else if (!NILP (Vpurify_flag))
1340 message ("Bare impure Emacs (standard Lisp code not loaded)");
1341 else
1342 message ("Bare Emacs (standard Lisp code not loaded)");
1343 return Qnil;
1346 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1347 doc: /* Exit all recursive editing levels. */)
1350 #ifdef HAVE_X_WINDOWS
1351 if (display_hourglass_p)
1352 cancel_hourglass ();
1353 #endif
1355 /* Unblock input if we enter with input blocked. This may happen if
1356 redisplay traps e.g. during tool-bar update with input blocked. */
1357 while (INPUT_BLOCKED_P)
1358 UNBLOCK_INPUT;
1360 return Fthrow (Qtop_level, Qnil);
1363 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1364 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1367 if (command_loop_level > 0 || minibuf_level > 0)
1368 Fthrow (Qexit, Qnil);
1370 error ("No recursive edit is in progress");
1371 return Qnil;
1374 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1375 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1378 if (command_loop_level > 0 || minibuf_level > 0)
1379 Fthrow (Qexit, Qt);
1381 error ("No recursive edit is in progress");
1382 return Qnil;
1385 /* This is the actual command reading loop,
1386 sans error-handling encapsulation. */
1388 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1389 int, int, int));
1390 void safe_run_hooks P_ ((Lisp_Object));
1391 static void adjust_point_for_property P_ ((int, int));
1393 /* Cancel hourglass from protect_unwind.
1394 ARG is not used. */
1395 #ifdef HAVE_X_WINDOWS
1396 static Lisp_Object
1397 cancel_hourglass_unwind (arg)
1398 Lisp_Object arg;
1400 cancel_hourglass ();
1401 return Qnil;
1403 #endif
1405 Lisp_Object
1406 command_loop_1 ()
1408 Lisp_Object cmd;
1409 int lose;
1410 int nonundocount;
1411 Lisp_Object keybuf[30];
1412 int i;
1413 int no_direct;
1414 int prev_modiff;
1415 struct buffer *prev_buffer = NULL;
1416 #ifdef MULTI_KBOARD
1417 int was_locked = single_kboard;
1418 #endif
1419 int already_adjusted;
1421 current_kboard->Vprefix_arg = Qnil;
1422 current_kboard->Vlast_prefix_arg = Qnil;
1423 Vdeactivate_mark = Qnil;
1424 waiting_for_input = 0;
1425 cancel_echoing ();
1427 nonundocount = 0;
1428 this_command_key_count = 0;
1429 this_command_key_count_reset = 0;
1430 this_single_command_key_start = 0;
1432 if (NILP (Vmemory_full))
1434 /* Make sure this hook runs after commands that get errors and
1435 throw to top level. */
1436 /* Note that the value cell will never directly contain nil
1437 if the symbol is a local variable. */
1438 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1439 safe_run_hooks (Qpost_command_hook);
1441 /* If displaying a message, resize the echo area window to fit
1442 that message's size exactly. */
1443 if (!NILP (echo_area_buffer[0]))
1444 resize_echo_area_exactly ();
1446 if (!NILP (Vdeferred_action_list))
1447 safe_run_hooks (Qdeferred_action_function);
1450 /* Do this after running Vpost_command_hook, for consistency. */
1451 current_kboard->Vlast_command = Vthis_command;
1452 current_kboard->Vreal_last_command = real_this_command;
1454 while (1)
1456 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1457 Fkill_emacs (Qnil);
1459 /* Make sure the current window's buffer is selected. */
1460 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1461 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1463 /* Display any malloc warning that just came out. Use while because
1464 displaying one warning can cause another. */
1466 while (pending_malloc_warning)
1467 display_malloc_warning ();
1469 no_direct = 0;
1471 Vdeactivate_mark = Qnil;
1473 /* If minibuffer on and echo area in use,
1474 wait a short time and redraw minibuffer. */
1476 if (minibuf_level
1477 && !NILP (echo_area_buffer[0])
1478 && EQ (minibuf_window, echo_area_window)
1479 && NUMBERP (Vminibuffer_message_timeout))
1481 /* Bind inhibit-quit to t so that C-g gets read in
1482 rather than quitting back to the minibuffer. */
1483 int count = SPECPDL_INDEX ();
1484 specbind (Qinhibit_quit, Qt);
1486 Fsit_for (Vminibuffer_message_timeout, Qnil, Qnil);
1487 /* Clear the echo area. */
1488 message2 (0, 0, 0);
1489 safe_run_hooks (Qecho_area_clear_hook);
1491 unbind_to (count, Qnil);
1493 /* If a C-g came in before, treat it as input now. */
1494 if (!NILP (Vquit_flag))
1496 Vquit_flag = Qnil;
1497 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1501 #ifdef C_ALLOCA
1502 alloca (0); /* Cause a garbage collection now */
1503 /* Since we can free the most stuff here. */
1504 #endif /* C_ALLOCA */
1506 #if 0
1507 /* Select the frame that the last event came from. Usually,
1508 switch-frame events will take care of this, but if some lisp
1509 code swallows a switch-frame event, we'll fix things up here.
1510 Is this a good idea? */
1511 if (FRAMEP (internal_last_event_frame)
1512 && !EQ (internal_last_event_frame, selected_frame))
1513 Fselect_frame (internal_last_event_frame);
1514 #endif
1515 /* If it has changed current-menubar from previous value,
1516 really recompute the menubar from the value. */
1517 if (! NILP (Vlucid_menu_bar_dirty_flag)
1518 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1519 call0 (Qrecompute_lucid_menubar);
1521 before_command_key_count = this_command_key_count;
1522 before_command_echo_length = echo_length ();
1524 Vthis_command = Qnil;
1525 real_this_command = Qnil;
1526 Vthis_original_command = Qnil;
1528 /* Read next key sequence; i gets its length. */
1529 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1530 Qnil, 0, 1, 1);
1532 /* A filter may have run while we were reading the input. */
1533 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1534 Fkill_emacs (Qnil);
1535 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1536 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1538 ++num_input_keys;
1540 /* Now we have read a key sequence of length I,
1541 or else I is 0 and we found end of file. */
1543 if (i == 0) /* End of file -- happens only in */
1544 return Qnil; /* a kbd macro, at the end. */
1545 /* -1 means read_key_sequence got a menu that was rejected.
1546 Just loop around and read another command. */
1547 if (i == -1)
1549 cancel_echoing ();
1550 this_command_key_count = 0;
1551 this_command_key_count_reset = 0;
1552 this_single_command_key_start = 0;
1553 goto finalize;
1556 last_command_char = keybuf[i - 1];
1558 /* If the previous command tried to force a specific window-start,
1559 forget about that, in case this command moves point far away
1560 from that position. But also throw away beg_unchanged and
1561 end_unchanged information in that case, so that redisplay will
1562 update the whole window properly. */
1563 if (!NILP (XWINDOW (selected_window)->force_start))
1565 struct buffer *b;
1566 XWINDOW (selected_window)->force_start = Qnil;
1567 b = XBUFFER (XWINDOW (selected_window)->buffer);
1568 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1571 cmd = read_key_sequence_cmd;
1572 if (!NILP (Vexecuting_kbd_macro))
1574 if (!NILP (Vquit_flag))
1576 Vexecuting_kbd_macro = Qt;
1577 QUIT; /* Make some noise. */
1578 /* Will return since macro now empty. */
1582 /* Do redisplay processing after this command except in special
1583 cases identified below. */
1584 prev_buffer = current_buffer;
1585 prev_modiff = MODIFF;
1586 last_point_position = PT;
1587 last_point_position_window = selected_window;
1588 XSETBUFFER (last_point_position_buffer, prev_buffer);
1590 /* By default, we adjust point to a boundary of a region that
1591 has such a property that should be treated intangible
1592 (e.g. composition, display). But, some commands will set
1593 this variable differently. */
1594 Vdisable_point_adjustment = Qnil;
1596 /* Process filters and timers may have messed with deactivate-mark.
1597 reset it before we execute the command. */
1598 Vdeactivate_mark = Qnil;
1600 /* Remap command through active keymaps */
1601 Vthis_original_command = cmd;
1602 if (SYMBOLP (cmd))
1604 Lisp_Object cmd1;
1605 if (cmd1 = Fcommand_remapping (cmd), !NILP (cmd1))
1606 cmd = cmd1;
1609 /* Execute the command. */
1611 Vthis_command = cmd;
1612 real_this_command = cmd;
1613 /* Note that the value cell will never directly contain nil
1614 if the symbol is a local variable. */
1615 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1616 safe_run_hooks (Qpre_command_hook);
1618 already_adjusted = 0;
1620 if (NILP (Vthis_command))
1622 /* nil means key is undefined. */
1623 Lisp_Object keys = Fvector (i, keybuf);
1624 keys = Fkey_description (keys, Qnil);
1625 bitch_at_user ();
1626 message_with_string ("%s is undefined", keys, 0);
1627 current_kboard->defining_kbd_macro = Qnil;
1628 update_mode_lines = 1;
1629 current_kboard->Vprefix_arg = Qnil;
1631 else
1633 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1635 /* In case we jump to directly_done. */
1636 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1638 /* Recognize some common commands in common situations and
1639 do them directly. */
1640 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1642 struct Lisp_Char_Table *dp
1643 = window_display_table (XWINDOW (selected_window));
1644 lose = FETCH_CHAR (PT_BYTE);
1645 SET_PT (PT + 1);
1646 if (! NILP (Vpost_command_hook))
1647 /* Put this before calling adjust_point_for_property
1648 so it will only get called once in any case. */
1649 goto directly_done;
1650 if (current_buffer == prev_buffer
1651 && last_point_position != PT
1652 && NILP (Vdisable_point_adjustment)
1653 && NILP (Vglobal_disable_point_adjustment))
1654 adjust_point_for_property (last_point_position, 0);
1655 already_adjusted = 1;
1656 if (PT == last_point_position + 1
1657 && (dp
1658 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1659 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1660 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1661 && (lose >= 0x20 && lose < 0x7f)))
1662 : (lose >= 0x20 && lose < 0x7f))
1663 /* To extract the case of continuation on
1664 wide-column characters. */
1665 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1666 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1667 >= MODIFF)
1668 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1669 >= OVERLAY_MODIFF)
1670 && (XFASTINT (XWINDOW (selected_window)->last_point)
1671 == PT - 1)
1672 && !windows_or_buffers_changed
1673 && EQ (current_buffer->selective_display, Qnil)
1674 && !detect_input_pending ()
1675 && NILP (XWINDOW (selected_window)->column_number_displayed)
1676 && NILP (Vexecuting_kbd_macro))
1677 direct_output_forward_char (1);
1678 goto directly_done;
1680 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1682 struct Lisp_Char_Table *dp
1683 = window_display_table (XWINDOW (selected_window));
1684 SET_PT (PT - 1);
1685 lose = FETCH_CHAR (PT_BYTE);
1686 if (! NILP (Vpost_command_hook))
1687 goto directly_done;
1688 if (current_buffer == prev_buffer
1689 && last_point_position != PT
1690 && NILP (Vdisable_point_adjustment)
1691 && NILP (Vglobal_disable_point_adjustment))
1692 adjust_point_for_property (last_point_position, 0);
1693 already_adjusted = 1;
1694 if (PT == last_point_position - 1
1695 && (dp
1696 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1697 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1698 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1699 && (lose >= 0x20 && lose < 0x7f)))
1700 : (lose >= 0x20 && lose < 0x7f))
1701 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1702 >= MODIFF)
1703 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1704 >= OVERLAY_MODIFF)
1705 && (XFASTINT (XWINDOW (selected_window)->last_point)
1706 == PT + 1)
1707 && !windows_or_buffers_changed
1708 && EQ (current_buffer->selective_display, Qnil)
1709 && !detect_input_pending ()
1710 && NILP (XWINDOW (selected_window)->column_number_displayed)
1711 && NILP (Vexecuting_kbd_macro))
1712 direct_output_forward_char (-1);
1713 goto directly_done;
1715 else if (EQ (Vthis_command, Qself_insert_command)
1716 /* Try this optimization only on char keystrokes. */
1717 && NATNUMP (last_command_char)
1718 && CHAR_VALID_P (XFASTINT (last_command_char), 0))
1720 unsigned int c
1721 = translate_char (Vtranslation_table_for_input,
1722 XFASTINT (last_command_char), 0, 0, 0);
1723 int value;
1724 if (NILP (Vexecuting_kbd_macro)
1725 && !EQ (minibuf_window, selected_window))
1727 if (!nonundocount || nonundocount >= 20)
1729 Fundo_boundary ();
1730 nonundocount = 0;
1732 nonundocount++;
1735 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1736 < MODIFF)
1737 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1738 < OVERLAY_MODIFF)
1739 || (XFASTINT (XWINDOW (selected_window)->last_point)
1740 != PT)
1741 || MODIFF <= SAVE_MODIFF
1742 || windows_or_buffers_changed
1743 || !EQ (current_buffer->selective_display, Qnil)
1744 || detect_input_pending ()
1745 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1746 || !NILP (Vexecuting_kbd_macro));
1748 value = internal_self_insert (c, 0);
1750 if (value == 2)
1751 nonundocount = 0;
1753 if (! NILP (Vpost_command_hook))
1754 /* Put this before calling adjust_point_for_property
1755 so it will only get called once in any case. */
1756 goto directly_done;
1758 /* VALUE == 1 when AFTER-CHANGE functions are
1759 installed which is the case most of the time
1760 because FONT-LOCK installs one. */
1761 if (!lose && !value)
1762 direct_output_for_insert (c);
1763 goto directly_done;
1767 /* Here for a command that isn't executed directly */
1770 #ifdef HAVE_X_WINDOWS
1771 int scount = SPECPDL_INDEX ();
1773 if (display_hourglass_p
1774 && NILP (Vexecuting_kbd_macro))
1776 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1777 start_hourglass ();
1779 #endif
1781 nonundocount = 0;
1782 if (NILP (current_kboard->Vprefix_arg))
1783 Fundo_boundary ();
1784 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1786 #ifdef HAVE_X_WINDOWS
1787 /* Do not check display_hourglass_p here, because
1788 Fcommand_execute could change it, but we should cancel
1789 hourglass cursor anyway.
1790 But don't cancel the hourglass within a macro
1791 just because a command in the macro finishes. */
1792 if (NILP (Vexecuting_kbd_macro))
1793 unbind_to (scount, Qnil);
1794 #endif
1797 directly_done: ;
1798 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1800 /* Note that the value cell will never directly contain nil
1801 if the symbol is a local variable. */
1802 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1803 safe_run_hooks (Qpost_command_hook);
1805 /* If displaying a message, resize the echo area window to fit
1806 that message's size exactly. */
1807 if (!NILP (echo_area_buffer[0]))
1808 resize_echo_area_exactly ();
1810 if (!NILP (Vdeferred_action_list))
1811 safe_run_hooks (Qdeferred_action_function);
1813 /* If there is a prefix argument,
1814 1) We don't want Vlast_command to be ``universal-argument''
1815 (that would be dumb), so don't set Vlast_command,
1816 2) we want to leave echoing on so that the prefix will be
1817 echoed as part of this key sequence, so don't call
1818 cancel_echoing, and
1819 3) we want to leave this_command_key_count non-zero, so that
1820 read_char will realize that it is re-reading a character, and
1821 not echo it a second time.
1823 If the command didn't actually create a prefix arg,
1824 but is merely a frame event that is transparent to prefix args,
1825 then the above doesn't apply. */
1826 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1828 current_kboard->Vlast_command = Vthis_command;
1829 current_kboard->Vreal_last_command = real_this_command;
1830 cancel_echoing ();
1831 this_command_key_count = 0;
1832 this_command_key_count_reset = 0;
1833 this_single_command_key_start = 0;
1836 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1838 /* Setting transient-mark-mode to `only' is a way of
1839 turning it on for just one command. */
1841 if (EQ (Vtransient_mark_mode, Qidentity))
1842 Vtransient_mark_mode = Qnil;
1843 if (EQ (Vtransient_mark_mode, Qonly))
1844 Vtransient_mark_mode = Qidentity;
1846 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1848 /* We could also call `deactivate'mark'. */
1849 if (EQ (Vtransient_mark_mode, Qlambda))
1850 Vtransient_mark_mode = Qnil;
1851 else
1853 current_buffer->mark_active = Qnil;
1854 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1857 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1858 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1861 finalize:
1863 if (current_buffer == prev_buffer
1864 && last_point_position != PT
1865 && NILP (Vdisable_point_adjustment)
1866 && NILP (Vglobal_disable_point_adjustment)
1867 && !already_adjusted)
1868 adjust_point_for_property (last_point_position, MODIFF != prev_modiff);
1870 /* Install chars successfully executed in kbd macro. */
1872 if (!NILP (current_kboard->defining_kbd_macro)
1873 && NILP (current_kboard->Vprefix_arg))
1874 finalize_kbd_macro_chars ();
1876 #ifdef MULTI_KBOARD
1877 if (!was_locked)
1878 any_kboard_state ();
1879 #endif
1883 extern Lisp_Object Qcomposition, Qdisplay;
1885 /* Adjust point to a boundary of a region that has such a property
1886 that should be treated intangible. For the moment, we check
1887 `composition', `display' and `invisible' properties.
1888 LAST_PT is the last position of point. */
1890 extern Lisp_Object Qafter_string, Qbefore_string;
1891 extern Lisp_Object get_pos_property P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
1893 static void
1894 adjust_point_for_property (last_pt, modified)
1895 int last_pt;
1896 int modified;
1898 int beg, end;
1899 Lisp_Object val, overlay, tmp;
1900 int check_composition = 1, check_display = 1, check_invisible = 1;
1901 int orig_pt = PT;
1903 /* FIXME: cycling is probably not necessary because these properties
1904 can't be usefully combined anyway. */
1905 while (check_composition || check_display || check_invisible)
1907 if (check_composition
1908 && PT > BEGV && PT < ZV
1909 && get_property_and_range (PT, Qcomposition, &val, &beg, &end, Qnil)
1910 && COMPOSITION_VALID_P (beg, end, val)
1911 && beg < PT /* && end > PT <- It's always the case. */
1912 && (last_pt <= beg || last_pt >= end))
1914 xassert (end > PT);
1915 SET_PT (PT < last_pt ? beg : end);
1916 check_display = check_invisible = 1;
1918 check_composition = 0;
1919 if (check_display
1920 && PT > BEGV && PT < ZV
1921 && !NILP (val = get_char_property_and_overlay
1922 (make_number (PT), Qdisplay, Qnil, &overlay))
1923 && display_prop_intangible_p (val)
1924 && (!OVERLAYP (overlay)
1925 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
1926 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
1927 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
1928 && (beg < PT /* && end > PT <- It's always the case. */
1929 || (beg <= PT && STRINGP (val) && SCHARS (val) == 0)))
1931 xassert (end > PT);
1932 SET_PT (PT < last_pt
1933 ? (STRINGP (val) && SCHARS (val) == 0 ? beg - 1 : beg)
1934 : end);
1935 check_composition = check_invisible = 1;
1937 check_display = 0;
1938 if (check_invisible && PT > BEGV && PT < ZV)
1940 int inv, ellipsis = 0;
1941 beg = end = PT;
1943 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1944 while (end < ZV
1945 && !NILP (val = get_char_property_and_overlay
1946 (make_number (end), Qinvisible, Qnil, &overlay))
1947 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1949 ellipsis = ellipsis || inv > 1
1950 || (OVERLAYP (overlay)
1951 && (!NILP (Foverlay_get (overlay, Qafter_string))
1952 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1953 tmp = Fnext_single_char_property_change
1954 (make_number (end), Qinvisible, Qnil, Qnil);
1955 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
1957 while (beg > BEGV
1958 && !NILP (val = get_char_property_and_overlay
1959 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
1960 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1962 ellipsis = ellipsis || inv > 1
1963 || (OVERLAYP (overlay)
1964 && (!NILP (Foverlay_get (overlay, Qafter_string))
1965 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1966 tmp = Fprevious_single_char_property_change
1967 (make_number (beg), Qinvisible, Qnil, Qnil);
1968 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
1971 /* Move away from the inside area. */
1972 if (beg < PT && end > PT)
1974 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
1975 /* We haven't moved yet (so we don't need to fear
1976 infinite-looping) and we were outside the range
1977 before (so either end of the range still corresponds
1978 to a move in the right direction): pretend we moved
1979 less than we actually did, so that we still have
1980 more freedom below in choosing which end of the range
1981 to go to. */
1982 ? (orig_pt = -1, PT < last_pt ? end : beg)
1983 /* We either have moved already or the last point
1984 was already in the range: we don't get to choose
1985 which end of the range we have to go to. */
1986 : (PT < last_pt ? beg : end));
1987 check_composition = check_display = 1;
1989 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
1990 the point to something other than its argument, due to
1991 point-motion hooks, intangibility, etc. */
1992 xassert (PT == beg || PT == end);
1993 #endif
1995 /* Pretend the area doesn't exist if the buffer is not
1996 modified. */
1997 if (!modified && !ellipsis && beg < end)
1999 if (last_pt == beg && PT == end && end < ZV)
2000 (check_composition = check_display = 1, SET_PT (end + 1));
2001 else if (last_pt == end && PT == beg && beg > BEGV)
2002 (check_composition = check_display = 1, SET_PT (beg - 1));
2003 else if (PT == ((PT < last_pt) ? beg : end))
2004 /* We've already moved as far as we can. Trying to go
2005 to the other end would mean moving backwards and thus
2006 could lead to an infinite loop. */
2008 else if (val = get_pos_property (make_number (PT),
2009 Qinvisible, Qnil),
2010 TEXT_PROP_MEANS_INVISIBLE (val)
2011 && (val = get_pos_property
2012 (make_number (PT == beg ? end : beg),
2013 Qinvisible, Qnil),
2014 !TEXT_PROP_MEANS_INVISIBLE (val)))
2015 (check_composition = check_display = 1,
2016 SET_PT (PT == beg ? end : beg));
2019 check_invisible = 0;
2023 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2025 static Lisp_Object
2026 safe_run_hooks_1 (hook)
2027 Lisp_Object hook;
2029 return call1 (Vrun_hooks, Vinhibit_quit);
2032 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2034 static Lisp_Object
2035 safe_run_hooks_error (data)
2036 Lisp_Object data;
2038 Lisp_Object args[3];
2039 args[0] = build_string ("Error in %s: %s");
2040 args[1] = Vinhibit_quit;
2041 args[2] = data;
2042 Fmessage (3, args);
2043 return Fset (Vinhibit_quit, Qnil);
2046 /* If we get an error while running the hook, cause the hook variable
2047 to be nil. Also inhibit quits, so that C-g won't cause the hook
2048 to mysteriously evaporate. */
2050 void
2051 safe_run_hooks (hook)
2052 Lisp_Object hook;
2054 int count = SPECPDL_INDEX ();
2055 specbind (Qinhibit_quit, hook);
2057 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
2059 unbind_to (count, Qnil);
2063 /* Number of seconds between polling for input. This is a Lisp
2064 variable that can be bound. */
2066 EMACS_INT polling_period;
2068 /* Nonzero means polling for input is temporarily suppressed. */
2070 int poll_suppress_count;
2072 /* Asynchronous timer for polling. */
2074 struct atimer *poll_timer;
2077 #ifdef POLL_FOR_INPUT
2079 /* Poll for input, so what we catch a C-g if it comes in. This
2080 function is called from x_make_frame_visible, see comment
2081 there. */
2083 void
2084 poll_for_input_1 ()
2086 if (interrupt_input_blocked == 0
2087 && !waiting_for_input)
2088 read_avail_input (0);
2091 /* Timer callback function for poll_timer. TIMER is equal to
2092 poll_timer. */
2094 void
2095 poll_for_input (timer)
2096 struct atimer *timer;
2098 if (poll_suppress_count == 0)
2099 #ifdef SYNC_INPUT
2100 interrupt_input_pending = 1;
2101 #else
2102 poll_for_input_1 ();
2103 #endif
2106 #endif /* POLL_FOR_INPUT */
2108 /* Begin signals to poll for input, if they are appropriate.
2109 This function is called unconditionally from various places. */
2111 void
2112 start_polling ()
2114 #ifdef POLL_FOR_INPUT
2115 if (read_socket_hook && !interrupt_input)
2117 /* Turn alarm handling on unconditionally. It might have
2118 been turned off in process.c. */
2119 turn_on_atimers (1);
2121 /* If poll timer doesn't exist, are we need one with
2122 a different interval, start a new one. */
2123 if (poll_timer == NULL
2124 || EMACS_SECS (poll_timer->interval) != polling_period)
2126 EMACS_TIME interval;
2128 if (poll_timer)
2129 cancel_atimer (poll_timer);
2131 EMACS_SET_SECS_USECS (interval, polling_period, 0);
2132 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2133 poll_for_input, NULL);
2136 /* Let the timer's callback function poll for input
2137 if this becomes zero. */
2138 --poll_suppress_count;
2140 #endif
2143 /* Nonzero if we are using polling to handle input asynchronously. */
2146 input_polling_used ()
2148 #ifdef POLL_FOR_INPUT
2149 return read_socket_hook && !interrupt_input;
2150 #else
2151 return 0;
2152 #endif
2155 /* Turn off polling. */
2157 void
2158 stop_polling ()
2160 #ifdef POLL_FOR_INPUT
2161 if (read_socket_hook && !interrupt_input)
2162 ++poll_suppress_count;
2163 #endif
2166 /* Set the value of poll_suppress_count to COUNT
2167 and start or stop polling accordingly. */
2169 void
2170 set_poll_suppress_count (count)
2171 int count;
2173 #ifdef POLL_FOR_INPUT
2174 if (count == 0 && poll_suppress_count != 0)
2176 poll_suppress_count = 1;
2177 start_polling ();
2179 else if (count != 0 && poll_suppress_count == 0)
2181 stop_polling ();
2183 poll_suppress_count = count;
2184 #endif
2187 /* Bind polling_period to a value at least N.
2188 But don't decrease it. */
2190 void
2191 bind_polling_period (n)
2192 int n;
2194 #ifdef POLL_FOR_INPUT
2195 int new = polling_period;
2197 if (n > new)
2198 new = n;
2200 stop_other_atimers (poll_timer);
2201 stop_polling ();
2202 specbind (Qpolling_period, make_number (new));
2203 /* Start a new alarm with the new period. */
2204 start_polling ();
2205 #endif
2208 /* Apply the control modifier to CHARACTER. */
2211 make_ctrl_char (c)
2212 int c;
2214 /* Save the upper bits here. */
2215 int upper = c & ~0177;
2217 c &= 0177;
2219 /* Everything in the columns containing the upper-case letters
2220 denotes a control character. */
2221 if (c >= 0100 && c < 0140)
2223 int oc = c;
2224 c &= ~0140;
2225 /* Set the shift modifier for a control char
2226 made from a shifted letter. But only for letters! */
2227 if (oc >= 'A' && oc <= 'Z')
2228 c |= shift_modifier;
2231 /* The lower-case letters denote control characters too. */
2232 else if (c >= 'a' && c <= 'z')
2233 c &= ~0140;
2235 /* Include the bits for control and shift
2236 only if the basic ASCII code can't indicate them. */
2237 else if (c >= ' ')
2238 c |= ctrl_modifier;
2240 /* Replace the high bits. */
2241 c |= (upper & ~ctrl_modifier);
2243 return c;
2246 /* Display the help-echo property of the character after the mouse pointer.
2247 Either show it in the echo area, or call show-help-function to display
2248 it by other means (maybe in a tooltip).
2250 If HELP is nil, that means clear the previous help echo.
2252 If HELP is a string, display that string. If HELP is a function,
2253 call it with OBJECT and POS as arguments; the function should
2254 return a help string or nil for none. For all other types of HELP,
2255 evaluate it to obtain a string.
2257 WINDOW is the window in which the help was generated, if any.
2258 It is nil if not in a window.
2260 If OBJECT is a buffer, POS is the position in the buffer where the
2261 `help-echo' text property was found.
2263 If OBJECT is an overlay, that overlay has a `help-echo' property,
2264 and POS is the position in the overlay's buffer under the mouse.
2266 If OBJECT is a string (an overlay string or a string displayed with
2267 the `display' property). POS is the position in that string under
2268 the mouse.
2270 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2271 echo overwrites a keystroke echo currently displayed in the echo
2272 area.
2274 Note: this function may only be called with HELP nil or a string
2275 from X code running asynchronously. */
2277 void
2278 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2279 Lisp_Object help, window, object, pos;
2280 int ok_to_overwrite_keystroke_echo;
2282 if (!NILP (help) && !STRINGP (help))
2284 if (FUNCTIONP (help))
2286 Lisp_Object args[4];
2287 args[0] = help;
2288 args[1] = window;
2289 args[2] = object;
2290 args[3] = pos;
2291 help = safe_call (4, args);
2293 else
2294 help = safe_eval (help);
2296 if (!STRINGP (help))
2297 return;
2300 #ifdef HAVE_MOUSE
2301 if (!noninteractive && STRINGP (help))
2302 help = call1 (Qmouse_fixup_help_message, help);
2303 #endif
2305 if (STRINGP (help) || NILP (help))
2307 if (!NILP (Vshow_help_function))
2308 call1 (Vshow_help_function, help);
2309 else if (/* Don't overwrite minibuffer contents. */
2310 !MINI_WINDOW_P (XWINDOW (selected_window))
2311 /* Don't overwrite a keystroke echo. */
2312 && (NILP (echo_message_buffer)
2313 || ok_to_overwrite_keystroke_echo)
2314 /* Don't overwrite a prompt. */
2315 && !cursor_in_echo_area)
2317 if (STRINGP (help))
2319 int count = SPECPDL_INDEX ();
2321 if (!help_echo_showing_p)
2322 Vpre_help_message = current_message ();
2324 specbind (Qmessage_truncate_lines, Qt);
2325 message3_nolog (help, SBYTES (help),
2326 STRING_MULTIBYTE (help));
2327 unbind_to (count, Qnil);
2329 else if (STRINGP (Vpre_help_message))
2331 message3_nolog (Vpre_help_message,
2332 SBYTES (Vpre_help_message),
2333 STRING_MULTIBYTE (Vpre_help_message));
2334 Vpre_help_message = Qnil;
2336 else
2337 message (0);
2340 help_echo_showing_p = STRINGP (help);
2346 /* Input of single characters from keyboard */
2348 Lisp_Object print_help ();
2349 static Lisp_Object kbd_buffer_get_event ();
2350 static void record_char ();
2352 #ifdef MULTI_KBOARD
2353 static jmp_buf wrong_kboard_jmpbuf;
2354 #endif
2356 #define STOP_POLLING \
2357 do { if (! polling_stopped_here) stop_polling (); \
2358 polling_stopped_here = 1; } while (0)
2360 #define RESUME_POLLING \
2361 do { if (polling_stopped_here) start_polling (); \
2362 polling_stopped_here = 0; } while (0)
2364 /* read a character from the keyboard; call the redisplay if needed */
2365 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2366 -1 means do not do redisplay, but do do autosaving.
2367 1 means do both. */
2369 /* The arguments MAPS and NMAPS are for menu prompting.
2370 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2372 PREV_EVENT is the previous input event, or nil if we are reading
2373 the first event of a key sequence (or not reading a key sequence).
2374 If PREV_EVENT is t, that is a "magic" value that says
2375 not to run input methods, but in other respects to act as if
2376 not reading a key sequence.
2378 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2379 if we used a mouse menu to read the input, or zero otherwise. If
2380 USED_MOUSE_MENU is null, we don't dereference it.
2382 Value is t if we showed a menu and the user rejected it. */
2384 Lisp_Object
2385 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
2386 int commandflag;
2387 int nmaps;
2388 Lisp_Object *maps;
2389 Lisp_Object prev_event;
2390 int *used_mouse_menu;
2392 volatile Lisp_Object c;
2393 int count;
2394 jmp_buf local_getcjmp;
2395 jmp_buf save_jump;
2396 volatile int key_already_recorded = 0;
2397 Lisp_Object tem, save;
2398 volatile Lisp_Object previous_echo_area_message;
2399 volatile Lisp_Object also_record;
2400 volatile int reread;
2401 struct gcpro gcpro1, gcpro2;
2402 int polling_stopped_here = 0;
2404 also_record = Qnil;
2406 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2407 before_command_key_count = this_command_key_count;
2408 before_command_echo_length = echo_length ();
2409 #endif
2410 c = Qnil;
2411 previous_echo_area_message = Qnil;
2413 GCPRO2 (c, previous_echo_area_message);
2415 retry:
2417 reread = 0;
2418 if (CONSP (Vunread_post_input_method_events))
2420 c = XCAR (Vunread_post_input_method_events);
2421 Vunread_post_input_method_events
2422 = XCDR (Vunread_post_input_method_events);
2424 /* Undo what read_char_x_menu_prompt did when it unread
2425 additional keys returned by Fx_popup_menu. */
2426 if (CONSP (c)
2427 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2428 && NILP (XCDR (c)))
2429 c = XCAR (c);
2431 reread = 1;
2432 goto reread_first;
2435 if (unread_command_char != -1)
2437 XSETINT (c, unread_command_char);
2438 unread_command_char = -1;
2440 reread = 1;
2441 goto reread_first;
2444 if (CONSP (Vunread_command_events))
2446 c = XCAR (Vunread_command_events);
2447 Vunread_command_events = XCDR (Vunread_command_events);
2449 /* Undo what read_char_x_menu_prompt did when it unread
2450 additional keys returned by Fx_popup_menu. */
2451 if (CONSP (c)
2452 && EQ (XCDR (c), Qdisabled)
2453 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2454 c = XCAR (c);
2456 /* If the queued event is something that used the mouse,
2457 set used_mouse_menu accordingly. */
2458 if (used_mouse_menu
2459 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2460 *used_mouse_menu = 1;
2462 reread = 1;
2463 goto reread_for_input_method;
2466 if (CONSP (Vunread_input_method_events))
2468 c = XCAR (Vunread_input_method_events);
2469 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2471 /* Undo what read_char_x_menu_prompt did when it unread
2472 additional keys returned by Fx_popup_menu. */
2473 if (CONSP (c)
2474 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2475 && NILP (XCDR (c)))
2476 c = XCAR (c);
2477 reread = 1;
2478 goto reread_for_input_method;
2481 this_command_key_count_reset = 0;
2483 if (!NILP (Vexecuting_kbd_macro))
2485 /* We set this to Qmacro; since that's not a frame, nobody will
2486 try to switch frames on us, and the selected window will
2487 remain unchanged.
2489 Since this event came from a macro, it would be misleading to
2490 leave internal_last_event_frame set to wherever the last
2491 real event came from. Normally, a switch-frame event selects
2492 internal_last_event_frame after each command is read, but
2493 events read from a macro should never cause a new frame to be
2494 selected. */
2495 Vlast_event_frame = internal_last_event_frame = Qmacro;
2497 /* Exit the macro if we are at the end.
2498 Also, some things replace the macro with t
2499 to force an early exit. */
2500 if (EQ (Vexecuting_kbd_macro, Qt)
2501 || executing_kbd_macro_index >= XFASTINT (Flength (Vexecuting_kbd_macro)))
2503 XSETINT (c, -1);
2504 goto exit;
2507 c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index));
2508 if (STRINGP (Vexecuting_kbd_macro)
2509 && (XINT (c) & 0x80) && (XUINT (c) <= 0xff))
2510 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2512 executing_kbd_macro_index++;
2514 goto from_macro;
2517 if (!NILP (unread_switch_frame))
2519 c = unread_switch_frame;
2520 unread_switch_frame = Qnil;
2522 /* This event should make it into this_command_keys, and get echoed
2523 again, so we do not set `reread'. */
2524 goto reread_first;
2527 /* if redisplay was requested */
2528 if (commandflag >= 0)
2530 /* If there is pending input, process any events which are not
2531 user-visible, such as X selection_request events. */
2532 if (input_pending
2533 || detect_input_pending_run_timers (0))
2534 swallow_events (0); /* may clear input_pending */
2536 /* Redisplay if no pending input. */
2537 while (!input_pending)
2539 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2540 redisplay_preserve_echo_area (5);
2541 else
2542 redisplay ();
2544 if (!input_pending)
2545 /* Normal case: no input arrived during redisplay. */
2546 break;
2548 /* Input arrived and pre-empted redisplay.
2549 Process any events which are not user-visible. */
2550 swallow_events (0);
2551 /* If that cleared input_pending, try again to redisplay. */
2555 /* Message turns off echoing unless more keystrokes turn it on again.
2557 The code in 20.x for the condition was
2559 1. echo_area_glyphs && *echo_area_glyphs
2560 2. && echo_area_glyphs != current_kboard->echobuf
2561 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2563 (1) means there's a current message displayed
2565 (2) means it's not the message from echoing from the current
2566 kboard.
2568 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2569 is set to a non-null value. This is done in read_char and it is
2570 set to echo_area_glyphs after a call to echo_char. That means
2571 ok_to_echo_at_next_pause is either null or
2572 current_kboard->echobuf with the appropriate current_kboard at
2573 that time.
2575 So, condition (3) means in clear text ok_to_echo_at_next_pause
2576 must be either null, or the current message isn't from echoing at
2577 all, or it's from echoing from a different kboard than the
2578 current one. */
2580 if (/* There currently is something in the echo area. */
2581 !NILP (echo_area_buffer[0])
2582 && (/* And it's either not from echoing. */
2583 !EQ (echo_area_buffer[0], echo_message_buffer)
2584 /* Or it's an echo from a different kboard. */
2585 || echo_kboard != current_kboard
2586 /* Or we explicitly allow overwriting whatever there is. */
2587 || ok_to_echo_at_next_pause == NULL))
2588 cancel_echoing ();
2589 else
2590 echo_dash ();
2592 /* Try reading a character via menu prompting in the minibuf.
2593 Try this before the sit-for, because the sit-for
2594 would do the wrong thing if we are supposed to do
2595 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2596 after a mouse event so don't try a minibuf menu. */
2597 c = Qnil;
2598 if (nmaps > 0 && INTERACTIVE
2599 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2600 /* Don't bring up a menu if we already have another event. */
2601 && NILP (Vunread_command_events)
2602 && unread_command_char < 0
2603 && !detect_input_pending_run_timers (0))
2605 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2606 if (! NILP (c))
2608 key_already_recorded = 1;
2609 goto non_reread_1;
2613 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2614 We will do that below, temporarily for short sections of code,
2615 when appropriate. local_getcjmp must be in effect
2616 around any call to sit_for or kbd_buffer_get_event;
2617 it *must not* be in effect when we call redisplay. */
2619 if (_setjmp (local_getcjmp))
2621 /* We must have saved the outer value of getcjmp here,
2622 so restore it now. */
2623 restore_getcjmp (save_jump);
2624 XSETINT (c, quit_char);
2625 internal_last_event_frame = selected_frame;
2626 Vlast_event_frame = internal_last_event_frame;
2627 /* If we report the quit char as an event,
2628 don't do so more than once. */
2629 if (!NILP (Vinhibit_quit))
2630 Vquit_flag = Qnil;
2632 #ifdef MULTI_KBOARD
2634 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2635 if (kb != current_kboard)
2637 Lisp_Object link = kb->kbd_queue;
2638 /* We shouldn't get here if we were in single-kboard mode! */
2639 if (single_kboard)
2640 abort ();
2641 if (CONSP (link))
2643 while (CONSP (XCDR (link)))
2644 link = XCDR (link);
2645 if (!NILP (XCDR (link)))
2646 abort ();
2648 if (!CONSP (link))
2649 kb->kbd_queue = Fcons (c, Qnil);
2650 else
2651 XSETCDR (link, Fcons (c, Qnil));
2652 kb->kbd_queue_has_data = 1;
2653 current_kboard = kb;
2654 /* This is going to exit from read_char
2655 so we had better get rid of this frame's stuff. */
2656 UNGCPRO;
2657 longjmp (wrong_kboard_jmpbuf, 1);
2660 #endif
2661 goto non_reread;
2664 timer_start_idle ();
2666 /* If in middle of key sequence and minibuffer not active,
2667 start echoing if enough time elapses. */
2669 if (minibuf_level == 0
2670 && !current_kboard->immediate_echo
2671 && this_command_key_count > 0
2672 && ! noninteractive
2673 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2674 && NILP (Fzerop (Vecho_keystrokes))
2675 && (/* No message. */
2676 NILP (echo_area_buffer[0])
2677 /* Or empty message. */
2678 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2679 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2680 /* Or already echoing from same kboard. */
2681 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2682 /* Or not echoing before and echoing allowed. */
2683 || (!echo_kboard && ok_to_echo_at_next_pause)))
2685 Lisp_Object tem0;
2687 /* After a mouse event, start echoing right away.
2688 This is because we are probably about to display a menu,
2689 and we don't want to delay before doing so. */
2690 if (EVENT_HAS_PARAMETERS (prev_event))
2691 echo_now ();
2692 else
2694 int sec, usec;
2695 double duration = extract_float (Vecho_keystrokes);
2696 sec = (int) duration;
2697 usec = (duration - sec) * 1000000;
2698 save_getcjmp (save_jump);
2699 restore_getcjmp (local_getcjmp);
2700 tem0 = sit_for (sec, usec, 1, 1, 0);
2701 restore_getcjmp (save_jump);
2702 if (EQ (tem0, Qt)
2703 && ! CONSP (Vunread_command_events))
2704 echo_now ();
2708 /* Maybe auto save due to number of keystrokes. */
2710 if (commandflag != 0
2711 && auto_save_interval > 0
2712 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2713 && !detect_input_pending_run_timers (0))
2715 Fdo_auto_save (Qnil, Qnil);
2716 /* Hooks can actually change some buffers in auto save. */
2717 redisplay ();
2720 /* Try reading using an X menu.
2721 This is never confused with reading using the minibuf
2722 because the recursive call of read_char in read_char_minibuf_menu_prompt
2723 does not pass on any keymaps. */
2725 if (nmaps > 0 && INTERACTIVE
2726 && !NILP (prev_event)
2727 && EVENT_HAS_PARAMETERS (prev_event)
2728 && !EQ (XCAR (prev_event), Qmenu_bar)
2729 && !EQ (XCAR (prev_event), Qtool_bar)
2730 /* Don't bring up a menu if we already have another event. */
2731 && NILP (Vunread_command_events)
2732 && unread_command_char < 0)
2734 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2736 /* Now that we have read an event, Emacs is not idle. */
2737 timer_stop_idle ();
2739 goto exit;
2742 /* Maybe autosave and/or garbage collect due to idleness. */
2744 if (INTERACTIVE && NILP (c))
2746 int delay_level, buffer_size;
2748 /* Slow down auto saves logarithmically in size of current buffer,
2749 and garbage collect while we're at it. */
2750 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2751 last_non_minibuf_size = Z - BEG;
2752 buffer_size = (last_non_minibuf_size >> 8) + 1;
2753 delay_level = 0;
2754 while (buffer_size > 64)
2755 delay_level++, buffer_size -= buffer_size >> 2;
2756 if (delay_level < 4) delay_level = 4;
2757 /* delay_level is 4 for files under around 50k, 7 at 100k,
2758 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2760 /* Auto save if enough time goes by without input. */
2761 if (commandflag != 0
2762 && num_nonmacro_input_events > last_auto_save
2763 && INTEGERP (Vauto_save_timeout)
2764 && XINT (Vauto_save_timeout) > 0)
2766 Lisp_Object tem0;
2768 save_getcjmp (save_jump);
2769 restore_getcjmp (local_getcjmp);
2770 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
2771 0, 1, 1, 0);
2772 restore_getcjmp (save_jump);
2774 if (EQ (tem0, Qt)
2775 && ! CONSP (Vunread_command_events))
2777 Fdo_auto_save (Qnil, Qnil);
2779 /* If we have auto-saved and there is still no input
2780 available, garbage collect if there has been enough
2781 consing going on to make it worthwhile. */
2782 if (!detect_input_pending_run_timers (0)
2783 && consing_since_gc > gc_cons_threshold / 2)
2784 Fgarbage_collect ();
2786 redisplay ();
2791 /* If this has become non-nil here, it has been set by a timer
2792 or sentinel or filter. */
2793 if (CONSP (Vunread_command_events))
2795 c = XCAR (Vunread_command_events);
2796 Vunread_command_events = XCDR (Vunread_command_events);
2799 /* Read something from current KBOARD's side queue, if possible. */
2801 if (NILP (c))
2803 if (current_kboard->kbd_queue_has_data)
2805 if (!CONSP (current_kboard->kbd_queue))
2806 abort ();
2807 c = XCAR (current_kboard->kbd_queue);
2808 current_kboard->kbd_queue
2809 = XCDR (current_kboard->kbd_queue);
2810 if (NILP (current_kboard->kbd_queue))
2811 current_kboard->kbd_queue_has_data = 0;
2812 input_pending = readable_events (0);
2813 if (EVENT_HAS_PARAMETERS (c)
2814 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2815 internal_last_event_frame = XCAR (XCDR (c));
2816 Vlast_event_frame = internal_last_event_frame;
2820 #ifdef MULTI_KBOARD
2821 /* If current_kboard's side queue is empty check the other kboards.
2822 If one of them has data that we have not yet seen here,
2823 switch to it and process the data waiting for it.
2825 Note: if the events queued up for another kboard
2826 have already been seen here, and therefore are not a complete command,
2827 the kbd_queue_has_data field is 0, so we skip that kboard here.
2828 That's to avoid an infinite loop switching between kboards here. */
2829 if (NILP (c) && !single_kboard)
2831 KBOARD *kb;
2832 for (kb = all_kboards; kb; kb = kb->next_kboard)
2833 if (kb->kbd_queue_has_data)
2835 current_kboard = kb;
2836 /* This is going to exit from read_char
2837 so we had better get rid of this frame's stuff. */
2838 UNGCPRO;
2839 longjmp (wrong_kboard_jmpbuf, 1);
2842 #endif
2844 wrong_kboard:
2846 STOP_POLLING;
2848 /* Finally, we read from the main queue,
2849 and if that gives us something we can't use yet, we put it on the
2850 appropriate side queue and try again. */
2852 if (NILP (c))
2854 KBOARD *kb;
2856 /* Actually read a character, waiting if necessary. */
2857 save_getcjmp (save_jump);
2858 restore_getcjmp (local_getcjmp);
2859 timer_start_idle ();
2860 c = kbd_buffer_get_event (&kb, used_mouse_menu);
2861 restore_getcjmp (save_jump);
2863 #ifdef MULTI_KBOARD
2864 if (! NILP (c) && (kb != current_kboard))
2866 Lisp_Object link = kb->kbd_queue;
2867 if (CONSP (link))
2869 while (CONSP (XCDR (link)))
2870 link = XCDR (link);
2871 if (!NILP (XCDR (link)))
2872 abort ();
2874 if (!CONSP (link))
2875 kb->kbd_queue = Fcons (c, Qnil);
2876 else
2877 XSETCDR (link, Fcons (c, Qnil));
2878 kb->kbd_queue_has_data = 1;
2879 c = Qnil;
2880 if (single_kboard)
2881 goto wrong_kboard;
2882 current_kboard = kb;
2883 /* This is going to exit from read_char
2884 so we had better get rid of this frame's stuff. */
2885 UNGCPRO;
2886 longjmp (wrong_kboard_jmpbuf, 1);
2888 #endif
2891 /* Terminate Emacs in batch mode if at eof. */
2892 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2893 Fkill_emacs (make_number (1));
2895 if (INTEGERP (c))
2897 /* Add in any extra modifiers, where appropriate. */
2898 if ((extra_keyboard_modifiers & CHAR_CTL)
2899 || ((extra_keyboard_modifiers & 0177) < ' '
2900 && (extra_keyboard_modifiers & 0177) != 0))
2901 XSETINT (c, make_ctrl_char (XINT (c)));
2903 /* Transfer any other modifier bits directly from
2904 extra_keyboard_modifiers to c. Ignore the actual character code
2905 in the low 16 bits of extra_keyboard_modifiers. */
2906 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2909 non_reread:
2911 timer_stop_idle ();
2912 RESUME_POLLING;
2914 if (NILP (c))
2916 if (commandflag >= 0
2917 && !input_pending && !detect_input_pending_run_timers (0))
2918 redisplay ();
2920 goto wrong_kboard;
2923 non_reread_1:
2925 /* Buffer switch events are only for internal wakeups
2926 so don't show them to the user.
2927 Also, don't record a key if we already did. */
2928 if (BUFFERP (c) || key_already_recorded)
2929 goto exit;
2931 /* Process special events within read_char
2932 and loop around to read another event. */
2933 save = Vquit_flag;
2934 Vquit_flag = Qnil;
2935 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2936 Vquit_flag = save;
2938 if (!NILP (tem))
2940 int was_locked = single_kboard;
2942 last_input_char = c;
2943 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2945 if (CONSP (c) && EQ (XCAR (c), Qselect_window))
2946 /* We stopped being idle for this event; undo that. This
2947 prevents automatic window selection (under
2948 mouse_autoselect_window from acting as a real input event, for
2949 example banishing the mouse under mouse-avoidance-mode. */
2950 timer_resume_idle ();
2952 /* Resume allowing input from any kboard, if that was true before. */
2953 if (!was_locked)
2954 any_kboard_state ();
2956 goto retry;
2959 /* Handle things that only apply to characters. */
2960 if (INTEGERP (c))
2962 /* If kbd_buffer_get_event gave us an EOF, return that. */
2963 if (XINT (c) == -1)
2964 goto exit;
2966 if ((STRINGP (Vkeyboard_translate_table)
2967 && SCHARS (Vkeyboard_translate_table) > (unsigned) XFASTINT (c))
2968 || (VECTORP (Vkeyboard_translate_table)
2969 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2970 || (CHAR_TABLE_P (Vkeyboard_translate_table)
2971 && CHAR_VALID_P (XINT (c), 0)))
2973 Lisp_Object d;
2974 d = Faref (Vkeyboard_translate_table, c);
2975 /* nil in keyboard-translate-table means no translation. */
2976 if (!NILP (d))
2977 c = d;
2981 /* If this event is a mouse click in the menu bar,
2982 return just menu-bar for now. Modify the mouse click event
2983 so we won't do this twice, then queue it up. */
2984 if (EVENT_HAS_PARAMETERS (c)
2985 && CONSP (XCDR (c))
2986 && CONSP (EVENT_START (c))
2987 && CONSP (XCDR (EVENT_START (c))))
2989 Lisp_Object posn;
2991 posn = POSN_POSN (EVENT_START (c));
2992 /* Handle menu-bar events:
2993 insert the dummy prefix event `menu-bar'. */
2994 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2996 /* Change menu-bar to (menu-bar) as the event "position". */
2997 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
2999 also_record = c;
3000 Vunread_command_events = Fcons (c, Vunread_command_events);
3001 c = posn;
3005 /* Store these characters into recent_keys, the dribble file if any,
3006 and the keyboard macro being defined, if any. */
3007 record_char (c);
3008 if (! NILP (also_record))
3009 record_char (also_record);
3011 /* Wipe the echo area.
3012 But first, if we are about to use an input method,
3013 save the echo area contents for it to refer to. */
3014 if (INTEGERP (c)
3015 && ! NILP (Vinput_method_function)
3016 && (unsigned) XINT (c) >= ' '
3017 && (unsigned) XINT (c) != 127
3018 && (unsigned) XINT (c) < 256)
3020 previous_echo_area_message = Fcurrent_message ();
3021 Vinput_method_previous_message = previous_echo_area_message;
3024 /* Now wipe the echo area, except for help events which do their
3025 own stuff with the echo area. */
3026 if (!CONSP (c)
3027 || (!(EQ (Qhelp_echo, XCAR (c)))
3028 && !(EQ (Qswitch_frame, XCAR (c)))))
3030 if (!NILP (echo_area_buffer[0]))
3031 safe_run_hooks (Qecho_area_clear_hook);
3032 clear_message (1, 0);
3035 reread_for_input_method:
3036 from_macro:
3037 /* Pass this to the input method, if appropriate. */
3038 if (INTEGERP (c)
3039 && ! NILP (Vinput_method_function)
3040 /* Don't run the input method within a key sequence,
3041 after the first event of the key sequence. */
3042 && NILP (prev_event)
3043 && (unsigned) XINT (c) >= ' '
3044 && (unsigned) XINT (c) != 127
3045 && (unsigned) XINT (c) < 256)
3047 Lisp_Object keys;
3048 int key_count, key_count_reset;
3049 struct gcpro gcpro1;
3050 int count = SPECPDL_INDEX ();
3052 /* Save the echo status. */
3053 int saved_immediate_echo = current_kboard->immediate_echo;
3054 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
3055 Lisp_Object saved_echo_string = current_kboard->echo_string;
3056 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
3058 #if 0
3059 if (before_command_restore_flag)
3061 this_command_key_count = before_command_key_count_1;
3062 if (this_command_key_count < this_single_command_key_start)
3063 this_single_command_key_start = this_command_key_count;
3064 echo_truncate (before_command_echo_length_1);
3065 before_command_restore_flag = 0;
3067 #endif
3069 /* Save the this_command_keys status. */
3070 key_count = this_command_key_count;
3071 key_count_reset = this_command_key_count_reset;
3073 if (key_count > 0)
3074 keys = Fcopy_sequence (this_command_keys);
3075 else
3076 keys = Qnil;
3077 GCPRO1 (keys);
3079 /* Clear out this_command_keys. */
3080 this_command_key_count = 0;
3081 this_command_key_count_reset = 0;
3083 /* Now wipe the echo area. */
3084 if (!NILP (echo_area_buffer[0]))
3085 safe_run_hooks (Qecho_area_clear_hook);
3086 clear_message (1, 0);
3087 echo_truncate (0);
3089 /* If we are not reading a key sequence,
3090 never use the echo area. */
3091 if (maps == 0)
3093 specbind (Qinput_method_use_echo_area, Qt);
3096 /* Call the input method. */
3097 tem = call1 (Vinput_method_function, c);
3099 tem = unbind_to (count, tem);
3101 /* Restore the saved echoing state
3102 and this_command_keys state. */
3103 this_command_key_count = key_count;
3104 this_command_key_count_reset = key_count_reset;
3105 if (key_count > 0)
3106 this_command_keys = keys;
3108 cancel_echoing ();
3109 ok_to_echo_at_next_pause = saved_ok_to_echo;
3110 current_kboard->echo_string = saved_echo_string;
3111 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3112 if (saved_immediate_echo)
3113 echo_now ();
3115 UNGCPRO;
3117 /* The input method can return no events. */
3118 if (! CONSP (tem))
3120 /* Bring back the previous message, if any. */
3121 if (! NILP (previous_echo_area_message))
3122 message_with_string ("%s", previous_echo_area_message, 0);
3123 goto retry;
3125 /* It returned one event or more. */
3126 c = XCAR (tem);
3127 Vunread_post_input_method_events
3128 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3131 reread_first:
3133 /* Display help if not echoing. */
3134 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3136 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3137 Lisp_Object help, object, position, window, tem;
3139 tem = Fcdr (XCDR (c));
3140 help = Fcar (tem);
3141 tem = Fcdr (tem);
3142 window = Fcar (tem);
3143 tem = Fcdr (tem);
3144 object = Fcar (tem);
3145 tem = Fcdr (tem);
3146 position = Fcar (tem);
3148 show_help_echo (help, window, object, position, 0);
3150 /* We stopped being idle for this event; undo that. */
3151 timer_resume_idle ();
3152 goto retry;
3155 if (! reread || this_command_key_count == 0
3156 || this_command_key_count_reset)
3159 /* Don't echo mouse motion events. */
3160 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3161 && NILP (Fzerop (Vecho_keystrokes))
3162 && ! (EVENT_HAS_PARAMETERS (c)
3163 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3165 echo_char (c);
3166 if (! NILP (also_record))
3167 echo_char (also_record);
3168 /* Once we reread a character, echoing can happen
3169 the next time we pause to read a new one. */
3170 ok_to_echo_at_next_pause = current_kboard;
3173 /* Record this character as part of the current key. */
3174 add_command_key (c);
3175 if (! NILP (also_record))
3176 add_command_key (also_record);
3179 last_input_char = c;
3180 num_input_events++;
3182 /* Process the help character specially if enabled */
3183 if (!NILP (Vhelp_form) && help_char_p (c))
3185 Lisp_Object tem0;
3186 count = SPECPDL_INDEX ();
3188 record_unwind_protect (Fset_window_configuration,
3189 Fcurrent_window_configuration (Qnil));
3191 tem0 = Feval (Vhelp_form);
3192 if (STRINGP (tem0))
3193 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3195 cancel_echoing ();
3197 c = read_char (0, 0, 0, Qnil, 0);
3198 while (BUFFERP (c));
3199 /* Remove the help from the frame */
3200 unbind_to (count, Qnil);
3202 redisplay ();
3203 if (EQ (c, make_number (040)))
3205 cancel_echoing ();
3207 c = read_char (0, 0, 0, Qnil, 0);
3208 while (BUFFERP (c));
3212 exit:
3213 RESUME_POLLING;
3214 RETURN_UNGCPRO (c);
3217 /* Record a key that came from a mouse menu.
3218 Record it for echoing, for this-command-keys, and so on. */
3220 static void
3221 record_menu_key (c)
3222 Lisp_Object c;
3224 /* Wipe the echo area. */
3225 clear_message (1, 0);
3227 record_char (c);
3229 #if 0
3230 before_command_key_count = this_command_key_count;
3231 before_command_echo_length = echo_length ();
3232 #endif
3234 /* Don't echo mouse motion events. */
3235 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3236 && NILP (Fzerop (Vecho_keystrokes)))
3238 echo_char (c);
3240 /* Once we reread a character, echoing can happen
3241 the next time we pause to read a new one. */
3242 ok_to_echo_at_next_pause = 0;
3245 /* Record this character as part of the current key. */
3246 add_command_key (c);
3248 /* Re-reading in the middle of a command */
3249 last_input_char = c;
3250 num_input_events++;
3253 /* Return 1 if should recognize C as "the help character". */
3256 help_char_p (c)
3257 Lisp_Object c;
3259 Lisp_Object tail;
3261 if (EQ (c, Vhelp_char))
3262 return 1;
3263 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3264 if (EQ (c, XCAR (tail)))
3265 return 1;
3266 return 0;
3269 /* Record the input event C in various ways. */
3271 static void
3272 record_char (c)
3273 Lisp_Object c;
3275 int recorded = 0;
3277 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3279 /* To avoid filling recent_keys with help-echo and mouse-movement
3280 events, we filter out repeated help-echo events, only store the
3281 first and last in a series of mouse-movement events, and don't
3282 store repeated help-echo events which are only separated by
3283 mouse-movement events. */
3285 Lisp_Object ev1, ev2, ev3;
3286 int ix1, ix2, ix3;
3288 if ((ix1 = recent_keys_index - 1) < 0)
3289 ix1 = NUM_RECENT_KEYS - 1;
3290 ev1 = AREF (recent_keys, ix1);
3292 if ((ix2 = ix1 - 1) < 0)
3293 ix2 = NUM_RECENT_KEYS - 1;
3294 ev2 = AREF (recent_keys, ix2);
3296 if ((ix3 = ix2 - 1) < 0)
3297 ix3 = NUM_RECENT_KEYS - 1;
3298 ev3 = AREF (recent_keys, ix3);
3300 if (EQ (XCAR (c), Qhelp_echo))
3302 /* Don't record `help-echo' in recent_keys unless it shows some help
3303 message, and a different help than the previously recorded
3304 event. */
3305 Lisp_Object help, last_help;
3307 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3308 if (!STRINGP (help))
3309 recorded = 1;
3310 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3311 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3312 recorded = 1;
3313 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3314 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3315 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3316 recorded = -1;
3317 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3318 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3319 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3320 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3321 recorded = -2;
3323 else if (EQ (XCAR (c), Qmouse_movement))
3325 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3326 So additional mouse movement events replace the last element. */
3327 Lisp_Object last_window, window;
3329 window = Fcar_safe (Fcar_safe (XCDR (c)));
3330 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3331 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3332 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3333 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3335 ASET (recent_keys, ix1, c);
3336 recorded = 1;
3340 else
3341 store_kbd_macro_char (c);
3343 if (!recorded)
3345 total_keys++;
3346 ASET (recent_keys, recent_keys_index, c);
3347 if (++recent_keys_index >= NUM_RECENT_KEYS)
3348 recent_keys_index = 0;
3350 else if (recorded < 0)
3352 /* We need to remove one or two events from recent_keys.
3353 To do this, we simply put nil at those events and move the
3354 recent_keys_index backwards over those events. Usually,
3355 users will never see those nil events, as they will be
3356 overwritten by the command keys entered to see recent_keys
3357 (e.g. C-h l). */
3359 while (recorded++ < 0 && total_keys > 0)
3361 if (total_keys < NUM_RECENT_KEYS)
3362 total_keys--;
3363 if (--recent_keys_index < 0)
3364 recent_keys_index = NUM_RECENT_KEYS - 1;
3365 ASET (recent_keys, recent_keys_index, Qnil);
3369 num_nonmacro_input_events++;
3371 /* Write c to the dribble file. If c is a lispy event, write
3372 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3373 If you, dear reader, have a better idea, you've got the source. :-) */
3374 if (dribble)
3376 if (INTEGERP (c))
3378 if (XUINT (c) < 0x100)
3379 putc (XINT (c), dribble);
3380 else
3381 fprintf (dribble, " 0x%x", (int) XUINT (c));
3383 else
3385 Lisp_Object dribblee;
3387 /* If it's a structured event, take the event header. */
3388 dribblee = EVENT_HEAD (c);
3390 if (SYMBOLP (dribblee))
3392 putc ('<', dribble);
3393 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3394 SBYTES (SYMBOL_NAME (dribblee)),
3395 dribble);
3396 putc ('>', dribble);
3400 fflush (dribble);
3404 Lisp_Object
3405 print_help (object)
3406 Lisp_Object object;
3408 struct buffer *old = current_buffer;
3409 Fprinc (object, Qnil);
3410 set_buffer_internal (XBUFFER (Vstandard_output));
3411 call0 (intern ("help-mode"));
3412 set_buffer_internal (old);
3413 return Qnil;
3416 /* Copy out or in the info on where C-g should throw to.
3417 This is used when running Lisp code from within get_char,
3418 in case get_char is called recursively.
3419 See read_process_output. */
3421 static void
3422 save_getcjmp (temp)
3423 jmp_buf temp;
3425 bcopy (getcjmp, temp, sizeof getcjmp);
3428 static void
3429 restore_getcjmp (temp)
3430 jmp_buf temp;
3432 bcopy (temp, getcjmp, sizeof getcjmp);
3435 #ifdef HAVE_MOUSE
3437 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3438 of this function. */
3440 static Lisp_Object
3441 tracking_off (old_value)
3442 Lisp_Object old_value;
3444 do_mouse_tracking = old_value;
3445 if (NILP (old_value))
3447 /* Redisplay may have been preempted because there was input
3448 available, and it assumes it will be called again after the
3449 input has been processed. If the only input available was
3450 the sort that we have just disabled, then we need to call
3451 redisplay. */
3452 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
3454 redisplay_preserve_echo_area (6);
3455 get_input_pending (&input_pending,
3456 READABLE_EVENTS_DO_TIMERS_NOW);
3459 return Qnil;
3462 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
3463 doc: /* Evaluate BODY with mouse movement events enabled.
3464 Within a `track-mouse' form, mouse motion generates input events that
3465 you can read with `read-event'.
3466 Normally, mouse motion is ignored.
3467 usage: (track-mouse BODY ...) */)
3468 (args)
3469 Lisp_Object args;
3471 int count = SPECPDL_INDEX ();
3472 Lisp_Object val;
3474 record_unwind_protect (tracking_off, do_mouse_tracking);
3476 do_mouse_tracking = Qt;
3478 val = Fprogn (args);
3479 return unbind_to (count, val);
3482 /* If mouse has moved on some frame, return one of those frames.
3483 Return 0 otherwise. */
3485 static FRAME_PTR
3486 some_mouse_moved ()
3488 Lisp_Object tail, frame;
3490 FOR_EACH_FRAME (tail, frame)
3492 if (XFRAME (frame)->mouse_moved)
3493 return XFRAME (frame);
3496 return 0;
3499 #endif /* HAVE_MOUSE */
3501 /* Low level keyboard/mouse input.
3502 kbd_buffer_store_event places events in kbd_buffer, and
3503 kbd_buffer_get_event retrieves them. */
3505 /* Return true iff there are any events in the queue that read-char
3506 would return. If this returns false, a read-char would block. */
3507 static int
3508 readable_events (flags)
3509 int flags;
3511 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3512 timer_check (1);
3514 /* If the buffer contains only FOCUS_IN_EVENT events, and
3515 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3516 if (kbd_fetch_ptr != kbd_store_ptr)
3518 if (flags & (READABLE_EVENTS_FILTER_EVENTS
3519 #ifdef USE_TOOLKIT_SCROLL_BARS
3520 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3521 #endif
3524 struct input_event *event;
3526 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3527 ? kbd_fetch_ptr
3528 : kbd_buffer);
3532 if (!(
3533 #ifdef USE_TOOLKIT_SCROLL_BARS
3534 (flags & READABLE_EVENTS_FILTER_EVENTS) &&
3535 #endif
3536 event->kind == FOCUS_IN_EVENT)
3537 #ifdef USE_TOOLKIT_SCROLL_BARS
3538 && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3539 && event->kind == SCROLL_BAR_CLICK_EVENT
3540 && event->part == scroll_bar_handle
3541 && event->modifiers == 0)
3542 #endif
3544 return 1;
3545 event++;
3546 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3547 event = kbd_buffer;
3549 while (event != kbd_store_ptr);
3551 else
3552 return 1;
3555 #ifdef HAVE_MOUSE
3556 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3557 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3558 return 1;
3559 #endif
3560 if (single_kboard)
3562 if (current_kboard->kbd_queue_has_data)
3563 return 1;
3565 else
3567 KBOARD *kb;
3568 for (kb = all_kboards; kb; kb = kb->next_kboard)
3569 if (kb->kbd_queue_has_data)
3570 return 1;
3572 return 0;
3575 /* Set this for debugging, to have a way to get out */
3576 int stop_character;
3578 #ifdef MULTI_KBOARD
3579 static KBOARD *
3580 event_to_kboard (event)
3581 struct input_event *event;
3583 Lisp_Object frame;
3584 frame = event->frame_or_window;
3585 if (CONSP (frame))
3586 frame = XCAR (frame);
3587 else if (WINDOWP (frame))
3588 frame = WINDOW_FRAME (XWINDOW (frame));
3590 /* There are still some events that don't set this field.
3591 For now, just ignore the problem.
3592 Also ignore dead frames here. */
3593 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3594 return 0;
3595 else
3596 return FRAME_KBOARD (XFRAME (frame));
3598 #endif
3601 Lisp_Object Vthrow_on_input;
3603 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3605 void
3606 kbd_buffer_store_event (event)
3607 register struct input_event *event;
3609 kbd_buffer_store_event_hold (event, 0);
3612 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3614 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3615 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3616 Else, if EVENT is a quit event, store the quit event
3617 in HOLD_QUIT, and return (thus ignoring further events).
3619 This is used in read_avail_input to postpone the processing
3620 of the quit event until all subsequent input events have been
3621 parsed (and discarded).
3624 void
3625 kbd_buffer_store_event_hold (event, hold_quit)
3626 register struct input_event *event;
3627 struct input_event *hold_quit;
3629 if (event->kind == NO_EVENT)
3630 abort ();
3632 if (hold_quit && hold_quit->kind != NO_EVENT)
3633 return;
3635 if (event->kind == ASCII_KEYSTROKE_EVENT)
3637 register int c = event->code & 0377;
3639 if (event->modifiers & ctrl_modifier)
3640 c = make_ctrl_char (c);
3642 c |= (event->modifiers
3643 & (meta_modifier | alt_modifier
3644 | hyper_modifier | super_modifier));
3646 if (c == quit_char)
3648 #ifdef MULTI_KBOARD
3649 KBOARD *kb;
3650 struct input_event *sp;
3652 if (single_kboard
3653 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3654 kb != current_kboard))
3656 kb->kbd_queue
3657 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3658 Fcons (make_number (c), Qnil));
3659 kb->kbd_queue_has_data = 1;
3660 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3662 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3663 sp = kbd_buffer;
3665 if (event_to_kboard (sp) == kb)
3667 sp->kind = NO_EVENT;
3668 sp->frame_or_window = Qnil;
3669 sp->arg = Qnil;
3672 return;
3674 #endif
3676 if (hold_quit)
3678 bcopy (event, (char *) hold_quit, sizeof (*event));
3679 return;
3682 /* If this results in a quit_char being returned to Emacs as
3683 input, set Vlast_event_frame properly. If this doesn't
3684 get returned to Emacs as an event, the next event read
3685 will set Vlast_event_frame again, so this is safe to do. */
3687 Lisp_Object focus;
3689 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3690 if (NILP (focus))
3691 focus = event->frame_or_window;
3692 internal_last_event_frame = focus;
3693 Vlast_event_frame = focus;
3696 last_event_timestamp = event->timestamp;
3697 interrupt_signal (0 /* dummy */);
3698 return;
3701 if (c && c == stop_character)
3703 sys_suspend ();
3704 return;
3707 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3708 Just ignore the second one. */
3709 else if (event->kind == BUFFER_SWITCH_EVENT
3710 && kbd_fetch_ptr != kbd_store_ptr
3711 && ((kbd_store_ptr == kbd_buffer
3712 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3713 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3714 return;
3716 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3717 kbd_store_ptr = kbd_buffer;
3719 /* Don't let the very last slot in the buffer become full,
3720 since that would make the two pointers equal,
3721 and that is indistinguishable from an empty buffer.
3722 Discard the event if it would fill the last slot. */
3723 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3725 *kbd_store_ptr = *event;
3726 ++kbd_store_ptr;
3729 /* If we're inside while-no-input, and this event qualifies
3730 as input, set quit-flag to cause an interrupt. */
3731 if (!NILP (Vthrow_on_input)
3732 && event->kind != FOCUS_IN_EVENT
3733 && event->kind != HELP_EVENT
3734 && event->kind != DEICONIFY_EVENT)
3736 Vquit_flag = Vthrow_on_input;
3737 /* If we're inside a function that wants immediate quits,
3738 do it now. */
3739 if (immediate_quit && NILP (Vinhibit_quit))
3741 immediate_quit = 0;
3742 sigfree ();
3743 QUIT;
3749 /* Put an input event back in the head of the event queue. */
3751 void
3752 kbd_buffer_unget_event (event)
3753 register struct input_event *event;
3755 if (kbd_fetch_ptr == kbd_buffer)
3756 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3758 /* Don't let the very last slot in the buffer become full, */
3759 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3761 --kbd_fetch_ptr;
3762 *kbd_fetch_ptr = *event;
3767 /* Generate HELP_EVENT input_events in BUFP which has room for
3768 SIZE events. If there's not enough room in BUFP, ignore this
3769 event.
3771 HELP is the help form.
3773 FRAME is the frame on which the help is generated. OBJECT is the
3774 Lisp object where the help was found (a buffer, a string, an
3775 overlay, or nil if neither from a string nor from a buffer. POS is
3776 the position within OBJECT where the help was found.
3778 Value is the number of input_events generated. */
3780 void
3781 gen_help_event (help, frame, window, object, pos)
3782 Lisp_Object help, frame, object, window;
3783 int pos;
3785 struct input_event event;
3787 EVENT_INIT (event);
3789 event.kind = HELP_EVENT;
3790 event.frame_or_window = frame;
3791 event.arg = object;
3792 event.x = WINDOWP (window) ? window : frame;
3793 event.y = help;
3794 event.code = pos;
3795 kbd_buffer_store_event (&event);
3799 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3801 void
3802 kbd_buffer_store_help_event (frame, help)
3803 Lisp_Object frame, help;
3805 struct input_event event;
3807 event.kind = HELP_EVENT;
3808 event.frame_or_window = frame;
3809 event.arg = Qnil;
3810 event.x = Qnil;
3811 event.y = help;
3812 event.code = 0;
3813 kbd_buffer_store_event (&event);
3817 /* Discard any mouse events in the event buffer by setting them to
3818 NO_EVENT. */
3819 void
3820 discard_mouse_events ()
3822 struct input_event *sp;
3823 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3825 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3826 sp = kbd_buffer;
3828 if (sp->kind == MOUSE_CLICK_EVENT
3829 || sp->kind == WHEEL_EVENT
3830 #ifdef WINDOWSNT
3831 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
3832 #endif
3833 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3835 sp->kind = NO_EVENT;
3841 /* Return non-zero if there are any real events waiting in the event
3842 buffer, not counting `NO_EVENT's.
3844 If DISCARD is non-zero, discard NO_EVENT events at the front of
3845 the input queue, possibly leaving the input queue empty if there
3846 are no real input events. */
3849 kbd_buffer_events_waiting (discard)
3850 int discard;
3852 struct input_event *sp;
3854 for (sp = kbd_fetch_ptr;
3855 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3856 ++sp)
3858 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3859 sp = kbd_buffer;
3862 if (discard)
3863 kbd_fetch_ptr = sp;
3865 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3869 /* Clear input event EVENT. */
3871 static INLINE void
3872 clear_event (event)
3873 struct input_event *event;
3875 event->kind = NO_EVENT;
3879 /* Read one event from the event buffer, waiting if necessary.
3880 The value is a Lisp object representing the event.
3881 The value is nil for an event that should be ignored,
3882 or that was handled here.
3883 We always read and discard one event. */
3885 static Lisp_Object
3886 kbd_buffer_get_event (kbp, used_mouse_menu)
3887 KBOARD **kbp;
3888 int *used_mouse_menu;
3890 register int c;
3891 Lisp_Object obj;
3893 if (noninteractive)
3895 c = getchar ();
3896 XSETINT (obj, c);
3897 *kbp = current_kboard;
3898 return obj;
3901 /* Wait until there is input available. */
3902 for (;;)
3904 if (kbd_fetch_ptr != kbd_store_ptr)
3905 break;
3906 #ifdef HAVE_MOUSE
3907 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3908 break;
3909 #endif
3911 /* If the quit flag is set, then read_char will return
3912 quit_char, so that counts as "available input." */
3913 if (!NILP (Vquit_flag))
3914 quit_throw_to_read_char ();
3916 /* One way or another, wait until input is available; then, if
3917 interrupt handlers have not read it, read it now. */
3919 #ifdef OLDVMS
3920 wait_for_kbd_input ();
3921 #else
3922 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3923 #ifdef SIGIO
3924 gobble_input (0);
3925 #endif /* SIGIO */
3926 if (kbd_fetch_ptr != kbd_store_ptr)
3927 break;
3928 #ifdef HAVE_MOUSE
3929 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3930 break;
3931 #endif
3933 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0);
3935 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3936 /* Pass 1 for EXPECT since we just waited to have input. */
3937 read_avail_input (1);
3939 #endif /* not VMS */
3942 if (CONSP (Vunread_command_events))
3944 Lisp_Object first;
3945 first = XCAR (Vunread_command_events);
3946 Vunread_command_events = XCDR (Vunread_command_events);
3947 *kbp = current_kboard;
3948 return first;
3951 /* At this point, we know that there is a readable event available
3952 somewhere. If the event queue is empty, then there must be a
3953 mouse movement enabled and available. */
3954 if (kbd_fetch_ptr != kbd_store_ptr)
3956 struct input_event *event;
3958 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3959 ? kbd_fetch_ptr
3960 : kbd_buffer);
3962 last_event_timestamp = event->timestamp;
3964 #ifdef MULTI_KBOARD
3965 *kbp = event_to_kboard (event);
3966 if (*kbp == 0)
3967 *kbp = current_kboard; /* Better than returning null ptr? */
3968 #else
3969 *kbp = &the_only_kboard;
3970 #endif
3972 obj = Qnil;
3974 /* These two kinds of events get special handling
3975 and don't actually appear to the command loop.
3976 We return nil for them. */
3977 if (event->kind == SELECTION_REQUEST_EVENT
3978 || event->kind == SELECTION_CLEAR_EVENT)
3980 #ifdef HAVE_X11
3981 struct input_event copy;
3983 /* Remove it from the buffer before processing it,
3984 since otherwise swallow_events will see it
3985 and process it again. */
3986 copy = *event;
3987 kbd_fetch_ptr = event + 1;
3988 input_pending = readable_events (0);
3989 x_handle_selection_event (&copy);
3990 #else
3991 /* We're getting selection request events, but we don't have
3992 a window system. */
3993 abort ();
3994 #endif
3997 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
3998 else if (event->kind == DELETE_WINDOW_EVENT)
4000 /* Make an event (delete-frame (FRAME)). */
4001 obj = Fcons (event->frame_or_window, Qnil);
4002 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
4003 kbd_fetch_ptr = event + 1;
4005 #endif
4006 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4007 else if (event->kind == ICONIFY_EVENT)
4009 /* Make an event (iconify-frame (FRAME)). */
4010 obj = Fcons (event->frame_or_window, Qnil);
4011 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
4012 kbd_fetch_ptr = event + 1;
4014 else if (event->kind == DEICONIFY_EVENT)
4016 /* Make an event (make-frame-visible (FRAME)). */
4017 obj = Fcons (event->frame_or_window, Qnil);
4018 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
4019 kbd_fetch_ptr = event + 1;
4021 #endif
4022 else if (event->kind == BUFFER_SWITCH_EVENT)
4024 /* The value doesn't matter here; only the type is tested. */
4025 XSETBUFFER (obj, current_buffer);
4026 kbd_fetch_ptr = event + 1;
4028 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
4029 || defined (USE_GTK)
4030 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
4032 kbd_fetch_ptr = event + 1;
4033 input_pending = readable_events (0);
4034 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
4035 x_activate_menubar (XFRAME (event->frame_or_window));
4037 #endif
4038 #if defined (WINDOWSNT) || defined (MAC_OS)
4039 else if (event->kind == LANGUAGE_CHANGE_EVENT)
4041 #ifdef MAC_OS
4042 /* Make an event (language-change (KEY_SCRIPT)). */
4043 obj = Fcons (make_number (event->code), Qnil);
4044 #else
4045 /* Make an event (language-change (FRAME CHARSET LCID)). */
4046 obj = Fcons (event->frame_or_window, Qnil);
4047 #endif
4048 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
4049 kbd_fetch_ptr = event + 1;
4051 #endif
4052 else if (event->kind == SAVE_SESSION_EVENT)
4054 obj = Fcons (Qsave_session, Qnil);
4055 kbd_fetch_ptr = event + 1;
4057 /* Just discard these, by returning nil.
4058 With MULTI_KBOARD, these events are used as placeholders
4059 when we need to randomly delete events from the queue.
4060 (They shouldn't otherwise be found in the buffer,
4061 but on some machines it appears they do show up
4062 even without MULTI_KBOARD.) */
4063 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4064 mouse events during a popup-menu call. */
4065 else if (event->kind == NO_EVENT)
4066 kbd_fetch_ptr = event + 1;
4067 else if (event->kind == HELP_EVENT)
4069 Lisp_Object object, position, help, frame, window;
4071 frame = event->frame_or_window;
4072 object = event->arg;
4073 position = make_number (event->code);
4074 window = event->x;
4075 help = event->y;
4076 clear_event (event);
4078 kbd_fetch_ptr = event + 1;
4079 if (!WINDOWP (window))
4080 window = Qnil;
4081 obj = Fcons (Qhelp_echo,
4082 list5 (frame, help, window, object, position));
4084 else if (event->kind == FOCUS_IN_EVENT)
4086 /* Notification of a FocusIn event. The frame receiving the
4087 focus is in event->frame_or_window. Generate a
4088 switch-frame event if necessary. */
4089 Lisp_Object frame, focus;
4091 frame = event->frame_or_window;
4092 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4093 if (FRAMEP (focus))
4094 frame = focus;
4096 if (!EQ (frame, internal_last_event_frame)
4097 && !EQ (frame, selected_frame))
4098 obj = make_lispy_switch_frame (frame);
4099 internal_last_event_frame = frame;
4100 kbd_fetch_ptr = event + 1;
4102 else
4104 /* If this event is on a different frame, return a switch-frame this
4105 time, and leave the event in the queue for next time. */
4106 Lisp_Object frame;
4107 Lisp_Object focus;
4109 frame = event->frame_or_window;
4110 if (CONSP (frame))
4111 frame = XCAR (frame);
4112 else if (WINDOWP (frame))
4113 frame = WINDOW_FRAME (XWINDOW (frame));
4115 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4116 if (! NILP (focus))
4117 frame = focus;
4119 if (! EQ (frame, internal_last_event_frame)
4120 && !EQ (frame, selected_frame))
4121 obj = make_lispy_switch_frame (frame);
4122 internal_last_event_frame = frame;
4124 /* If we didn't decide to make a switch-frame event, go ahead
4125 and build a real event from the queue entry. */
4127 if (NILP (obj))
4129 obj = make_lispy_event (event);
4131 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4132 || defined (USE_GTK)
4133 /* If this was a menu selection, then set the flag to inhibit
4134 writing to last_nonmenu_event. Don't do this if the event
4135 we're returning is (menu-bar), though; that indicates the
4136 beginning of the menu sequence, and we might as well leave
4137 that as the `event with parameters' for this selection. */
4138 if (used_mouse_menu
4139 && !EQ (event->frame_or_window, event->arg)
4140 && (event->kind == MENU_BAR_EVENT
4141 || event->kind == TOOL_BAR_EVENT))
4142 *used_mouse_menu = 1;
4143 #endif
4145 /* Wipe out this event, to catch bugs. */
4146 clear_event (event);
4147 kbd_fetch_ptr = event + 1;
4151 #ifdef HAVE_MOUSE
4152 /* Try generating a mouse motion event. */
4153 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4155 FRAME_PTR f = some_mouse_moved ();
4156 Lisp_Object bar_window;
4157 enum scroll_bar_part part;
4158 Lisp_Object x, y;
4159 unsigned long time;
4161 *kbp = current_kboard;
4162 /* Note that this uses F to determine which display to look at.
4163 If there is no valid info, it does not store anything
4164 so x remains nil. */
4165 x = Qnil;
4166 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
4168 obj = Qnil;
4170 /* Decide if we should generate a switch-frame event. Don't
4171 generate switch-frame events for motion outside of all Emacs
4172 frames. */
4173 if (!NILP (x) && f)
4175 Lisp_Object frame;
4177 frame = FRAME_FOCUS_FRAME (f);
4178 if (NILP (frame))
4179 XSETFRAME (frame, f);
4181 if (! EQ (frame, internal_last_event_frame)
4182 && !EQ (frame, selected_frame))
4183 obj = make_lispy_switch_frame (frame);
4184 internal_last_event_frame = frame;
4187 /* If we didn't decide to make a switch-frame event, go ahead and
4188 return a mouse-motion event. */
4189 if (!NILP (x) && NILP (obj))
4190 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4192 #endif /* HAVE_MOUSE */
4193 else
4194 /* We were promised by the above while loop that there was
4195 something for us to read! */
4196 abort ();
4198 input_pending = readable_events (0);
4200 Vlast_event_frame = internal_last_event_frame;
4202 return (obj);
4205 /* Process any events that are not user-visible,
4206 then return, without reading any user-visible events. */
4208 void
4209 swallow_events (do_display)
4210 int do_display;
4212 int old_timers_run;
4214 while (kbd_fetch_ptr != kbd_store_ptr)
4216 struct input_event *event;
4218 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4219 ? kbd_fetch_ptr
4220 : kbd_buffer);
4222 last_event_timestamp = event->timestamp;
4224 /* These two kinds of events get special handling
4225 and don't actually appear to the command loop. */
4226 if (event->kind == SELECTION_REQUEST_EVENT
4227 || event->kind == SELECTION_CLEAR_EVENT)
4229 #ifdef HAVE_X11
4230 struct input_event copy;
4232 /* Remove it from the buffer before processing it,
4233 since otherwise swallow_events called recursively could see it
4234 and process it again. */
4235 copy = *event;
4236 kbd_fetch_ptr = event + 1;
4237 input_pending = readable_events (0);
4238 x_handle_selection_event (&copy);
4239 #else
4240 /* We're getting selection request events, but we don't have
4241 a window system. */
4242 abort ();
4243 #endif
4245 else
4246 break;
4249 old_timers_run = timers_run;
4250 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
4252 if (timers_run != old_timers_run && do_display)
4253 redisplay_preserve_echo_area (7);
4256 /* Record the start of when Emacs is idle,
4257 for the sake of running idle-time timers. */
4259 static void
4260 timer_start_idle ()
4262 Lisp_Object timers;
4264 /* If we are already in the idle state, do nothing. */
4265 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4266 return;
4268 EMACS_GET_TIME (timer_idleness_start_time);
4270 timer_last_idleness_start_time = timer_idleness_start_time;
4272 /* Mark all idle-time timers as once again candidates for running. */
4273 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4275 Lisp_Object timer;
4277 timer = XCAR (timers);
4279 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4280 continue;
4281 XVECTOR (timer)->contents[0] = Qnil;
4285 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4287 static void
4288 timer_stop_idle ()
4290 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4293 /* Resume idle timer from last idle start time. */
4295 static void
4296 timer_resume_idle ()
4298 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4299 return;
4301 timer_idleness_start_time = timer_last_idleness_start_time;
4304 /* This is only for debugging. */
4305 struct input_event last_timer_event;
4307 /* Check whether a timer has fired. To prevent larger problems we simply
4308 disregard elements that are not proper timers. Do not make a circular
4309 timer list for the time being.
4311 Returns the number of seconds to wait until the next timer fires. If a
4312 timer is triggering now, return zero seconds.
4313 If no timer is active, return -1 seconds.
4315 If a timer is ripe, we run it, with quitting turned off.
4317 DO_IT_NOW is now ignored. It used to mean that we should
4318 run the timer directly instead of queueing a timer-event.
4319 Now we always run timers directly. */
4321 EMACS_TIME
4322 timer_check (do_it_now)
4323 int do_it_now;
4325 EMACS_TIME nexttime;
4326 EMACS_TIME now, idleness_now;
4327 Lisp_Object timers, idle_timers, chosen_timer;
4328 struct gcpro gcpro1, gcpro2, gcpro3;
4330 EMACS_SET_SECS (nexttime, -1);
4331 EMACS_SET_USECS (nexttime, -1);
4333 /* Always consider the ordinary timers. */
4334 timers = Vtimer_list;
4335 /* Consider the idle timers only if Emacs is idle. */
4336 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4337 idle_timers = Vtimer_idle_list;
4338 else
4339 idle_timers = Qnil;
4340 chosen_timer = Qnil;
4341 GCPRO3 (timers, idle_timers, chosen_timer);
4343 if (CONSP (timers) || CONSP (idle_timers))
4345 EMACS_GET_TIME (now);
4346 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4347 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4350 while (CONSP (timers) || CONSP (idle_timers))
4352 Lisp_Object *vector;
4353 Lisp_Object timer = Qnil, idle_timer = Qnil;
4354 EMACS_TIME timer_time, idle_timer_time;
4355 EMACS_TIME difference, timer_difference, idle_timer_difference;
4357 /* Skip past invalid timers and timers already handled. */
4358 if (!NILP (timers))
4360 timer = XCAR (timers);
4361 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4363 timers = XCDR (timers);
4364 continue;
4366 vector = XVECTOR (timer)->contents;
4368 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4369 || !INTEGERP (vector[3])
4370 || ! NILP (vector[0]))
4372 timers = XCDR (timers);
4373 continue;
4376 if (!NILP (idle_timers))
4378 timer = XCAR (idle_timers);
4379 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4381 idle_timers = XCDR (idle_timers);
4382 continue;
4384 vector = XVECTOR (timer)->contents;
4386 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4387 || !INTEGERP (vector[3])
4388 || ! NILP (vector[0]))
4390 idle_timers = XCDR (idle_timers);
4391 continue;
4395 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4396 based on the next ordinary timer.
4397 TIMER_DIFFERENCE is the distance in time from NOW to when
4398 this timer becomes ripe (negative if it's already ripe). */
4399 if (!NILP (timers))
4401 timer = XCAR (timers);
4402 vector = XVECTOR (timer)->contents;
4403 EMACS_SET_SECS (timer_time,
4404 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4405 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4406 EMACS_SUB_TIME (timer_difference, timer_time, now);
4409 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4410 based on the next idle timer. */
4411 if (!NILP (idle_timers))
4413 idle_timer = XCAR (idle_timers);
4414 vector = XVECTOR (idle_timer)->contents;
4415 EMACS_SET_SECS (idle_timer_time,
4416 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4417 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4418 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4421 /* Decide which timer is the next timer,
4422 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4423 Also step down the list where we found that timer. */
4425 if (! NILP (timers) && ! NILP (idle_timers))
4427 EMACS_TIME temp;
4428 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4429 if (EMACS_TIME_NEG_P (temp))
4431 chosen_timer = timer;
4432 timers = XCDR (timers);
4433 difference = timer_difference;
4435 else
4437 chosen_timer = idle_timer;
4438 idle_timers = XCDR (idle_timers);
4439 difference = idle_timer_difference;
4442 else if (! NILP (timers))
4444 chosen_timer = timer;
4445 timers = XCDR (timers);
4446 difference = timer_difference;
4448 else
4450 chosen_timer = idle_timer;
4451 idle_timers = XCDR (idle_timers);
4452 difference = idle_timer_difference;
4454 vector = XVECTOR (chosen_timer)->contents;
4456 /* If timer is ripe, run it if it hasn't been run. */
4457 if (EMACS_TIME_NEG_P (difference)
4458 || (EMACS_SECS (difference) == 0
4459 && EMACS_USECS (difference) == 0))
4461 if (NILP (vector[0]))
4463 int was_locked = single_kboard;
4464 int count = SPECPDL_INDEX ();
4465 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4467 /* Mark the timer as triggered to prevent problems if the lisp
4468 code fails to reschedule it right. */
4469 vector[0] = Qt;
4471 specbind (Qinhibit_quit, Qt);
4473 call1 (Qtimer_event_handler, chosen_timer);
4474 Vdeactivate_mark = old_deactivate_mark;
4475 timers_run++;
4476 unbind_to (count, Qnil);
4478 /* Resume allowing input from any kboard, if that was true before. */
4479 if (!was_locked)
4480 any_kboard_state ();
4482 /* Since we have handled the event,
4483 we don't need to tell the caller to wake up and do it. */
4486 else
4487 /* When we encounter a timer that is still waiting,
4488 return the amount of time to wait before it is ripe. */
4490 UNGCPRO;
4491 return difference;
4495 /* No timers are pending in the future. */
4496 /* Return 0 if we generated an event, and -1 if not. */
4497 UNGCPRO;
4498 return nexttime;
4501 /* Caches for modify_event_symbol. */
4502 static Lisp_Object accent_key_syms;
4503 static Lisp_Object func_key_syms;
4504 static Lisp_Object mouse_syms;
4505 static Lisp_Object wheel_syms;
4506 static Lisp_Object drag_n_drop_syms;
4508 /* This is a list of keysym codes for special "accent" characters.
4509 It parallels lispy_accent_keys. */
4511 static int lispy_accent_codes[] =
4513 #ifdef XK_dead_circumflex
4514 XK_dead_circumflex,
4515 #else
4517 #endif
4518 #ifdef XK_dead_grave
4519 XK_dead_grave,
4520 #else
4522 #endif
4523 #ifdef XK_dead_tilde
4524 XK_dead_tilde,
4525 #else
4527 #endif
4528 #ifdef XK_dead_diaeresis
4529 XK_dead_diaeresis,
4530 #else
4532 #endif
4533 #ifdef XK_dead_macron
4534 XK_dead_macron,
4535 #else
4537 #endif
4538 #ifdef XK_dead_degree
4539 XK_dead_degree,
4540 #else
4542 #endif
4543 #ifdef XK_dead_acute
4544 XK_dead_acute,
4545 #else
4547 #endif
4548 #ifdef XK_dead_cedilla
4549 XK_dead_cedilla,
4550 #else
4552 #endif
4553 #ifdef XK_dead_breve
4554 XK_dead_breve,
4555 #else
4557 #endif
4558 #ifdef XK_dead_ogonek
4559 XK_dead_ogonek,
4560 #else
4562 #endif
4563 #ifdef XK_dead_caron
4564 XK_dead_caron,
4565 #else
4567 #endif
4568 #ifdef XK_dead_doubleacute
4569 XK_dead_doubleacute,
4570 #else
4572 #endif
4573 #ifdef XK_dead_abovedot
4574 XK_dead_abovedot,
4575 #else
4577 #endif
4578 #ifdef XK_dead_abovering
4579 XK_dead_abovering,
4580 #else
4582 #endif
4583 #ifdef XK_dead_iota
4584 XK_dead_iota,
4585 #else
4587 #endif
4588 #ifdef XK_dead_belowdot
4589 XK_dead_belowdot,
4590 #else
4592 #endif
4593 #ifdef XK_dead_voiced_sound
4594 XK_dead_voiced_sound,
4595 #else
4597 #endif
4598 #ifdef XK_dead_semivoiced_sound
4599 XK_dead_semivoiced_sound,
4600 #else
4602 #endif
4603 #ifdef XK_dead_hook
4604 XK_dead_hook,
4605 #else
4607 #endif
4608 #ifdef XK_dead_horn
4609 XK_dead_horn,
4610 #else
4612 #endif
4615 /* This is a list of Lisp names for special "accent" characters.
4616 It parallels lispy_accent_codes. */
4618 static char *lispy_accent_keys[] =
4620 "dead-circumflex",
4621 "dead-grave",
4622 "dead-tilde",
4623 "dead-diaeresis",
4624 "dead-macron",
4625 "dead-degree",
4626 "dead-acute",
4627 "dead-cedilla",
4628 "dead-breve",
4629 "dead-ogonek",
4630 "dead-caron",
4631 "dead-doubleacute",
4632 "dead-abovedot",
4633 "dead-abovering",
4634 "dead-iota",
4635 "dead-belowdot",
4636 "dead-voiced-sound",
4637 "dead-semivoiced-sound",
4638 "dead-hook",
4639 "dead-horn",
4642 #ifdef HAVE_NTGUI
4643 #define FUNCTION_KEY_OFFSET 0x0
4645 char *lispy_function_keys[] =
4647 0, /* 0 */
4649 0, /* VK_LBUTTON 0x01 */
4650 0, /* VK_RBUTTON 0x02 */
4651 "cancel", /* VK_CANCEL 0x03 */
4652 0, /* VK_MBUTTON 0x04 */
4654 0, 0, 0, /* 0x05 .. 0x07 */
4656 "backspace", /* VK_BACK 0x08 */
4657 "tab", /* VK_TAB 0x09 */
4659 0, 0, /* 0x0A .. 0x0B */
4661 "clear", /* VK_CLEAR 0x0C */
4662 "return", /* VK_RETURN 0x0D */
4664 0, 0, /* 0x0E .. 0x0F */
4666 0, /* VK_SHIFT 0x10 */
4667 0, /* VK_CONTROL 0x11 */
4668 0, /* VK_MENU 0x12 */
4669 "pause", /* VK_PAUSE 0x13 */
4670 "capslock", /* VK_CAPITAL 0x14 */
4672 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4674 "escape", /* VK_ESCAPE 0x1B */
4676 0, 0, 0, 0, /* 0x1C .. 0x1F */
4678 0, /* VK_SPACE 0x20 */
4679 "prior", /* VK_PRIOR 0x21 */
4680 "next", /* VK_NEXT 0x22 */
4681 "end", /* VK_END 0x23 */
4682 "home", /* VK_HOME 0x24 */
4683 "left", /* VK_LEFT 0x25 */
4684 "up", /* VK_UP 0x26 */
4685 "right", /* VK_RIGHT 0x27 */
4686 "down", /* VK_DOWN 0x28 */
4687 "select", /* VK_SELECT 0x29 */
4688 "print", /* VK_PRINT 0x2A */
4689 "execute", /* VK_EXECUTE 0x2B */
4690 "snapshot", /* VK_SNAPSHOT 0x2C */
4691 "insert", /* VK_INSERT 0x2D */
4692 "delete", /* VK_DELETE 0x2E */
4693 "help", /* VK_HELP 0x2F */
4695 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4697 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4699 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4701 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4703 0, 0, 0, 0, 0, 0, 0, 0, 0,
4704 0, 0, 0, 0, 0, 0, 0, 0, 0,
4705 0, 0, 0, 0, 0, 0, 0, 0,
4707 "lwindow", /* VK_LWIN 0x5B */
4708 "rwindow", /* VK_RWIN 0x5C */
4709 "apps", /* VK_APPS 0x5D */
4711 0, 0, /* 0x5E .. 0x5F */
4713 "kp-0", /* VK_NUMPAD0 0x60 */
4714 "kp-1", /* VK_NUMPAD1 0x61 */
4715 "kp-2", /* VK_NUMPAD2 0x62 */
4716 "kp-3", /* VK_NUMPAD3 0x63 */
4717 "kp-4", /* VK_NUMPAD4 0x64 */
4718 "kp-5", /* VK_NUMPAD5 0x65 */
4719 "kp-6", /* VK_NUMPAD6 0x66 */
4720 "kp-7", /* VK_NUMPAD7 0x67 */
4721 "kp-8", /* VK_NUMPAD8 0x68 */
4722 "kp-9", /* VK_NUMPAD9 0x69 */
4723 "kp-multiply", /* VK_MULTIPLY 0x6A */
4724 "kp-add", /* VK_ADD 0x6B */
4725 "kp-separator", /* VK_SEPARATOR 0x6C */
4726 "kp-subtract", /* VK_SUBTRACT 0x6D */
4727 "kp-decimal", /* VK_DECIMAL 0x6E */
4728 "kp-divide", /* VK_DIVIDE 0x6F */
4729 "f1", /* VK_F1 0x70 */
4730 "f2", /* VK_F2 0x71 */
4731 "f3", /* VK_F3 0x72 */
4732 "f4", /* VK_F4 0x73 */
4733 "f5", /* VK_F5 0x74 */
4734 "f6", /* VK_F6 0x75 */
4735 "f7", /* VK_F7 0x76 */
4736 "f8", /* VK_F8 0x77 */
4737 "f9", /* VK_F9 0x78 */
4738 "f10", /* VK_F10 0x79 */
4739 "f11", /* VK_F11 0x7A */
4740 "f12", /* VK_F12 0x7B */
4741 "f13", /* VK_F13 0x7C */
4742 "f14", /* VK_F14 0x7D */
4743 "f15", /* VK_F15 0x7E */
4744 "f16", /* VK_F16 0x7F */
4745 "f17", /* VK_F17 0x80 */
4746 "f18", /* VK_F18 0x81 */
4747 "f19", /* VK_F19 0x82 */
4748 "f20", /* VK_F20 0x83 */
4749 "f21", /* VK_F21 0x84 */
4750 "f22", /* VK_F22 0x85 */
4751 "f23", /* VK_F23 0x86 */
4752 "f24", /* VK_F24 0x87 */
4754 0, 0, 0, 0, /* 0x88 .. 0x8B */
4755 0, 0, 0, 0, /* 0x8C .. 0x8F */
4757 "kp-numlock", /* VK_NUMLOCK 0x90 */
4758 "scroll", /* VK_SCROLL 0x91 */
4760 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4761 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4762 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4763 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4764 "kp-end", /* VK_NUMPAD_END 0x96 */
4765 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4766 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4767 "kp-up", /* VK_NUMPAD_UP 0x99 */
4768 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4769 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4770 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4771 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4773 0, 0, /* 0x9E .. 0x9F */
4776 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4777 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4778 * No other API or message will distinguish left and right keys this way.
4780 /* 0xA0 .. 0xEF */
4782 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4783 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4784 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4785 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4786 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4788 /* 0xF0 .. 0xF5 */
4790 0, 0, 0, 0, 0, 0,
4792 "attn", /* VK_ATTN 0xF6 */
4793 "crsel", /* VK_CRSEL 0xF7 */
4794 "exsel", /* VK_EXSEL 0xF8 */
4795 "ereof", /* VK_EREOF 0xF9 */
4796 "play", /* VK_PLAY 0xFA */
4797 "zoom", /* VK_ZOOM 0xFB */
4798 "noname", /* VK_NONAME 0xFC */
4799 "pa1", /* VK_PA1 0xFD */
4800 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4801 0 /* 0xFF */
4804 #else /* not HAVE_NTGUI */
4806 /* This should be dealt with in XTread_socket now, and that doesn't
4807 depend on the client system having the Kana syms defined. See also
4808 the XK_kana_A case below. */
4809 #if 0
4810 #ifdef XK_kana_A
4811 static char *lispy_kana_keys[] =
4813 /* X Keysym value */
4814 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4815 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4816 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4817 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4818 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4819 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4820 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4821 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4822 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4823 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4824 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4825 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4826 "kana-i", "kana-u", "kana-e", "kana-o",
4827 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4828 "prolongedsound", "kana-A", "kana-I", "kana-U",
4829 "kana-E", "kana-O", "kana-KA", "kana-KI",
4830 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4831 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4832 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4833 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4834 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4835 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4836 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4837 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4838 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4839 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4840 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4841 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4843 #endif /* XK_kana_A */
4844 #endif /* 0 */
4846 #define FUNCTION_KEY_OFFSET 0xff00
4848 /* You'll notice that this table is arranged to be conveniently
4849 indexed by X Windows keysym values. */
4850 static char *lispy_function_keys[] =
4852 /* X Keysym value */
4854 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4855 "backspace", "tab", "linefeed", "clear",
4856 0, "return", 0, 0,
4857 0, 0, 0, "pause", /* 0xff10...1f */
4858 0, 0, 0, 0, 0, 0, 0, "escape",
4859 0, 0, 0, 0,
4860 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4861 "romaji", "hiragana", "katakana", "hiragana-katakana",
4862 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4863 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4864 "eisu-toggle", /* 0xff30...3f */
4865 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4866 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4868 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4869 "down", "prior", "next", "end",
4870 "begin", 0, 0, 0, 0, 0, 0, 0,
4871 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4872 "print",
4873 "execute",
4874 "insert",
4875 0, /* 0xff64 */
4876 "undo",
4877 "redo",
4878 "menu",
4879 "find",
4880 "cancel",
4881 "help",
4882 "break", /* 0xff6b */
4884 0, 0, 0, 0,
4885 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4886 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4887 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4888 0, 0, 0, 0, 0, 0, 0, 0,
4889 "kp-tab", /* 0xff89 */
4890 0, 0, 0,
4891 "kp-enter", /* 0xff8d */
4892 0, 0, 0,
4893 "kp-f1", /* 0xff91 */
4894 "kp-f2",
4895 "kp-f3",
4896 "kp-f4",
4897 "kp-home", /* 0xff95 */
4898 "kp-left",
4899 "kp-up",
4900 "kp-right",
4901 "kp-down",
4902 "kp-prior", /* kp-page-up */
4903 "kp-next", /* kp-page-down */
4904 "kp-end",
4905 "kp-begin",
4906 "kp-insert",
4907 "kp-delete",
4908 0, /* 0xffa0 */
4909 0, 0, 0, 0, 0, 0, 0, 0, 0,
4910 "kp-multiply", /* 0xffaa */
4911 "kp-add",
4912 "kp-separator",
4913 "kp-subtract",
4914 "kp-decimal",
4915 "kp-divide", /* 0xffaf */
4916 "kp-0", /* 0xffb0 */
4917 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4918 0, /* 0xffba */
4919 0, 0,
4920 "kp-equal", /* 0xffbd */
4921 "f1", /* 0xffbe */ /* IsFunctionKey */
4922 "f2",
4923 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4924 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4925 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4926 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4927 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4928 0, 0, 0, 0, 0, 0, 0, 0,
4929 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4930 0, 0, 0, 0, 0, 0, 0, "delete"
4933 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4934 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
4936 static char *iso_lispy_function_keys[] =
4938 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4939 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4940 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4941 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4942 "iso-lefttab", /* 0xfe20 */
4943 "iso-move-line-up", "iso-move-line-down",
4944 "iso-partial-line-up", "iso-partial-line-down",
4945 "iso-partial-space-left", "iso-partial-space-right",
4946 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4947 "iso-release-margin-left", "iso-release-margin-right",
4948 "iso-release-both-margins",
4949 "iso-fast-cursor-left", "iso-fast-cursor-right",
4950 "iso-fast-cursor-up", "iso-fast-cursor-down",
4951 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4952 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4955 #endif /* not HAVE_NTGUI */
4957 Lisp_Object Vlispy_mouse_stem;
4959 static char *lispy_wheel_names[] =
4961 "wheel-up", "wheel-down"
4964 /* drag-n-drop events are generated when a set of selected files are
4965 dragged from another application and dropped onto an Emacs window. */
4966 static char *lispy_drag_n_drop_names[] =
4968 "drag-n-drop"
4971 /* Scroll bar parts. */
4972 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4973 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
4974 Lisp_Object Qtop, Qratio;
4976 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4977 Lisp_Object *scroll_bar_parts[] = {
4978 &Qabove_handle, &Qhandle, &Qbelow_handle,
4979 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4982 /* User signal events. */
4983 Lisp_Object Qusr1_signal, Qusr2_signal;
4985 Lisp_Object *lispy_user_signals[] =
4987 &Qusr1_signal, &Qusr2_signal
4991 /* A vector, indexed by button number, giving the down-going location
4992 of currently depressed buttons, both scroll bar and non-scroll bar.
4994 The elements have the form
4995 (BUTTON-NUMBER MODIFIER-MASK . REST)
4996 where REST is the cdr of a position as it would be reported in the event.
4998 The make_lispy_event function stores positions here to tell the
4999 difference between click and drag events, and to store the starting
5000 location to be included in drag events. */
5002 static Lisp_Object button_down_location;
5004 /* Information about the most recent up-going button event: Which
5005 button, what location, and what time. */
5007 static int last_mouse_button;
5008 static int last_mouse_x;
5009 static int last_mouse_y;
5010 static unsigned long button_down_time;
5012 /* The maximum time between clicks to make a double-click, or Qnil to
5013 disable double-click detection, or Qt for no time limit. */
5015 Lisp_Object Vdouble_click_time;
5017 /* Maximum number of pixels the mouse may be moved between clicks
5018 to make a double-click. */
5020 EMACS_INT double_click_fuzz;
5022 /* The number of clicks in this multiple-click. */
5024 int double_click_count;
5026 /* Return position of a mouse click or wheel event */
5028 static Lisp_Object
5029 make_lispy_position (f, x, y, time)
5030 struct frame *f;
5031 Lisp_Object *x, *y;
5032 unsigned long time;
5034 Lisp_Object window;
5035 enum window_part part;
5036 Lisp_Object posn = Qnil;
5037 Lisp_Object extra_info = Qnil;
5038 int wx, wy;
5040 /* Set `window' to the window under frame pixel coordinates (x,y) */
5041 if (f)
5042 window = window_from_coordinates (f, XINT (*x), XINT (*y),
5043 &part, &wx, &wy, 0);
5044 else
5045 window = Qnil;
5047 if (WINDOWP (window))
5049 /* It's a click in window window at frame coordinates (x,y) */
5050 struct window *w = XWINDOW (window);
5051 Lisp_Object string_info = Qnil;
5052 int textpos = -1, rx = -1, ry = -1;
5053 int dx = -1, dy = -1;
5054 int width = -1, height = -1;
5055 Lisp_Object object = Qnil;
5057 /* Set event coordinates to window-relative coordinates
5058 for constructing the Lisp event below. */
5059 XSETINT (*x, wx);
5060 XSETINT (*y, wy);
5062 if (part == ON_TEXT)
5064 wx += WINDOW_LEFT_MARGIN_WIDTH (w);
5066 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5068 /* Mode line or header line. Look for a string under
5069 the mouse that may have a `local-map' property. */
5070 Lisp_Object string;
5071 int charpos;
5073 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5074 rx = wx, ry = wy;
5075 string = mode_line_string (w, part, &rx, &ry, &charpos,
5076 &object, &dx, &dy, &width, &height);
5077 if (STRINGP (string))
5078 string_info = Fcons (string, make_number (charpos));
5079 if (w == XWINDOW (selected_window))
5080 textpos = PT;
5081 else
5082 textpos = XMARKER (w->pointm)->charpos;
5084 else if (part == ON_VERTICAL_BORDER)
5086 posn = Qvertical_line;
5087 wx = -1;
5088 dx = 0;
5089 width = 1;
5091 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5093 Lisp_Object string;
5094 int charpos;
5096 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5097 rx = wx, ry = wy;
5098 string = marginal_area_string (w, part, &rx, &ry, &charpos,
5099 &object, &dx, &dy, &width, &height);
5100 if (STRINGP (string))
5101 string_info = Fcons (string, make_number (charpos));
5102 if (part == ON_LEFT_MARGIN)
5103 wx = 0;
5104 else
5105 wx = window_box_right_offset (w, TEXT_AREA) - 1;
5107 else if (part == ON_LEFT_FRINGE)
5109 posn = Qleft_fringe;
5110 rx = 0;
5111 dx = wx;
5112 wx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5114 : window_box_width (w, LEFT_MARGIN_AREA));
5115 dx -= wx;
5117 else if (part == ON_RIGHT_FRINGE)
5119 posn = Qright_fringe;
5120 rx = 0;
5121 dx = wx;
5122 wx = (window_box_width (w, LEFT_MARGIN_AREA)
5123 + window_box_width (w, TEXT_AREA)
5124 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5125 ? window_box_width (w, RIGHT_MARGIN_AREA)
5126 : 0));
5127 dx -= wx;
5129 else
5131 /* Note: We have no special posn for part == ON_SCROLL_BAR. */
5132 wx = max (WINDOW_LEFT_MARGIN_WIDTH (w), wx);
5135 if (textpos < 0)
5137 Lisp_Object string2, object2 = Qnil;
5138 struct display_pos p;
5139 int dx2, dy2;
5140 int width2, height2;
5141 string2 = buffer_posn_from_coords (w, &wx, &wy, &p,
5142 &object2, &dx2, &dy2,
5143 &width2, &height2);
5144 textpos = CHARPOS (p.pos);
5145 if (rx < 0) rx = wx;
5146 if (ry < 0) ry = wy;
5147 if (dx < 0) dx = dx2;
5148 if (dy < 0) dy = dy2;
5149 if (width < 0) width = width2;
5150 if (height < 0) height = height2;
5152 if (NILP (posn))
5154 posn = make_number (textpos);
5155 if (STRINGP (string2))
5156 string_info = Fcons (string2,
5157 make_number (CHARPOS (p.string_pos)));
5159 if (NILP (object))
5160 object = object2;
5163 #ifdef HAVE_WINDOW_SYSTEM
5164 if (IMAGEP (object))
5166 Lisp_Object image_map, hotspot;
5167 if ((image_map = Fplist_get (XCDR (object), QCmap),
5168 !NILP (image_map))
5169 && (hotspot = find_hot_spot (image_map, dx, dy),
5170 CONSP (hotspot))
5171 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5172 posn = XCAR (hotspot);
5174 #endif
5176 /* Object info */
5177 extra_info = Fcons (object,
5178 Fcons (Fcons (make_number (dx),
5179 make_number (dy)),
5180 Fcons (Fcons (make_number (width),
5181 make_number (height)),
5182 Qnil)));
5184 /* String info */
5185 extra_info = Fcons (string_info,
5186 Fcons (make_number (textpos),
5187 Fcons (Fcons (make_number (rx),
5188 make_number (ry)),
5189 extra_info)));
5191 else if (f != 0)
5193 XSETFRAME (window, f);
5195 else
5197 window = Qnil;
5198 XSETFASTINT (*x, 0);
5199 XSETFASTINT (*y, 0);
5202 return Fcons (window,
5203 Fcons (posn,
5204 Fcons (Fcons (*x, *y),
5205 Fcons (make_number (time),
5206 extra_info))));
5209 /* Given a struct input_event, build the lisp event which represents
5210 it. If EVENT is 0, build a mouse movement event from the mouse
5211 movement buffer, which should have a movement event in it.
5213 Note that events must be passed to this function in the order they
5214 are received; this function stores the location of button presses
5215 in order to build drag events when the button is released. */
5217 static Lisp_Object
5218 make_lispy_event (event)
5219 struct input_event *event;
5221 int i;
5223 switch (SWITCH_ENUM_CAST (event->kind))
5225 /* A simple keystroke. */
5226 case ASCII_KEYSTROKE_EVENT:
5228 Lisp_Object lispy_c;
5229 int c = event->code & 0377;
5230 /* Turn ASCII characters into control characters
5231 when proper. */
5232 if (event->modifiers & ctrl_modifier)
5233 c = make_ctrl_char (c);
5235 /* Add in the other modifier bits. We took care of ctrl_modifier
5236 just above, and the shift key was taken care of by the X code,
5237 and applied to control characters by make_ctrl_char. */
5238 c |= (event->modifiers
5239 & (meta_modifier | alt_modifier
5240 | hyper_modifier | super_modifier));
5241 /* Distinguish Shift-SPC from SPC. */
5242 if ((event->code & 0377) == 040
5243 && event->modifiers & shift_modifier)
5244 c |= shift_modifier;
5245 button_down_time = 0;
5246 XSETFASTINT (lispy_c, c);
5247 return lispy_c;
5250 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5252 Lisp_Object lispy_c;
5253 int c = event->code;
5255 /* Add in the other modifier bits. We took care of ctrl_modifier
5256 just above, and the shift key was taken care of by the X code,
5257 and applied to control characters by make_ctrl_char. */
5258 c |= (event->modifiers
5259 & (meta_modifier | alt_modifier
5260 | hyper_modifier | super_modifier | ctrl_modifier));
5261 /* What about the `shift' modifier ? */
5262 button_down_time = 0;
5263 XSETFASTINT (lispy_c, c);
5264 return lispy_c;
5267 /* A function key. The symbol may need to have modifier prefixes
5268 tacked onto it. */
5269 case NON_ASCII_KEYSTROKE_EVENT:
5270 button_down_time = 0;
5272 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5273 if (event->code == lispy_accent_codes[i])
5274 return modify_event_symbol (i,
5275 event->modifiers,
5276 Qfunction_key, Qnil,
5277 lispy_accent_keys, &accent_key_syms,
5278 (sizeof (lispy_accent_keys)
5279 / sizeof (lispy_accent_keys[0])));
5281 #if 0
5282 #ifdef XK_kana_A
5283 if (event->code >= 0x400 && event->code < 0x500)
5284 return modify_event_symbol (event->code - 0x400,
5285 event->modifiers & ~shift_modifier,
5286 Qfunction_key, Qnil,
5287 lispy_kana_keys, &func_key_syms,
5288 (sizeof (lispy_kana_keys)
5289 / sizeof (lispy_kana_keys[0])));
5290 #endif /* XK_kana_A */
5291 #endif /* 0 */
5293 #ifdef ISO_FUNCTION_KEY_OFFSET
5294 if (event->code < FUNCTION_KEY_OFFSET
5295 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5296 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5297 event->modifiers,
5298 Qfunction_key, Qnil,
5299 iso_lispy_function_keys, &func_key_syms,
5300 (sizeof (iso_lispy_function_keys)
5301 / sizeof (iso_lispy_function_keys[0])));
5302 #endif
5304 /* Handle system-specific or unknown keysyms. */
5305 if (event->code & (1 << 28)
5306 || event->code - FUNCTION_KEY_OFFSET < 0
5307 || (event->code - FUNCTION_KEY_OFFSET
5308 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5309 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5311 /* We need to use an alist rather than a vector as the cache
5312 since we can't make a vector long enuf. */
5313 if (NILP (current_kboard->system_key_syms))
5314 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5315 return modify_event_symbol (event->code,
5316 event->modifiers,
5317 Qfunction_key,
5318 current_kboard->Vsystem_key_alist,
5319 0, &current_kboard->system_key_syms,
5320 (unsigned) -1);
5323 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5324 event->modifiers,
5325 Qfunction_key, Qnil,
5326 lispy_function_keys, &func_key_syms,
5327 (sizeof (lispy_function_keys)
5328 / sizeof (lispy_function_keys[0])));
5330 #ifdef HAVE_MOUSE
5331 /* A mouse click. Figure out where it is, decide whether it's
5332 a press, click or drag, and build the appropriate structure. */
5333 case MOUSE_CLICK_EVENT:
5334 #ifndef USE_TOOLKIT_SCROLL_BARS
5335 case SCROLL_BAR_CLICK_EVENT:
5336 #endif
5338 int button = event->code;
5339 int is_double;
5340 Lisp_Object position;
5341 Lisp_Object *start_pos_ptr;
5342 Lisp_Object start_pos;
5344 position = Qnil;
5346 /* Build the position as appropriate for this mouse click. */
5347 if (event->kind == MOUSE_CLICK_EVENT)
5349 struct frame *f = XFRAME (event->frame_or_window);
5350 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5351 int row, column;
5352 #endif
5354 /* Ignore mouse events that were made on frame that
5355 have been deleted. */
5356 if (! FRAME_LIVE_P (f))
5357 return Qnil;
5359 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5360 /* EVENT->x and EVENT->y are frame-relative pixel
5361 coordinates at this place. Under old redisplay, COLUMN
5362 and ROW are set to frame relative glyph coordinates
5363 which are then used to determine whether this click is
5364 in a menu (non-toolkit version). */
5365 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5366 &column, &row, NULL, 1);
5368 /* In the non-toolkit version, clicks on the menu bar
5369 are ordinary button events in the event buffer.
5370 Distinguish them, and invoke the menu.
5372 (In the toolkit version, the toolkit handles the menu bar
5373 and Emacs doesn't know about it until after the user
5374 makes a selection.) */
5375 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5376 && (event->modifiers & down_modifier))
5378 Lisp_Object items, item;
5379 int hpos;
5380 int i;
5382 #if 0
5383 /* Activate the menu bar on the down event. If the
5384 up event comes in before the menu code can deal with it,
5385 just ignore it. */
5386 if (! (event->modifiers & down_modifier))
5387 return Qnil;
5388 #endif
5390 /* Find the menu bar item under `column'. */
5391 item = Qnil;
5392 items = FRAME_MENU_BAR_ITEMS (f);
5393 for (i = 0; i < XVECTOR (items)->size; i += 4)
5395 Lisp_Object pos, string;
5396 string = AREF (items, i + 1);
5397 pos = AREF (items, i + 3);
5398 if (NILP (string))
5399 break;
5400 if (column >= XINT (pos)
5401 && column < XINT (pos) + SCHARS (string))
5403 item = AREF (items, i);
5404 break;
5408 /* ELisp manual 2.4b says (x y) are window relative but
5409 code says they are frame-relative. */
5410 position
5411 = Fcons (event->frame_or_window,
5412 Fcons (Qmenu_bar,
5413 Fcons (Fcons (event->x, event->y),
5414 Fcons (make_number (event->timestamp),
5415 Qnil))));
5417 return Fcons (item, Fcons (position, Qnil));
5419 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5421 position = make_lispy_position (f, &event->x, &event->y,
5422 event->timestamp);
5424 #ifndef USE_TOOLKIT_SCROLL_BARS
5425 else
5427 /* It's a scrollbar click. */
5428 Lisp_Object window;
5429 Lisp_Object portion_whole;
5430 Lisp_Object part;
5432 window = event->frame_or_window;
5433 portion_whole = Fcons (event->x, event->y);
5434 part = *scroll_bar_parts[(int) event->part];
5436 position
5437 = Fcons (window,
5438 Fcons (Qvertical_scroll_bar,
5439 Fcons (portion_whole,
5440 Fcons (make_number (event->timestamp),
5441 Fcons (part, Qnil)))));
5443 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5445 if (button >= ASIZE (button_down_location))
5447 button_down_location = larger_vector (button_down_location,
5448 button + 1, Qnil);
5449 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5452 start_pos_ptr = &AREF (button_down_location, button);
5453 start_pos = *start_pos_ptr;
5454 *start_pos_ptr = Qnil;
5457 /* On window-system frames, use the value of
5458 double-click-fuzz as is. On other frames, interpret it
5459 as a multiple of 1/8 characters. */
5460 struct frame *f;
5461 int fuzz;
5463 if (WINDOWP (event->frame_or_window))
5464 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5465 else if (FRAMEP (event->frame_or_window))
5466 f = XFRAME (event->frame_or_window);
5467 else
5468 abort ();
5470 if (FRAME_WINDOW_P (f))
5471 fuzz = double_click_fuzz;
5472 else
5473 fuzz = double_click_fuzz / 8;
5475 is_double = (button == last_mouse_button
5476 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5477 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5478 && button_down_time != 0
5479 && (EQ (Vdouble_click_time, Qt)
5480 || (INTEGERP (Vdouble_click_time)
5481 && ((int)(event->timestamp - button_down_time)
5482 < XINT (Vdouble_click_time)))));
5485 last_mouse_button = button;
5486 last_mouse_x = XINT (event->x);
5487 last_mouse_y = XINT (event->y);
5489 /* If this is a button press, squirrel away the location, so
5490 we can decide later whether it was a click or a drag. */
5491 if (event->modifiers & down_modifier)
5493 if (is_double)
5495 double_click_count++;
5496 event->modifiers |= ((double_click_count > 2)
5497 ? triple_modifier
5498 : double_modifier);
5500 else
5501 double_click_count = 1;
5502 button_down_time = event->timestamp;
5503 *start_pos_ptr = Fcopy_alist (position);
5506 /* Now we're releasing a button - check the co-ordinates to
5507 see if this was a click or a drag. */
5508 else if (event->modifiers & up_modifier)
5510 /* If we did not see a down before this up, ignore the up.
5511 Probably this happened because the down event chose a
5512 menu item. It would be an annoyance to treat the
5513 release of the button that chose the menu item as a
5514 separate event. */
5516 if (!CONSP (start_pos))
5517 return Qnil;
5519 event->modifiers &= ~up_modifier;
5520 #if 0 /* Formerly we treated an up with no down as a click event. */
5521 if (!CONSP (start_pos))
5522 event->modifiers |= click_modifier;
5523 else
5524 #endif
5526 Lisp_Object down;
5527 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5529 /* The third element of every position
5530 should be the (x,y) pair. */
5531 down = Fcar (Fcdr (Fcdr (start_pos)));
5532 if (CONSP (down)
5533 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5535 xdiff = XINT (event->x) - XINT (XCAR (down));
5536 ydiff = XINT (event->y) - XINT (XCDR (down));
5539 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5540 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5541 /* Maybe the mouse has moved a lot, caused scrolling, and
5542 eventually ended up at the same screen position (but
5543 not buffer position) in which case it is a drag, not
5544 a click. */
5545 /* FIXME: OTOH if the buffer position has changed
5546 because of a timer or process filter rather than
5547 because of mouse movement, it should be considered as
5548 a click. But mouse-drag-region completely ignores
5549 this case and it hasn't caused any real problem, so
5550 it's probably OK to ignore it as well. */
5551 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5552 /* Mouse hasn't moved (much). */
5553 event->modifiers |= click_modifier;
5554 else
5556 button_down_time = 0;
5557 event->modifiers |= drag_modifier;
5560 /* Don't check is_double; treat this as multiple
5561 if the down-event was multiple. */
5562 if (double_click_count > 1)
5563 event->modifiers |= ((double_click_count > 2)
5564 ? triple_modifier
5565 : double_modifier);
5568 else
5569 /* Every mouse event should either have the down_modifier or
5570 the up_modifier set. */
5571 abort ();
5574 /* Get the symbol we should use for the mouse click. */
5575 Lisp_Object head;
5577 head = modify_event_symbol (button,
5578 event->modifiers,
5579 Qmouse_click, Vlispy_mouse_stem,
5580 NULL,
5581 &mouse_syms,
5582 XVECTOR (mouse_syms)->size);
5583 if (event->modifiers & drag_modifier)
5584 return Fcons (head,
5585 Fcons (start_pos,
5586 Fcons (position,
5587 Qnil)));
5588 else if (event->modifiers & (double_modifier | triple_modifier))
5589 return Fcons (head,
5590 Fcons (position,
5591 Fcons (make_number (double_click_count),
5592 Qnil)));
5593 else
5594 return Fcons (head,
5595 Fcons (position,
5596 Qnil));
5600 case WHEEL_EVENT:
5602 Lisp_Object position;
5603 Lisp_Object head;
5605 /* Build the position as appropriate for this mouse click. */
5606 struct frame *f = XFRAME (event->frame_or_window);
5608 /* Ignore wheel events that were made on frame that have been
5609 deleted. */
5610 if (! FRAME_LIVE_P (f))
5611 return Qnil;
5613 position = make_lispy_position (f, &event->x, &event->y,
5614 event->timestamp);
5616 /* Set double or triple modifiers to indicate the wheel speed. */
5618 /* On window-system frames, use the value of
5619 double-click-fuzz as is. On other frames, interpret it
5620 as a multiple of 1/8 characters. */
5621 struct frame *f;
5622 int fuzz;
5623 int is_double;
5625 if (WINDOWP (event->frame_or_window))
5626 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5627 else if (FRAMEP (event->frame_or_window))
5628 f = XFRAME (event->frame_or_window);
5629 else
5630 abort ();
5632 if (FRAME_WINDOW_P (f))
5633 fuzz = double_click_fuzz;
5634 else
5635 fuzz = double_click_fuzz / 8;
5637 is_double = (last_mouse_button < 0
5638 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5639 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5640 && button_down_time != 0
5641 && (EQ (Vdouble_click_time, Qt)
5642 || (INTEGERP (Vdouble_click_time)
5643 && ((int)(event->timestamp - button_down_time)
5644 < XINT (Vdouble_click_time)))));
5645 if (is_double)
5647 double_click_count++;
5648 event->modifiers |= ((double_click_count > 2)
5649 ? triple_modifier
5650 : double_modifier);
5652 else
5654 double_click_count = 1;
5655 event->modifiers |= click_modifier;
5658 button_down_time = event->timestamp;
5659 /* Use a negative value to distinguish wheel from mouse button. */
5660 last_mouse_button = -1;
5661 last_mouse_x = XINT (event->x);
5662 last_mouse_y = XINT (event->y);
5666 int symbol_num;
5668 if (event->modifiers & up_modifier)
5670 /* Emit a wheel-up event. */
5671 event->modifiers &= ~up_modifier;
5672 symbol_num = 0;
5674 else if (event->modifiers & down_modifier)
5676 /* Emit a wheel-down event. */
5677 event->modifiers &= ~down_modifier;
5678 symbol_num = 1;
5680 else
5681 /* Every wheel event should either have the down_modifier or
5682 the up_modifier set. */
5683 abort ();
5685 /* Get the symbol we should use for the wheel event. */
5686 head = modify_event_symbol (symbol_num,
5687 event->modifiers,
5688 Qmouse_click,
5689 Qnil,
5690 lispy_wheel_names,
5691 &wheel_syms,
5692 ASIZE (wheel_syms));
5695 if (event->modifiers & (double_modifier | triple_modifier))
5696 return Fcons (head,
5697 Fcons (position,
5698 Fcons (make_number (double_click_count),
5699 Qnil)));
5700 else
5701 return Fcons (head,
5702 Fcons (position,
5703 Qnil));
5707 #ifdef USE_TOOLKIT_SCROLL_BARS
5709 /* We don't have down and up events if using toolkit scroll bars,
5710 so make this always a click event. Store in the `part' of
5711 the Lisp event a symbol which maps to the following actions:
5713 `above_handle' page up
5714 `below_handle' page down
5715 `up' line up
5716 `down' line down
5717 `top' top of buffer
5718 `bottom' bottom of buffer
5719 `handle' thumb has been dragged.
5720 `end-scroll' end of interaction with scroll bar
5722 The incoming input_event contains in its `part' member an
5723 index of type `enum scroll_bar_part' which we can use as an
5724 index in scroll_bar_parts to get the appropriate symbol. */
5726 case SCROLL_BAR_CLICK_EVENT:
5728 Lisp_Object position, head, window, portion_whole, part;
5730 window = event->frame_or_window;
5731 portion_whole = Fcons (event->x, event->y);
5732 part = *scroll_bar_parts[(int) event->part];
5734 position
5735 = Fcons (window,
5736 Fcons (Qvertical_scroll_bar,
5737 Fcons (portion_whole,
5738 Fcons (make_number (event->timestamp),
5739 Fcons (part, Qnil)))));
5741 /* Always treat scroll bar events as clicks. */
5742 event->modifiers |= click_modifier;
5743 event->modifiers &= ~up_modifier;
5745 if (event->code >= ASIZE (mouse_syms))
5746 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5748 /* Get the symbol we should use for the mouse click. */
5749 head = modify_event_symbol (event->code,
5750 event->modifiers,
5751 Qmouse_click,
5752 Vlispy_mouse_stem,
5753 NULL, &mouse_syms,
5754 XVECTOR (mouse_syms)->size);
5755 return Fcons (head, Fcons (position, Qnil));
5758 #endif /* USE_TOOLKIT_SCROLL_BARS */
5760 #ifdef WINDOWSNT
5761 case W32_SCROLL_BAR_CLICK_EVENT:
5763 int button = event->code;
5764 int is_double;
5765 Lisp_Object position;
5766 Lisp_Object *start_pos_ptr;
5767 Lisp_Object start_pos;
5770 Lisp_Object window;
5771 Lisp_Object portion_whole;
5772 Lisp_Object part;
5774 window = event->frame_or_window;
5775 portion_whole = Fcons (event->x, event->y);
5776 part = *scroll_bar_parts[(int) event->part];
5778 position
5779 = Fcons (window,
5780 Fcons (Qvertical_scroll_bar,
5781 Fcons (portion_whole,
5782 Fcons (make_number (event->timestamp),
5783 Fcons (part, Qnil)))));
5786 /* Always treat W32 scroll bar events as clicks. */
5787 event->modifiers |= click_modifier;
5790 /* Get the symbol we should use for the mouse click. */
5791 Lisp_Object head;
5793 head = modify_event_symbol (button,
5794 event->modifiers,
5795 Qmouse_click,
5796 Vlispy_mouse_stem,
5797 NULL, &mouse_syms,
5798 XVECTOR (mouse_syms)->size);
5799 return Fcons (head,
5800 Fcons (position,
5801 Qnil));
5804 #endif /* WINDOWSNT */
5806 case DRAG_N_DROP_EVENT:
5808 FRAME_PTR f;
5809 Lisp_Object head, position;
5810 Lisp_Object files;
5812 f = XFRAME (event->frame_or_window);
5813 files = event->arg;
5815 /* Ignore mouse events that were made on frames that
5816 have been deleted. */
5817 if (! FRAME_LIVE_P (f))
5818 return Qnil;
5820 position = make_lispy_position (f, &event->x, &event->y,
5821 event->timestamp);
5823 head = modify_event_symbol (0, event->modifiers,
5824 Qdrag_n_drop, Qnil,
5825 lispy_drag_n_drop_names,
5826 &drag_n_drop_syms, 1);
5827 return Fcons (head,
5828 Fcons (position,
5829 Fcons (files,
5830 Qnil)));
5832 #endif /* HAVE_MOUSE */
5834 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5835 || defined (USE_GTK)
5836 case MENU_BAR_EVENT:
5837 if (EQ (event->arg, event->frame_or_window))
5838 /* This is the prefix key. We translate this to
5839 `(menu_bar)' because the code in keyboard.c for menu
5840 events, which we use, relies on this. */
5841 return Fcons (Qmenu_bar, Qnil);
5842 return event->arg;
5843 #endif
5845 case SELECT_WINDOW_EVENT:
5846 /* Make an event (select-window (WINDOW)). */
5847 return Fcons (Qselect_window,
5848 Fcons (Fcons (event->frame_or_window, Qnil),
5849 Qnil));
5851 case TOOL_BAR_EVENT:
5852 if (EQ (event->arg, event->frame_or_window))
5853 /* This is the prefix key. We translate this to
5854 `(tool_bar)' because the code in keyboard.c for tool bar
5855 events, which we use, relies on this. */
5856 return Fcons (Qtool_bar, Qnil);
5857 else if (SYMBOLP (event->arg))
5858 return apply_modifiers (event->modifiers, event->arg);
5859 return event->arg;
5861 case USER_SIGNAL_EVENT:
5862 /* A user signal. */
5863 return *lispy_user_signals[event->code];
5865 case SAVE_SESSION_EVENT:
5866 return Qsave_session;
5868 #ifdef MAC_OS
5869 case MAC_APPLE_EVENT:
5871 Lisp_Object spec[2];
5873 spec[0] = event->x;
5874 spec[1] = event->y;
5875 return Fcons (Qmac_apple_event,
5876 Fcons (Fvector (2, spec),
5877 Fcons (mac_make_lispy_event_code (event->code),
5878 Qnil)));
5880 #endif
5882 /* The 'kind' field of the event is something we don't recognize. */
5883 default:
5884 abort ();
5888 #ifdef HAVE_MOUSE
5890 static Lisp_Object
5891 make_lispy_movement (frame, bar_window, part, x, y, time)
5892 FRAME_PTR frame;
5893 Lisp_Object bar_window;
5894 enum scroll_bar_part part;
5895 Lisp_Object x, y;
5896 unsigned long time;
5898 /* Is it a scroll bar movement? */
5899 if (frame && ! NILP (bar_window))
5901 Lisp_Object part_sym;
5903 part_sym = *scroll_bar_parts[(int) part];
5904 return Fcons (Qscroll_bar_movement,
5905 (Fcons (Fcons (bar_window,
5906 Fcons (Qvertical_scroll_bar,
5907 Fcons (Fcons (x, y),
5908 Fcons (make_number (time),
5909 Fcons (part_sym,
5910 Qnil))))),
5911 Qnil)));
5914 /* Or is it an ordinary mouse movement? */
5915 else
5917 Lisp_Object position;
5919 position = make_lispy_position (frame, &x, &y, time);
5921 return Fcons (Qmouse_movement,
5922 Fcons (position,
5923 Qnil));
5927 #endif /* HAVE_MOUSE */
5929 /* Construct a switch frame event. */
5930 static Lisp_Object
5931 make_lispy_switch_frame (frame)
5932 Lisp_Object frame;
5934 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5937 /* Manipulating modifiers. */
5939 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
5941 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5942 SYMBOL's name of the end of the modifiers; the string from this
5943 position is the unmodified symbol name.
5945 This doesn't use any caches. */
5947 static int
5948 parse_modifiers_uncached (symbol, modifier_end)
5949 Lisp_Object symbol;
5950 int *modifier_end;
5952 Lisp_Object name;
5953 int i;
5954 int modifiers;
5956 CHECK_SYMBOL (symbol);
5958 modifiers = 0;
5959 name = SYMBOL_NAME (symbol);
5961 for (i = 0; i+2 <= SBYTES (name); )
5963 int this_mod_end = 0;
5964 int this_mod = 0;
5966 /* See if the name continues with a modifier word.
5967 Check that the word appears, but don't check what follows it.
5968 Set this_mod and this_mod_end to record what we find. */
5970 switch (SREF (name, i))
5972 #define SINGLE_LETTER_MOD(BIT) \
5973 (this_mod_end = i + 1, this_mod = BIT)
5975 case 'A':
5976 SINGLE_LETTER_MOD (alt_modifier);
5977 break;
5979 case 'C':
5980 SINGLE_LETTER_MOD (ctrl_modifier);
5981 break;
5983 case 'H':
5984 SINGLE_LETTER_MOD (hyper_modifier);
5985 break;
5987 case 'M':
5988 SINGLE_LETTER_MOD (meta_modifier);
5989 break;
5991 case 'S':
5992 SINGLE_LETTER_MOD (shift_modifier);
5993 break;
5995 case 's':
5996 SINGLE_LETTER_MOD (super_modifier);
5997 break;
5999 #undef SINGLE_LETTER_MOD
6001 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6002 if (i + LEN + 1 <= SBYTES (name) \
6003 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
6005 this_mod_end = i + LEN; \
6006 this_mod = BIT; \
6009 case 'd':
6010 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6011 MULTI_LETTER_MOD (down_modifier, "down", 4);
6012 MULTI_LETTER_MOD (double_modifier, "double", 6);
6013 break;
6015 case 't':
6016 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6017 break;
6018 #undef MULTI_LETTER_MOD
6022 /* If we found no modifier, stop looking for them. */
6023 if (this_mod_end == 0)
6024 break;
6026 /* Check there is a dash after the modifier, so that it
6027 really is a modifier. */
6028 if (this_mod_end >= SBYTES (name)
6029 || SREF (name, this_mod_end) != '-')
6030 break;
6032 /* This modifier is real; look for another. */
6033 modifiers |= this_mod;
6034 i = this_mod_end + 1;
6037 /* Should we include the `click' modifier? */
6038 if (! (modifiers & (down_modifier | drag_modifier
6039 | double_modifier | triple_modifier))
6040 && i + 7 == SBYTES (name)
6041 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
6042 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6043 modifiers |= click_modifier;
6045 if (modifier_end)
6046 *modifier_end = i;
6048 return modifiers;
6051 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6052 prepended to the string BASE[0..BASE_LEN-1].
6053 This doesn't use any caches. */
6054 static Lisp_Object
6055 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
6056 int modifiers;
6057 char *base;
6058 int base_len, base_len_byte;
6060 /* Since BASE could contain nulls, we can't use intern here; we have
6061 to use Fintern, which expects a genuine Lisp_String, and keeps a
6062 reference to it. */
6063 char *new_mods
6064 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6065 int mod_len;
6068 char *p = new_mods;
6070 /* Only the event queue may use the `up' modifier; it should always
6071 be turned into a click or drag event before presented to lisp code. */
6072 if (modifiers & up_modifier)
6073 abort ();
6075 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6076 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6077 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6078 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6079 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6080 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6081 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
6082 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
6083 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
6084 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
6085 /* The click modifier is denoted by the absence of other modifiers. */
6087 *p = '\0';
6089 mod_len = p - new_mods;
6093 Lisp_Object new_name;
6095 new_name = make_uninit_multibyte_string (mod_len + base_len,
6096 mod_len + base_len_byte);
6097 bcopy (new_mods, SDATA (new_name), mod_len);
6098 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
6100 return Fintern (new_name, Qnil);
6105 static char *modifier_names[] =
6107 "up", "down", "drag", "click", "double", "triple", 0, 0,
6108 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6109 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6111 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6113 static Lisp_Object modifier_symbols;
6115 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6116 static Lisp_Object
6117 lispy_modifier_list (modifiers)
6118 int modifiers;
6120 Lisp_Object modifier_list;
6121 int i;
6123 modifier_list = Qnil;
6124 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6125 if (modifiers & (1<<i))
6126 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
6127 modifier_list);
6129 return modifier_list;
6133 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6134 where UNMODIFIED is the unmodified form of SYMBOL,
6135 MASK is the set of modifiers present in SYMBOL's name.
6136 This is similar to parse_modifiers_uncached, but uses the cache in
6137 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6138 Qevent_symbol_elements property. */
6140 Lisp_Object
6141 parse_modifiers (symbol)
6142 Lisp_Object symbol;
6144 Lisp_Object elements;
6146 elements = Fget (symbol, Qevent_symbol_element_mask);
6147 if (CONSP (elements))
6148 return elements;
6149 else
6151 int end;
6152 int modifiers = parse_modifiers_uncached (symbol, &end);
6153 Lisp_Object unmodified;
6154 Lisp_Object mask;
6156 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
6157 SBYTES (SYMBOL_NAME (symbol)) - end),
6158 Qnil);
6160 if (modifiers & ~INTMASK)
6161 abort ();
6162 XSETFASTINT (mask, modifiers);
6163 elements = Fcons (unmodified, Fcons (mask, Qnil));
6165 /* Cache the parsing results on SYMBOL. */
6166 Fput (symbol, Qevent_symbol_element_mask,
6167 elements);
6168 Fput (symbol, Qevent_symbol_elements,
6169 Fcons (unmodified, lispy_modifier_list (modifiers)));
6171 /* Since we know that SYMBOL is modifiers applied to unmodified,
6172 it would be nice to put that in unmodified's cache.
6173 But we can't, since we're not sure that parse_modifiers is
6174 canonical. */
6176 return elements;
6180 /* Apply the modifiers MODIFIERS to the symbol BASE.
6181 BASE must be unmodified.
6183 This is like apply_modifiers_uncached, but uses BASE's
6184 Qmodifier_cache property, if present. It also builds
6185 Qevent_symbol_elements properties, since it has that info anyway.
6187 apply_modifiers copies the value of BASE's Qevent_kind property to
6188 the modified symbol. */
6189 static Lisp_Object
6190 apply_modifiers (modifiers, base)
6191 int modifiers;
6192 Lisp_Object base;
6194 Lisp_Object cache, index, entry, new_symbol;
6196 /* Mask out upper bits. We don't know where this value's been. */
6197 modifiers &= INTMASK;
6199 /* The click modifier never figures into cache indices. */
6200 cache = Fget (base, Qmodifier_cache);
6201 XSETFASTINT (index, (modifiers & ~click_modifier));
6202 entry = assq_no_quit (index, cache);
6204 if (CONSP (entry))
6205 new_symbol = XCDR (entry);
6206 else
6208 /* We have to create the symbol ourselves. */
6209 new_symbol = apply_modifiers_uncached (modifiers,
6210 SDATA (SYMBOL_NAME (base)),
6211 SCHARS (SYMBOL_NAME (base)),
6212 SBYTES (SYMBOL_NAME (base)));
6214 /* Add the new symbol to the base's cache. */
6215 entry = Fcons (index, new_symbol);
6216 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6218 /* We have the parsing info now for free, so we could add it to
6219 the caches:
6220 XSETFASTINT (index, modifiers);
6221 Fput (new_symbol, Qevent_symbol_element_mask,
6222 Fcons (base, Fcons (index, Qnil)));
6223 Fput (new_symbol, Qevent_symbol_elements,
6224 Fcons (base, lispy_modifier_list (modifiers)));
6225 Sadly, this is only correct if `base' is indeed a base event,
6226 which is not necessarily the case. -stef */
6229 /* Make sure this symbol is of the same kind as BASE.
6231 You'd think we could just set this once and for all when we
6232 intern the symbol above, but reorder_modifiers may call us when
6233 BASE's property isn't set right; we can't assume that just
6234 because it has a Qmodifier_cache property it must have its
6235 Qevent_kind set right as well. */
6236 if (NILP (Fget (new_symbol, Qevent_kind)))
6238 Lisp_Object kind;
6240 kind = Fget (base, Qevent_kind);
6241 if (! NILP (kind))
6242 Fput (new_symbol, Qevent_kind, kind);
6245 return new_symbol;
6249 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6250 return a symbol with the modifiers placed in the canonical order.
6251 Canonical order is alphabetical, except for down and drag, which
6252 always come last. The 'click' modifier is never written out.
6254 Fdefine_key calls this to make sure that (for example) C-M-foo
6255 and M-C-foo end up being equivalent in the keymap. */
6257 Lisp_Object
6258 reorder_modifiers (symbol)
6259 Lisp_Object symbol;
6261 /* It's hopefully okay to write the code this way, since everything
6262 will soon be in caches, and no consing will be done at all. */
6263 Lisp_Object parsed;
6265 parsed = parse_modifiers (symbol);
6266 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6267 XCAR (parsed));
6271 /* For handling events, we often want to produce a symbol whose name
6272 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6273 to some base, like the name of a function key or mouse button.
6274 modify_event_symbol produces symbols of this sort.
6276 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6277 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6278 in the table.
6280 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6281 into symbol names, or a string specifying a name stem used to
6282 construct a symbol name or the form `STEM-N', where N is the decimal
6283 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6284 non-nil; otherwise NAME_TABLE is used.
6286 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6287 persist between calls to modify_event_symbol that it can use to
6288 store a cache of the symbols it's generated for this NAME_TABLE
6289 before. The object stored there may be a vector or an alist.
6291 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6293 MODIFIERS is a set of modifier bits (as given in struct input_events)
6294 whose prefixes should be applied to the symbol name.
6296 SYMBOL_KIND is the value to be placed in the event_kind property of
6297 the returned symbol.
6299 The symbols we create are supposed to have an
6300 `event-symbol-elements' property, which lists the modifiers present
6301 in the symbol's name. */
6303 static Lisp_Object
6304 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
6305 name_table, symbol_table, table_size)
6306 int symbol_num;
6307 unsigned modifiers;
6308 Lisp_Object symbol_kind;
6309 Lisp_Object name_alist_or_stem;
6310 char **name_table;
6311 Lisp_Object *symbol_table;
6312 unsigned int table_size;
6314 Lisp_Object value;
6315 Lisp_Object symbol_int;
6317 /* Get rid of the "vendor-specific" bit here. */
6318 XSETINT (symbol_int, symbol_num & 0xffffff);
6320 /* Is this a request for a valid symbol? */
6321 if (symbol_num < 0 || symbol_num >= table_size)
6322 return Qnil;
6324 if (CONSP (*symbol_table))
6325 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6327 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6328 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6329 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6330 we've never used that symbol before. */
6331 else
6333 if (! VECTORP (*symbol_table)
6334 || XVECTOR (*symbol_table)->size != table_size)
6336 Lisp_Object size;
6338 XSETFASTINT (size, table_size);
6339 *symbol_table = Fmake_vector (size, Qnil);
6342 value = XVECTOR (*symbol_table)->contents[symbol_num];
6345 /* Have we already used this symbol before? */
6346 if (NILP (value))
6348 /* No; let's create it. */
6349 if (CONSP (name_alist_or_stem))
6350 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6351 else if (STRINGP (name_alist_or_stem))
6353 int len = SBYTES (name_alist_or_stem);
6354 char *buf = (char *) alloca (len + 50);
6355 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6356 (long) XINT (symbol_int) + 1);
6357 value = intern (buf);
6359 else if (name_table != 0 && name_table[symbol_num])
6360 value = intern (name_table[symbol_num]);
6362 #ifdef HAVE_WINDOW_SYSTEM
6363 if (NILP (value))
6365 char *name = x_get_keysym_name (symbol_num);
6366 if (name)
6367 value = intern (name);
6369 #endif
6371 if (NILP (value))
6373 char buf[20];
6374 sprintf (buf, "key-%d", symbol_num);
6375 value = intern (buf);
6378 if (CONSP (*symbol_table))
6379 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6380 else
6381 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6383 /* Fill in the cache entries for this symbol; this also
6384 builds the Qevent_symbol_elements property, which the user
6385 cares about. */
6386 apply_modifiers (modifiers & click_modifier, value);
6387 Fput (value, Qevent_kind, symbol_kind);
6390 /* Apply modifiers to that symbol. */
6391 return apply_modifiers (modifiers, value);
6394 /* Convert a list that represents an event type,
6395 such as (ctrl meta backspace), into the usual representation of that
6396 event type as a number or a symbol. */
6398 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6399 doc: /* Convert the event description list EVENT-DESC to an event type.
6400 EVENT-DESC should contain one base event type (a character or symbol)
6401 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6402 drag, down, double or triple). The base must be last.
6403 The return value is an event type (a character or symbol) which
6404 has the same base event type and all the specified modifiers. */)
6405 (event_desc)
6406 Lisp_Object event_desc;
6408 Lisp_Object base;
6409 int modifiers = 0;
6410 Lisp_Object rest;
6412 base = Qnil;
6413 rest = event_desc;
6414 while (CONSP (rest))
6416 Lisp_Object elt;
6417 int this = 0;
6419 elt = XCAR (rest);
6420 rest = XCDR (rest);
6422 /* Given a symbol, see if it is a modifier name. */
6423 if (SYMBOLP (elt) && CONSP (rest))
6424 this = parse_solitary_modifier (elt);
6426 if (this != 0)
6427 modifiers |= this;
6428 else if (!NILP (base))
6429 error ("Two bases given in one event");
6430 else
6431 base = elt;
6435 /* Let the symbol A refer to the character A. */
6436 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6437 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6439 if (INTEGERP (base))
6441 /* Turn (shift a) into A. */
6442 if ((modifiers & shift_modifier) != 0
6443 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6445 XSETINT (base, XINT (base) - ('a' - 'A'));
6446 modifiers &= ~shift_modifier;
6449 /* Turn (control a) into C-a. */
6450 if (modifiers & ctrl_modifier)
6451 return make_number ((modifiers & ~ctrl_modifier)
6452 | make_ctrl_char (XINT (base)));
6453 else
6454 return make_number (modifiers | XINT (base));
6456 else if (SYMBOLP (base))
6457 return apply_modifiers (modifiers, base);
6458 else
6460 error ("Invalid base event");
6461 return Qnil;
6465 /* Try to recognize SYMBOL as a modifier name.
6466 Return the modifier flag bit, or 0 if not recognized. */
6468 static int
6469 parse_solitary_modifier (symbol)
6470 Lisp_Object symbol;
6472 Lisp_Object name = SYMBOL_NAME (symbol);
6474 switch (SREF (name, 0))
6476 #define SINGLE_LETTER_MOD(BIT) \
6477 if (SBYTES (name) == 1) \
6478 return BIT;
6480 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6481 if (LEN == SBYTES (name) \
6482 && ! strncmp (SDATA (name), NAME, LEN)) \
6483 return BIT;
6485 case 'A':
6486 SINGLE_LETTER_MOD (alt_modifier);
6487 break;
6489 case 'a':
6490 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6491 break;
6493 case 'C':
6494 SINGLE_LETTER_MOD (ctrl_modifier);
6495 break;
6497 case 'c':
6498 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6499 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6500 break;
6502 case 'H':
6503 SINGLE_LETTER_MOD (hyper_modifier);
6504 break;
6506 case 'h':
6507 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6508 break;
6510 case 'M':
6511 SINGLE_LETTER_MOD (meta_modifier);
6512 break;
6514 case 'm':
6515 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6516 break;
6518 case 'S':
6519 SINGLE_LETTER_MOD (shift_modifier);
6520 break;
6522 case 's':
6523 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6524 MULTI_LETTER_MOD (super_modifier, "super", 5);
6525 SINGLE_LETTER_MOD (super_modifier);
6526 break;
6528 case 'd':
6529 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6530 MULTI_LETTER_MOD (down_modifier, "down", 4);
6531 MULTI_LETTER_MOD (double_modifier, "double", 6);
6532 break;
6534 case 't':
6535 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6536 break;
6538 #undef SINGLE_LETTER_MOD
6539 #undef MULTI_LETTER_MOD
6542 return 0;
6545 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6546 Such a list is not valid as an event,
6547 but it can be a Lucid-style event type list. */
6550 lucid_event_type_list_p (object)
6551 Lisp_Object object;
6553 Lisp_Object tail;
6555 if (! CONSP (object))
6556 return 0;
6558 if (EQ (XCAR (object), Qhelp_echo)
6559 || EQ (XCAR (object), Qvertical_line)
6560 || EQ (XCAR (object), Qmode_line)
6561 || EQ (XCAR (object), Qheader_line))
6562 return 0;
6564 for (tail = object; CONSP (tail); tail = XCDR (tail))
6566 Lisp_Object elt;
6567 elt = XCAR (tail);
6568 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6569 return 0;
6572 return NILP (tail);
6575 /* Store into *addr a value nonzero if terminal input chars are available.
6576 Serves the purpose of ioctl (0, FIONREAD, addr)
6577 but works even if FIONREAD does not exist.
6578 (In fact, this may actually read some input.)
6580 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6581 timer events that are ripe.
6582 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6583 events (FOCUS_IN_EVENT).
6584 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6585 movements and toolkit scroll bar thumb drags. */
6587 static void
6588 get_input_pending (addr, flags)
6589 int *addr;
6590 int flags;
6592 /* First of all, have we already counted some input? */
6593 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6595 /* If input is being read as it arrives, and we have none, there is none. */
6596 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6597 return;
6599 /* Try to read some input and see how much we get. */
6600 gobble_input (0);
6601 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6604 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6606 void
6607 gobble_input (expected)
6608 int expected;
6610 #ifndef VMS
6611 #ifdef SIGIO
6612 if (interrupt_input)
6614 SIGMASKTYPE mask;
6615 mask = sigblock (sigmask (SIGIO));
6616 read_avail_input (expected);
6617 sigsetmask (mask);
6619 else
6620 #ifdef POLL_FOR_INPUT
6621 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6623 SIGMASKTYPE mask;
6624 mask = sigblock (sigmask (SIGALRM));
6625 read_avail_input (expected);
6626 sigsetmask (mask);
6628 else
6629 #endif
6630 #endif
6631 read_avail_input (expected);
6632 #endif
6635 /* Put a BUFFER_SWITCH_EVENT in the buffer
6636 so that read_key_sequence will notice the new current buffer. */
6638 void
6639 record_asynch_buffer_change ()
6641 struct input_event event;
6642 Lisp_Object tem;
6643 EVENT_INIT (event);
6645 event.kind = BUFFER_SWITCH_EVENT;
6646 event.frame_or_window = Qnil;
6647 event.arg = Qnil;
6649 #ifdef subprocesses
6650 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6651 The purpose of the event is to make read_key_sequence look up the
6652 keymaps again. If we aren't in read_key_sequence, we don't need one,
6653 and the event could cause trouble by messing up (input-pending-p). */
6654 tem = Fwaiting_for_user_input_p ();
6655 if (NILP (tem))
6656 return;
6657 #else
6658 /* We never need these events if we have no asynchronous subprocesses. */
6659 return;
6660 #endif
6662 /* Make sure no interrupt happens while storing the event. */
6663 #ifdef SIGIO
6664 if (interrupt_input)
6666 SIGMASKTYPE mask;
6667 mask = sigblock (sigmask (SIGIO));
6668 kbd_buffer_store_event (&event);
6669 sigsetmask (mask);
6671 else
6672 #endif
6674 stop_polling ();
6675 kbd_buffer_store_event (&event);
6676 start_polling ();
6680 #ifndef VMS
6682 /* Read any terminal input already buffered up by the system
6683 into the kbd_buffer, but do not wait.
6685 EXPECTED should be nonzero if the caller knows there is some input.
6687 Except on VMS, all input is read by this function.
6688 If interrupt_input is nonzero, this function MUST be called
6689 only when SIGIO is blocked.
6691 Returns the number of keyboard chars read, or -1 meaning
6692 this is a bad time to try to read input. */
6694 static int
6695 read_avail_input (expected)
6696 int expected;
6698 register int i;
6699 int nread = 0;
6701 if (read_socket_hook)
6703 int nr;
6704 struct input_event hold_quit;
6706 EVENT_INIT (hold_quit);
6707 hold_quit.kind = NO_EVENT;
6709 /* No need for FIONREAD or fcntl; just say don't wait. */
6710 while (nr = (*read_socket_hook) (input_fd, expected, &hold_quit), nr > 0)
6712 nread += nr;
6713 expected = 0;
6715 if (hold_quit.kind != NO_EVENT)
6716 kbd_buffer_store_event (&hold_quit);
6718 else
6720 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6721 the kbd_buffer can really hold. That may prevent loss
6722 of characters on some systems when input is stuffed at us. */
6723 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6724 int n_to_read;
6726 /* Determine how many characters we should *try* to read. */
6727 #ifdef WINDOWSNT
6728 return 0;
6729 #else /* not WINDOWSNT */
6730 #ifdef MSDOS
6731 n_to_read = dos_keysns ();
6732 if (n_to_read == 0)
6733 return 0;
6734 #else /* not MSDOS */
6735 #ifdef FIONREAD
6736 /* Find out how much input is available. */
6737 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6738 /* Formerly simply reported no input, but that sometimes led to
6739 a failure of Emacs to terminate.
6740 SIGHUP seems appropriate if we can't reach the terminal. */
6741 /* ??? Is it really right to send the signal just to this process
6742 rather than to the whole process group?
6743 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6745 if (! noninteractive)
6746 kill (getpid (), SIGHUP);
6747 else
6748 n_to_read = 0;
6750 if (n_to_read == 0)
6751 return 0;
6752 if (n_to_read > sizeof cbuf)
6753 n_to_read = sizeof cbuf;
6754 #else /* no FIONREAD */
6755 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6756 /* Read some input if available, but don't wait. */
6757 n_to_read = sizeof cbuf;
6758 fcntl (input_fd, F_SETFL, O_NDELAY);
6759 #else
6760 you lose;
6761 #endif
6762 #endif
6763 #endif /* not MSDOS */
6764 #endif /* not WINDOWSNT */
6766 /* Now read; for one reason or another, this will not block.
6767 NREAD is set to the number of chars read. */
6770 #ifdef MSDOS
6771 cbuf[0] = dos_keyread ();
6772 nread = 1;
6773 #else
6774 nread = emacs_read (input_fd, cbuf, n_to_read);
6775 #endif
6776 /* POSIX infers that processes which are not in the session leader's
6777 process group won't get SIGHUP's at logout time. BSDI adheres to
6778 this part standard and returns -1 from read (0) with errno==EIO
6779 when the control tty is taken away.
6780 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6781 if (nread == -1 && errno == EIO)
6782 kill (0, SIGHUP);
6783 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6784 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6785 This looks incorrect, but it isn't, because _BSD causes
6786 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6787 and that causes a value other than 0 when there is no input. */
6788 if (nread == 0)
6789 kill (0, SIGHUP);
6790 #endif
6792 while (
6793 /* We used to retry the read if it was interrupted.
6794 But this does the wrong thing when O_NDELAY causes
6795 an EAGAIN error. Does anybody know of a situation
6796 where a retry is actually needed? */
6797 #if 0
6798 nread < 0 && (errno == EAGAIN
6799 #ifdef EFAULT
6800 || errno == EFAULT
6801 #endif
6802 #ifdef EBADSLT
6803 || errno == EBADSLT
6804 #endif
6806 #else
6808 #endif
6811 #ifndef FIONREAD
6812 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6813 fcntl (input_fd, F_SETFL, 0);
6814 #endif /* USG or DGUX or CYGWIN */
6815 #endif /* no FIONREAD */
6816 for (i = 0; i < nread; i++)
6818 struct input_event buf;
6819 EVENT_INIT (buf);
6820 buf.kind = ASCII_KEYSTROKE_EVENT;
6821 buf.modifiers = 0;
6822 if (meta_key == 1 && (cbuf[i] & 0x80))
6823 buf.modifiers = meta_modifier;
6824 if (meta_key != 2)
6825 cbuf[i] &= ~0x80;
6827 buf.code = cbuf[i];
6828 buf.frame_or_window = selected_frame;
6829 buf.arg = Qnil;
6831 kbd_buffer_store_event (&buf);
6832 /* Don't look at input that follows a C-g too closely.
6833 This reduces lossage due to autorepeat on C-g. */
6834 if (buf.kind == ASCII_KEYSTROKE_EVENT
6835 && buf.code == quit_char)
6836 break;
6840 return nread;
6842 #endif /* not VMS */
6844 void
6845 handle_async_input ()
6847 #ifdef BSD4_1
6848 extern int select_alarmed;
6849 #endif
6851 interrupt_input_pending = 0;
6853 while (1)
6855 int nread;
6856 nread = read_avail_input (1);
6857 /* -1 means it's not ok to read the input now.
6858 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6859 0 means there was no keyboard input available. */
6860 if (nread <= 0)
6861 break;
6863 #ifdef BSD4_1
6864 select_alarmed = 1; /* Force the select emulator back to life */
6865 #endif
6869 #ifdef SIGIO /* for entire page */
6870 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6872 static SIGTYPE
6873 input_available_signal (signo)
6874 int signo;
6876 /* Must preserve main program's value of errno. */
6877 int old_errno = errno;
6878 #if defined (USG) && !defined (POSIX_SIGNALS)
6879 /* USG systems forget handlers when they are used;
6880 must reestablish each time */
6881 signal (signo, input_available_signal);
6882 #endif /* USG */
6884 #ifdef BSD4_1
6885 sigisheld (SIGIO);
6886 #endif
6888 #ifdef SYNC_INPUT
6889 interrupt_input_pending = 1;
6890 #else
6891 SIGNAL_THREAD_CHECK (signo);
6892 #endif
6894 if (input_available_clear_time)
6895 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6897 #ifndef SYNC_INPUT
6898 handle_async_input ();
6899 #endif
6901 #ifdef BSD4_1
6902 sigfree ();
6903 #endif
6904 errno = old_errno;
6906 #endif /* SIGIO */
6908 /* Send ourselves a SIGIO.
6910 This function exists so that the UNBLOCK_INPUT macro in
6911 blockinput.h can have some way to take care of input we put off
6912 dealing with, without assuming that every file which uses
6913 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6914 void
6915 reinvoke_input_signal ()
6917 #ifdef SIGIO
6918 handle_async_input ();
6919 #endif
6924 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
6925 static Lisp_Object menu_bar_one_keymap_changed_items;
6927 /* These variables hold the vector under construction within
6928 menu_bar_items and its subroutines, and the current index
6929 for storing into that vector. */
6930 static Lisp_Object menu_bar_items_vector;
6931 static int menu_bar_items_index;
6933 /* Return a vector of menu items for a menu bar, appropriate
6934 to the current buffer. Each item has three elements in the vector:
6935 KEY STRING MAPLIST.
6937 OLD is an old vector we can optionally reuse, or nil. */
6939 Lisp_Object
6940 menu_bar_items (old)
6941 Lisp_Object old;
6943 /* The number of keymaps we're scanning right now, and the number of
6944 keymaps we have allocated space for. */
6945 int nmaps;
6947 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6948 in the current keymaps, or nil where it is not a prefix. */
6949 Lisp_Object *maps;
6951 Lisp_Object def, tail;
6953 Lisp_Object result;
6955 int mapno;
6956 Lisp_Object oquit;
6958 int i;
6960 /* In order to build the menus, we need to call the keymap
6961 accessors. They all call QUIT. But this function is called
6962 during redisplay, during which a quit is fatal. So inhibit
6963 quitting while building the menus.
6964 We do this instead of specbind because (1) errors will clear it anyway
6965 and (2) this avoids risk of specpdl overflow. */
6966 oquit = Vinhibit_quit;
6967 Vinhibit_quit = Qt;
6969 if (!NILP (old))
6970 menu_bar_items_vector = old;
6971 else
6972 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6973 menu_bar_items_index = 0;
6975 /* Build our list of keymaps.
6976 If we recognize a function key and replace its escape sequence in
6977 keybuf with its symbol, or if the sequence starts with a mouse
6978 click and we need to switch buffers, we jump back here to rebuild
6979 the initial keymaps from the current buffer. */
6981 Lisp_Object *tmaps;
6983 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6984 if (!NILP (Voverriding_local_map_menu_flag))
6986 /* Yes, use them (if non-nil) as well as the global map. */
6987 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
6988 nmaps = 0;
6989 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6990 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6991 if (!NILP (Voverriding_local_map))
6992 maps[nmaps++] = Voverriding_local_map;
6994 else
6996 /* No, so use major and minor mode keymaps and keymap property.
6997 Note that menu-bar bindings in the local-map and keymap
6998 properties may not work reliable, as they are only
6999 recognized when the menu-bar (or mode-line) is updated,
7000 which does not normally happen after every command. */
7001 Lisp_Object tem;
7002 int nminor;
7003 nminor = current_minor_maps (NULL, &tmaps);
7004 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7005 nmaps = 0;
7006 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7007 maps[nmaps++] = tem;
7008 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7009 nmaps += nminor;
7010 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7012 maps[nmaps++] = current_global_map;
7015 /* Look up in each map the dummy prefix key `menu-bar'. */
7017 result = Qnil;
7019 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7020 if (!NILP (maps[mapno]))
7022 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7023 0, 1);
7024 if (CONSP (def))
7026 menu_bar_one_keymap_changed_items = Qnil;
7027 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
7031 /* Move to the end those items that should be at the end. */
7033 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7035 int i;
7036 int end = menu_bar_items_index;
7038 for (i = 0; i < end; i += 4)
7039 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
7041 Lisp_Object tem0, tem1, tem2, tem3;
7042 /* Move the item at index I to the end,
7043 shifting all the others forward. */
7044 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
7045 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
7046 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7047 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
7048 if (end > i + 4)
7049 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7050 &XVECTOR (menu_bar_items_vector)->contents[i],
7051 (end - i - 4) * sizeof (Lisp_Object));
7052 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
7053 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
7054 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
7055 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
7056 break;
7060 /* Add nil, nil, nil, nil at the end. */
7061 i = menu_bar_items_index;
7062 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7064 Lisp_Object tem;
7065 tem = Fmake_vector (make_number (2 * i), Qnil);
7066 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7067 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7068 menu_bar_items_vector = tem;
7070 /* Add this item. */
7071 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7072 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7073 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7074 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7075 menu_bar_items_index = i;
7077 Vinhibit_quit = oquit;
7078 return menu_bar_items_vector;
7081 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7082 If there's already an item for KEY, add this DEF to it. */
7084 Lisp_Object item_properties;
7086 static void
7087 menu_bar_item (key, item, dummy1, dummy2)
7088 Lisp_Object key, item, dummy1;
7089 void *dummy2;
7091 struct gcpro gcpro1;
7092 int i;
7093 Lisp_Object tem;
7095 if (EQ (item, Qundefined))
7097 /* If a map has an explicit `undefined' as definition,
7098 discard any previously made menu bar item. */
7100 for (i = 0; i < menu_bar_items_index; i += 4)
7101 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7103 if (menu_bar_items_index > i + 4)
7104 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7105 &XVECTOR (menu_bar_items_vector)->contents[i],
7106 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
7107 menu_bar_items_index -= 4;
7111 /* If this keymap has already contributed to this KEY,
7112 don't contribute to it a second time. */
7113 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7114 if (!NILP (tem) || NILP (item))
7115 return;
7117 menu_bar_one_keymap_changed_items
7118 = Fcons (key, menu_bar_one_keymap_changed_items);
7120 /* We add to menu_bar_one_keymap_changed_items before doing the
7121 parse_menu_item, so that if it turns out it wasn't a menu item,
7122 it still correctly hides any further menu item. */
7123 GCPRO1 (key);
7124 i = parse_menu_item (item, 0, 1);
7125 UNGCPRO;
7126 if (!i)
7127 return;
7129 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7131 /* Find any existing item for this KEY. */
7132 for (i = 0; i < menu_bar_items_index; i += 4)
7133 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7134 break;
7136 /* If we did not find this KEY, add it at the end. */
7137 if (i == menu_bar_items_index)
7139 /* If vector is too small, get a bigger one. */
7140 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7142 Lisp_Object tem;
7143 tem = Fmake_vector (make_number (2 * i), Qnil);
7144 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7145 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7146 menu_bar_items_vector = tem;
7149 /* Add this item. */
7150 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
7151 XVECTOR (menu_bar_items_vector)->contents[i++]
7152 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7153 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
7154 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
7155 menu_bar_items_index = i;
7157 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7158 else
7160 Lisp_Object old;
7161 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7162 /* If the new and the old items are not both keymaps,
7163 the lookup will only find `item'. */
7164 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7165 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
7169 /* This is used as the handler when calling menu_item_eval_property. */
7170 static Lisp_Object
7171 menu_item_eval_property_1 (arg)
7172 Lisp_Object arg;
7174 /* If we got a quit from within the menu computation,
7175 quit all the way out of it. This takes care of C-] in the debugger. */
7176 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7177 Fsignal (Qquit, Qnil);
7179 return Qnil;
7182 /* Evaluate an expression and return the result (or nil if something
7183 went wrong). Used to evaluate dynamic parts of menu items. */
7184 Lisp_Object
7185 menu_item_eval_property (sexpr)
7186 Lisp_Object sexpr;
7188 int count = SPECPDL_INDEX ();
7189 Lisp_Object val;
7190 specbind (Qinhibit_redisplay, Qt);
7191 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7192 menu_item_eval_property_1);
7193 return unbind_to (count, val);
7196 /* This function parses a menu item and leaves the result in the
7197 vector item_properties.
7198 ITEM is a key binding, a possible menu item.
7199 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7200 evaluate dynamic expressions in the menu item.
7201 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7202 top level.
7203 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7204 parse_menu_item returns true if the item is a menu item and false
7205 otherwise. */
7208 parse_menu_item (item, notreal, inmenubar)
7209 Lisp_Object item;
7210 int notreal, inmenubar;
7212 Lisp_Object def, tem, item_string, start;
7213 Lisp_Object cachelist;
7214 Lisp_Object filter;
7215 Lisp_Object keyhint;
7216 int i;
7217 int newcache = 0;
7219 cachelist = Qnil;
7220 filter = Qnil;
7221 keyhint = Qnil;
7223 if (!CONSP (item))
7224 return 0;
7226 /* Create item_properties vector if necessary. */
7227 if (NILP (item_properties))
7228 item_properties
7229 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7231 /* Initialize optional entries. */
7232 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7233 AREF (item_properties, i) = Qnil;
7234 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7236 /* Save the item here to protect it from GC. */
7237 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
7239 item_string = XCAR (item);
7241 start = item;
7242 item = XCDR (item);
7243 if (STRINGP (item_string))
7245 /* Old format menu item. */
7246 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7248 /* Maybe help string. */
7249 if (CONSP (item) && STRINGP (XCAR (item)))
7251 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7252 start = item;
7253 item = XCDR (item);
7256 /* Maybe key binding cache. */
7257 if (CONSP (item) && CONSP (XCAR (item))
7258 && (NILP (XCAR (XCAR (item)))
7259 || VECTORP (XCAR (XCAR (item)))))
7261 cachelist = XCAR (item);
7262 item = XCDR (item);
7265 /* This is the real definition--the function to run. */
7266 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
7268 /* Get enable property, if any. */
7269 if (SYMBOLP (item))
7271 tem = Fget (item, Qmenu_enable);
7272 if (!NILP (tem))
7273 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7276 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7278 /* New format menu item. */
7279 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7280 start = XCDR (item);
7281 if (CONSP (start))
7283 /* We have a real binding. */
7284 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
7286 item = XCDR (start);
7287 /* Is there a cache list with key equivalences. */
7288 if (CONSP (item) && CONSP (XCAR (item)))
7290 cachelist = XCAR (item);
7291 item = XCDR (item);
7294 /* Parse properties. */
7295 while (CONSP (item) && CONSP (XCDR (item)))
7297 tem = XCAR (item);
7298 item = XCDR (item);
7300 if (EQ (tem, QCenable))
7301 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
7302 else if (EQ (tem, QCvisible) && !notreal)
7304 /* If got a visible property and that evaluates to nil
7305 then ignore this item. */
7306 tem = menu_item_eval_property (XCAR (item));
7307 if (NILP (tem))
7308 return 0;
7310 else if (EQ (tem, QChelp))
7311 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7312 else if (EQ (tem, QCfilter))
7313 filter = item;
7314 else if (EQ (tem, QCkey_sequence))
7316 tem = XCAR (item);
7317 if (NILP (cachelist)
7318 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7319 /* Be GC protected. Set keyhint to item instead of tem. */
7320 keyhint = item;
7322 else if (EQ (tem, QCkeys))
7324 tem = XCAR (item);
7325 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
7326 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7328 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7330 Lisp_Object type;
7331 tem = XCAR (item);
7332 type = XCAR (tem);
7333 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7335 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7336 = XCDR (tem);
7337 AREF (item_properties, ITEM_PROPERTY_TYPE)
7338 = type;
7341 item = XCDR (item);
7344 else if (inmenubar || !NILP (start))
7345 return 0;
7347 else
7348 return 0; /* not a menu item */
7350 /* If item string is not a string, evaluate it to get string.
7351 If we don't get a string, skip this item. */
7352 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7353 if (!(STRINGP (item_string) || notreal))
7355 item_string = menu_item_eval_property (item_string);
7356 if (!STRINGP (item_string))
7357 return 0;
7358 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7361 /* If got a filter apply it on definition. */
7362 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7363 if (!NILP (filter))
7365 def = menu_item_eval_property (list2 (XCAR (filter),
7366 list2 (Qquote, def)));
7368 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
7371 /* Enable or disable selection of item. */
7372 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7373 if (!EQ (tem, Qt))
7375 if (notreal)
7376 tem = Qt;
7377 else
7378 tem = menu_item_eval_property (tem);
7379 if (inmenubar && NILP (tem))
7380 return 0; /* Ignore disabled items in menu bar. */
7381 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7384 /* If we got no definition, this item is just unselectable text which
7385 is OK in a submenu but not in the menubar. */
7386 if (NILP (def))
7387 return (inmenubar ? 0 : 1);
7389 /* See if this is a separate pane or a submenu. */
7390 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7391 tem = get_keymap (def, 0, 1);
7392 /* For a subkeymap, just record its details and exit. */
7393 if (CONSP (tem))
7395 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7396 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7397 return 1;
7400 /* At the top level in the menu bar, do likewise for commands also.
7401 The menu bar does not display equivalent key bindings anyway.
7402 ITEM_PROPERTY_DEF is already set up properly. */
7403 if (inmenubar > 0)
7404 return 1;
7406 /* This is a command. See if there is an equivalent key binding. */
7407 if (NILP (cachelist))
7409 /* We have to create a cachelist. */
7410 CHECK_IMPURE (start);
7411 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7412 cachelist = XCAR (XCDR (start));
7413 newcache = 1;
7414 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7415 if (!NILP (keyhint))
7417 XSETCAR (cachelist, XCAR (keyhint));
7418 newcache = 0;
7420 else if (STRINGP (tem))
7422 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7423 XSETCAR (cachelist, Qt);
7427 tem = XCAR (cachelist);
7428 if (!EQ (tem, Qt))
7430 int chkcache = 0;
7431 Lisp_Object prefix;
7433 if (!NILP (tem))
7434 tem = Fkey_binding (tem, Qnil, Qnil);
7436 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7437 if (CONSP (prefix))
7439 def = XCAR (prefix);
7440 prefix = XCDR (prefix);
7442 else
7443 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7445 if (NILP (XCAR (cachelist))) /* Have no saved key. */
7447 if (newcache /* Always check first time. */
7448 /* Should we check everything when precomputing key
7449 bindings? */
7450 /* If something had no key binding before, don't recheck it
7451 because that is too slow--except if we have a list of
7452 rebound commands in Vdefine_key_rebound_commands, do
7453 recheck any command that appears in that list. */
7454 || (CONSP (Vdefine_key_rebound_commands)
7455 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7456 chkcache = 1;
7458 /* We had a saved key. Is it still bound to the command? */
7459 else if (NILP (tem)
7460 || (!EQ (tem, def)
7461 /* If the command is an alias for another
7462 (such as lmenu.el set it up), check if the
7463 original command matches the cached command. */
7464 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7465 chkcache = 1; /* Need to recompute key binding. */
7467 if (chkcache)
7469 /* Recompute equivalent key binding. If the command is an alias
7470 for another (such as lmenu.el set it up), see if the original
7471 command name has equivalent keys. Otherwise look up the
7472 specified command itself. We don't try both, because that
7473 makes lmenu menus slow. */
7474 if (SYMBOLP (def)
7475 && SYMBOLP (XSYMBOL (def)->function)
7476 && ! NILP (Fget (def, Qmenu_alias)))
7477 def = XSYMBOL (def)->function;
7478 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7479 XSETCAR (cachelist, tem);
7480 if (NILP (tem))
7482 XSETCDR (cachelist, Qnil);
7483 chkcache = 0;
7486 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7488 tem = XCAR (cachelist);
7489 chkcache = 1;
7492 newcache = chkcache;
7493 if (chkcache)
7495 tem = Fkey_description (tem, Qnil);
7496 if (CONSP (prefix))
7498 if (STRINGP (XCAR (prefix)))
7499 tem = concat2 (XCAR (prefix), tem);
7500 if (STRINGP (XCDR (prefix)))
7501 tem = concat2 (tem, XCDR (prefix));
7503 XSETCDR (cachelist, tem);
7507 tem = XCDR (cachelist);
7508 if (newcache && !NILP (tem))
7510 tem = concat3 (build_string (" ("), tem, build_string (")"));
7511 XSETCDR (cachelist, tem);
7514 /* If we only want to precompute equivalent key bindings, stop here. */
7515 if (notreal)
7516 return 1;
7518 /* If we have an equivalent key binding, use that. */
7519 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7521 /* Include this when menu help is implemented.
7522 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7523 if (!(NILP (tem) || STRINGP (tem)))
7525 tem = menu_item_eval_property (tem);
7526 if (!STRINGP (tem))
7527 tem = Qnil;
7528 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7532 /* Handle radio buttons or toggle boxes. */
7533 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7534 if (!NILP (tem))
7535 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7536 = menu_item_eval_property (tem);
7538 return 1;
7543 /***********************************************************************
7544 Tool-bars
7545 ***********************************************************************/
7547 /* A vector holding tool bar items while they are parsed in function
7548 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7549 in the vector. */
7551 static Lisp_Object tool_bar_items_vector;
7553 /* A vector holding the result of parse_tool_bar_item. Layout is like
7554 the one for a single item in tool_bar_items_vector. */
7556 static Lisp_Object tool_bar_item_properties;
7558 /* Next free index in tool_bar_items_vector. */
7560 static int ntool_bar_items;
7562 /* The symbols `tool-bar', and `:image'. */
7564 extern Lisp_Object Qtool_bar;
7565 Lisp_Object QCimage;
7567 /* Function prototypes. */
7569 static void init_tool_bar_items P_ ((Lisp_Object));
7570 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7571 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7572 static void append_tool_bar_item P_ ((void));
7575 /* Return a vector of tool bar items for keymaps currently in effect.
7576 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7577 tool bar items found. */
7579 Lisp_Object
7580 tool_bar_items (reuse, nitems)
7581 Lisp_Object reuse;
7582 int *nitems;
7584 Lisp_Object *maps;
7585 int nmaps, i;
7586 Lisp_Object oquit;
7587 Lisp_Object *tmaps;
7589 *nitems = 0;
7591 /* In order to build the menus, we need to call the keymap
7592 accessors. They all call QUIT. But this function is called
7593 during redisplay, during which a quit is fatal. So inhibit
7594 quitting while building the menus. We do this instead of
7595 specbind because (1) errors will clear it anyway and (2) this
7596 avoids risk of specpdl overflow. */
7597 oquit = Vinhibit_quit;
7598 Vinhibit_quit = Qt;
7600 /* Initialize tool_bar_items_vector and protect it from GC. */
7601 init_tool_bar_items (reuse);
7603 /* Build list of keymaps in maps. Set nmaps to the number of maps
7604 to process. */
7606 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7607 if (!NILP (Voverriding_local_map_menu_flag))
7609 /* Yes, use them (if non-nil) as well as the global map. */
7610 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7611 nmaps = 0;
7612 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7613 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7614 if (!NILP (Voverriding_local_map))
7615 maps[nmaps++] = Voverriding_local_map;
7617 else
7619 /* No, so use major and minor mode keymaps and keymap property.
7620 Note that tool-bar bindings in the local-map and keymap
7621 properties may not work reliable, as they are only
7622 recognized when the tool-bar (or mode-line) is updated,
7623 which does not normally happen after every command. */
7624 Lisp_Object tem;
7625 int nminor;
7626 nminor = current_minor_maps (NULL, &tmaps);
7627 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7628 nmaps = 0;
7629 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7630 maps[nmaps++] = tem;
7631 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7632 nmaps += nminor;
7633 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7636 /* Add global keymap at the end. */
7637 maps[nmaps++] = current_global_map;
7639 /* Process maps in reverse order and look up in each map the prefix
7640 key `tool-bar'. */
7641 for (i = nmaps - 1; i >= 0; --i)
7642 if (!NILP (maps[i]))
7644 Lisp_Object keymap;
7646 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7647 if (CONSP (keymap))
7649 Lisp_Object tail;
7651 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7652 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7654 Lisp_Object keydef = XCAR (tail);
7655 if (CONSP (keydef))
7656 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7661 Vinhibit_quit = oquit;
7662 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7663 return tool_bar_items_vector;
7667 /* Process the definition of KEY which is DEF. */
7669 static void
7670 process_tool_bar_item (key, def)
7671 Lisp_Object key, def;
7673 int i;
7674 extern Lisp_Object Qundefined;
7675 struct gcpro gcpro1, gcpro2;
7677 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7678 eval. */
7679 GCPRO2 (key, def);
7681 if (EQ (def, Qundefined))
7683 /* If a map has an explicit `undefined' as definition,
7684 discard any previously made item. */
7685 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7687 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7689 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7691 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7692 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7693 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7694 * sizeof (Lisp_Object)));
7695 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7696 break;
7700 else if (parse_tool_bar_item (key, def))
7701 /* Append a new tool bar item to tool_bar_items_vector. Accept
7702 more than one definition for the same key. */
7703 append_tool_bar_item ();
7705 UNGCPRO;
7709 /* Parse a tool bar item specification ITEM for key KEY and return the
7710 result in tool_bar_item_properties. Value is zero if ITEM is
7711 invalid.
7713 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7715 CAPTION is the caption of the item, If it's not a string, it is
7716 evaluated to get a string.
7718 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7719 as binding are currently ignored.
7721 The following properties are recognized:
7723 - `:enable FORM'.
7725 FORM is evaluated and specifies whether the tool bar item is
7726 enabled or disabled.
7728 - `:visible FORM'
7730 FORM is evaluated and specifies whether the tool bar item is visible.
7732 - `:filter FUNCTION'
7734 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7735 result is stored as the new binding.
7737 - `:button (TYPE SELECTED)'
7739 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7740 and specifies whether the button is selected (pressed) or not.
7742 - `:image IMAGES'
7744 IMAGES is either a single image specification or a vector of four
7745 image specifications. See enum tool_bar_item_images.
7747 - `:help HELP-STRING'.
7749 Gives a help string to display for the tool bar item. */
7751 static int
7752 parse_tool_bar_item (key, item)
7753 Lisp_Object key, item;
7755 /* Access slot with index IDX of vector tool_bar_item_properties. */
7756 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7758 Lisp_Object filter = Qnil;
7759 Lisp_Object caption;
7760 int i;
7762 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7763 Rule out items that aren't lists, don't start with
7764 `menu-item' or whose rest following `tool-bar-item' is not a
7765 list. */
7766 if (!CONSP (item)
7767 || !EQ (XCAR (item), Qmenu_item)
7768 || (item = XCDR (item),
7769 !CONSP (item)))
7770 return 0;
7772 /* Create tool_bar_item_properties vector if necessary. Reset it to
7773 defaults. */
7774 if (VECTORP (tool_bar_item_properties))
7776 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7777 PROP (i) = Qnil;
7779 else
7780 tool_bar_item_properties
7781 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7783 /* Set defaults. */
7784 PROP (TOOL_BAR_ITEM_KEY) = key;
7785 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7787 /* Get the caption of the item. If the caption is not a string,
7788 evaluate it to get a string. If we don't get a string, skip this
7789 item. */
7790 caption = XCAR (item);
7791 if (!STRINGP (caption))
7793 caption = menu_item_eval_property (caption);
7794 if (!STRINGP (caption))
7795 return 0;
7797 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7799 /* Give up if rest following the caption is not a list. */
7800 item = XCDR (item);
7801 if (!CONSP (item))
7802 return 0;
7804 /* Store the binding. */
7805 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7806 item = XCDR (item);
7808 /* Ignore cached key binding, if any. */
7809 if (CONSP (item) && CONSP (XCAR (item)))
7810 item = XCDR (item);
7812 /* Process the rest of the properties. */
7813 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7815 Lisp_Object key, value;
7817 key = XCAR (item);
7818 value = XCAR (XCDR (item));
7820 if (EQ (key, QCenable))
7821 /* `:enable FORM'. */
7822 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7823 else if (EQ (key, QCvisible))
7825 /* `:visible FORM'. If got a visible property and that
7826 evaluates to nil then ignore this item. */
7827 if (NILP (menu_item_eval_property (value)))
7828 return 0;
7830 else if (EQ (key, QChelp))
7831 /* `:help HELP-STRING'. */
7832 PROP (TOOL_BAR_ITEM_HELP) = value;
7833 else if (EQ (key, QCfilter))
7834 /* ':filter FORM'. */
7835 filter = value;
7836 else if (EQ (key, QCbutton) && CONSP (value))
7838 /* `:button (TYPE . SELECTED)'. */
7839 Lisp_Object type, selected;
7841 type = XCAR (value);
7842 selected = XCDR (value);
7843 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7845 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7846 PROP (TOOL_BAR_ITEM_TYPE) = type;
7849 else if (EQ (key, QCimage)
7850 && (CONSP (value)
7851 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7852 /* Value is either a single image specification or a vector
7853 of 4 such specifications for the different button states. */
7854 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7857 /* If got a filter apply it on binding. */
7858 if (!NILP (filter))
7859 PROP (TOOL_BAR_ITEM_BINDING)
7860 = menu_item_eval_property (list2 (filter,
7861 list2 (Qquote,
7862 PROP (TOOL_BAR_ITEM_BINDING))));
7864 /* See if the binding is a keymap. Give up if it is. */
7865 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7866 return 0;
7868 /* Enable or disable selection of item. */
7869 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7870 PROP (TOOL_BAR_ITEM_ENABLED_P)
7871 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7873 /* Handle radio buttons or toggle boxes. */
7874 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7875 PROP (TOOL_BAR_ITEM_SELECTED_P)
7876 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7878 return 1;
7880 #undef PROP
7884 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7885 that can be reused. */
7887 static void
7888 init_tool_bar_items (reuse)
7889 Lisp_Object reuse;
7891 if (VECTORP (reuse))
7892 tool_bar_items_vector = reuse;
7893 else
7894 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7895 ntool_bar_items = 0;
7899 /* Append parsed tool bar item properties from
7900 tool_bar_item_properties */
7902 static void
7903 append_tool_bar_item ()
7905 Lisp_Object *to, *from;
7907 /* Enlarge tool_bar_items_vector if necessary. */
7908 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7909 >= XVECTOR (tool_bar_items_vector)->size)
7911 Lisp_Object new_vector;
7912 int old_size = XVECTOR (tool_bar_items_vector)->size;
7914 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
7915 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7916 XVECTOR (new_vector)->contents,
7917 old_size * sizeof (Lisp_Object));
7918 tool_bar_items_vector = new_vector;
7921 /* Append entries from tool_bar_item_properties to the end of
7922 tool_bar_items_vector. */
7923 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7924 from = XVECTOR (tool_bar_item_properties)->contents;
7925 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7926 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7933 /* Read a character using menus based on maps in the array MAPS.
7934 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7935 Return t if we displayed a menu but the user rejected it.
7937 PREV_EVENT is the previous input event, or nil if we are reading
7938 the first event of a key sequence.
7940 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7941 if we used a mouse menu to read the input, or zero otherwise. If
7942 USED_MOUSE_MENU is null, we don't dereference it.
7944 The prompting is done based on the prompt-string of the map
7945 and the strings associated with various map elements.
7947 This can be done with X menus or with menus put in the minibuf.
7948 These are done in different ways, depending on how the input will be read.
7949 Menus using X are done after auto-saving in read-char, getting the input
7950 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7951 and do auto-saving in the inner call of read_char. */
7953 static Lisp_Object
7954 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7955 int nmaps;
7956 Lisp_Object *maps;
7957 Lisp_Object prev_event;
7958 int *used_mouse_menu;
7960 int mapno;
7961 register Lisp_Object name = Qnil;
7963 if (used_mouse_menu)
7964 *used_mouse_menu = 0;
7966 /* Use local over global Menu maps */
7968 if (! menu_prompting)
7969 return Qnil;
7971 /* Optionally disregard all but the global map. */
7972 if (inhibit_local_menu_bar_menus)
7974 maps += (nmaps - 1);
7975 nmaps = 1;
7978 /* Get the menu name from the first map that has one (a prompt string). */
7979 for (mapno = 0; mapno < nmaps; mapno++)
7981 name = Fkeymap_prompt (maps[mapno]);
7982 if (!NILP (name))
7983 break;
7986 /* If we don't have any menus, just read a character normally. */
7987 if (!STRINGP (name))
7988 return Qnil;
7990 #ifdef HAVE_MENUS
7991 /* If we got to this point via a mouse click,
7992 use a real menu for mouse selection. */
7993 if (EVENT_HAS_PARAMETERS (prev_event)
7994 && !EQ (XCAR (prev_event), Qmenu_bar)
7995 && !EQ (XCAR (prev_event), Qtool_bar))
7997 /* Display the menu and get the selection. */
7998 Lisp_Object *realmaps
7999 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
8000 Lisp_Object value;
8001 int nmaps1 = 0;
8003 /* Use the maps that are not nil. */
8004 for (mapno = 0; mapno < nmaps; mapno++)
8005 if (!NILP (maps[mapno]))
8006 realmaps[nmaps1++] = maps[mapno];
8008 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
8009 if (CONSP (value))
8011 Lisp_Object tem;
8013 record_menu_key (XCAR (value));
8015 /* If we got multiple events, unread all but
8016 the first.
8017 There is no way to prevent those unread events
8018 from showing up later in last_nonmenu_event.
8019 So turn symbol and integer events into lists,
8020 to indicate that they came from a mouse menu,
8021 so that when present in last_nonmenu_event
8022 they won't confuse things. */
8023 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
8025 record_menu_key (XCAR (tem));
8026 if (SYMBOLP (XCAR (tem))
8027 || INTEGERP (XCAR (tem)))
8028 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8031 /* If we got more than one event, put all but the first
8032 onto this list to be read later.
8033 Return just the first event now. */
8034 Vunread_command_events
8035 = nconc2 (XCDR (value), Vunread_command_events);
8036 value = XCAR (value);
8038 else if (NILP (value))
8039 value = Qt;
8040 if (used_mouse_menu)
8041 *used_mouse_menu = 1;
8042 return value;
8044 #endif /* HAVE_MENUS */
8045 return Qnil ;
8048 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8049 We make this bigger when necessary, and never free it. */
8050 static char *read_char_minibuf_menu_text;
8051 /* Size of that buffer. */
8052 static int read_char_minibuf_menu_width;
8054 static Lisp_Object
8055 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
8056 int commandflag ;
8057 int nmaps;
8058 Lisp_Object *maps;
8060 int mapno;
8061 register Lisp_Object name;
8062 int nlength;
8063 /* FIXME: Use the minibuffer's frame width. */
8064 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8065 int idx = -1;
8066 int nobindings = 1;
8067 Lisp_Object rest, vector;
8068 char *menu;
8070 vector = Qnil;
8071 name = Qnil;
8073 if (! menu_prompting)
8074 return Qnil;
8076 /* Make sure we have a big enough buffer for the menu text. */
8077 if (read_char_minibuf_menu_text == 0)
8079 read_char_minibuf_menu_width = width + 4;
8080 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
8082 else if (width + 4 > read_char_minibuf_menu_width)
8084 read_char_minibuf_menu_width = width + 4;
8085 read_char_minibuf_menu_text
8086 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
8088 menu = read_char_minibuf_menu_text;
8090 /* Get the menu name from the first map that has one (a prompt string). */
8091 for (mapno = 0; mapno < nmaps; mapno++)
8093 name = Fkeymap_prompt (maps[mapno]);
8094 if (!NILP (name))
8095 break;
8098 /* If we don't have any menus, just read a character normally. */
8099 if (!STRINGP (name))
8100 return Qnil;
8102 /* Prompt string always starts with map's prompt, and a space. */
8103 strcpy (menu, SDATA (name));
8104 nlength = SBYTES (name);
8105 menu[nlength++] = ':';
8106 menu[nlength++] = ' ';
8107 menu[nlength] = 0;
8109 /* Start prompting at start of first map. */
8110 mapno = 0;
8111 rest = maps[mapno];
8113 /* Present the documented bindings, a line at a time. */
8114 while (1)
8116 int notfirst = 0;
8117 int i = nlength;
8118 Lisp_Object obj;
8119 int ch;
8120 Lisp_Object orig_defn_macro;
8122 /* Loop over elements of map. */
8123 while (i < width)
8125 Lisp_Object elt;
8127 /* If reached end of map, start at beginning of next map. */
8128 if (NILP (rest))
8130 mapno++;
8131 /* At end of last map, wrap around to first map if just starting,
8132 or end this line if already have something on it. */
8133 if (mapno == nmaps)
8135 mapno = 0;
8136 if (notfirst || nobindings) break;
8138 rest = maps[mapno];
8141 /* Look at the next element of the map. */
8142 if (idx >= 0)
8143 elt = XVECTOR (vector)->contents[idx];
8144 else
8145 elt = Fcar_safe (rest);
8147 if (idx < 0 && VECTORP (elt))
8149 /* If we found a dense table in the keymap,
8150 advanced past it, but start scanning its contents. */
8151 rest = Fcdr_safe (rest);
8152 vector = elt;
8153 idx = 0;
8155 else
8157 /* An ordinary element. */
8158 Lisp_Object event, tem;
8160 if (idx < 0)
8162 event = Fcar_safe (elt); /* alist */
8163 elt = Fcdr_safe (elt);
8165 else
8167 XSETINT (event, idx); /* vector */
8170 /* Ignore the element if it has no prompt string. */
8171 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8173 /* 1 if the char to type matches the string. */
8174 int char_matches;
8175 Lisp_Object upcased_event, downcased_event;
8176 Lisp_Object desc = Qnil;
8177 Lisp_Object s
8178 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8180 upcased_event = Fupcase (event);
8181 downcased_event = Fdowncase (event);
8182 char_matches = (XINT (upcased_event) == SREF (s, 0)
8183 || XINT (downcased_event) == SREF (s, 0));
8184 if (! char_matches)
8185 desc = Fsingle_key_description (event, Qnil);
8187 #if 0 /* It is redundant to list the equivalent key bindings because
8188 the prefix is what the user has already typed. */
8190 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8191 if (!NILP (tem))
8192 /* Insert equivalent keybinding. */
8193 s = concat2 (s, tem);
8194 #endif
8196 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8197 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8199 /* Insert button prefix. */
8200 Lisp_Object selected
8201 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8202 if (EQ (tem, QCradio))
8203 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8204 else
8205 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8206 s = concat2 (tem, s);
8210 /* If we have room for the prompt string, add it to this line.
8211 If this is the first on the line, always add it. */
8212 if ((SCHARS (s) + i + 2
8213 + (char_matches ? 0 : SCHARS (desc) + 3))
8214 < width
8215 || !notfirst)
8217 int thiswidth;
8219 /* Punctuate between strings. */
8220 if (notfirst)
8222 strcpy (menu + i, ", ");
8223 i += 2;
8225 notfirst = 1;
8226 nobindings = 0 ;
8228 /* If the char to type doesn't match the string's
8229 first char, explicitly show what char to type. */
8230 if (! char_matches)
8232 /* Add as much of string as fits. */
8233 thiswidth = SCHARS (desc);
8234 if (thiswidth + i > width)
8235 thiswidth = width - i;
8236 bcopy (SDATA (desc), menu + i, thiswidth);
8237 i += thiswidth;
8238 strcpy (menu + i, " = ");
8239 i += 3;
8242 /* Add as much of string as fits. */
8243 thiswidth = SCHARS (s);
8244 if (thiswidth + i > width)
8245 thiswidth = width - i;
8246 bcopy (SDATA (s), menu + i, thiswidth);
8247 i += thiswidth;
8248 menu[i] = 0;
8250 else
8252 /* If this element does not fit, end the line now,
8253 and save the element for the next line. */
8254 strcpy (menu + i, "...");
8255 break;
8259 /* Move past this element. */
8260 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8261 /* Handle reaching end of dense table. */
8262 idx = -1;
8263 if (idx >= 0)
8264 idx++;
8265 else
8266 rest = Fcdr_safe (rest);
8270 /* Prompt with that and read response. */
8271 message2_nolog (menu, strlen (menu),
8272 ! NILP (current_buffer->enable_multibyte_characters));
8274 /* Make believe its not a keyboard macro in case the help char
8275 is pressed. Help characters are not recorded because menu prompting
8276 is not used on replay.
8278 orig_defn_macro = current_kboard->defining_kbd_macro;
8279 current_kboard->defining_kbd_macro = Qnil;
8281 obj = read_char (commandflag, 0, 0, Qt, 0);
8282 while (BUFFERP (obj));
8283 current_kboard->defining_kbd_macro = orig_defn_macro;
8285 if (!INTEGERP (obj))
8286 return obj;
8287 else
8288 ch = XINT (obj);
8290 if (! EQ (obj, menu_prompt_more_char)
8291 && (!INTEGERP (menu_prompt_more_char)
8292 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8294 if (!NILP (current_kboard->defining_kbd_macro))
8295 store_kbd_macro_char (obj);
8296 return obj;
8298 /* Help char - go round again */
8302 /* Reading key sequences. */
8304 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8305 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8306 keymap, or nil otherwise. Return the index of the first keymap in
8307 which KEY has any binding, or NMAPS if no map has a binding.
8309 If KEY is a meta ASCII character, treat it like meta-prefix-char
8310 followed by the corresponding non-meta character. Keymaps in
8311 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8312 NEXT.
8314 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8315 unmodified.
8317 NEXT may be the same array as CURRENT. */
8319 static int
8320 follow_key (key, nmaps, current, defs, next)
8321 Lisp_Object key;
8322 Lisp_Object *current, *defs, *next;
8323 int nmaps;
8325 int i, first_binding;
8327 first_binding = nmaps;
8328 for (i = nmaps - 1; i >= 0; i--)
8330 if (! NILP (current[i]))
8332 defs[i] = access_keymap (current[i], key, 1, 0, 1);
8333 if (! NILP (defs[i]))
8334 first_binding = i;
8336 else
8337 defs[i] = Qnil;
8340 /* Given the set of bindings we've found, produce the next set of maps. */
8341 if (first_binding < nmaps)
8342 for (i = 0; i < nmaps; i++)
8343 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8345 return first_binding;
8348 /* Structure used to keep track of partial application of key remapping
8349 such as Vfunction_key_map and Vkey_translation_map. */
8350 typedef struct keyremap
8352 Lisp_Object map, parent;
8353 int start, end;
8354 } keyremap;
8356 /* Lookup KEY in MAP.
8357 MAP is a keymap mapping keys to key vectors or functions.
8358 If the mapping is a function and DO_FUNCTION is non-zero, then
8359 the function is called with PROMPT as parameter and its return
8360 value is used as the return value of this function (after checking
8361 that it is indeed a vector). */
8363 static Lisp_Object
8364 access_keymap_keyremap (map, key, prompt, do_funcall)
8365 Lisp_Object map, key, prompt;
8366 int do_funcall;
8368 Lisp_Object next;
8370 next = access_keymap (map, key, 1, 0, 1);
8372 /* Handle symbol with autoload definition. */
8373 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8374 && CONSP (XSYMBOL (next)->function)
8375 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
8376 do_autoload (XSYMBOL (next)->function, next);
8378 /* Handle a symbol whose function definition is a keymap
8379 or an array. */
8380 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8381 && (!NILP (Farrayp (XSYMBOL (next)->function))
8382 || KEYMAPP (XSYMBOL (next)->function)))
8383 next = XSYMBOL (next)->function;
8385 /* If the keymap gives a function, not an
8386 array, then call the function with one arg and use
8387 its value instead. */
8388 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
8390 Lisp_Object tem;
8391 tem = next;
8393 next = call1 (next, prompt);
8394 /* If the function returned something invalid,
8395 barf--don't ignore it.
8396 (To ignore it safely, we would need to gcpro a bunch of
8397 other variables.) */
8398 if (! (VECTORP (next) || STRINGP (next)))
8399 error ("Function %s returns invalid key sequence", tem);
8401 return next;
8404 /* Do one step of the key remapping used for function-key-map and
8405 key-translation-map:
8406 KEYBUF is the buffer holding the input events.
8407 BUFSIZE is its maximum size.
8408 FKEY is a pointer to the keyremap structure to use.
8409 INPUT is the index of the last element in KEYBUF.
8410 DOIT if non-zero says that the remapping can actually take place.
8411 DIFF is used to return the number of keys added/removed by the remapping.
8412 PARENT is the root of the keymap.
8413 PROMPT is the prompt to use if the remapping happens through a function.
8414 The return value is non-zero if the remapping actually took place. */
8416 static int
8417 keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
8418 Lisp_Object *keybuf, prompt;
8419 keyremap *fkey;
8420 int input, doit, *diff, bufsize;
8422 Lisp_Object next, key;
8424 key = keybuf[fkey->end++];
8425 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8427 /* If keybuf[fkey->start..fkey->end] is bound in the
8428 map and we're in a position to do the key remapping, replace it with
8429 the binding and restart with fkey->start at the end. */
8430 if ((VECTORP (next) || STRINGP (next)) && doit)
8432 int len = XFASTINT (Flength (next));
8433 int i;
8435 *diff = len - (fkey->end - fkey->start);
8437 if (input + *diff >= bufsize)
8438 error ("Key sequence too long");
8440 /* Shift the keys that follow fkey->end. */
8441 if (*diff < 0)
8442 for (i = fkey->end; i < input; i++)
8443 keybuf[i + *diff] = keybuf[i];
8444 else if (*diff > 0)
8445 for (i = input - 1; i >= fkey->end; i--)
8446 keybuf[i + *diff] = keybuf[i];
8447 /* Overwrite the old keys with the new ones. */
8448 for (i = 0; i < len; i++)
8449 keybuf[fkey->start + i]
8450 = Faref (next, make_number (i));
8452 fkey->start = fkey->end += *diff;
8453 fkey->map = fkey->parent;
8455 return 1;
8458 fkey->map = get_keymap (next, 0, 1);
8460 /* If we no longer have a bound suffix, try a new position for
8461 fkey->start. */
8462 if (!CONSP (fkey->map))
8464 fkey->end = ++fkey->start;
8465 fkey->map = fkey->parent;
8467 return 0;
8470 /* Read a sequence of keys that ends with a non prefix character,
8471 storing it in KEYBUF, a buffer of size BUFSIZE.
8472 Prompt with PROMPT.
8473 Return the length of the key sequence stored.
8474 Return -1 if the user rejected a command menu.
8476 Echo starting immediately unless `prompt' is 0.
8478 Where a key sequence ends depends on the currently active keymaps.
8479 These include any minor mode keymaps active in the current buffer,
8480 the current buffer's local map, and the global map.
8482 If a key sequence has no other bindings, we check Vfunction_key_map
8483 to see if some trailing subsequence might be the beginning of a
8484 function key's sequence. If so, we try to read the whole function
8485 key, and substitute its symbolic name into the key sequence.
8487 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8488 `double-' events into similar click events, if that would make them
8489 bound. We try to turn `triple-' events first into `double-' events,
8490 then into clicks.
8492 If we get a mouse click in a mode line, vertical divider, or other
8493 non-text area, we treat the click as if it were prefixed by the
8494 symbol denoting that area - `mode-line', `vertical-line', or
8495 whatever.
8497 If the sequence starts with a mouse click, we read the key sequence
8498 with respect to the buffer clicked on, not the current buffer.
8500 If the user switches frames in the midst of a key sequence, we put
8501 off the switch-frame event until later; the next call to
8502 read_char will return it.
8504 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8505 from the selected window's buffer. */
8507 static int
8508 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8509 can_return_switch_frame, fix_current_buffer)
8510 Lisp_Object *keybuf;
8511 int bufsize;
8512 Lisp_Object prompt;
8513 int dont_downcase_last;
8514 int can_return_switch_frame;
8515 int fix_current_buffer;
8517 volatile Lisp_Object from_string;
8518 volatile int count = SPECPDL_INDEX ();
8520 /* How many keys there are in the current key sequence. */
8521 volatile int t;
8523 /* The length of the echo buffer when we started reading, and
8524 the length of this_command_keys when we started reading. */
8525 volatile int echo_start;
8526 volatile int keys_start;
8528 /* The number of keymaps we're scanning right now, and the number of
8529 keymaps we have allocated space for. */
8530 volatile int nmaps;
8531 volatile int nmaps_allocated = 0;
8533 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8534 the current keymaps. */
8535 Lisp_Object *volatile defs = NULL;
8537 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8538 in the current keymaps, or nil where it is not a prefix. */
8539 Lisp_Object *volatile submaps = NULL;
8541 /* The local map to start out with at start of key sequence. */
8542 volatile Lisp_Object orig_local_map;
8544 /* The map from the `keymap' property to start out with at start of
8545 key sequence. */
8546 volatile Lisp_Object orig_keymap;
8548 /* 1 if we have already considered switching to the local-map property
8549 of the place where a mouse click occurred. */
8550 volatile int localized_local_map = 0;
8552 /* The index in defs[] of the first keymap that has a binding for
8553 this key sequence. In other words, the lowest i such that
8554 defs[i] is non-nil. */
8555 volatile int first_binding;
8556 /* Index of the first key that has no binding.
8557 It is useless to try fkey.start larger than that. */
8558 volatile int first_unbound;
8560 /* If t < mock_input, then KEYBUF[t] should be read as the next
8561 input key.
8563 We use this to recover after recognizing a function key. Once we
8564 realize that a suffix of the current key sequence is actually a
8565 function key's escape sequence, we replace the suffix with the
8566 function key's binding from Vfunction_key_map. Now keybuf
8567 contains a new and different key sequence, so the echo area,
8568 this_command_keys, and the submaps and defs arrays are wrong. In
8569 this situation, we set mock_input to t, set t to 0, and jump to
8570 restart_sequence; the loop will read keys from keybuf up until
8571 mock_input, thus rebuilding the state; and then it will resume
8572 reading characters from the keyboard. */
8573 volatile int mock_input = 0;
8575 /* If the sequence is unbound in submaps[], then
8576 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8577 and fkey.map is its binding.
8579 These might be > t, indicating that all function key scanning
8580 should hold off until t reaches them. We do this when we've just
8581 recognized a function key, to avoid searching for the function
8582 key's again in Vfunction_key_map. */
8583 volatile keyremap fkey;
8585 /* Likewise, for key_translation_map. */
8586 volatile keyremap keytran;
8588 /* If we receive a `switch-frame' or `select-window' event in the middle of
8589 a key sequence, we put it off for later.
8590 While we're reading, we keep the event here. */
8591 volatile Lisp_Object delayed_switch_frame;
8593 /* See the comment below... */
8594 #if defined (GOBBLE_FIRST_EVENT)
8595 Lisp_Object first_event;
8596 #endif
8598 volatile Lisp_Object original_uppercase;
8599 volatile int original_uppercase_position = -1;
8601 /* Gets around Microsoft compiler limitations. */
8602 int dummyflag = 0;
8604 struct buffer *starting_buffer;
8606 /* List of events for which a fake prefix key has been generated. */
8607 volatile Lisp_Object fake_prefixed_keys = Qnil;
8609 #if defined (GOBBLE_FIRST_EVENT)
8610 int junk;
8611 #endif
8613 struct gcpro gcpro1;
8615 GCPRO1 (fake_prefixed_keys);
8616 raw_keybuf_count = 0;
8618 last_nonmenu_event = Qnil;
8620 delayed_switch_frame = Qnil;
8621 fkey.map = fkey.parent = Vfunction_key_map;
8622 keytran.map = keytran.parent = Vkey_translation_map;
8623 /* If there is no translation-map, turn off scanning. */
8624 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
8625 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
8627 if (INTERACTIVE)
8629 if (!NILP (prompt))
8630 echo_prompt (prompt);
8631 else if (cursor_in_echo_area
8632 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8633 && NILP (Fzerop (Vecho_keystrokes)))
8634 /* This doesn't put in a dash if the echo buffer is empty, so
8635 you don't always see a dash hanging out in the minibuffer. */
8636 echo_dash ();
8639 /* Record the initial state of the echo area and this_command_keys;
8640 we will need to restore them if we replay a key sequence. */
8641 if (INTERACTIVE)
8642 echo_start = echo_length ();
8643 keys_start = this_command_key_count;
8644 this_single_command_key_start = keys_start;
8646 #if defined (GOBBLE_FIRST_EVENT)
8647 /* This doesn't quite work, because some of the things that read_char
8648 does cannot safely be bypassed. It seems too risky to try to make
8649 this work right. */
8651 /* Read the first char of the sequence specially, before setting
8652 up any keymaps, in case a filter runs and switches buffers on us. */
8653 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8654 &junk);
8655 #endif /* GOBBLE_FIRST_EVENT */
8657 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8658 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8659 from_string = Qnil;
8661 /* We jump here when the key sequence has been thoroughly changed, and
8662 we need to rescan it starting from the beginning. When we jump here,
8663 keybuf[0..mock_input] holds the sequence we should reread. */
8664 replay_sequence:
8666 starting_buffer = current_buffer;
8667 first_unbound = bufsize + 1;
8669 /* Build our list of keymaps.
8670 If we recognize a function key and replace its escape sequence in
8671 keybuf with its symbol, or if the sequence starts with a mouse
8672 click and we need to switch buffers, we jump back here to rebuild
8673 the initial keymaps from the current buffer. */
8674 nmaps = 0;
8676 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8677 || !NILP (Voverriding_local_map))
8679 if (3 > nmaps_allocated)
8681 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8682 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8683 nmaps_allocated = 3;
8685 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8686 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8687 if (!NILP (Voverriding_local_map))
8688 submaps[nmaps++] = Voverriding_local_map;
8690 else
8692 int nminor;
8693 int total;
8694 Lisp_Object *maps;
8696 nminor = current_minor_maps (0, &maps);
8697 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8699 if (total > nmaps_allocated)
8701 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8702 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8703 nmaps_allocated = total;
8706 if (!NILP (orig_keymap))
8707 submaps[nmaps++] = orig_keymap;
8709 bcopy (maps, (void *) (submaps + nmaps),
8710 nminor * sizeof (submaps[0]));
8712 nmaps += nminor;
8714 submaps[nmaps++] = orig_local_map;
8716 submaps[nmaps++] = current_global_map;
8718 /* Find an accurate initial value for first_binding. */
8719 for (first_binding = 0; first_binding < nmaps; first_binding++)
8720 if (! NILP (submaps[first_binding]))
8721 break;
8723 /* Start from the beginning in keybuf. */
8724 t = 0;
8726 /* These are no-ops the first time through, but if we restart, they
8727 revert the echo area and this_command_keys to their original state. */
8728 this_command_key_count = keys_start;
8729 if (INTERACTIVE && t < mock_input)
8730 echo_truncate (echo_start);
8732 /* If the best binding for the current key sequence is a keymap, or
8733 we may be looking at a function key's escape sequence, keep on
8734 reading. */
8735 while (first_binding < nmaps
8736 /* Keep reading as long as there's a prefix binding. */
8737 ? !NILP (submaps[first_binding])
8738 /* Don't return in the middle of a possible function key sequence,
8739 if the only bindings we found were via case conversion.
8740 Thus, if ESC O a has a function-key-map translation
8741 and ESC o has a binding, don't return after ESC O,
8742 so that we can translate ESC O plus the next character. */
8743 : (fkey.start < t || keytran.start < t))
8745 Lisp_Object key;
8746 int used_mouse_menu = 0;
8748 /* Where the last real key started. If we need to throw away a
8749 key that has expanded into more than one element of keybuf
8750 (say, a mouse click on the mode line which is being treated
8751 as [mode-line (mouse-...)], then we backtrack to this point
8752 of keybuf. */
8753 volatile int last_real_key_start;
8755 /* These variables are analogous to echo_start and keys_start;
8756 while those allow us to restart the entire key sequence,
8757 echo_local_start and keys_local_start allow us to throw away
8758 just one key. */
8759 volatile int echo_local_start, keys_local_start, local_first_binding;
8761 eassert (fkey.end == t || (fkey.end > t && fkey.end <= mock_input));
8762 eassert (fkey.start <= fkey.end);
8763 eassert (keytran.start <= keytran.end);
8764 /* key-translation-map is applied *after* function-key-map. */
8765 eassert (keytran.end <= fkey.start);
8767 if (first_unbound < fkey.start && first_unbound < keytran.start)
8768 { /* The prefix upto first_unbound has no binding and has
8769 no translation left to do either, so we know it's unbound.
8770 If we don't stop now, we risk staying here indefinitely
8771 (if the user keeps entering fkey or keytran prefixes
8772 like C-c ESC ESC ESC ESC ...) */
8773 int i;
8774 for (i = first_unbound + 1; i < t; i++)
8775 keybuf[i - first_unbound - 1] = keybuf[i];
8776 mock_input = t - first_unbound - 1;
8777 fkey.end = fkey.start -= first_unbound + 1;
8778 fkey.map = fkey.parent;
8779 keytran.end = keytran.start -= first_unbound + 1;
8780 keytran.map = keytran.parent;
8781 goto replay_sequence;
8784 if (t >= bufsize)
8785 error ("Key sequence too long");
8787 if (INTERACTIVE)
8788 echo_local_start = echo_length ();
8789 keys_local_start = this_command_key_count;
8790 local_first_binding = first_binding;
8792 replay_key:
8793 /* These are no-ops, unless we throw away a keystroke below and
8794 jumped back up to replay_key; in that case, these restore the
8795 variables to their original state, allowing us to replay the
8796 loop. */
8797 if (INTERACTIVE && t < mock_input)
8798 echo_truncate (echo_local_start);
8799 this_command_key_count = keys_local_start;
8800 first_binding = local_first_binding;
8802 /* By default, assume each event is "real". */
8803 last_real_key_start = t;
8805 /* Does mock_input indicate that we are re-reading a key sequence? */
8806 if (t < mock_input)
8808 key = keybuf[t];
8809 add_command_key (key);
8810 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8811 && NILP (Fzerop (Vecho_keystrokes)))
8812 echo_char (key);
8815 /* If not, we should actually read a character. */
8816 else
8819 #ifdef MULTI_KBOARD
8820 KBOARD *interrupted_kboard = current_kboard;
8821 struct frame *interrupted_frame = SELECTED_FRAME ();
8822 if (setjmp (wrong_kboard_jmpbuf))
8824 if (!NILP (delayed_switch_frame))
8826 interrupted_kboard->kbd_queue
8827 = Fcons (delayed_switch_frame,
8828 interrupted_kboard->kbd_queue);
8829 delayed_switch_frame = Qnil;
8831 while (t > 0)
8832 interrupted_kboard->kbd_queue
8833 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8835 /* If the side queue is non-empty, ensure it begins with a
8836 switch-frame, so we'll replay it in the right context. */
8837 if (CONSP (interrupted_kboard->kbd_queue)
8838 && (key = XCAR (interrupted_kboard->kbd_queue),
8839 !(EVENT_HAS_PARAMETERS (key)
8840 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8841 Qswitch_frame))))
8843 Lisp_Object frame;
8844 XSETFRAME (frame, interrupted_frame);
8845 interrupted_kboard->kbd_queue
8846 = Fcons (make_lispy_switch_frame (frame),
8847 interrupted_kboard->kbd_queue);
8849 mock_input = 0;
8850 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8851 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8852 goto replay_sequence;
8854 #endif
8855 key = read_char (NILP (prompt), nmaps,
8856 (Lisp_Object *) submaps, last_nonmenu_event,
8857 &used_mouse_menu);
8860 /* read_char returns t when it shows a menu and the user rejects it.
8861 Just return -1. */
8862 if (EQ (key, Qt))
8864 unbind_to (count, Qnil);
8865 UNGCPRO;
8866 return -1;
8869 /* read_char returns -1 at the end of a macro.
8870 Emacs 18 handles this by returning immediately with a
8871 zero, so that's what we'll do. */
8872 if (INTEGERP (key) && XINT (key) == -1)
8874 t = 0;
8875 /* The Microsoft C compiler can't handle the goto that
8876 would go here. */
8877 dummyflag = 1;
8878 break;
8881 /* If the current buffer has been changed from under us, the
8882 keymap may have changed, so replay the sequence. */
8883 if (BUFFERP (key))
8885 timer_resume_idle ();
8887 mock_input = t;
8888 /* Reset the current buffer from the selected window
8889 in case something changed the former and not the latter.
8890 This is to be more consistent with the behavior
8891 of the command_loop_1. */
8892 if (fix_current_buffer)
8894 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8895 Fkill_emacs (Qnil);
8896 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8897 Fset_buffer (XWINDOW (selected_window)->buffer);
8900 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8901 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8902 goto replay_sequence;
8905 /* If we have a quit that was typed in another frame, and
8906 quit_throw_to_read_char switched buffers,
8907 replay to get the right keymap. */
8908 if (INTEGERP (key)
8909 && XINT (key) == quit_char
8910 && current_buffer != starting_buffer)
8912 GROW_RAW_KEYBUF;
8913 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8914 keybuf[t++] = key;
8915 mock_input = t;
8916 Vquit_flag = Qnil;
8917 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8918 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8919 goto replay_sequence;
8922 Vquit_flag = Qnil;
8924 if (EVENT_HAS_PARAMETERS (key)
8925 /* Either a `switch-frame' or a `select-window' event. */
8926 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8928 /* If we're at the beginning of a key sequence, and the caller
8929 says it's okay, go ahead and return this event. If we're
8930 in the midst of a key sequence, delay it until the end. */
8931 if (t > 0 || !can_return_switch_frame)
8933 delayed_switch_frame = key;
8934 goto replay_key;
8938 GROW_RAW_KEYBUF;
8939 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8942 /* Clicks in non-text areas get prefixed by the symbol
8943 in their CHAR-ADDRESS field. For example, a click on
8944 the mode line is prefixed by the symbol `mode-line'.
8946 Furthermore, key sequences beginning with mouse clicks
8947 are read using the keymaps of the buffer clicked on, not
8948 the current buffer. So we may have to switch the buffer
8949 here.
8951 When we turn one event into two events, we must make sure
8952 that neither of the two looks like the original--so that,
8953 if we replay the events, they won't be expanded again.
8954 If not for this, such reexpansion could happen either here
8955 or when user programs play with this-command-keys. */
8956 if (EVENT_HAS_PARAMETERS (key))
8958 Lisp_Object kind;
8959 Lisp_Object string;
8961 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
8962 if (EQ (kind, Qmouse_click))
8964 Lisp_Object window, posn;
8966 window = POSN_WINDOW (EVENT_START (key));
8967 posn = POSN_POSN (EVENT_START (key));
8969 if (CONSP (posn)
8970 || (!NILP (fake_prefixed_keys)
8971 && !NILP (Fmemq (key, fake_prefixed_keys))))
8973 /* We're looking a second time at an event for which
8974 we generated a fake prefix key. Set
8975 last_real_key_start appropriately. */
8976 if (t > 0)
8977 last_real_key_start = t - 1;
8980 /* Key sequences beginning with mouse clicks are
8981 read using the keymaps in the buffer clicked on,
8982 not the current buffer. If we're at the
8983 beginning of a key sequence, switch buffers. */
8984 if (last_real_key_start == 0
8985 && WINDOWP (window)
8986 && BUFFERP (XWINDOW (window)->buffer)
8987 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
8989 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8990 keybuf[t] = key;
8991 mock_input = t + 1;
8993 /* Arrange to go back to the original buffer once we're
8994 done reading the key sequence. Note that we can't
8995 use save_excursion_{save,restore} here, because they
8996 save point as well as the current buffer; we don't
8997 want to save point, because redisplay may change it,
8998 to accommodate a Fset_window_start or something. We
8999 don't want to do this at the top of the function,
9000 because we may get input from a subprocess which
9001 wants to change the selected window and stuff (say,
9002 emacsclient). */
9003 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
9005 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9006 Fkill_emacs (Qnil);
9007 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
9008 orig_local_map = get_local_map (PT, current_buffer,
9009 Qlocal_map);
9010 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9011 goto replay_sequence;
9014 /* For a mouse click, get the local text-property keymap
9015 of the place clicked on, rather than point. */
9016 if (last_real_key_start == 0
9017 && CONSP (XCDR (key))
9018 && ! localized_local_map)
9020 Lisp_Object map_here, start, pos;
9022 localized_local_map = 1;
9023 start = EVENT_START (key);
9025 if (CONSP (start) && POSN_INBUFFER_P (start))
9027 pos = POSN_BUFFER_POSN (start);
9028 if (INTEGERP (pos)
9029 && XINT (pos) >= BEG && XINT (pos) <= Z)
9031 map_here = get_local_map (XINT (pos),
9032 current_buffer, Qlocal_map);
9033 if (!EQ (map_here, orig_local_map))
9035 orig_local_map = map_here;
9036 keybuf[t] = key;
9037 mock_input = t + 1;
9039 goto replay_sequence;
9041 map_here = get_local_map (XINT (pos),
9042 current_buffer, Qkeymap);
9043 if (!EQ (map_here, orig_keymap))
9045 orig_keymap = map_here;
9046 keybuf[t] = key;
9047 mock_input = t + 1;
9049 goto replay_sequence;
9055 /* Expand mode-line and scroll-bar events into two events:
9056 use posn as a fake prefix key. */
9057 if (SYMBOLP (posn)
9058 && (NILP (fake_prefixed_keys)
9059 || NILP (Fmemq (key, fake_prefixed_keys))))
9061 if (t + 1 >= bufsize)
9062 error ("Key sequence too long");
9064 keybuf[t] = posn;
9065 keybuf[t + 1] = key;
9066 mock_input = t + 2;
9068 /* Record that a fake prefix key has been generated
9069 for KEY. Don't modify the event; this would
9070 prevent proper action when the event is pushed
9071 back into unread-command-events. */
9072 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9074 /* If on a mode line string with a local keymap,
9075 reconsider the key sequence with that keymap. */
9076 if (string = POSN_STRING (EVENT_START (key)),
9077 (CONSP (string) && STRINGP (XCAR (string))))
9079 Lisp_Object pos, map, map2;
9081 pos = XCDR (string);
9082 string = XCAR (string);
9083 if (XINT (pos) >= 0
9084 && XINT (pos) < SCHARS (string))
9086 map = Fget_text_property (pos, Qlocal_map, string);
9087 if (!NILP (map))
9088 orig_local_map = map;
9089 map2 = Fget_text_property (pos, Qkeymap, string);
9090 if (!NILP (map2))
9091 orig_keymap = map2;
9092 if (!NILP (map) || !NILP (map2))
9093 goto replay_sequence;
9097 goto replay_key;
9099 else if (NILP (from_string)
9100 && (string = POSN_STRING (EVENT_START (key)),
9101 (CONSP (string) && STRINGP (XCAR (string)))))
9103 /* For a click on a string, i.e. overlay string or a
9104 string displayed via the `display' property,
9105 consider `local-map' and `keymap' properties of
9106 that string. */
9107 Lisp_Object pos, map, map2;
9109 pos = XCDR (string);
9110 string = XCAR (string);
9111 if (XINT (pos) >= 0
9112 && XINT (pos) < SCHARS (string))
9114 map = Fget_text_property (pos, Qlocal_map, string);
9115 if (!NILP (map))
9116 orig_local_map = map;
9117 map2 = Fget_text_property (pos, Qkeymap, string);
9118 if (!NILP (map2))
9119 orig_keymap = map2;
9121 if (!NILP (map) || !NILP (map2))
9123 from_string = string;
9124 goto replay_sequence;
9129 else if (CONSP (XCDR (key))
9130 && CONSP (EVENT_START (key))
9131 && CONSP (XCDR (EVENT_START (key))))
9133 Lisp_Object posn;
9135 posn = POSN_POSN (EVENT_START (key));
9136 /* Handle menu-bar events:
9137 insert the dummy prefix event `menu-bar'. */
9138 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9140 if (t + 1 >= bufsize)
9141 error ("Key sequence too long");
9142 keybuf[t] = posn;
9143 keybuf[t+1] = key;
9145 /* Zap the position in key, so we know that we've
9146 expanded it, and don't try to do so again. */
9147 POSN_SET_POSN (EVENT_START (key),
9148 Fcons (posn, Qnil));
9150 mock_input = t + 2;
9151 goto replay_sequence;
9153 else if (CONSP (posn))
9155 /* We're looking at the second event of a
9156 sequence which we expanded before. Set
9157 last_real_key_start appropriately. */
9158 if (last_real_key_start == t && t > 0)
9159 last_real_key_start = t - 1;
9164 /* We have finally decided that KEY is something we might want
9165 to look up. */
9166 first_binding = (follow_key (key,
9167 nmaps - first_binding,
9168 submaps + first_binding,
9169 defs + first_binding,
9170 submaps + first_binding)
9171 + first_binding);
9173 /* If KEY wasn't bound, we'll try some fallbacks. */
9174 if (first_binding < nmaps)
9175 /* This is needed for the following scenario:
9176 event 0: a down-event that gets dropped by calling replay_key.
9177 event 1: some normal prefix like C-h.
9178 After event 0, first_unbound is 0, after event 1 fkey.start
9179 and keytran.start are both 1, so when we see that C-h is bound,
9180 we need to update first_unbound. */
9181 first_unbound = max (t + 1, first_unbound);
9182 else
9184 Lisp_Object head;
9186 /* Remember the position to put an upper bound on fkey.start. */
9187 first_unbound = min (t, first_unbound);
9189 head = EVENT_HEAD (key);
9190 if (help_char_p (head) && t > 0)
9192 read_key_sequence_cmd = Vprefix_help_command;
9193 keybuf[t++] = key;
9194 last_nonmenu_event = key;
9195 /* The Microsoft C compiler can't handle the goto that
9196 would go here. */
9197 dummyflag = 1;
9198 break;
9201 if (SYMBOLP (head))
9203 Lisp_Object breakdown;
9204 int modifiers;
9206 breakdown = parse_modifiers (head);
9207 modifiers = XINT (XCAR (XCDR (breakdown)));
9208 /* Attempt to reduce an unbound mouse event to a simpler
9209 event that is bound:
9210 Drags reduce to clicks.
9211 Double-clicks reduce to clicks.
9212 Triple-clicks reduce to double-clicks, then to clicks.
9213 Down-clicks are eliminated.
9214 Double-downs reduce to downs, then are eliminated.
9215 Triple-downs reduce to double-downs, then to downs,
9216 then are eliminated. */
9217 if (modifiers & (down_modifier | drag_modifier
9218 | double_modifier | triple_modifier))
9220 while (modifiers & (down_modifier | drag_modifier
9221 | double_modifier | triple_modifier))
9223 Lisp_Object new_head, new_click;
9224 if (modifiers & triple_modifier)
9225 modifiers ^= (double_modifier | triple_modifier);
9226 else if (modifiers & double_modifier)
9227 modifiers &= ~double_modifier;
9228 else if (modifiers & drag_modifier)
9229 modifiers &= ~drag_modifier;
9230 else
9232 /* Dispose of this `down' event by simply jumping
9233 back to replay_key, to get another event.
9235 Note that if this event came from mock input,
9236 then just jumping back to replay_key will just
9237 hand it to us again. So we have to wipe out any
9238 mock input.
9240 We could delete keybuf[t] and shift everything
9241 after that to the left by one spot, but we'd also
9242 have to fix up any variable that points into
9243 keybuf, and shifting isn't really necessary
9244 anyway.
9246 Adding prefixes for non-textual mouse clicks
9247 creates two characters of mock input, and both
9248 must be thrown away. If we're only looking at
9249 the prefix now, we can just jump back to
9250 replay_key. On the other hand, if we've already
9251 processed the prefix, and now the actual click
9252 itself is giving us trouble, then we've lost the
9253 state of the keymaps we want to backtrack to, and
9254 we need to replay the whole sequence to rebuild
9257 Beyond that, only function key expansion could
9258 create more than two keys, but that should never
9259 generate mouse events, so it's okay to zero
9260 mock_input in that case too.
9262 FIXME: The above paragraph seems just plain
9263 wrong, if you consider things like
9264 xterm-mouse-mode. -stef
9266 Isn't this just the most wonderful code ever? */
9268 /* If mock_input > t + 1, the above simplification
9269 will actually end up dropping keys on the floor.
9270 This is probably OK for now, but even
9271 if mock_input <= t + 1, we need to adjust fkey
9272 and keytran.
9273 Typical case [header-line down-mouse-N]:
9274 mock_input = 2, t = 1, fkey.end = 1,
9275 last_real_key_start = 0. */
9276 if (fkey.end > last_real_key_start)
9278 fkey.end = fkey.start
9279 = min (last_real_key_start, fkey.start);
9280 fkey.map = fkey.parent;
9281 if (keytran.end > last_real_key_start)
9283 keytran.end = keytran.start
9284 = min (last_real_key_start, keytran.start);
9285 keytran.map = keytran.parent;
9288 if (t == last_real_key_start)
9290 mock_input = 0;
9291 goto replay_key;
9293 else
9295 mock_input = last_real_key_start;
9296 goto replay_sequence;
9300 new_head
9301 = apply_modifiers (modifiers, XCAR (breakdown));
9302 new_click
9303 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9305 /* Look for a binding for this new key. follow_key
9306 promises that it didn't munge submaps the
9307 last time we called it, since key was unbound. */
9308 first_binding
9309 = (follow_key (new_click,
9310 nmaps - local_first_binding,
9311 submaps + local_first_binding,
9312 defs + local_first_binding,
9313 submaps + local_first_binding)
9314 + local_first_binding);
9316 /* If that click is bound, go for it. */
9317 if (first_binding < nmaps)
9319 key = new_click;
9320 break;
9322 /* Otherwise, we'll leave key set to the drag event. */
9328 keybuf[t++] = key;
9329 /* Normally, last_nonmenu_event gets the previous key we read.
9330 But when a mouse popup menu is being used,
9331 we don't update last_nonmenu_event; it continues to hold the mouse
9332 event that preceded the first level of menu. */
9333 if (!used_mouse_menu)
9334 last_nonmenu_event = key;
9336 /* Record what part of this_command_keys is the current key sequence. */
9337 this_single_command_key_start = this_command_key_count - t;
9339 if (first_binding < nmaps && NILP (submaps[first_binding]))
9340 /* There is a binding and it's not a prefix.
9341 There is thus no function-key in this sequence.
9342 Moving fkey.start is important in this case to allow keytran.start
9343 to go over the sequence before we return (since we keep the
9344 invariant that keytran.end <= fkey.start). */
9346 if (fkey.start < t)
9347 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9349 else
9350 /* If the sequence is unbound, see if we can hang a function key
9351 off the end of it. */
9352 /* Continue scan from fkey.end until we find a bound suffix. */
9353 while (fkey.end < t)
9355 struct gcpro gcpro1, gcpro2, gcpro3;
9356 int done, diff;
9358 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9359 done = keyremap_step (keybuf, bufsize, &fkey,
9360 max (t, mock_input),
9361 /* If there's a binding (i.e.
9362 first_binding >= nmaps) we don't want
9363 to apply this function-key-mapping. */
9364 fkey.end + 1 == t && first_binding >= nmaps,
9365 &diff, prompt);
9366 UNGCPRO;
9367 if (done)
9369 mock_input = diff + max (t, mock_input);
9370 goto replay_sequence;
9374 /* Look for this sequence in key-translation-map.
9375 Scan from keytran.end until we find a bound suffix. */
9376 while (keytran.end < fkey.start)
9378 struct gcpro gcpro1, gcpro2, gcpro3;
9379 int done, diff;
9381 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9382 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9383 1, &diff, prompt);
9384 UNGCPRO;
9385 if (done)
9387 mock_input = diff + max (t, mock_input);
9388 /* Adjust the function-key-map counters. */
9389 fkey.end += diff;
9390 fkey.start += diff;
9392 goto replay_sequence;
9396 /* If KEY is not defined in any of the keymaps,
9397 and cannot be part of a function key or translation,
9398 and is an upper case letter
9399 use the corresponding lower-case letter instead. */
9400 if (first_binding >= nmaps
9401 && fkey.start >= t && keytran.start >= t
9402 && INTEGERP (key)
9403 && ((((XINT (key) & 0x3ffff)
9404 < XCHAR_TABLE (current_buffer->downcase_table)->size)
9405 && UPPERCASEP (XINT (key) & 0x3ffff))
9406 || (XINT (key) & shift_modifier)))
9408 Lisp_Object new_key;
9410 original_uppercase = key;
9411 original_uppercase_position = t - 1;
9413 if (XINT (key) & shift_modifier)
9414 XSETINT (new_key, XINT (key) & ~shift_modifier);
9415 else
9416 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9417 | (XINT (key) & ~0x3ffff)));
9419 /* We have to do this unconditionally, regardless of whether
9420 the lower-case char is defined in the keymaps, because they
9421 might get translated through function-key-map. */
9422 keybuf[t - 1] = new_key;
9423 mock_input = max (t, mock_input);
9425 goto replay_sequence;
9427 /* If KEY is not defined in any of the keymaps,
9428 and cannot be part of a function key or translation,
9429 and is a shifted function key,
9430 use the corresponding unshifted function key instead. */
9431 if (first_binding >= nmaps
9432 && fkey.start >= t && keytran.start >= t
9433 && SYMBOLP (key))
9435 Lisp_Object breakdown;
9436 int modifiers;
9438 breakdown = parse_modifiers (key);
9439 modifiers = XINT (XCAR (XCDR (breakdown)));
9440 if (modifiers & shift_modifier)
9442 Lisp_Object new_key;
9444 original_uppercase = key;
9445 original_uppercase_position = t - 1;
9447 modifiers &= ~shift_modifier;
9448 new_key = apply_modifiers (modifiers,
9449 XCAR (breakdown));
9451 keybuf[t - 1] = new_key;
9452 mock_input = max (t, mock_input);
9453 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
9454 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
9456 goto replay_sequence;
9461 if (!dummyflag)
9462 read_key_sequence_cmd = (first_binding < nmaps
9463 ? defs[first_binding]
9464 : Qnil);
9466 unread_switch_frame = delayed_switch_frame;
9467 unbind_to (count, Qnil);
9469 /* Don't downcase the last character if the caller says don't.
9470 Don't downcase it if the result is undefined, either. */
9471 if ((dont_downcase_last || first_binding >= nmaps)
9472 && t - 1 == original_uppercase_position)
9473 keybuf[t - 1] = original_uppercase;
9475 /* Occasionally we fabricate events, perhaps by expanding something
9476 according to function-key-map, or by adding a prefix symbol to a
9477 mouse click in the scroll bar or modeline. In this cases, return
9478 the entire generated key sequence, even if we hit an unbound
9479 prefix or a definition before the end. This means that you will
9480 be able to push back the event properly, and also means that
9481 read-key-sequence will always return a logical unit.
9483 Better ideas? */
9484 for (; t < mock_input; t++)
9486 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9487 && NILP (Fzerop (Vecho_keystrokes)))
9488 echo_char (keybuf[t]);
9489 add_command_key (keybuf[t]);
9494 UNGCPRO;
9495 return t;
9498 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9499 doc: /* Read a sequence of keystrokes and return as a string or vector.
9500 The sequence is sufficient to specify a non-prefix command in the
9501 current local and global maps.
9503 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9504 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9505 as a continuation of the previous key.
9507 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9508 convert the last event to lower case. (Normally any upper case event
9509 is converted to lower case if the original event is undefined and the lower
9510 case equivalent is defined.) A non-nil value is appropriate for reading
9511 a key sequence to be defined.
9513 A C-g typed while in this function is treated like any other character,
9514 and `quit-flag' is not set.
9516 If the key sequence starts with a mouse click, then the sequence is read
9517 using the keymaps of the buffer of the window clicked in, not the buffer
9518 of the selected window as normal.
9520 `read-key-sequence' drops unbound button-down events, since you normally
9521 only care about the click or drag events which follow them. If a drag
9522 or multi-click event is unbound, but the corresponding click event would
9523 be bound, `read-key-sequence' turns the event into a click event at the
9524 drag's starting position. This means that you don't have to distinguish
9525 between click and drag, double, or triple events unless you want to.
9527 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9528 lines separating windows, and scroll bars with imaginary keys
9529 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9531 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9532 function will process a switch-frame event if the user switches frames
9533 before typing anything. If the user switches frames in the middle of a
9534 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9535 is nil, then the event will be put off until after the current key sequence.
9537 `read-key-sequence' checks `function-key-map' for function key
9538 sequences, where they wouldn't conflict with ordinary bindings. See
9539 `function-key-map' for more details.
9541 The optional fifth argument COMMAND-LOOP, if non-nil, means
9542 that this key sequence is being read by something that will
9543 read commands one after another. It should be nil if the caller
9544 will read just one key sequence. */)
9545 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9546 command_loop)
9547 Lisp_Object prompt, continue_echo, dont_downcase_last;
9548 Lisp_Object can_return_switch_frame, command_loop;
9550 Lisp_Object keybuf[30];
9551 register int i;
9552 struct gcpro gcpro1;
9553 int count = SPECPDL_INDEX ();
9555 if (!NILP (prompt))
9556 CHECK_STRING (prompt);
9557 QUIT;
9559 specbind (Qinput_method_exit_on_first_char,
9560 (NILP (command_loop) ? Qt : Qnil));
9561 specbind (Qinput_method_use_echo_area,
9562 (NILP (command_loop) ? Qt : Qnil));
9564 bzero (keybuf, sizeof keybuf);
9565 GCPRO1 (keybuf[0]);
9566 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9568 if (NILP (continue_echo))
9570 this_command_key_count = 0;
9571 this_command_key_count_reset = 0;
9572 this_single_command_key_start = 0;
9575 #ifdef HAVE_X_WINDOWS
9576 if (display_hourglass_p)
9577 cancel_hourglass ();
9578 #endif
9580 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9581 prompt, ! NILP (dont_downcase_last),
9582 ! NILP (can_return_switch_frame), 0);
9584 #if 0 /* The following is fine for code reading a key sequence and
9585 then proceeding with a lenghty computation, but it's not good
9586 for code reading keys in a loop, like an input method. */
9587 #ifdef HAVE_X_WINDOWS
9588 if (display_hourglass_p)
9589 start_hourglass ();
9590 #endif
9591 #endif
9593 if (i == -1)
9595 Vquit_flag = Qt;
9596 QUIT;
9598 UNGCPRO;
9599 return unbind_to (count, make_event_array (i, keybuf));
9602 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9603 Sread_key_sequence_vector, 1, 5, 0,
9604 doc: /* Like `read-key-sequence' but always return a vector. */)
9605 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9606 command_loop)
9607 Lisp_Object prompt, continue_echo, dont_downcase_last;
9608 Lisp_Object can_return_switch_frame, command_loop;
9610 Lisp_Object keybuf[30];
9611 register int i;
9612 struct gcpro gcpro1;
9613 int count = SPECPDL_INDEX ();
9615 if (!NILP (prompt))
9616 CHECK_STRING (prompt);
9617 QUIT;
9619 specbind (Qinput_method_exit_on_first_char,
9620 (NILP (command_loop) ? Qt : Qnil));
9621 specbind (Qinput_method_use_echo_area,
9622 (NILP (command_loop) ? Qt : Qnil));
9624 bzero (keybuf, sizeof keybuf);
9625 GCPRO1 (keybuf[0]);
9626 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9628 if (NILP (continue_echo))
9630 this_command_key_count = 0;
9631 this_command_key_count_reset = 0;
9632 this_single_command_key_start = 0;
9635 #ifdef HAVE_X_WINDOWS
9636 if (display_hourglass_p)
9637 cancel_hourglass ();
9638 #endif
9640 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9641 prompt, ! NILP (dont_downcase_last),
9642 ! NILP (can_return_switch_frame), 0);
9644 #ifdef HAVE_X_WINDOWS
9645 if (display_hourglass_p)
9646 start_hourglass ();
9647 #endif
9649 if (i == -1)
9651 Vquit_flag = Qt;
9652 QUIT;
9654 UNGCPRO;
9655 return unbind_to (count, Fvector (i, keybuf));
9658 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9659 doc: /* Execute CMD as an editor command.
9660 CMD must be a symbol that satisfies the `commandp' predicate.
9661 Optional second arg RECORD-FLAG non-nil
9662 means unconditionally put this command in `command-history'.
9663 Otherwise, that is done only if an arg is read using the minibuffer.
9664 The argument KEYS specifies the value to use instead of (this-command-keys)
9665 when reading the arguments; if it is nil, (this-command-keys) is used.
9666 The argument SPECIAL, if non-nil, means that this command is executing
9667 a special event, so ignore the prefix argument and don't clear it. */)
9668 (cmd, record_flag, keys, special)
9669 Lisp_Object cmd, record_flag, keys, special;
9671 register Lisp_Object final;
9672 register Lisp_Object tem;
9673 Lisp_Object prefixarg;
9674 struct backtrace backtrace;
9675 extern int debug_on_next_call;
9677 debug_on_next_call = 0;
9679 if (NILP (special))
9681 prefixarg = current_kboard->Vprefix_arg;
9682 Vcurrent_prefix_arg = prefixarg;
9683 current_kboard->Vprefix_arg = Qnil;
9685 else
9686 prefixarg = Qnil;
9688 if (SYMBOLP (cmd))
9690 tem = Fget (cmd, Qdisabled);
9691 if (!NILP (tem) && !NILP (Vrun_hooks))
9693 tem = Fsymbol_value (Qdisabled_command_function);
9694 if (!NILP (tem))
9695 return call1 (Vrun_hooks, Qdisabled_command_function);
9699 while (1)
9701 final = Findirect_function (cmd);
9703 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9705 struct gcpro gcpro1, gcpro2;
9707 GCPRO2 (cmd, prefixarg);
9708 do_autoload (final, cmd);
9709 UNGCPRO;
9711 else
9712 break;
9715 if (STRINGP (final) || VECTORP (final))
9717 /* If requested, place the macro in the command history. For
9718 other sorts of commands, call-interactively takes care of
9719 this. */
9720 if (!NILP (record_flag))
9722 Vcommand_history
9723 = Fcons (Fcons (Qexecute_kbd_macro,
9724 Fcons (final, Fcons (prefixarg, Qnil))),
9725 Vcommand_history);
9727 /* Don't keep command history around forever. */
9728 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9730 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9731 if (CONSP (tem))
9732 XSETCDR (tem, Qnil);
9736 return Fexecute_kbd_macro (final, prefixarg, Qnil);
9739 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9741 backtrace.next = backtrace_list;
9742 backtrace_list = &backtrace;
9743 backtrace.function = &Qcall_interactively;
9744 backtrace.args = &cmd;
9745 backtrace.nargs = 1;
9746 backtrace.evalargs = 0;
9747 backtrace.debug_on_exit = 0;
9749 tem = Fcall_interactively (cmd, record_flag, keys);
9751 backtrace_list = backtrace.next;
9752 return tem;
9754 return Qnil;
9759 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9760 1, 1, "P",
9761 doc: /* Read function name, then read its arguments and call it. */)
9762 (prefixarg)
9763 Lisp_Object prefixarg;
9765 Lisp_Object function;
9766 char buf[40];
9767 int saved_last_point_position;
9768 Lisp_Object saved_keys, saved_last_point_position_buffer;
9769 Lisp_Object bindings, value;
9770 struct gcpro gcpro1, gcpro2, gcpro3;
9771 #ifdef HAVE_X_WINDOWS
9772 /* The call to Fcompleting_read wil start and cancel the hourglass,
9773 but if the hourglass was already scheduled, this means that no
9774 hourglass will be shown for the actual M-x command itself.
9775 So we restart it if it is already scheduled. Note that checking
9776 hourglass_shown_p is not enough, normally the hourglass is not shown,
9777 just scheduled to be shown. */
9778 int hstarted = hourglass_started ();
9779 #endif
9781 saved_keys = Fvector (this_command_key_count,
9782 XVECTOR (this_command_keys)->contents);
9783 saved_last_point_position_buffer = last_point_position_buffer;
9784 saved_last_point_position = last_point_position;
9785 buf[0] = 0;
9786 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
9788 if (EQ (prefixarg, Qminus))
9789 strcpy (buf, "- ");
9790 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9791 strcpy (buf, "C-u ");
9792 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9793 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9794 else if (INTEGERP (prefixarg))
9795 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9797 /* This isn't strictly correct if execute-extended-command
9798 is bound to anything else. Perhaps it should use
9799 this_command_keys? */
9800 strcat (buf, "M-x ");
9802 /* Prompt with buf, and then read a string, completing from and
9803 restricting to the set of all defined commands. Don't provide
9804 any initial input. Save the command read on the extended-command
9805 history list. */
9806 function = Fcompleting_read (build_string (buf),
9807 Vobarray, Qcommandp,
9808 Qt, Qnil, Qextended_command_history, Qnil,
9809 Qnil);
9811 #ifdef HAVE_X_WINDOWS
9812 if (hstarted) start_hourglass ();
9813 #endif
9815 if (STRINGP (function) && SCHARS (function) == 0)
9816 error ("No command name given");
9818 /* Set this_command_keys to the concatenation of saved_keys and
9819 function, followed by a RET. */
9821 Lisp_Object *keys;
9822 int i;
9824 this_command_key_count = 0;
9825 this_command_key_count_reset = 0;
9826 this_single_command_key_start = 0;
9828 keys = XVECTOR (saved_keys)->contents;
9829 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9830 add_command_key (keys[i]);
9832 for (i = 0; i < SCHARS (function); i++)
9833 add_command_key (Faref (function, make_number (i)));
9835 add_command_key (make_number ('\015'));
9838 last_point_position = saved_last_point_position;
9839 last_point_position_buffer = saved_last_point_position_buffer;
9841 UNGCPRO;
9843 function = Fintern (function, Qnil);
9844 current_kboard->Vprefix_arg = prefixarg;
9845 Vthis_command = function;
9846 real_this_command = function;
9848 /* If enabled, show which key runs this command. */
9849 if (!NILP (Vsuggest_key_bindings)
9850 && NILP (Vexecuting_kbd_macro)
9851 && SYMBOLP (function))
9852 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9853 Qt, Qnil, Qnil);
9854 else
9855 bindings = Qnil;
9857 value = Qnil;
9858 GCPRO2 (bindings, value);
9859 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9861 /* If the command has a key binding, print it now. */
9862 if (!NILP (bindings)
9863 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9864 Qmouse_movement)))
9866 /* But first wait, and skip the message if there is input. */
9867 int delay_time;
9868 if (!NILP (echo_area_buffer[0]))
9869 /* This command displayed something in the echo area;
9870 so wait a few seconds, then display our suggestion message. */
9871 delay_time = (NUMBERP (Vsuggest_key_bindings)
9872 ? XINT (Vsuggest_key_bindings) : 2);
9873 else
9874 /* This command left the echo area empty,
9875 so display our message immediately. */
9876 delay_time = 0;
9878 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
9879 && ! CONSP (Vunread_command_events))
9881 Lisp_Object binding;
9882 char *newmessage;
9883 int message_p = push_message ();
9884 int count = SPECPDL_INDEX ();
9886 record_unwind_protect (pop_message_unwind, Qnil);
9887 binding = Fkey_description (bindings, Qnil);
9889 newmessage
9890 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
9891 + SBYTES (binding)
9892 + 100);
9893 sprintf (newmessage, "You can run the command `%s' with %s",
9894 SDATA (SYMBOL_NAME (function)),
9895 SDATA (binding));
9896 message2_nolog (newmessage,
9897 strlen (newmessage),
9898 STRING_MULTIBYTE (binding));
9899 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9900 ? Vsuggest_key_bindings : make_number (2)),
9901 Qnil, Qnil))
9902 && message_p)
9903 restore_message ();
9905 unbind_to (count, Qnil);
9909 RETURN_UNGCPRO (value);
9913 /* Return nonzero if input events are pending. */
9916 detect_input_pending ()
9918 if (!input_pending)
9919 get_input_pending (&input_pending, 0);
9921 return input_pending;
9924 /* Return nonzero if input events other than mouse movements are
9925 pending. */
9928 detect_input_pending_ignore_squeezables ()
9930 if (!input_pending)
9931 get_input_pending (&input_pending, READABLE_EVENTS_IGNORE_SQUEEZABLES);
9933 return input_pending;
9936 /* Return nonzero if input events are pending, and run any pending timers. */
9939 detect_input_pending_run_timers (do_display)
9940 int do_display;
9942 int old_timers_run = timers_run;
9944 if (!input_pending)
9945 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
9947 if (old_timers_run != timers_run && do_display)
9949 redisplay_preserve_echo_area (8);
9950 /* The following fixes a bug when using lazy-lock with
9951 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9952 from an idle timer function. The symptom of the bug is that
9953 the cursor sometimes doesn't become visible until the next X
9954 event is processed. --gerd. */
9955 if (rif)
9956 rif->flush_display (NULL);
9959 return input_pending;
9962 /* This is called in some cases before a possible quit.
9963 It cases the next call to detect_input_pending to recompute input_pending.
9964 So calling this function unnecessarily can't do any harm. */
9966 void
9967 clear_input_pending ()
9969 input_pending = 0;
9972 /* Return nonzero if there are pending requeued events.
9973 This isn't used yet. The hope is to make wait_reading_process_output
9974 call it, and return if it runs Lisp code that unreads something.
9975 The problem is, kbd_buffer_get_event needs to be fixed to know what
9976 to do in that case. It isn't trivial. */
9979 requeued_events_pending_p ()
9981 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9985 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9986 doc: /* Return t if command input is currently available with no wait.
9987 Actually, the value is nil only if we can be sure that no input is available;
9988 if there is a doubt, the value is t. */)
9991 if (!NILP (Vunread_command_events) || unread_command_char != -1)
9992 return (Qt);
9994 get_input_pending (&input_pending,
9995 READABLE_EVENTS_DO_TIMERS_NOW
9996 | READABLE_EVENTS_FILTER_EVENTS);
9997 return input_pending > 0 ? Qt : Qnil;
10000 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
10001 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
10004 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
10005 Lisp_Object val;
10007 if (total_keys < NUM_RECENT_KEYS)
10008 return Fvector (total_keys, keys);
10009 else
10011 val = Fvector (NUM_RECENT_KEYS, keys);
10012 bcopy (keys + recent_keys_index,
10013 XVECTOR (val)->contents,
10014 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
10015 bcopy (keys,
10016 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
10017 recent_keys_index * sizeof (Lisp_Object));
10018 return val;
10022 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10023 doc: /* Return the key sequence that invoked this command.
10024 However, if the command has called `read-key-sequence', it returns
10025 the last key sequence that has been read.
10026 The value is a string or a vector. */)
10029 return make_event_array (this_command_key_count,
10030 XVECTOR (this_command_keys)->contents);
10033 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10034 doc: /* Return the key sequence that invoked this command, as a vector.
10035 However, if the command has called `read-key-sequence', it returns
10036 the last key sequence that has been read. */)
10039 return Fvector (this_command_key_count,
10040 XVECTOR (this_command_keys)->contents);
10043 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10044 Sthis_single_command_keys, 0, 0, 0,
10045 doc: /* Return the key sequence that invoked this command.
10046 More generally, it returns the last key sequence read, either by
10047 the command loop or by `read-key-sequence'.
10048 Unlike `this-command-keys', this function's value
10049 does not include prefix arguments.
10050 The value is always a vector. */)
10053 return Fvector (this_command_key_count
10054 - this_single_command_key_start,
10055 (XVECTOR (this_command_keys)->contents
10056 + this_single_command_key_start));
10059 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10060 Sthis_single_command_raw_keys, 0, 0, 0,
10061 doc: /* Return the raw events that were read for this command.
10062 More generally, it returns the last key sequence read, either by
10063 the command loop or by `read-key-sequence'.
10064 Unlike `this-single-command-keys', this function's value
10065 shows the events before all translations (except for input methods).
10066 The value is always a vector. */)
10069 return Fvector (raw_keybuf_count,
10070 (XVECTOR (raw_keybuf)->contents));
10073 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
10074 Sreset_this_command_lengths, 0, 0, 0,
10075 doc: /* Make the unread events replace the last command and echo.
10076 Used in `universal-argument-other-key'.
10078 `universal-argument-other-key' rereads the event just typed.
10079 It then gets translated through `function-key-map'.
10080 The translated event has to replace the real events,
10081 both in the value of (this-command-keys) and in echoing.
10082 To achieve this, `universal-argument-other-key' calls
10083 `reset-this-command-lengths', which discards the record of reading
10084 these events the first time. */)
10087 this_command_key_count = before_command_key_count;
10088 if (this_command_key_count < this_single_command_key_start)
10089 this_single_command_key_start = this_command_key_count;
10091 echo_truncate (before_command_echo_length);
10093 /* Cause whatever we put into unread-command-events
10094 to echo as if it were being freshly read from the keyboard. */
10095 this_command_key_count_reset = 1;
10097 return Qnil;
10100 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10101 Sclear_this_command_keys, 0, 1, 0,
10102 doc: /* Clear out the vector that `this-command-keys' returns.
10103 Also clear the record of the last 100 events, unless optional arg
10104 KEEP-RECORD is non-nil. */)
10105 (keep_record)
10106 Lisp_Object keep_record;
10108 int i;
10110 this_command_key_count = 0;
10111 this_command_key_count_reset = 0;
10113 if (NILP (keep_record))
10115 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
10116 XVECTOR (recent_keys)->contents[i] = Qnil;
10117 total_keys = 0;
10118 recent_keys_index = 0;
10120 return Qnil;
10123 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10124 doc: /* Return the current depth in recursive edits. */)
10127 Lisp_Object temp;
10128 XSETFASTINT (temp, command_loop_level + minibuf_level);
10129 return temp;
10132 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10133 "FOpen dribble file: ",
10134 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10135 If FILE is nil, close any open dribble file. */)
10136 (file)
10137 Lisp_Object file;
10139 if (dribble)
10141 fclose (dribble);
10142 dribble = 0;
10144 if (!NILP (file))
10146 file = Fexpand_file_name (file, Qnil);
10147 dribble = fopen (SDATA (file), "w");
10148 if (dribble == 0)
10149 report_file_error ("Opening dribble", Fcons (file, Qnil));
10151 return Qnil;
10154 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10155 doc: /* Discard the contents of the terminal input buffer.
10156 Also end any kbd macro being defined. */)
10159 if (!NILP (current_kboard->defining_kbd_macro))
10161 /* Discard the last command from the macro. */
10162 Fcancel_kbd_macro_events ();
10163 end_kbd_macro ();
10166 update_mode_lines++;
10168 Vunread_command_events = Qnil;
10169 unread_command_char = -1;
10171 discard_tty_input ();
10173 kbd_fetch_ptr = kbd_store_ptr;
10174 input_pending = 0;
10176 return Qnil;
10179 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10180 doc: /* Stop Emacs and return to superior process. You can resume later.
10181 If `cannot-suspend' is non-nil, or if the system doesn't support job
10182 control, run a subshell instead.
10184 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10185 to be read as terminal input by Emacs's parent, after suspension.
10187 Before suspending, run the normal hook `suspend-hook'.
10188 After resumption run the normal hook `suspend-resume-hook'.
10190 Some operating systems cannot stop the Emacs process and resume it later.
10191 On such systems, Emacs starts a subshell instead of suspending. */)
10192 (stuffstring)
10193 Lisp_Object stuffstring;
10195 int count = SPECPDL_INDEX ();
10196 int old_height, old_width;
10197 int width, height;
10198 struct gcpro gcpro1;
10200 if (!NILP (stuffstring))
10201 CHECK_STRING (stuffstring);
10203 /* Run the functions in suspend-hook. */
10204 if (!NILP (Vrun_hooks))
10205 call1 (Vrun_hooks, intern ("suspend-hook"));
10207 GCPRO1 (stuffstring);
10208 get_frame_size (&old_width, &old_height);
10209 reset_sys_modes ();
10210 /* sys_suspend can get an error if it tries to fork a subshell
10211 and the system resources aren't available for that. */
10212 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
10213 Qnil);
10214 stuff_buffered_input (stuffstring);
10215 if (cannot_suspend)
10216 sys_subshell ();
10217 else
10218 sys_suspend ();
10219 unbind_to (count, Qnil);
10221 /* Check if terminal/window size has changed.
10222 Note that this is not useful when we are running directly
10223 with a window system; but suspend should be disabled in that case. */
10224 get_frame_size (&width, &height);
10225 if (width != old_width || height != old_height)
10226 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10228 /* Run suspend-resume-hook. */
10229 if (!NILP (Vrun_hooks))
10230 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10232 UNGCPRO;
10233 return Qnil;
10236 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10237 Then in any case stuff anything Emacs has read ahead and not used. */
10239 void
10240 stuff_buffered_input (stuffstring)
10241 Lisp_Object stuffstring;
10243 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10244 register unsigned char *p;
10246 if (STRINGP (stuffstring))
10248 register int count;
10250 p = SDATA (stuffstring);
10251 count = SBYTES (stuffstring);
10252 while (count-- > 0)
10253 stuff_char (*p++);
10254 stuff_char ('\n');
10257 /* Anything we have read ahead, put back for the shell to read. */
10258 /* ?? What should this do when we have multiple keyboards??
10259 Should we ignore anything that was typed in at the "wrong" kboard?
10261 rms: we should stuff everything back into the kboard
10262 it came from. */
10263 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10266 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10267 kbd_fetch_ptr = kbd_buffer;
10268 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10269 stuff_char (kbd_fetch_ptr->code);
10271 clear_event (kbd_fetch_ptr);
10274 input_pending = 0;
10275 #endif /* SIGTSTP */
10278 void
10279 set_waiting_for_input (time_to_clear)
10280 EMACS_TIME *time_to_clear;
10282 input_available_clear_time = time_to_clear;
10284 /* Tell interrupt_signal to throw back to read_char, */
10285 waiting_for_input = 1;
10287 /* If interrupt_signal was called before and buffered a C-g,
10288 make it run again now, to avoid timing error. */
10289 if (!NILP (Vquit_flag))
10290 quit_throw_to_read_char ();
10293 void
10294 clear_waiting_for_input ()
10296 /* Tell interrupt_signal not to throw back to read_char, */
10297 waiting_for_input = 0;
10298 input_available_clear_time = 0;
10301 /* This routine is called at interrupt level in response to C-g.
10303 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10304 is called from kbd_buffer_store_event, in handling SIGIO or
10305 SIGTINT.
10307 If `waiting_for_input' is non zero, then unless `echoing' is
10308 nonzero, immediately throw back to read_char.
10310 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10311 eval to throw, when it gets a chance. If quit-flag is already
10312 non-nil, it stops the job right away. */
10314 static SIGTYPE
10315 interrupt_signal (signalnum) /* If we don't have an argument, */
10316 int signalnum; /* some compilers complain in signal calls. */
10318 char c;
10319 /* Must preserve main program's value of errno. */
10320 int old_errno = errno;
10321 struct frame *sf = SELECTED_FRAME ();
10323 #if defined (USG) && !defined (POSIX_SIGNALS)
10324 if (!read_socket_hook && NILP (Vwindow_system))
10326 /* USG systems forget handlers when they are used;
10327 must reestablish each time */
10328 signal (SIGINT, interrupt_signal);
10329 signal (SIGQUIT, interrupt_signal);
10331 #endif /* USG */
10333 SIGNAL_THREAD_CHECK (signalnum);
10334 cancel_echoing ();
10336 if (!NILP (Vquit_flag)
10337 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
10339 /* If SIGINT isn't blocked, don't let us be interrupted by
10340 another SIGINT, it might be harmful due to non-reentrancy
10341 in I/O functions. */
10342 sigblock (sigmask (SIGINT));
10344 fflush (stdout);
10345 reset_sys_modes ();
10347 #ifdef SIGTSTP /* Support possible in later USG versions */
10349 * On systems which can suspend the current process and return to the original
10350 * shell, this command causes the user to end up back at the shell.
10351 * The "Auto-save" and "Abort" questions are not asked until
10352 * the user elects to return to emacs, at which point he can save the current
10353 * job and either dump core or continue.
10355 sys_suspend ();
10356 #else
10357 #ifdef VMS
10358 if (sys_suspend () == -1)
10360 printf ("Not running as a subprocess;\n");
10361 printf ("you can continue or abort.\n");
10363 #else /* not VMS */
10364 /* Perhaps should really fork an inferior shell?
10365 But that would not provide any way to get back
10366 to the original shell, ever. */
10367 printf ("No support for stopping a process on this operating system;\n");
10368 printf ("you can continue or abort.\n");
10369 #endif /* not VMS */
10370 #endif /* not SIGTSTP */
10371 #ifdef MSDOS
10372 /* We must remain inside the screen area when the internal terminal
10373 is used. Note that [Enter] is not echoed by dos. */
10374 cursor_to (0, 0);
10375 #endif
10376 /* It doesn't work to autosave while GC is in progress;
10377 the code used for auto-saving doesn't cope with the mark bit. */
10378 if (!gc_in_progress)
10380 printf ("Auto-save? (y or n) ");
10381 fflush (stdout);
10382 if (((c = getchar ()) & ~040) == 'Y')
10384 Fdo_auto_save (Qt, Qnil);
10385 #ifdef MSDOS
10386 printf ("\r\nAuto-save done");
10387 #else /* not MSDOS */
10388 printf ("Auto-save done\n");
10389 #endif /* not MSDOS */
10391 while (c != '\n') c = getchar ();
10393 else
10395 /* During GC, it must be safe to reenable quitting again. */
10396 Vinhibit_quit = Qnil;
10397 #ifdef MSDOS
10398 printf ("\r\n");
10399 #endif /* not MSDOS */
10400 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10401 printf ("but will instead do a real quit after garbage collection ends\r\n");
10402 fflush (stdout);
10405 #ifdef MSDOS
10406 printf ("\r\nAbort? (y or n) ");
10407 #else /* not MSDOS */
10408 #ifdef VMS
10409 printf ("Abort (and enter debugger)? (y or n) ");
10410 #else /* not VMS */
10411 printf ("Abort (and dump core)? (y or n) ");
10412 #endif /* not VMS */
10413 #endif /* not MSDOS */
10414 fflush (stdout);
10415 if (((c = getchar ()) & ~040) == 'Y')
10416 abort ();
10417 while (c != '\n') c = getchar ();
10418 #ifdef MSDOS
10419 printf ("\r\nContinuing...\r\n");
10420 #else /* not MSDOS */
10421 printf ("Continuing...\n");
10422 #endif /* not MSDOS */
10423 fflush (stdout);
10424 init_sys_modes ();
10425 sigfree ();
10427 else
10429 /* If executing a function that wants to be interrupted out of
10430 and the user has not deferred quitting by binding `inhibit-quit'
10431 then quit right away. */
10432 if (immediate_quit && NILP (Vinhibit_quit))
10434 struct gl_state_s saved;
10435 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10437 immediate_quit = 0;
10438 sigfree ();
10439 saved = gl_state;
10440 GCPRO4 (saved.object, saved.global_code,
10441 saved.current_syntax_table, saved.old_prop);
10442 Fsignal (Qquit, Qnil);
10443 gl_state = saved;
10444 UNGCPRO;
10446 else
10447 /* Else request quit when it's safe */
10448 Vquit_flag = Qt;
10451 if (waiting_for_input && !echoing)
10452 quit_throw_to_read_char ();
10454 errno = old_errno;
10457 /* Handle a C-g by making read_char return C-g. */
10459 void
10460 quit_throw_to_read_char ()
10462 sigfree ();
10463 /* Prevent another signal from doing this before we finish. */
10464 clear_waiting_for_input ();
10465 input_pending = 0;
10467 Vunread_command_events = Qnil;
10468 unread_command_char = -1;
10470 #if 0 /* Currently, sit_for is called from read_char without turning
10471 off polling. And that can call set_waiting_for_input.
10472 It seems to be harmless. */
10473 #ifdef POLL_FOR_INPUT
10474 /* May be > 1 if in recursive minibuffer. */
10475 if (poll_suppress_count == 0)
10476 abort ();
10477 #endif
10478 #endif
10479 if (FRAMEP (internal_last_event_frame)
10480 && !EQ (internal_last_event_frame, selected_frame))
10481 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10482 0, 0);
10484 _longjmp (getcjmp, 1);
10487 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10488 doc: /* Set mode of reading keyboard input.
10489 First arg INTERRUPT non-nil means use input interrupts;
10490 nil means use CBREAK mode.
10491 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10492 (no effect except in CBREAK mode).
10493 Third arg META t means accept 8-bit input (for a Meta key).
10494 META nil means ignore the top bit, on the assumption it is parity.
10495 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10496 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10497 See also `current-input-mode'. */)
10498 (interrupt, flow, meta, quit)
10499 Lisp_Object interrupt, flow, meta, quit;
10501 if (!NILP (quit)
10502 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10503 error ("set-input-mode: QUIT must be an ASCII character");
10505 #ifdef POLL_FOR_INPUT
10506 stop_polling ();
10507 #endif
10509 #ifndef DOS_NT
10510 /* this causes startup screen to be restored and messes with the mouse */
10511 reset_sys_modes ();
10512 #endif
10514 #ifdef SIGIO
10515 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10516 if (read_socket_hook)
10518 /* When using X, don't give the user a real choice,
10519 because we haven't implemented the mechanisms to support it. */
10520 #ifdef NO_SOCK_SIGIO
10521 interrupt_input = 0;
10522 #else /* not NO_SOCK_SIGIO */
10523 interrupt_input = 1;
10524 #endif /* NO_SOCK_SIGIO */
10526 else
10527 interrupt_input = !NILP (interrupt);
10528 #else /* not SIGIO */
10529 interrupt_input = 0;
10530 #endif /* not SIGIO */
10532 /* Our VMS input only works by interrupts, as of now. */
10533 #ifdef VMS
10534 interrupt_input = 1;
10535 #endif
10537 flow_control = !NILP (flow);
10538 if (NILP (meta))
10539 meta_key = 0;
10540 else if (EQ (meta, Qt))
10541 meta_key = 1;
10542 else
10543 meta_key = 2;
10544 if (!NILP (quit))
10545 /* Don't let this value be out of range. */
10546 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10548 #ifndef DOS_NT
10549 init_sys_modes ();
10550 #endif
10552 #ifdef POLL_FOR_INPUT
10553 poll_suppress_count = 1;
10554 start_polling ();
10555 #endif
10556 return Qnil;
10559 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10560 doc: /* Return information about the way Emacs currently reads keyboard input.
10561 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10562 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10563 nil, Emacs is using CBREAK mode.
10564 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10565 terminal; this does not apply if Emacs uses interrupt-driven input.
10566 META is t if accepting 8-bit input with 8th bit as Meta flag.
10567 META nil means ignoring the top bit, on the assumption it is parity.
10568 META is neither t nor nil if accepting 8-bit input and using
10569 all 8 bits as the character code.
10570 QUIT is the character Emacs currently uses to quit.
10571 The elements of this list correspond to the arguments of
10572 `set-input-mode'. */)
10575 Lisp_Object val[4];
10577 val[0] = interrupt_input ? Qt : Qnil;
10578 val[1] = flow_control ? Qt : Qnil;
10579 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10580 XSETFASTINT (val[3], quit_char);
10582 return Flist (sizeof (val) / sizeof (val[0]), val);
10585 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
10586 doc: /* Return position information for pixel coordinates X and Y.
10587 By default, X and Y are relative to text area of the selected window.
10588 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
10589 If optional fourth arg WHOLE is non-nil, X is relative to the left
10590 edge of the window.
10592 The return value is similar to a mouse click position:
10593 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10594 IMAGE (DX . DY) (WIDTH . HEIGHT))
10595 The `posn-' functions access elements of such lists. */)
10596 (x, y, frame_or_window, whole)
10597 Lisp_Object x, y, frame_or_window, whole;
10599 CHECK_NATNUM (x);
10600 CHECK_NATNUM (y);
10602 if (NILP (frame_or_window))
10603 frame_or_window = selected_window;
10605 if (WINDOWP (frame_or_window))
10607 struct window *w;
10609 CHECK_LIVE_WINDOW (frame_or_window);
10611 w = XWINDOW (frame_or_window);
10612 XSETINT (x, (XINT (x)
10613 + WINDOW_LEFT_EDGE_X (w)
10614 + (NILP (whole)
10615 ? window_box_left_offset (w, TEXT_AREA)
10616 : 0)));
10617 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
10618 frame_or_window = w->frame;
10621 CHECK_LIVE_FRAME (frame_or_window);
10623 return make_lispy_position (XFRAME (frame_or_window), &x, &y, 0);
10626 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
10627 doc: /* Return position information for buffer POS in WINDOW.
10628 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10630 Return nil if position is not visible in window. Otherwise,
10631 the return value is similar to that returned by `event-start' for
10632 a mouse click at the upper left corner of the glyph corresponding
10633 to the given buffer position:
10634 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10635 IMAGE (DX . DY) (WIDTH . HEIGHT))
10636 The `posn-' functions access elements of such lists. */)
10637 (pos, window)
10638 Lisp_Object pos, window;
10640 Lisp_Object tem;
10642 if (NILP (window))
10643 window = selected_window;
10645 tem = Fpos_visible_in_window_p (pos, window, Qt);
10646 if (!NILP (tem))
10648 Lisp_Object x = XCAR (tem);
10649 Lisp_Object y = XCAR (XCDR (tem));
10651 /* Point invisible due to hscrolling? */
10652 if (XINT (x) < 0)
10653 return Qnil;
10654 tem = Fposn_at_x_y (x, y, window, Qnil);
10657 return tem;
10662 * Set up a new kboard object with reasonable initial values.
10664 void
10665 init_kboard (kb)
10666 KBOARD *kb;
10668 kb->Voverriding_terminal_local_map = Qnil;
10669 kb->Vlast_command = Qnil;
10670 kb->Vreal_last_command = Qnil;
10671 kb->Vprefix_arg = Qnil;
10672 kb->Vlast_prefix_arg = Qnil;
10673 kb->kbd_queue = Qnil;
10674 kb->kbd_queue_has_data = 0;
10675 kb->immediate_echo = 0;
10676 kb->echo_string = Qnil;
10677 kb->echo_after_prompt = -1;
10678 kb->kbd_macro_buffer = 0;
10679 kb->kbd_macro_bufsize = 0;
10680 kb->defining_kbd_macro = Qnil;
10681 kb->Vlast_kbd_macro = Qnil;
10682 kb->reference_count = 0;
10683 kb->Vsystem_key_alist = Qnil;
10684 kb->system_key_syms = Qnil;
10685 kb->Vdefault_minibuffer_frame = Qnil;
10689 * Destroy the contents of a kboard object, but not the object itself.
10690 * We use this just before deleting it, or if we're going to initialize
10691 * it a second time.
10693 static void
10694 wipe_kboard (kb)
10695 KBOARD *kb;
10697 if (kb->kbd_macro_buffer)
10698 xfree (kb->kbd_macro_buffer);
10701 #ifdef MULTI_KBOARD
10703 /* Free KB and memory referenced from it. */
10705 void
10706 delete_kboard (kb)
10707 KBOARD *kb;
10709 KBOARD **kbp;
10711 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10712 if (*kbp == NULL)
10713 abort ();
10714 *kbp = kb->next_kboard;
10716 /* Prevent a dangling reference to KB. */
10717 if (kb == current_kboard
10718 && FRAMEP (selected_frame)
10719 && FRAME_LIVE_P (XFRAME (selected_frame)))
10721 current_kboard = XFRAME (selected_frame)->kboard;
10722 if (current_kboard == kb)
10723 abort ();
10726 wipe_kboard (kb);
10727 xfree (kb);
10730 #endif /* MULTI_KBOARD */
10732 void
10733 init_keyboard ()
10735 /* This is correct before outermost invocation of the editor loop */
10736 command_loop_level = -1;
10737 immediate_quit = 0;
10738 quit_char = Ctl ('g');
10739 Vunread_command_events = Qnil;
10740 unread_command_char = -1;
10741 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10742 total_keys = 0;
10743 recent_keys_index = 0;
10744 kbd_fetch_ptr = kbd_buffer;
10745 kbd_store_ptr = kbd_buffer;
10746 #ifdef HAVE_MOUSE
10747 do_mouse_tracking = Qnil;
10748 #endif
10749 input_pending = 0;
10751 /* This means that command_loop_1 won't try to select anything the first
10752 time through. */
10753 internal_last_event_frame = Qnil;
10754 Vlast_event_frame = internal_last_event_frame;
10756 #ifdef MULTI_KBOARD
10757 current_kboard = initial_kboard;
10758 #endif
10759 wipe_kboard (current_kboard);
10760 init_kboard (current_kboard);
10762 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
10764 signal (SIGINT, interrupt_signal);
10765 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10766 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10767 SIGQUIT and we can't tell which one it will give us. */
10768 signal (SIGQUIT, interrupt_signal);
10769 #endif /* HAVE_TERMIO */
10771 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10772 #ifdef SIGIO
10773 if (!noninteractive)
10774 signal (SIGIO, input_available_signal);
10775 #endif /* SIGIO */
10777 /* Use interrupt input by default, if it works and noninterrupt input
10778 has deficiencies. */
10780 #ifdef INTERRUPT_INPUT
10781 interrupt_input = 1;
10782 #else
10783 interrupt_input = 0;
10784 #endif
10786 /* Our VMS input only works by interrupts, as of now. */
10787 #ifdef VMS
10788 interrupt_input = 1;
10789 #endif
10791 sigfree ();
10792 dribble = 0;
10794 if (keyboard_init_hook)
10795 (*keyboard_init_hook) ();
10797 #ifdef POLL_FOR_INPUT
10798 poll_suppress_count = 1;
10799 start_polling ();
10800 #endif
10803 /* This type's only use is in syms_of_keyboard, to initialize the
10804 event header symbols and put properties on them. */
10805 struct event_head {
10806 Lisp_Object *var;
10807 char *name;
10808 Lisp_Object *kind;
10811 struct event_head head_table[] = {
10812 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10813 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10814 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10815 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10816 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10817 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
10818 /* `select-window' should be handled just like `switch-frame'
10819 in read_key_sequence. */
10820 {&Qselect_window, "select-window", &Qswitch_frame}
10823 void
10824 syms_of_keyboard ()
10826 Vpre_help_message = Qnil;
10827 staticpro (&Vpre_help_message);
10829 Vlispy_mouse_stem = build_string ("mouse");
10830 staticpro (&Vlispy_mouse_stem);
10832 /* Tool-bars. */
10833 QCimage = intern (":image");
10834 staticpro (&QCimage);
10836 staticpro (&Qhelp_echo);
10837 Qhelp_echo = intern ("help-echo");
10839 staticpro (&item_properties);
10840 item_properties = Qnil;
10842 staticpro (&tool_bar_item_properties);
10843 tool_bar_item_properties = Qnil;
10844 staticpro (&tool_bar_items_vector);
10845 tool_bar_items_vector = Qnil;
10847 staticpro (&real_this_command);
10848 real_this_command = Qnil;
10850 Qtimer_event_handler = intern ("timer-event-handler");
10851 staticpro (&Qtimer_event_handler);
10853 Qdisabled_command_function = intern ("disabled-command-function");
10854 staticpro (&Qdisabled_command_function);
10856 Qself_insert_command = intern ("self-insert-command");
10857 staticpro (&Qself_insert_command);
10859 Qforward_char = intern ("forward-char");
10860 staticpro (&Qforward_char);
10862 Qbackward_char = intern ("backward-char");
10863 staticpro (&Qbackward_char);
10865 Qdisabled = intern ("disabled");
10866 staticpro (&Qdisabled);
10868 Qundefined = intern ("undefined");
10869 staticpro (&Qundefined);
10871 Qpre_command_hook = intern ("pre-command-hook");
10872 staticpro (&Qpre_command_hook);
10874 Qpost_command_hook = intern ("post-command-hook");
10875 staticpro (&Qpost_command_hook);
10877 Qdeferred_action_function = intern ("deferred-action-function");
10878 staticpro (&Qdeferred_action_function);
10880 Qcommand_hook_internal = intern ("command-hook-internal");
10881 staticpro (&Qcommand_hook_internal);
10883 Qfunction_key = intern ("function-key");
10884 staticpro (&Qfunction_key);
10885 Qmouse_click = intern ("mouse-click");
10886 staticpro (&Qmouse_click);
10887 #if defined (WINDOWSNT) || defined (MAC_OS)
10888 Qlanguage_change = intern ("language-change");
10889 staticpro (&Qlanguage_change);
10890 #endif
10891 Qdrag_n_drop = intern ("drag-n-drop");
10892 staticpro (&Qdrag_n_drop);
10894 Qsave_session = intern ("save-session");
10895 staticpro (&Qsave_session);
10897 #ifdef MAC_OS
10898 Qmac_apple_event = intern ("mac-apple-event");
10899 staticpro (&Qmac_apple_event);
10900 #endif
10902 Qusr1_signal = intern ("usr1-signal");
10903 staticpro (&Qusr1_signal);
10904 Qusr2_signal = intern ("usr2-signal");
10905 staticpro (&Qusr2_signal);
10907 Qmenu_enable = intern ("menu-enable");
10908 staticpro (&Qmenu_enable);
10909 Qmenu_alias = intern ("menu-alias");
10910 staticpro (&Qmenu_alias);
10911 QCenable = intern (":enable");
10912 staticpro (&QCenable);
10913 QCvisible = intern (":visible");
10914 staticpro (&QCvisible);
10915 QChelp = intern (":help");
10916 staticpro (&QChelp);
10917 QCfilter = intern (":filter");
10918 staticpro (&QCfilter);
10919 QCbutton = intern (":button");
10920 staticpro (&QCbutton);
10921 QCkeys = intern (":keys");
10922 staticpro (&QCkeys);
10923 QCkey_sequence = intern (":key-sequence");
10924 staticpro (&QCkey_sequence);
10925 QCtoggle = intern (":toggle");
10926 staticpro (&QCtoggle);
10927 QCradio = intern (":radio");
10928 staticpro (&QCradio);
10930 Qmode_line = intern ("mode-line");
10931 staticpro (&Qmode_line);
10932 Qvertical_line = intern ("vertical-line");
10933 staticpro (&Qvertical_line);
10934 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10935 staticpro (&Qvertical_scroll_bar);
10936 Qmenu_bar = intern ("menu-bar");
10937 staticpro (&Qmenu_bar);
10939 #ifdef HAVE_MOUSE
10940 Qmouse_fixup_help_message = intern ("mouse-fixup-help-message");
10941 staticpro (&Qmouse_fixup_help_message);
10942 #endif
10944 Qabove_handle = intern ("above-handle");
10945 staticpro (&Qabove_handle);
10946 Qhandle = intern ("handle");
10947 staticpro (&Qhandle);
10948 Qbelow_handle = intern ("below-handle");
10949 staticpro (&Qbelow_handle);
10950 Qup = intern ("up");
10951 staticpro (&Qup);
10952 Qdown = intern ("down");
10953 staticpro (&Qdown);
10954 Qtop = intern ("top");
10955 staticpro (&Qtop);
10956 Qbottom = intern ("bottom");
10957 staticpro (&Qbottom);
10958 Qend_scroll = intern ("end-scroll");
10959 staticpro (&Qend_scroll);
10960 Qratio = intern ("ratio");
10961 staticpro (&Qratio);
10963 Qevent_kind = intern ("event-kind");
10964 staticpro (&Qevent_kind);
10965 Qevent_symbol_elements = intern ("event-symbol-elements");
10966 staticpro (&Qevent_symbol_elements);
10967 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
10968 staticpro (&Qevent_symbol_element_mask);
10969 Qmodifier_cache = intern ("modifier-cache");
10970 staticpro (&Qmodifier_cache);
10972 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
10973 staticpro (&Qrecompute_lucid_menubar);
10974 Qactivate_menubar_hook = intern ("activate-menubar-hook");
10975 staticpro (&Qactivate_menubar_hook);
10977 Qpolling_period = intern ("polling-period");
10978 staticpro (&Qpolling_period);
10980 Qinput_method_function = intern ("input-method-function");
10981 staticpro (&Qinput_method_function);
10983 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
10984 staticpro (&Qinput_method_exit_on_first_char);
10985 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
10986 staticpro (&Qinput_method_use_echo_area);
10988 Fset (Qinput_method_exit_on_first_char, Qnil);
10989 Fset (Qinput_method_use_echo_area, Qnil);
10991 last_point_position_buffer = Qnil;
10992 last_point_position_window = Qnil;
10995 struct event_head *p;
10997 for (p = head_table;
10998 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
10999 p++)
11001 *p->var = intern (p->name);
11002 staticpro (p->var);
11003 Fput (*p->var, Qevent_kind, *p->kind);
11004 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
11008 button_down_location = Fmake_vector (make_number (1), Qnil);
11009 staticpro (&button_down_location);
11010 mouse_syms = Fmake_vector (make_number (1), Qnil);
11011 staticpro (&mouse_syms);
11012 wheel_syms = Fmake_vector (make_number (2), Qnil);
11013 staticpro (&wheel_syms);
11016 int i;
11017 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
11019 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11020 for (i = 0; i < len; i++)
11021 if (modifier_names[i])
11022 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
11023 staticpro (&modifier_symbols);
11026 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11027 staticpro (&recent_keys);
11029 this_command_keys = Fmake_vector (make_number (40), Qnil);
11030 staticpro (&this_command_keys);
11032 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11033 staticpro (&raw_keybuf);
11035 Qextended_command_history = intern ("extended-command-history");
11036 Fset (Qextended_command_history, Qnil);
11037 staticpro (&Qextended_command_history);
11039 accent_key_syms = Qnil;
11040 staticpro (&accent_key_syms);
11042 func_key_syms = Qnil;
11043 staticpro (&func_key_syms);
11045 drag_n_drop_syms = Qnil;
11046 staticpro (&drag_n_drop_syms);
11048 unread_switch_frame = Qnil;
11049 staticpro (&unread_switch_frame);
11051 internal_last_event_frame = Qnil;
11052 staticpro (&internal_last_event_frame);
11054 read_key_sequence_cmd = Qnil;
11055 staticpro (&read_key_sequence_cmd);
11057 menu_bar_one_keymap_changed_items = Qnil;
11058 staticpro (&menu_bar_one_keymap_changed_items);
11060 menu_bar_items_vector = Qnil;
11061 staticpro (&menu_bar_items_vector);
11063 defsubr (&Sevent_convert_list);
11064 defsubr (&Sread_key_sequence);
11065 defsubr (&Sread_key_sequence_vector);
11066 defsubr (&Srecursive_edit);
11067 #ifdef HAVE_MOUSE
11068 defsubr (&Strack_mouse);
11069 #endif
11070 defsubr (&Sinput_pending_p);
11071 defsubr (&Scommand_execute);
11072 defsubr (&Srecent_keys);
11073 defsubr (&Sthis_command_keys);
11074 defsubr (&Sthis_command_keys_vector);
11075 defsubr (&Sthis_single_command_keys);
11076 defsubr (&Sthis_single_command_raw_keys);
11077 defsubr (&Sreset_this_command_lengths);
11078 defsubr (&Sclear_this_command_keys);
11079 defsubr (&Ssuspend_emacs);
11080 defsubr (&Sabort_recursive_edit);
11081 defsubr (&Sexit_recursive_edit);
11082 defsubr (&Srecursion_depth);
11083 defsubr (&Stop_level);
11084 defsubr (&Sdiscard_input);
11085 defsubr (&Sopen_dribble_file);
11086 defsubr (&Sset_input_mode);
11087 defsubr (&Scurrent_input_mode);
11088 defsubr (&Sexecute_extended_command);
11089 defsubr (&Sposn_at_point);
11090 defsubr (&Sposn_at_x_y);
11092 DEFVAR_LISP ("last-command-char", &last_command_char,
11093 doc: /* Last input event that was part of a command. */);
11095 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
11096 doc: /* Last input event that was part of a command. */);
11098 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
11099 doc: /* Last input event in a command, except for mouse menu events.
11100 Mouse menus give back keys that don't look like mouse events;
11101 this variable holds the actual mouse event that led to the menu,
11102 so that you can determine whether the command was run by mouse or not. */);
11104 DEFVAR_LISP ("last-input-char", &last_input_char,
11105 doc: /* Last input event. */);
11107 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
11108 doc: /* Last input event. */);
11110 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
11111 doc: /* List of events to be read as the command input.
11112 These events are processed first, before actual keyboard input. */);
11113 Vunread_command_events = Qnil;
11115 DEFVAR_INT ("unread-command-char", &unread_command_char,
11116 doc: /* If not -1, an object to be read as next command input event. */);
11118 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
11119 doc: /* List of events to be processed as input by input methods.
11120 These events are processed after `unread-command-events', but
11121 before actual keyboard input. */);
11122 Vunread_post_input_method_events = Qnil;
11124 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
11125 doc: /* List of events to be processed as input by input methods.
11126 These events are processed after `unread-command-events', but
11127 before actual keyboard input. */);
11128 Vunread_input_method_events = Qnil;
11130 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
11131 doc: /* Meta-prefix character code.
11132 Meta-foo as command input turns into this character followed by foo. */);
11133 XSETINT (meta_prefix_char, 033);
11135 DEFVAR_KBOARD ("last-command", Vlast_command,
11136 doc: /* The last command executed.
11137 Normally a symbol with a function definition, but can be whatever was found
11138 in the keymap, or whatever the variable `this-command' was set to by that
11139 command.
11141 The value `mode-exit' is special; it means that the previous command
11142 read an event that told it to exit, and it did so and unread that event.
11143 In other words, the present command is the event that made the previous
11144 command exit.
11146 The value `kill-region' is special; it means that the previous command
11147 was a kill command. */);
11149 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11150 doc: /* Same as `last-command', but never altered by Lisp code. */);
11152 DEFVAR_LISP ("this-command", &Vthis_command,
11153 doc: /* The command now being executed.
11154 The command can set this variable; whatever is put here
11155 will be in `last-command' during the following command. */);
11156 Vthis_command = Qnil;
11158 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
11159 doc: /* The command bound to the current key sequence before remapping.
11160 It equals `this-command' if the original command was not remapped through
11161 any of the active keymaps. Otherwise, the value of `this-command' is the
11162 result of looking up the original command in the active keymaps. */);
11163 Vthis_original_command = Qnil;
11165 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
11166 doc: /* *Number of input events between auto-saves.
11167 Zero means disable autosaving due to number of characters typed. */);
11168 auto_save_interval = 300;
11170 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
11171 doc: /* *Number of seconds idle time before auto-save.
11172 Zero or nil means disable auto-saving due to idleness.
11173 After auto-saving due to this many seconds of idle time,
11174 Emacs also does a garbage collection if that seems to be warranted. */);
11175 XSETFASTINT (Vauto_save_timeout, 30);
11177 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
11178 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11179 The value may be integer or floating point. */);
11180 Vecho_keystrokes = make_number (1);
11182 DEFVAR_INT ("polling-period", &polling_period,
11183 doc: /* *Interval between polling for input during Lisp execution.
11184 The reason for polling is to make C-g work to stop a running program.
11185 Polling is needed only when using X windows and SIGIO does not work.
11186 Polling is automatically disabled in all other cases. */);
11187 polling_period = 2;
11189 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
11190 doc: /* *Maximum time between mouse clicks to make a double-click.
11191 Measured in milliseconds. nil means disable double-click recognition;
11192 t means double-clicks have no time limit and are detected
11193 by position only. */);
11194 Vdouble_click_time = make_number (500);
11196 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
11197 doc: /* *Maximum mouse movement between clicks to make a double-click.
11198 On window-system frames, value is the number of pixels the mouse may have
11199 moved horizontally or vertically between two clicks to make a double-click.
11200 On non window-system frames, value is interpreted in units of 1/8 characters
11201 instead of pixels.
11203 This variable is also the threshold for motion of the mouse
11204 to count as a drag. */);
11205 double_click_fuzz = 3;
11207 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
11208 doc: /* *Non-nil means inhibit local map menu bar menus. */);
11209 inhibit_local_menu_bar_menus = 0;
11211 DEFVAR_INT ("num-input-keys", &num_input_keys,
11212 doc: /* Number of complete key sequences read as input so far.
11213 This includes key sequences read from keyboard macros.
11214 The number is effectively the number of interactive command invocations. */);
11215 num_input_keys = 0;
11217 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
11218 doc: /* Number of input events read from the keyboard so far.
11219 This does not include events generated by keyboard macros. */);
11220 num_nonmacro_input_events = 0;
11222 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
11223 doc: /* The frame in which the most recently read event occurred.
11224 If the last event came from a keyboard macro, this is set to `macro'. */);
11225 Vlast_event_frame = Qnil;
11227 /* This variable is set up in sysdep.c. */
11228 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
11229 doc: /* The ERASE character as set by the user with stty. */);
11231 DEFVAR_LISP ("help-char", &Vhelp_char,
11232 doc: /* Character to recognize as meaning Help.
11233 When it is read, do `(eval help-form)', and display result if it's a string.
11234 If the value of `help-form' is nil, this char can be read normally. */);
11235 XSETINT (Vhelp_char, Ctl ('H'));
11237 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
11238 doc: /* List of input events to recognize as meaning Help.
11239 These work just like the value of `help-char' (see that). */);
11240 Vhelp_event_list = Qnil;
11242 DEFVAR_LISP ("help-form", &Vhelp_form,
11243 doc: /* Form to execute when character `help-char' is read.
11244 If the form returns a string, that string is displayed.
11245 If `help-form' is nil, the help char is not recognized. */);
11246 Vhelp_form = Qnil;
11248 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
11249 doc: /* Command to run when `help-char' character follows a prefix key.
11250 This command is used only when there is no actual binding
11251 for that character after that prefix key. */);
11252 Vprefix_help_command = Qnil;
11254 DEFVAR_LISP ("top-level", &Vtop_level,
11255 doc: /* Form to evaluate when Emacs starts up.
11256 Useful to set before you dump a modified Emacs. */);
11257 Vtop_level = Qnil;
11259 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11260 doc: /* Translate table for keyboard input, or nil.
11261 If non-nil, the value should be a char-table. Each character read
11262 from the keyboard is looked up in this char-table. If the value found
11263 there is non-nil, then it is used instead of the actual input character.
11265 The value can also be a string or vector, but this is considered obsolete.
11266 If it is a string or vector of length N, character codes N and up are left
11267 untranslated. In a vector, an element which is nil means "no translation".
11269 This is applied to the characters supplied to input methods, not their
11270 output. See also `translation-table-for-input'. */);
11271 Vkeyboard_translate_table = Qnil;
11273 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
11274 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11275 \(Even if the operating system has support for stopping a process.\) */);
11276 cannot_suspend = 0;
11278 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
11279 doc: /* Non-nil means prompt with menus when appropriate.
11280 This is done when reading from a keymap that has a prompt string,
11281 for elements that have prompt strings.
11282 The menu is displayed on the screen
11283 if X menus were enabled at configuration
11284 time and the previous event was a mouse click prefix key.
11285 Otherwise, menu prompting uses the echo area. */);
11286 menu_prompting = 1;
11288 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
11289 doc: /* Character to see next line of menu prompt.
11290 Type this character while in a menu prompt to rotate around the lines of it. */);
11291 XSETINT (menu_prompt_more_char, ' ');
11293 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
11294 doc: /* A mask of additional modifier keys to use with every keyboard character.
11295 Emacs applies the modifiers of the character stored here to each keyboard
11296 character it reads. For example, after evaluating the expression
11297 (setq extra-keyboard-modifiers ?\\C-x)
11298 all input characters will have the control modifier applied to them.
11300 Note that the character ?\\C-@, equivalent to the integer zero, does
11301 not count as a control character; rather, it counts as a character
11302 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11303 cancels any modification. */);
11304 extra_keyboard_modifiers = 0;
11306 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
11307 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11308 The command loop sets this to nil before each command,
11309 and tests the value when the command returns.
11310 Buffer modification stores t in this variable. */);
11311 Vdeactivate_mark = Qnil;
11313 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
11314 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
11315 Vcommand_hook_internal = Qnil;
11317 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
11318 doc: /* Normal hook run before each command is executed.
11319 If an unhandled error happens in running this hook,
11320 the hook value is set to nil, since otherwise the error
11321 might happen repeatedly and make Emacs nonfunctional. */);
11322 Vpre_command_hook = Qnil;
11324 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
11325 doc: /* Normal hook run after each command is executed.
11326 If an unhandled error happens in running this hook,
11327 the hook value is set to nil, since otherwise the error
11328 might happen repeatedly and make Emacs nonfunctional. */);
11329 Vpost_command_hook = Qnil;
11331 #if 0
11332 DEFVAR_LISP ("echo-area-clear-hook", ...,
11333 doc: /* Normal hook run when clearing the echo area. */);
11334 #endif
11335 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11336 staticpro (&Qecho_area_clear_hook);
11337 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
11339 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
11340 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11341 Vlucid_menu_bar_dirty_flag = Qnil;
11343 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
11344 doc: /* List of menu bar items to move to the end of the menu bar.
11345 The elements of the list are event types that may have menu bar bindings. */);
11346 Vmenu_bar_final_items = Qnil;
11348 DEFVAR_KBOARD ("overriding-terminal-local-map",
11349 Voverriding_terminal_local_map,
11350 doc: /* Per-terminal keymap that overrides all other local keymaps.
11351 If this variable is non-nil, it is used as a keymap instead of the
11352 buffer's local map, and the minor mode keymaps and text property keymaps.
11353 It also replaces `overriding-local-map'.
11355 This variable is intended to let commands such as `universal-argument'
11356 set up a different keymap for reading the next command. */);
11358 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
11359 doc: /* Keymap that overrides all other local keymaps.
11360 If this variable is non-nil, it is used as a keymap--replacing the
11361 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11362 Voverriding_local_map = Qnil;
11364 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
11365 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11366 Otherwise, the menu bar continues to reflect the buffer's local map
11367 and the minor mode maps regardless of `overriding-local-map'. */);
11368 Voverriding_local_map_menu_flag = Qnil;
11370 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
11371 doc: /* Keymap defining bindings for special events to execute at low level. */);
11372 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11374 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11375 doc: /* *Non-nil means generate motion events for mouse motion. */);
11377 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11378 doc: /* Alist of system-specific X windows key symbols.
11379 Each element should have the form (N . SYMBOL) where N is the
11380 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11381 and SYMBOL is its name. */);
11383 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
11384 doc: /* List of deferred actions to be performed at a later time.
11385 The precise format isn't relevant here; we just check whether it is nil. */);
11386 Vdeferred_action_list = Qnil;
11388 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
11389 doc: /* Function to call to handle deferred actions, after each command.
11390 This function is called with no arguments after each command
11391 whenever `deferred-action-list' is non-nil. */);
11392 Vdeferred_action_function = Qnil;
11394 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
11395 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11396 The value can be a length of time to show the message for.
11397 If the value is non-nil and not a number, we wait 2 seconds. */);
11398 Vsuggest_key_bindings = Qt;
11400 DEFVAR_LISP ("timer-list", &Vtimer_list,
11401 doc: /* List of active absolute time timers in order of increasing time. */);
11402 Vtimer_list = Qnil;
11404 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
11405 doc: /* List of active idle-time timers in order of increasing time. */);
11406 Vtimer_idle_list = Qnil;
11408 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
11409 doc: /* If non-nil, the function that implements the current input method.
11410 It's called with one argument, a printing character that was just read.
11411 \(That means a character with code 040...0176.)
11412 Typically this function uses `read-event' to read additional events.
11413 When it does so, it should first bind `input-method-function' to nil
11414 so it will not be called recursively.
11416 The function should return a list of zero or more events
11417 to be used as input. If it wants to put back some events
11418 to be reconsidered, separately, by the input method,
11419 it can add them to the beginning of `unread-command-events'.
11421 The input method function can find in `input-method-previous-method'
11422 the previous echo area message.
11424 The input method function should refer to the variables
11425 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11426 for guidance on what to do. */);
11427 Vinput_method_function = Qnil;
11429 DEFVAR_LISP ("input-method-previous-message",
11430 &Vinput_method_previous_message,
11431 doc: /* When `input-method-function' is called, hold the previous echo area message.
11432 This variable exists because `read-event' clears the echo area
11433 before running the input method. It is nil if there was no message. */);
11434 Vinput_method_previous_message = Qnil;
11436 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
11437 doc: /* If non-nil, the function that implements the display of help.
11438 It's called with one argument, the help string to display. */);
11439 Vshow_help_function = Qnil;
11441 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
11442 doc: /* If non-nil, suppress point adjustment after executing a command.
11444 After a command is executed, if point is moved into a region that has
11445 special properties (e.g. composition, display), we adjust point to
11446 the boundary of the region. But, when a command sets this variable to
11447 non-nil, we suppress the point adjustment.
11449 This variable is set to nil before reading a command, and is checked
11450 just after executing the command. */);
11451 Vdisable_point_adjustment = Qnil;
11453 DEFVAR_LISP ("global-disable-point-adjustment",
11454 &Vglobal_disable_point_adjustment,
11455 doc: /* *If non-nil, always suppress point adjustment.
11457 The default value is nil, in which case, point adjustment are
11458 suppressed only after special commands that set
11459 `disable-point-adjustment' (which see) to non-nil. */);
11460 Vglobal_disable_point_adjustment = Qnil;
11462 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
11463 doc: /* *How long to display an echo-area message when the minibuffer is active.
11464 If the value is not a number, such messages don't time out. */);
11465 Vminibuffer_message_timeout = make_number (2);
11467 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input,
11468 doc: /* If non-nil, any keyboard input throws to this symbol.
11469 The value of that variable is passed to `quit-flag' and later causes a
11470 peculiar kind of quitting. */);
11471 Vthrow_on_input = Qnil;
11474 void
11475 keys_of_keyboard ()
11477 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11478 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11479 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11480 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11481 initial_define_key (meta_map, 'x', "execute-extended-command");
11483 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11484 "handle-delete-frame");
11485 /* Here we used to use `ignore-event' which would simple set prefix-arg to
11486 current-prefix-arg, as is done in `handle-switch-frame'.
11487 But `handle-switch-frame is not run from the special-map.
11488 Commands from that map are run in a special way that automatically
11489 preserves the prefix-arg. Restoring the prefix arg here is not just
11490 redundant but harmful:
11491 - C-u C-x v =
11492 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
11493 - after the first prompt, the exit-minibuffer-hook is run which may
11494 iconify a frame and thus push a `iconify-frame' event.
11495 - after running exit-minibuffer-hook, current-prefix-arg is
11496 restored to the non-nil value it had before the prompt.
11497 - we enter the second prompt.
11498 current-prefix-arg is non-nil, prefix-arg is nil.
11499 - before running the first real event, we run the special iconify-frame
11500 event, but we pass the `special' arg to execute-command so
11501 current-prefix-arg and prefix-arg are left untouched.
11502 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
11503 - the next key event will have a spuriously non-nil current-prefix-arg. */
11504 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11505 "ignore");
11506 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11507 "ignore");
11508 /* Handling it at such a low-level causes read_key_sequence to get
11509 * confused because it doesn't realize that the current_buffer was
11510 * changed by read_char.
11512 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11513 * "handle-select-window"); */
11514 initial_define_lispy_key (Vspecial_event_map, "save-session",
11515 "handle-save-session");
11518 /* Mark the pointers in the kboard objects.
11519 Called by the Fgarbage_collector. */
11520 void
11521 mark_kboards ()
11523 KBOARD *kb;
11524 Lisp_Object *p;
11525 for (kb = all_kboards; kb; kb = kb->next_kboard)
11527 if (kb->kbd_macro_buffer)
11528 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11529 mark_object (*p);
11530 mark_object (kb->Voverriding_terminal_local_map);
11531 mark_object (kb->Vlast_command);
11532 mark_object (kb->Vreal_last_command);
11533 mark_object (kb->Vprefix_arg);
11534 mark_object (kb->Vlast_prefix_arg);
11535 mark_object (kb->kbd_queue);
11536 mark_object (kb->defining_kbd_macro);
11537 mark_object (kb->Vlast_kbd_macro);
11538 mark_object (kb->Vsystem_key_alist);
11539 mark_object (kb->system_key_syms);
11540 mark_object (kb->Vdefault_minibuffer_frame);
11541 mark_object (kb->echo_string);
11544 struct input_event *event;
11545 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11547 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11548 event = kbd_buffer;
11549 if (event->kind != SELECTION_REQUEST_EVENT
11550 && event->kind != SELECTION_CLEAR_EVENT)
11552 mark_object (event->x);
11553 mark_object (event->y);
11555 mark_object (event->frame_or_window);
11556 mark_object (event->arg);
11561 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11562 (do not change this comment) */