(eshell-parse-argument-hook): Put `number' property on entire argument
[emacs.git] / src / keyboard.c
blobb8714a393ecd99c2c6b69fba532db38b1119e3b5
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995,
3 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) 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. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <signal.h>
23 #include <stdio.h>
24 #include "lisp.h"
25 #include "termchar.h"
26 #include "termopts.h"
27 #include "frame.h"
28 #include "termhooks.h"
29 #include "macros.h"
30 #include "keyboard.h"
31 #include "window.h"
32 #include "commands.h"
33 #include "buffer.h"
34 #include "character.h"
35 #include "disptab.h"
36 #include "dispextern.h"
37 #include "syntax.h"
38 #include "intervals.h"
39 #include "keymap.h"
40 #include "blockinput.h"
41 #include "puresize.h"
42 #include "systime.h"
43 #include "atimer.h"
44 #include <setjmp.h>
45 #include <errno.h>
47 #ifdef HAVE_GTK_AND_PTHREAD
48 #include <pthread.h>
49 #endif
50 #ifdef MSDOS
51 #include "msdos.h"
52 #include <time.h>
53 #else /* not MSDOS */
54 #include <sys/ioctl.h>
55 #endif /* not MSDOS */
57 #include "syssignal.h"
59 #include <sys/types.h>
60 #ifdef HAVE_UNISTD_H
61 #include <unistd.h>
62 #endif
64 #ifdef HAVE_FCNTL_H
65 #include <fcntl.h>
66 #endif
68 /* This is to get the definitions of the XK_ symbols. */
69 #ifdef HAVE_X_WINDOWS
70 #include "xterm.h"
71 #endif
73 #ifdef HAVE_NTGUI
74 #include "w32term.h"
75 #endif /* HAVE_NTGUI */
77 #ifdef HAVE_NS
78 #include "nsterm.h"
79 #endif
81 #ifndef USE_CRT_DLL
82 extern int errno;
83 #endif
85 /* Variables for blockinput.h: */
87 /* Non-zero if interrupt input is blocked right now. */
88 volatile int interrupt_input_blocked;
90 /* Nonzero means an input interrupt has arrived
91 during the current critical section. */
92 int interrupt_input_pending;
94 /* This var should be (interrupt_input_pending || pending_atimers).
95 The QUIT macro checks this instead of interrupt_input_pending and
96 pending_atimers separately, to reduce code size. So, any code that
97 changes interrupt_input_pending or pending_atimers should update
98 this too. */
99 #ifdef SYNC_INPUT
100 int pending_signals;
101 #endif
103 #define KBD_BUFFER_SIZE 4096
105 KBOARD *initial_kboard;
106 KBOARD *current_kboard;
107 KBOARD *all_kboards;
108 int single_kboard;
110 /* Non-nil disable property on a command means
111 do not execute it; call disabled-command-function's value instead. */
112 Lisp_Object Qdisabled, Qdisabled_command_function;
114 #define NUM_RECENT_KEYS (300)
115 int recent_keys_index; /* Index for storing next element into recent_keys */
116 int total_keys; /* Total number of elements stored into recent_keys */
117 Lisp_Object recent_keys; /* Vector holds the last NUM_RECENT_KEYS keystrokes */
119 /* Vector holding the key sequence that invoked the current command.
120 It is reused for each command, and it may be longer than the current
121 sequence; this_command_key_count indicates how many elements
122 actually mean something.
123 It's easier to staticpro a single Lisp_Object than an array. */
124 Lisp_Object this_command_keys;
125 int this_command_key_count;
127 /* 1 after calling Freset_this_command_lengths.
128 Usually it is 0. */
129 int this_command_key_count_reset;
131 /* This vector is used as a buffer to record the events that were actually read
132 by read_key_sequence. */
133 Lisp_Object raw_keybuf;
134 int raw_keybuf_count;
136 /* Non-nil if the present key sequence was obtained by shift translation. */
137 Lisp_Object Vthis_command_keys_shift_translated;
139 #define GROW_RAW_KEYBUF \
140 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
141 raw_keybuf = larger_vector (raw_keybuf, raw_keybuf_count * 2, Qnil) \
143 /* Number of elements of this_command_keys
144 that precede this key sequence. */
145 int this_single_command_key_start;
147 /* Record values of this_command_key_count and echo_length ()
148 before this command was read. */
149 static int before_command_key_count;
150 static int before_command_echo_length;
152 extern int minbuf_level;
154 extern int message_enable_multibyte;
156 /* If non-nil, the function that implements the display of help.
157 It's called with one argument, the help string to display. */
159 Lisp_Object Vshow_help_function;
161 /* Nonzero means do menu prompting. */
163 static int menu_prompting;
165 /* Character to see next line of menu prompt. */
167 static Lisp_Object menu_prompt_more_char;
169 /* For longjmp to where kbd input is being done. */
171 static jmp_buf getcjmp;
173 /* True while doing kbd input. */
174 int waiting_for_input;
176 /* True while displaying for echoing. Delays C-g throwing. */
178 int echoing;
180 /* Non-null means we can start echoing at the next input pause even
181 though there is something in the echo area. */
183 static struct kboard *ok_to_echo_at_next_pause;
185 /* The kboard last echoing, or null for none. Reset to 0 in
186 cancel_echoing. If non-null, and a current echo area message
187 exists, and echo_message_buffer is eq to the current message
188 buffer, we know that the message comes from echo_kboard. */
190 struct kboard *echo_kboard;
192 /* The buffer used for echoing. Set in echo_now, reset in
193 cancel_echoing. */
195 Lisp_Object echo_message_buffer;
197 /* Nonzero means disregard local maps for the menu bar. */
198 static int inhibit_local_menu_bar_menus;
200 /* Nonzero means C-g should cause immediate error-signal. */
201 int immediate_quit;
203 /* The user's hook function for outputting an error message. */
204 Lisp_Object Vcommand_error_function;
206 /* The user's ERASE setting. */
207 Lisp_Object Vtty_erase_char;
209 /* Character to recognize as the help char. */
210 Lisp_Object Vhelp_char;
212 /* List of other event types to recognize as meaning "help". */
213 Lisp_Object Vhelp_event_list;
215 /* Form to execute when help char is typed. */
216 Lisp_Object Vhelp_form;
218 /* Command to run when the help character follows a prefix key. */
219 Lisp_Object Vprefix_help_command;
221 /* List of items that should move to the end of the menu bar. */
222 Lisp_Object Vmenu_bar_final_items;
224 /* Non-nil means show the equivalent key-binding for
225 any M-x command that has one.
226 The value can be a length of time to show the message for.
227 If the value is non-nil and not a number, we wait 2 seconds. */
228 Lisp_Object Vsuggest_key_bindings;
230 /* How long to display an echo-area message when the minibuffer is active.
231 If the value is not a number, such messages don't time out. */
232 Lisp_Object Vminibuffer_message_timeout;
234 /* Character that causes a quit. Normally C-g.
236 If we are running on an ordinary terminal, this must be an ordinary
237 ASCII char, since we want to make it our interrupt character.
239 If we are not running on an ordinary terminal, it still needs to be
240 an ordinary ASCII char. This character needs to be recognized in
241 the input interrupt handler. At this point, the keystroke is
242 represented as a struct input_event, while the desired quit
243 character is specified as a lispy event. The mapping from struct
244 input_events to lispy events cannot run in an interrupt handler,
245 and the reverse mapping is difficult for anything but ASCII
246 keystrokes.
248 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
249 ASCII character. */
250 int quit_char;
252 extern Lisp_Object current_global_map;
253 extern int minibuf_level;
255 /* If non-nil, this is a map that overrides all other local maps. */
256 Lisp_Object Voverriding_local_map;
258 /* If non-nil, Voverriding_local_map applies to the menu bar. */
259 Lisp_Object Voverriding_local_map_menu_flag;
261 /* Keymap that defines special misc events that should
262 be processed immediately at a low level. */
263 Lisp_Object Vspecial_event_map;
265 /* Current depth in recursive edits. */
266 int command_loop_level;
268 /* Total number of times command_loop has read a key sequence. */
269 EMACS_INT num_input_keys;
271 /* Last input event read as a command. */
272 Lisp_Object last_command_event;
274 /* Last input character read as a command, not counting menus
275 reached by the mouse. */
276 Lisp_Object last_nonmenu_event;
278 /* Last input event read for any purpose. */
279 Lisp_Object last_input_event;
281 /* If not Qnil, a list of objects to be read as subsequent command input. */
282 Lisp_Object Vunread_command_events;
284 /* If not Qnil, a list of objects to be read as subsequent command input
285 including input method processing. */
286 Lisp_Object Vunread_input_method_events;
288 /* If not Qnil, a list of objects to be read as subsequent command input
289 but NOT including input method processing. */
290 Lisp_Object Vunread_post_input_method_events;
292 /* If not -1, an event to be read as subsequent command input. */
293 EMACS_INT unread_command_char;
295 /* If not Qnil, this is a switch-frame event which we decided to put
296 off until the end of a key sequence. This should be read as the
297 next command input, after any unread_command_events.
299 read_key_sequence uses this to delay switch-frame events until the
300 end of the key sequence; Fread_char uses it to put off switch-frame
301 events until a non-ASCII event is acceptable as input. */
302 Lisp_Object unread_switch_frame;
304 /* A mask of extra modifier bits to put into every keyboard char. */
305 EMACS_INT extra_keyboard_modifiers;
307 /* Char to use as prefix when a meta character is typed in.
308 This is bound on entry to minibuffer in case ESC is changed there. */
310 Lisp_Object meta_prefix_char;
312 /* Last size recorded for a current buffer which is not a minibuffer. */
313 static int last_non_minibuf_size;
315 /* Number of idle seconds before an auto-save and garbage collection. */
316 static Lisp_Object Vauto_save_timeout;
318 /* Total number of times read_char has returned. */
319 int num_input_events;
321 /* Total number of times read_char has returned, outside of macros. */
322 EMACS_INT num_nonmacro_input_events;
324 /* Auto-save automatically when this many characters have been typed
325 since the last time. */
327 static EMACS_INT auto_save_interval;
329 /* Value of num_nonmacro_input_events as of last auto save. */
331 int last_auto_save;
333 /* The command being executed by the command loop.
334 Commands may set this, and the value set will be copied into
335 current_kboard->Vlast_command instead of the actual command. */
336 Lisp_Object Vthis_command;
338 /* This is like Vthis_command, except that commands never set it. */
339 Lisp_Object real_this_command;
341 /* If the lookup of the command returns a binding, the original
342 command is stored in this-original-command. It is nil otherwise. */
343 Lisp_Object Vthis_original_command;
345 /* The value of point when the last command was started. */
346 int last_point_position;
348 /* The buffer that was current when the last command was started. */
349 Lisp_Object last_point_position_buffer;
351 /* The window that was selected when the last command was started. */
352 Lisp_Object last_point_position_window;
354 /* The frame in which the last input event occurred, or Qmacro if the
355 last event came from a macro. We use this to determine when to
356 generate switch-frame events. This may be cleared by functions
357 like Fselect_frame, to make sure that a switch-frame event is
358 generated by the next character. */
359 Lisp_Object internal_last_event_frame;
361 /* A user-visible version of the above, intended to allow users to
362 figure out where the last event came from, if the event doesn't
363 carry that information itself (i.e. if it was a character). */
364 Lisp_Object Vlast_event_frame;
366 /* The timestamp of the last input event we received from the X server.
367 X Windows wants this for selection ownership. */
368 unsigned long last_event_timestamp;
370 Lisp_Object Qself_insert_command;
371 Lisp_Object Qforward_char;
372 Lisp_Object Qbackward_char;
373 Lisp_Object Qundefined;
374 Lisp_Object Qtimer_event_handler;
376 /* read_key_sequence stores here the command definition of the
377 key sequence that it reads. */
378 Lisp_Object read_key_sequence_cmd;
380 /* Echo unfinished commands after this many seconds of pause. */
381 Lisp_Object Vecho_keystrokes;
383 /* Form to evaluate (if non-nil) when Emacs is started. */
384 Lisp_Object Vtop_level;
386 /* If non-nil, this implements the current input method. */
387 Lisp_Object Vinput_method_function;
388 Lisp_Object Qinput_method_function;
390 /* When we call Vinput_method_function,
391 this holds the echo area message that was just erased. */
392 Lisp_Object Vinput_method_previous_message;
394 /* Non-nil means deactivate the mark at end of this command. */
395 Lisp_Object Vdeactivate_mark;
396 Lisp_Object Qdeactivate_mark;
398 /* Menu bar specified in Lucid Emacs fashion. */
400 Lisp_Object Vlucid_menu_bar_dirty_flag;
401 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
403 Lisp_Object Qecho_area_clear_hook;
405 /* Hooks to run before and after each command. */
406 Lisp_Object Qpre_command_hook, Vpre_command_hook;
407 Lisp_Object Qpost_command_hook, Vpost_command_hook;
408 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
410 /* Parent keymap of terminal-local function-key-map instances. */
411 Lisp_Object Vfunction_key_map;
413 /* Keymap of key translations that can override keymaps. */
414 Lisp_Object Vkey_translation_map;
416 /* List of deferred actions to be performed at a later time.
417 The precise format isn't relevant here; we just check whether it is nil. */
418 Lisp_Object Vdeferred_action_list;
420 /* Function to call to handle deferred actions, when there are any. */
421 Lisp_Object Vdeferred_action_function;
422 Lisp_Object Qdeferred_action_function;
424 Lisp_Object Qinput_method_exit_on_first_char;
425 Lisp_Object Qinput_method_use_echo_area;
427 /* File in which we write all commands we read. */
428 FILE *dribble;
430 /* Nonzero if input is available. */
431 int input_pending;
433 extern char *pending_malloc_warning;
435 /* Circular buffer for pre-read keyboard input. */
437 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
439 /* Pointer to next available character in kbd_buffer.
440 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
441 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
442 next available char is in kbd_buffer[0]. */
443 static struct input_event *kbd_fetch_ptr;
445 /* Pointer to next place to store character in kbd_buffer. This
446 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
447 character should go in kbd_buffer[0]. */
448 static struct input_event * volatile kbd_store_ptr;
450 /* The above pair of variables forms a "queue empty" flag. When we
451 enqueue a non-hook event, we increment kbd_store_ptr. When we
452 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
453 there is input available if the two pointers are not equal.
455 Why not just have a flag set and cleared by the enqueuing and
456 dequeuing functions? Such a flag could be screwed up by interrupts
457 at inopportune times. */
459 /* If this flag is non-nil, we check mouse_moved to see when the
460 mouse moves, and motion events will appear in the input stream.
461 Otherwise, mouse motion is ignored. */
462 Lisp_Object do_mouse_tracking;
464 /* Symbols to head events. */
465 Lisp_Object Qmouse_movement;
466 Lisp_Object Qscroll_bar_movement;
467 Lisp_Object Qswitch_frame;
468 Lisp_Object Qdelete_frame;
469 Lisp_Object Qiconify_frame;
470 Lisp_Object Qmake_frame_visible;
471 Lisp_Object Qselect_window;
472 Lisp_Object Qhelp_echo;
474 extern Lisp_Object Qremap;
476 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
477 Lisp_Object Qmouse_fixup_help_message;
478 #endif
480 /* Symbols to denote kinds of events. */
481 Lisp_Object Qfunction_key;
482 Lisp_Object Qmouse_click;
483 #if defined (WINDOWSNT)
484 Lisp_Object Qlanguage_change;
485 #endif
486 Lisp_Object Qdrag_n_drop;
487 Lisp_Object Qsave_session;
488 #ifdef HAVE_DBUS
489 Lisp_Object Qdbus_event;
490 #endif
491 /* Lisp_Object Qmouse_movement; - also an event header */
493 /* Properties of event headers. */
494 Lisp_Object Qevent_kind;
495 Lisp_Object Qevent_symbol_elements;
497 /* menu item parts */
498 Lisp_Object Qmenu_alias;
499 Lisp_Object Qmenu_enable;
500 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
501 Lisp_Object QCbutton, QCtoggle, QCradio;
502 extern Lisp_Object Vdefine_key_rebound_commands;
503 extern Lisp_Object Qmenu_item;
505 /* An event header symbol HEAD may have a property named
506 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
507 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
508 mask of modifiers applied to it. If present, this is used to help
509 speed up parse_modifiers. */
510 Lisp_Object Qevent_symbol_element_mask;
512 /* An unmodified event header BASE may have a property named
513 Qmodifier_cache, which is an alist mapping modifier masks onto
514 modified versions of BASE. If present, this helps speed up
515 apply_modifiers. */
516 Lisp_Object Qmodifier_cache;
518 /* Symbols to use for parts of windows. */
519 Lisp_Object Qmode_line;
520 Lisp_Object Qvertical_line;
521 Lisp_Object Qvertical_scroll_bar;
522 Lisp_Object Qmenu_bar;
523 extern Lisp_Object Qleft_margin, Qright_margin;
524 extern Lisp_Object Qleft_fringe, Qright_fringe;
525 extern Lisp_Object QCmap;
527 Lisp_Object recursive_edit_unwind (), command_loop ();
528 Lisp_Object Fthis_command_keys ();
529 Lisp_Object Qextended_command_history;
530 EMACS_TIME timer_check ();
532 extern Lisp_Object Vhistory_length, Vtranslation_table_for_input;
534 extern char *x_get_keysym_name ();
536 static void record_menu_key ();
537 static int echo_length ();
539 Lisp_Object Qpolling_period;
541 /* List of absolute timers. Appears in order of next scheduled event. */
542 Lisp_Object Vtimer_list;
544 /* List of idle time timers. Appears in order of next scheduled event. */
545 Lisp_Object Vtimer_idle_list;
547 /* Incremented whenever a timer is run. */
548 int timers_run;
550 extern Lisp_Object Vprint_level, Vprint_length;
552 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
553 happens. */
554 EMACS_TIME *input_available_clear_time;
556 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
557 Default is 1 if INTERRUPT_INPUT is defined. */
558 int interrupt_input;
560 /* Nonzero while interrupts are temporarily deferred during redisplay. */
561 int interrupts_deferred;
563 /* Allow m- file to inhibit use of FIONREAD. */
564 #ifdef BROKEN_FIONREAD
565 #undef FIONREAD
566 #endif
568 /* We are unable to use interrupts if FIONREAD is not available,
569 so flush SIGIO so we won't try. */
570 #if !defined (FIONREAD)
571 #ifdef SIGIO
572 #undef SIGIO
573 #endif
574 #endif
576 /* If we support a window system, turn on the code to poll periodically
577 to detect C-g. It isn't actually used when doing interrupt input. */
578 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
579 #define POLL_FOR_INPUT
580 #endif
582 /* After a command is executed, if point is moved into a region that
583 has specific properties (e.g. composition, display), we adjust
584 point to the boundary of the region. But, if a command sets this
585 variable to non-nil, we suppress this point adjustment. This
586 variable is set to nil before reading a command. */
588 Lisp_Object Vdisable_point_adjustment;
590 /* If non-nil, always disable point adjustment. */
592 Lisp_Object Vglobal_disable_point_adjustment;
594 /* The time when Emacs started being idle. */
596 static EMACS_TIME timer_idleness_start_time;
598 /* After Emacs stops being idle, this saves the last value
599 of timer_idleness_start_time from when it was idle. */
601 static EMACS_TIME timer_last_idleness_start_time;
603 /* If non-nil, events produced by disabled menu items and tool-bar
604 buttons are not ignored. Help functions bind this to allow help on
605 those items and buttons. */
606 Lisp_Object Venable_disabled_menus_and_buttons;
609 /* Global variable declarations. */
611 /* Flags for readable_events. */
612 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
613 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
614 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
616 /* Function for init_keyboard to call with no args (if nonzero). */
617 void (*keyboard_init_hook) ();
619 static int read_avail_input P_ ((int));
620 static void get_input_pending P_ ((int *, int));
621 static int readable_events P_ ((int));
622 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
623 Lisp_Object, int *));
624 static Lisp_Object read_char_x_menu_prompt ();
625 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
626 Lisp_Object *));
627 static Lisp_Object make_lispy_event P_ ((struct input_event *));
628 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
629 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
630 enum scroll_bar_part,
631 Lisp_Object, Lisp_Object,
632 unsigned long));
633 #endif
634 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
635 Lisp_Object, char **,
636 Lisp_Object *, unsigned));
637 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
638 static void save_getcjmp P_ ((jmp_buf));
639 static void save_getcjmp ();
640 static void restore_getcjmp P_ ((jmp_buf));
641 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
642 static void clear_event P_ ((struct input_event *));
643 static Lisp_Object restore_kboard_configuration P_ ((Lisp_Object));
644 static SIGTYPE interrupt_signal P_ ((int signalnum));
645 static void handle_interrupt P_ ((void));
646 static void timer_start_idle P_ ((void));
647 static void timer_stop_idle P_ ((void));
648 static void timer_resume_idle P_ ((void));
649 static SIGTYPE handle_user_signal P_ ((int));
650 static char *find_user_signal_name P_ ((int));
651 static int store_user_signal_events P_ ((void));
653 /* Nonzero means don't try to suspend even if the operating system seems
654 to support it. */
655 static int cannot_suspend;
657 extern Lisp_Object Qidentity, Qonly;
659 /* Install the string STR as the beginning of the string of echoing,
660 so that it serves as a prompt for the next character.
661 Also start echoing. */
663 void
664 echo_prompt (str)
665 Lisp_Object str;
667 current_kboard->echo_string = str;
668 current_kboard->echo_after_prompt = SCHARS (str);
669 echo_now ();
672 /* Add C to the echo string, if echoing is going on.
673 C can be a character, which is printed prettily ("M-C-x" and all that
674 jazz), or a symbol, whose name is printed. */
676 void
677 echo_char (c)
678 Lisp_Object c;
680 if (current_kboard->immediate_echo)
682 int size = KEY_DESCRIPTION_SIZE + 100;
683 char *buffer = (char *) alloca (size);
684 char *ptr = buffer;
685 Lisp_Object echo_string;
687 echo_string = current_kboard->echo_string;
689 /* If someone has passed us a composite event, use its head symbol. */
690 c = EVENT_HEAD (c);
692 if (INTEGERP (c))
694 ptr = push_key_description (XINT (c), ptr, 1);
696 else if (SYMBOLP (c))
698 Lisp_Object name = SYMBOL_NAME (c);
699 int nbytes = SBYTES (name);
701 if (size - (ptr - buffer) < nbytes)
703 int offset = ptr - buffer;
704 size = max (2 * size, size + nbytes);
705 buffer = (char *) alloca (size);
706 ptr = buffer + offset;
709 ptr += copy_text (SDATA (name), ptr, nbytes,
710 STRING_MULTIBYTE (name), 1);
713 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
714 && help_char_p (c))
716 const char *text = " (Type ? for further options)";
717 int len = strlen (text);
719 if (size - (ptr - buffer) < len)
721 int offset = ptr - buffer;
722 size += len;
723 buffer = (char *) alloca (size);
724 ptr = buffer + offset;
727 bcopy (text, ptr, len);
728 ptr += len;
731 /* Replace a dash from echo_dash with a space, otherwise
732 add a space at the end as a separator between keys. */
733 if (STRINGP (echo_string)
734 && SCHARS (echo_string) > 1)
736 Lisp_Object last_char, prev_char, idx;
738 idx = make_number (SCHARS (echo_string) - 2);
739 prev_char = Faref (echo_string, idx);
741 idx = make_number (SCHARS (echo_string) - 1);
742 last_char = Faref (echo_string, idx);
744 /* We test PREV_CHAR to make sure this isn't the echoing
745 of a minus-sign. */
746 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
747 Faset (echo_string, idx, make_number (' '));
748 else
749 echo_string = concat2 (echo_string, build_string (" "));
751 else if (STRINGP (echo_string))
752 echo_string = concat2 (echo_string, build_string (" "));
754 current_kboard->echo_string
755 = concat2 (echo_string, make_string (buffer, ptr - buffer));
757 echo_now ();
761 /* Temporarily add a dash to the end of the echo string if it's not
762 empty, so that it serves as a mini-prompt for the very next character. */
764 void
765 echo_dash ()
767 /* Do nothing if not echoing at all. */
768 if (NILP (current_kboard->echo_string))
769 return;
771 if (!current_kboard->immediate_echo
772 && SCHARS (current_kboard->echo_string) == 0)
773 return;
775 /* Do nothing if we just printed a prompt. */
776 if (current_kboard->echo_after_prompt
777 == SCHARS (current_kboard->echo_string))
778 return;
780 /* Do nothing if we have already put a dash at the end. */
781 if (SCHARS (current_kboard->echo_string) > 1)
783 Lisp_Object last_char, prev_char, idx;
785 idx = make_number (SCHARS (current_kboard->echo_string) - 2);
786 prev_char = Faref (current_kboard->echo_string, idx);
788 idx = make_number (SCHARS (current_kboard->echo_string) - 1);
789 last_char = Faref (current_kboard->echo_string, idx);
791 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
792 return;
795 /* Put a dash at the end of the buffer temporarily,
796 but make it go away when the next character is added. */
797 current_kboard->echo_string = concat2 (current_kboard->echo_string,
798 build_string ("-"));
799 echo_now ();
802 /* Display the current echo string, and begin echoing if not already
803 doing so. */
805 void
806 echo_now ()
808 if (!current_kboard->immediate_echo)
810 int i;
811 current_kboard->immediate_echo = 1;
813 for (i = 0; i < this_command_key_count; i++)
815 Lisp_Object c;
817 /* Set before_command_echo_length to the value that would
818 have been saved before the start of this subcommand in
819 command_loop_1, if we had already been echoing then. */
820 if (i == this_single_command_key_start)
821 before_command_echo_length = echo_length ();
823 c = XVECTOR (this_command_keys)->contents[i];
824 if (! (EVENT_HAS_PARAMETERS (c)
825 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
826 echo_char (c);
829 /* Set before_command_echo_length to the value that would
830 have been saved before the start of this subcommand in
831 command_loop_1, if we had already been echoing then. */
832 if (this_command_key_count == this_single_command_key_start)
833 before_command_echo_length = echo_length ();
835 /* Put a dash at the end to invite the user to type more. */
836 echo_dash ();
839 echoing = 1;
840 message3_nolog (current_kboard->echo_string,
841 SBYTES (current_kboard->echo_string),
842 STRING_MULTIBYTE (current_kboard->echo_string));
843 echoing = 0;
845 /* Record in what buffer we echoed, and from which kboard. */
846 echo_message_buffer = echo_area_buffer[0];
847 echo_kboard = current_kboard;
849 if (waiting_for_input && !NILP (Vquit_flag))
850 quit_throw_to_read_char ();
853 /* Turn off echoing, for the start of a new command. */
855 void
856 cancel_echoing ()
858 current_kboard->immediate_echo = 0;
859 current_kboard->echo_after_prompt = -1;
860 current_kboard->echo_string = Qnil;
861 ok_to_echo_at_next_pause = NULL;
862 echo_kboard = NULL;
863 echo_message_buffer = Qnil;
866 /* Return the length of the current echo string. */
868 static int
869 echo_length ()
871 return (STRINGP (current_kboard->echo_string)
872 ? SCHARS (current_kboard->echo_string)
873 : 0);
876 /* Truncate the current echo message to its first LEN chars.
877 This and echo_char get used by read_key_sequence when the user
878 switches frames while entering a key sequence. */
880 static void
881 echo_truncate (nchars)
882 int nchars;
884 if (STRINGP (current_kboard->echo_string))
885 current_kboard->echo_string
886 = Fsubstring (current_kboard->echo_string,
887 make_number (0), make_number (nchars));
888 truncate_echo_area (nchars);
892 /* Functions for manipulating this_command_keys. */
893 static void
894 add_command_key (key)
895 Lisp_Object key;
897 #if 0 /* Not needed after we made Freset_this_command_lengths
898 do the job immediately. */
899 /* If reset-this-command-length was called recently, obey it now.
900 See the doc string of that function for an explanation of why. */
901 if (before_command_restore_flag)
903 this_command_key_count = before_command_key_count_1;
904 if (this_command_key_count < this_single_command_key_start)
905 this_single_command_key_start = this_command_key_count;
906 echo_truncate (before_command_echo_length_1);
907 before_command_restore_flag = 0;
909 #endif
911 if (this_command_key_count >= ASIZE (this_command_keys))
912 this_command_keys = larger_vector (this_command_keys,
913 2 * ASIZE (this_command_keys),
914 Qnil);
916 ASET (this_command_keys, this_command_key_count, key);
917 ++this_command_key_count;
921 Lisp_Object
922 recursive_edit_1 ()
924 int count = SPECPDL_INDEX ();
925 Lisp_Object val;
927 if (command_loop_level > 0)
929 specbind (Qstandard_output, Qt);
930 specbind (Qstandard_input, Qt);
933 #ifdef HAVE_WINDOW_SYSTEM
934 /* The command loop has started an hourglass timer, so we have to
935 cancel it here, otherwise it will fire because the recursive edit
936 can take some time. Do not check for display_hourglass_p here,
937 because it could already be nil. */
938 cancel_hourglass ();
939 #endif
941 /* This function may have been called from a debugger called from
942 within redisplay, for instance by Edebugging a function called
943 from fontification-functions. We want to allow redisplay in
944 the debugging session.
946 The recursive edit is left with a `(throw exit ...)'. The `exit'
947 tag is not caught anywhere in redisplay, i.e. when we leave the
948 recursive edit, the original redisplay leading to the recursive
949 edit will be unwound. The outcome should therefore be safe. */
950 specbind (Qinhibit_redisplay, Qnil);
951 redisplaying_p = 0;
953 val = command_loop ();
954 if (EQ (val, Qt))
955 Fsignal (Qquit, Qnil);
956 /* Handle throw from read_minibuf when using minibuffer
957 while it's active but we're in another window. */
958 if (STRINGP (val))
959 xsignal1 (Qerror, val);
961 return unbind_to (count, Qnil);
964 /* When an auto-save happens, record the "time", and don't do again soon. */
966 void
967 record_auto_save ()
969 last_auto_save = num_nonmacro_input_events;
972 /* Make an auto save happen as soon as possible at command level. */
974 void
975 force_auto_save_soon ()
977 last_auto_save = - auto_save_interval - 1;
979 record_asynch_buffer_change ();
982 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
983 doc: /* Invoke the editor command loop recursively.
984 To get out of the recursive edit, a command can do `(throw 'exit nil)';
985 that tells this function to return.
986 Alternatively, `(throw 'exit t)' makes this function signal an error.
987 This function is called by the editor initialization to begin editing. */)
990 int count = SPECPDL_INDEX ();
991 Lisp_Object buffer;
993 /* If we enter while input is blocked, don't lock up here.
994 This may happen through the debugger during redisplay. */
995 if (INPUT_BLOCKED_P)
996 return Qnil;
998 command_loop_level++;
999 update_mode_lines = 1;
1001 if (command_loop_level
1002 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1003 buffer = Fcurrent_buffer ();
1004 else
1005 buffer = Qnil;
1007 /* If we leave recursive_edit_1 below with a `throw' for instance,
1008 like it is done in the splash screen display, we have to
1009 make sure that we restore single_kboard as command_loop_1
1010 would have done if it were left normally. */
1011 if (command_loop_level > 0)
1012 temporarily_switch_to_single_kboard (SELECTED_FRAME ());
1013 record_unwind_protect (recursive_edit_unwind, buffer);
1015 recursive_edit_1 ();
1016 return unbind_to (count, Qnil);
1019 Lisp_Object
1020 recursive_edit_unwind (buffer)
1021 Lisp_Object buffer;
1023 if (BUFFERP (buffer))
1024 Fset_buffer (buffer);
1026 command_loop_level--;
1027 update_mode_lines = 1;
1028 return Qnil;
1032 #if 0 /* These two functions are now replaced with
1033 temporarily_switch_to_single_kboard. */
1034 static void
1035 any_kboard_state ()
1037 #if 0 /* Theory: if there's anything in Vunread_command_events,
1038 it will right away be read by read_key_sequence,
1039 and then if we do switch KBOARDS, it will go into the side
1040 queue then. So we don't need to do anything special here -- rms. */
1041 if (CONSP (Vunread_command_events))
1043 current_kboard->kbd_queue
1044 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1045 current_kboard->kbd_queue_has_data = 1;
1047 Vunread_command_events = Qnil;
1048 #endif
1049 single_kboard = 0;
1052 /* Switch to the single-kboard state, making current_kboard
1053 the only KBOARD from which further input is accepted. */
1055 void
1056 single_kboard_state ()
1058 single_kboard = 1;
1060 #endif
1062 /* If we're in single_kboard state for kboard KBOARD,
1063 get out of it. */
1065 void
1066 not_single_kboard_state (kboard)
1067 KBOARD *kboard;
1069 if (kboard == current_kboard)
1070 single_kboard = 0;
1073 /* Maintain a stack of kboards, so other parts of Emacs
1074 can switch temporarily to the kboard of a given frame
1075 and then revert to the previous status. */
1077 struct kboard_stack
1079 KBOARD *kboard;
1080 struct kboard_stack *next;
1083 static struct kboard_stack *kboard_stack;
1085 void
1086 push_kboard (k)
1087 struct kboard *k;
1089 struct kboard_stack *p
1090 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1092 p->next = kboard_stack;
1093 p->kboard = current_kboard;
1094 kboard_stack = p;
1096 current_kboard = k;
1099 void
1100 pop_kboard ()
1102 struct terminal *t;
1103 struct kboard_stack *p = kboard_stack;
1104 int found = 0;
1105 for (t = terminal_list; t; t = t->next_terminal)
1107 if (t->kboard == p->kboard)
1109 current_kboard = p->kboard;
1110 found = 1;
1111 break;
1114 if (!found)
1116 /* The terminal we remembered has been deleted. */
1117 current_kboard = FRAME_KBOARD (SELECTED_FRAME ());
1118 single_kboard = 0;
1120 kboard_stack = p->next;
1121 xfree (p);
1124 /* Switch to single_kboard mode, making current_kboard the only KBOARD
1125 from which further input is accepted. If F is non-nil, set its
1126 KBOARD as the current keyboard.
1128 This function uses record_unwind_protect to return to the previous
1129 state later.
1131 If Emacs is already in single_kboard mode, and F's keyboard is
1132 locked, then this function will throw an errow. */
1134 void
1135 temporarily_switch_to_single_kboard (f)
1136 struct frame *f;
1138 int was_locked = single_kboard;
1139 if (was_locked)
1141 if (f != NULL && FRAME_KBOARD (f) != current_kboard)
1142 /* We can not switch keyboards while in single_kboard mode.
1143 In rare cases, Lisp code may call `recursive-edit' (or
1144 `read-minibuffer' or `y-or-n-p') after it switched to a
1145 locked frame. For example, this is likely to happen
1146 when server.el connects to a new terminal while Emacs is in
1147 single_kboard mode. It is best to throw an error instead
1148 of presenting the user with a frozen screen. */
1149 error ("Terminal %d is locked, cannot read from it",
1150 FRAME_TERMINAL (f)->id);
1151 else
1152 /* This call is unnecessary, but helps
1153 `restore_kboard_configuration' discover if somebody changed
1154 `current_kboard' behind our back. */
1155 push_kboard (current_kboard);
1157 else if (f != NULL)
1158 current_kboard = FRAME_KBOARD (f);
1159 single_kboard = 1;
1160 record_unwind_protect (restore_kboard_configuration,
1161 (was_locked ? Qt : Qnil));
1164 #if 0 /* This function is not needed anymore. */
1165 void
1166 record_single_kboard_state ()
1168 if (single_kboard)
1169 push_kboard (current_kboard);
1170 record_unwind_protect (restore_kboard_configuration,
1171 (single_kboard ? Qt : Qnil));
1173 #endif
1175 static Lisp_Object
1176 restore_kboard_configuration (was_locked)
1177 Lisp_Object was_locked;
1179 if (NILP (was_locked))
1180 single_kboard = 0;
1181 else
1183 struct kboard *prev = current_kboard;
1184 single_kboard = 1;
1185 pop_kboard ();
1186 /* The pop should not change the kboard. */
1187 if (single_kboard && current_kboard != prev)
1188 abort ();
1190 return Qnil;
1194 /* Handle errors that are not handled at inner levels
1195 by printing an error message and returning to the editor command loop. */
1197 Lisp_Object
1198 cmd_error (data)
1199 Lisp_Object data;
1201 Lisp_Object old_level, old_length;
1202 char macroerror[50];
1204 #ifdef HAVE_WINDOW_SYSTEM
1205 if (display_hourglass_p)
1206 cancel_hourglass ();
1207 #endif
1209 if (!NILP (executing_kbd_macro))
1211 if (executing_kbd_macro_iterations == 1)
1212 sprintf (macroerror, "After 1 kbd macro iteration: ");
1213 else
1214 sprintf (macroerror, "After %d kbd macro iterations: ",
1215 executing_kbd_macro_iterations);
1217 else
1218 *macroerror = 0;
1220 Vstandard_output = Qt;
1221 Vstandard_input = Qt;
1222 Vexecuting_kbd_macro = Qnil;
1223 executing_kbd_macro = Qnil;
1224 current_kboard->Vprefix_arg = Qnil;
1225 current_kboard->Vlast_prefix_arg = Qnil;
1226 cancel_echoing ();
1228 /* Avoid unquittable loop if data contains a circular list. */
1229 old_level = Vprint_level;
1230 old_length = Vprint_length;
1231 XSETFASTINT (Vprint_level, 10);
1232 XSETFASTINT (Vprint_length, 10);
1233 cmd_error_internal (data, macroerror);
1234 Vprint_level = old_level;
1235 Vprint_length = old_length;
1237 Vquit_flag = Qnil;
1239 Vinhibit_quit = Qnil;
1240 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1241 if (command_loop_level == 0 && minibuf_level == 0)
1242 any_kboard_state ();
1243 #endif
1245 return make_number (0);
1248 /* Take actions on handling an error. DATA is the data that describes
1249 the error.
1251 CONTEXT is a C-string containing ASCII characters only which
1252 describes the context in which the error happened. If we need to
1253 generalize CONTEXT to allow multibyte characters, make it a Lisp
1254 string. */
1256 void
1257 cmd_error_internal (data, context)
1258 Lisp_Object data;
1259 char *context;
1261 struct frame *sf = SELECTED_FRAME ();
1263 /* The immediate context is not interesting for Quits,
1264 since they are asyncronous. */
1265 if (EQ (XCAR (data), Qquit))
1266 Vsignaling_function = Qnil;
1268 Vquit_flag = Qnil;
1269 Vinhibit_quit = Qt;
1271 /* Use user's specified output function if any. */
1272 if (!NILP (Vcommand_error_function))
1273 call3 (Vcommand_error_function, data,
1274 context ? build_string (context) : empty_unibyte_string,
1275 Vsignaling_function);
1276 /* If the window system or terminal frame hasn't been initialized
1277 yet, or we're not interactive, write the message to stderr and exit. */
1278 else if (!sf->glyphs_initialized_p
1279 /* The initial frame is a special non-displaying frame. It
1280 will be current in daemon mode when there are no frames
1281 to display, and in non-daemon mode before the real frame
1282 has finished initializing. If an error is thrown in the
1283 latter case while creating the frame, then the frame
1284 will never be displayed, so the safest thing to do is
1285 write to stderr and quit. In daemon mode, there are
1286 many other potential errors that do not prevent frames
1287 from being created, so continuing as normal is better in
1288 that case. */
1289 || (!IS_DAEMON && FRAME_INITIAL_P (sf))
1290 || noninteractive)
1292 print_error_message (data, Qexternal_debugging_output,
1293 context, Vsignaling_function);
1294 Fterpri (Qexternal_debugging_output);
1295 Fkill_emacs (make_number (-1));
1297 else
1299 clear_message (1, 0);
1300 Fdiscard_input ();
1301 message_log_maybe_newline ();
1302 bitch_at_user ();
1304 print_error_message (data, Qt, context, Vsignaling_function);
1307 Vsignaling_function = Qnil;
1310 Lisp_Object command_loop_1 ();
1311 Lisp_Object command_loop_2 ();
1312 Lisp_Object top_level_1 ();
1314 /* Entry to editor-command-loop.
1315 This level has the catches for exiting/returning to editor command loop.
1316 It returns nil to exit recursive edit, t to abort it. */
1318 Lisp_Object
1319 command_loop ()
1321 if (command_loop_level > 0 || minibuf_level > 0)
1323 Lisp_Object val;
1324 val = internal_catch (Qexit, command_loop_2, Qnil);
1325 executing_kbd_macro = Qnil;
1326 return val;
1328 else
1329 while (1)
1331 internal_catch (Qtop_level, top_level_1, Qnil);
1332 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1333 /* Reset single_kboard in case top-level set it while
1334 evaluating an -f option, or we are stuck there for some
1335 other reason. */
1336 any_kboard_state ();
1337 #endif
1338 internal_catch (Qtop_level, command_loop_2, Qnil);
1339 executing_kbd_macro = Qnil;
1341 /* End of file in -batch run causes exit here. */
1342 if (noninteractive)
1343 Fkill_emacs (Qt);
1347 /* Here we catch errors in execution of commands within the
1348 editing loop, and reenter the editing loop.
1349 When there is an error, cmd_error runs and returns a non-nil
1350 value to us. A value of nil means that command_loop_1 itself
1351 returned due to end of file (or end of kbd macro). */
1353 Lisp_Object
1354 command_loop_2 ()
1356 register Lisp_Object val;
1359 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1360 while (!NILP (val));
1362 return Qnil;
1365 Lisp_Object
1366 top_level_2 ()
1368 return Feval (Vtop_level);
1371 Lisp_Object
1372 top_level_1 ()
1374 /* On entry to the outer level, run the startup file */
1375 if (!NILP (Vtop_level))
1376 internal_condition_case (top_level_2, Qerror, cmd_error);
1377 else if (!NILP (Vpurify_flag))
1378 message ("Bare impure Emacs (standard Lisp code not loaded)");
1379 else
1380 message ("Bare Emacs (standard Lisp code not loaded)");
1381 return Qnil;
1384 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1385 doc: /* Exit all recursive editing levels.
1386 This also exits all active minibuffers. */)
1389 #ifdef HAVE_WINDOW_SYSTEM
1390 if (display_hourglass_p)
1391 cancel_hourglass ();
1392 #endif
1394 /* Unblock input if we enter with input blocked. This may happen if
1395 redisplay traps e.g. during tool-bar update with input blocked. */
1396 while (INPUT_BLOCKED_P)
1397 UNBLOCK_INPUT;
1399 return Fthrow (Qtop_level, Qnil);
1402 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1403 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1406 if (command_loop_level > 0 || minibuf_level > 0)
1407 Fthrow (Qexit, Qnil);
1409 error ("No recursive edit is in progress");
1410 return Qnil;
1413 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1414 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1417 if (command_loop_level > 0 || minibuf_level > 0)
1418 Fthrow (Qexit, Qt);
1420 error ("No recursive edit is in progress");
1421 return Qnil;
1424 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1426 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1427 of this function. */
1429 static Lisp_Object
1430 tracking_off (old_value)
1431 Lisp_Object old_value;
1433 do_mouse_tracking = old_value;
1434 if (NILP (old_value))
1436 /* Redisplay may have been preempted because there was input
1437 available, and it assumes it will be called again after the
1438 input has been processed. If the only input available was
1439 the sort that we have just disabled, then we need to call
1440 redisplay. */
1441 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
1443 redisplay_preserve_echo_area (6);
1444 get_input_pending (&input_pending,
1445 READABLE_EVENTS_DO_TIMERS_NOW);
1448 return Qnil;
1451 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1452 doc: /* Evaluate BODY with mouse movement events enabled.
1453 Within a `track-mouse' form, mouse motion generates input events that
1454 you can read with `read-event'.
1455 Normally, mouse motion is ignored.
1456 usage: (track-mouse BODY...) */)
1457 (args)
1458 Lisp_Object args;
1460 int count = SPECPDL_INDEX ();
1461 Lisp_Object val;
1463 record_unwind_protect (tracking_off, do_mouse_tracking);
1465 do_mouse_tracking = Qt;
1467 val = Fprogn (args);
1468 return unbind_to (count, val);
1471 /* If mouse has moved on some frame, return one of those frames.
1473 Return 0 otherwise.
1475 If ignore_mouse_drag_p is non-zero, ignore (implicit) mouse movement
1476 after resizing the tool-bar window. */
1478 int ignore_mouse_drag_p;
1480 static FRAME_PTR
1481 some_mouse_moved ()
1483 Lisp_Object tail, frame;
1485 if (ignore_mouse_drag_p)
1487 /* ignore_mouse_drag_p = 0; */
1488 return 0;
1491 FOR_EACH_FRAME (tail, frame)
1493 if (XFRAME (frame)->mouse_moved)
1494 return XFRAME (frame);
1497 return 0;
1500 #endif /* HAVE_MOUSE || HAVE_GPM */
1502 /* This is the actual command reading loop,
1503 sans error-handling encapsulation. */
1505 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1506 int, int, int));
1507 void safe_run_hooks P_ ((Lisp_Object));
1508 static void adjust_point_for_property P_ ((int, int));
1510 /* Cancel hourglass from protect_unwind.
1511 ARG is not used. */
1512 #ifdef HAVE_WINDOW_SYSTEM
1513 static Lisp_Object
1514 cancel_hourglass_unwind (arg)
1515 Lisp_Object arg;
1517 cancel_hourglass ();
1518 return Qnil;
1520 #endif
1522 Lisp_Object
1523 command_loop_1 ()
1525 Lisp_Object cmd;
1526 int lose;
1527 int nonundocount;
1528 Lisp_Object keybuf[30];
1529 int i;
1530 int prev_modiff = 0;
1531 struct buffer *prev_buffer = NULL;
1532 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1533 int was_locked = single_kboard;
1534 #endif
1535 int already_adjusted = 0;
1537 current_kboard->Vprefix_arg = Qnil;
1538 current_kboard->Vlast_prefix_arg = Qnil;
1539 Vdeactivate_mark = Qnil;
1540 waiting_for_input = 0;
1541 cancel_echoing ();
1543 nonundocount = 0;
1544 this_command_key_count = 0;
1545 this_command_key_count_reset = 0;
1546 this_single_command_key_start = 0;
1548 if (NILP (Vmemory_full))
1550 /* Make sure this hook runs after commands that get errors and
1551 throw to top level. */
1552 /* Note that the value cell will never directly contain nil
1553 if the symbol is a local variable. */
1554 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1555 safe_run_hooks (Qpost_command_hook);
1557 /* If displaying a message, resize the echo area window to fit
1558 that message's size exactly. */
1559 if (!NILP (echo_area_buffer[0]))
1560 resize_echo_area_exactly ();
1562 if (!NILP (Vdeferred_action_list))
1563 safe_run_hooks (Qdeferred_action_function);
1566 /* Do this after running Vpost_command_hook, for consistency. */
1567 current_kboard->Vlast_command = Vthis_command;
1568 current_kboard->Vreal_last_command = real_this_command;
1569 if (!CONSP (last_command_event))
1570 current_kboard->Vlast_repeatable_command = real_this_command;
1572 while (1)
1574 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1575 Fkill_emacs (Qnil);
1577 /* Make sure the current window's buffer is selected. */
1578 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1579 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1581 /* Display any malloc warning that just came out. Use while because
1582 displaying one warning can cause another. */
1584 while (pending_malloc_warning)
1585 display_malloc_warning ();
1587 Vdeactivate_mark = Qnil;
1589 /* If minibuffer on and echo area in use,
1590 wait a short time and redraw minibuffer. */
1592 if (minibuf_level
1593 && !NILP (echo_area_buffer[0])
1594 && EQ (minibuf_window, echo_area_window)
1595 && NUMBERP (Vminibuffer_message_timeout))
1597 /* Bind inhibit-quit to t so that C-g gets read in
1598 rather than quitting back to the minibuffer. */
1599 int count = SPECPDL_INDEX ();
1600 specbind (Qinhibit_quit, Qt);
1602 sit_for (Vminibuffer_message_timeout, 0, 2);
1604 /* Clear the echo area. */
1605 message2 (0, 0, 0);
1606 safe_run_hooks (Qecho_area_clear_hook);
1608 unbind_to (count, Qnil);
1610 /* If a C-g came in before, treat it as input now. */
1611 if (!NILP (Vquit_flag))
1613 Vquit_flag = Qnil;
1614 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1618 #if 0
1619 /* Select the frame that the last event came from. Usually,
1620 switch-frame events will take care of this, but if some lisp
1621 code swallows a switch-frame event, we'll fix things up here.
1622 Is this a good idea? */
1623 if (FRAMEP (internal_last_event_frame)
1624 && !EQ (internal_last_event_frame, selected_frame))
1625 Fselect_frame (internal_last_event_frame, Qnil);
1626 #endif
1627 /* If it has changed current-menubar from previous value,
1628 really recompute the menubar from the value. */
1629 if (! NILP (Vlucid_menu_bar_dirty_flag)
1630 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1631 call0 (Qrecompute_lucid_menubar);
1633 before_command_key_count = this_command_key_count;
1634 before_command_echo_length = echo_length ();
1636 Vthis_command = Qnil;
1637 real_this_command = Qnil;
1638 Vthis_original_command = Qnil;
1639 Vthis_command_keys_shift_translated = Qnil;
1641 /* Read next key sequence; i gets its length. */
1642 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1643 Qnil, 0, 1, 1);
1645 /* A filter may have run while we were reading the input. */
1646 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1647 Fkill_emacs (Qnil);
1648 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1649 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1651 ++num_input_keys;
1653 /* Now we have read a key sequence of length I,
1654 or else I is 0 and we found end of file. */
1656 if (i == 0) /* End of file -- happens only in */
1657 return Qnil; /* a kbd macro, at the end. */
1658 /* -1 means read_key_sequence got a menu that was rejected.
1659 Just loop around and read another command. */
1660 if (i == -1)
1662 cancel_echoing ();
1663 this_command_key_count = 0;
1664 this_command_key_count_reset = 0;
1665 this_single_command_key_start = 0;
1666 goto finalize;
1669 last_command_event = keybuf[i - 1];
1671 /* If the previous command tried to force a specific window-start,
1672 forget about that, in case this command moves point far away
1673 from that position. But also throw away beg_unchanged and
1674 end_unchanged information in that case, so that redisplay will
1675 update the whole window properly. */
1676 if (!NILP (XWINDOW (selected_window)->force_start))
1678 struct buffer *b;
1679 XWINDOW (selected_window)->force_start = Qnil;
1680 b = XBUFFER (XWINDOW (selected_window)->buffer);
1681 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1684 cmd = read_key_sequence_cmd;
1685 if (!NILP (Vexecuting_kbd_macro))
1687 if (!NILP (Vquit_flag))
1689 Vexecuting_kbd_macro = Qt;
1690 QUIT; /* Make some noise. */
1691 /* Will return since macro now empty. */
1695 /* Do redisplay processing after this command except in special
1696 cases identified below. */
1697 prev_buffer = current_buffer;
1698 prev_modiff = MODIFF;
1699 last_point_position = PT;
1700 last_point_position_window = selected_window;
1701 XSETBUFFER (last_point_position_buffer, prev_buffer);
1703 /* By default, we adjust point to a boundary of a region that
1704 has such a property that should be treated intangible
1705 (e.g. composition, display). But, some commands will set
1706 this variable differently. */
1707 Vdisable_point_adjustment = Qnil;
1709 /* Process filters and timers may have messed with deactivate-mark.
1710 reset it before we execute the command. */
1711 Vdeactivate_mark = Qnil;
1713 /* Remap command through active keymaps */
1714 Vthis_original_command = cmd;
1715 if (SYMBOLP (cmd))
1717 Lisp_Object cmd1;
1718 if (cmd1 = Fcommand_remapping (cmd, Qnil, Qnil), !NILP (cmd1))
1719 cmd = cmd1;
1722 /* Execute the command. */
1724 Vthis_command = cmd;
1725 real_this_command = cmd;
1726 /* Note that the value cell will never directly contain nil
1727 if the symbol is a local variable. */
1728 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1729 safe_run_hooks (Qpre_command_hook);
1731 already_adjusted = 0;
1733 if (NILP (Vthis_command))
1735 /* nil means key is undefined. */
1736 Lisp_Object keys = Fvector (i, keybuf);
1737 keys = Fkey_description (keys, Qnil);
1738 bitch_at_user ();
1739 message_with_string ("%s is undefined", keys, 0);
1740 current_kboard->defining_kbd_macro = Qnil;
1741 update_mode_lines = 1;
1742 current_kboard->Vprefix_arg = Qnil;
1744 else
1746 if (NILP (current_kboard->Vprefix_arg))
1748 /* In case we jump to directly_done. */
1749 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1751 /* Recognize some common commands in common situations and
1752 do them directly. */
1753 if (EQ (Vthis_command, Qforward_char) && PT < ZV
1754 && NILP (Vthis_command_keys_shift_translated)
1755 && !CONSP (Vtransient_mark_mode))
1757 struct Lisp_Char_Table *dp
1758 = window_display_table (XWINDOW (selected_window));
1759 lose = FETCH_CHAR (PT_BYTE);
1760 SET_PT (PT + 1);
1761 if (! NILP (Vpost_command_hook))
1762 /* Put this before calling adjust_point_for_property
1763 so it will only get called once in any case. */
1764 goto directly_done;
1765 if (current_buffer == prev_buffer
1766 && last_point_position != PT
1767 && NILP (Vdisable_point_adjustment)
1768 && NILP (Vglobal_disable_point_adjustment))
1769 adjust_point_for_property (last_point_position, 0);
1770 already_adjusted = 1;
1771 if (PT == last_point_position + 1
1772 && (dp
1773 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1774 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1775 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1776 && (lose >= 0x20 && lose < 0x7f)))
1777 : (lose >= 0x20 && lose < 0x7f))
1778 /* To extract the case of continuation on
1779 wide-column characters. */
1780 && ASCII_BYTE_P (lose)
1781 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1782 >= MODIFF)
1783 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1784 >= OVERLAY_MODIFF)
1785 && (XFASTINT (XWINDOW (selected_window)->last_point)
1786 == PT - 1)
1787 && !windows_or_buffers_changed
1788 && EQ (current_buffer->selective_display, Qnil)
1789 && !detect_input_pending ()
1790 && NILP (XWINDOW (selected_window)->column_number_displayed)
1791 && NILP (Vexecuting_kbd_macro))
1792 direct_output_forward_char (1);
1793 goto directly_done;
1795 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV
1796 && NILP (Vthis_command_keys_shift_translated)
1797 && !CONSP (Vtransient_mark_mode))
1799 struct Lisp_Char_Table *dp
1800 = window_display_table (XWINDOW (selected_window));
1801 SET_PT (PT - 1);
1802 lose = FETCH_CHAR (PT_BYTE);
1803 if (! NILP (Vpost_command_hook))
1804 goto directly_done;
1805 if (current_buffer == prev_buffer
1806 && last_point_position != PT
1807 && NILP (Vdisable_point_adjustment)
1808 && NILP (Vglobal_disable_point_adjustment))
1809 adjust_point_for_property (last_point_position, 0);
1810 already_adjusted = 1;
1811 if (PT == last_point_position - 1
1812 && (dp
1813 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1814 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1815 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1816 && (lose >= 0x20 && lose < 0x7f)))
1817 : (lose >= 0x20 && lose < 0x7f))
1818 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1819 >= MODIFF)
1820 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1821 >= OVERLAY_MODIFF)
1822 && (XFASTINT (XWINDOW (selected_window)->last_point)
1823 == PT + 1)
1824 && !windows_or_buffers_changed
1825 && EQ (current_buffer->selective_display, Qnil)
1826 && !detect_input_pending ()
1827 && NILP (XWINDOW (selected_window)->column_number_displayed)
1828 && NILP (Vexecuting_kbd_macro))
1829 direct_output_forward_char (-1);
1830 goto directly_done;
1832 else if (EQ (Vthis_command, Qself_insert_command)
1833 /* Try this optimization only on char keystrokes. */
1834 && NATNUMP (last_command_event)
1835 && CHAR_VALID_P (XFASTINT (last_command_event), 0))
1837 unsigned int c
1838 = translate_char (Vtranslation_table_for_input,
1839 XFASTINT (last_command_event));
1840 int value;
1841 if (NILP (Vexecuting_kbd_macro)
1842 && !EQ (minibuf_window, selected_window))
1844 if (!nonundocount || nonundocount >= 20)
1846 Fundo_boundary ();
1847 nonundocount = 0;
1849 nonundocount++;
1852 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1853 < MODIFF)
1854 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1855 < OVERLAY_MODIFF)
1856 || (XFASTINT (XWINDOW (selected_window)->last_point)
1857 != PT)
1858 || MODIFF <= SAVE_MODIFF
1859 || windows_or_buffers_changed
1860 || !EQ (current_buffer->selective_display, Qnil)
1861 || detect_input_pending ()
1862 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1863 || !NILP (Vexecuting_kbd_macro));
1865 value = internal_self_insert (c, 0);
1867 if (value == 2)
1868 nonundocount = 0;
1870 frame_make_pointer_invisible ();
1872 if (! NILP (Vpost_command_hook))
1873 /* Put this before calling adjust_point_for_property
1874 so it will only get called once in any case. */
1875 goto directly_done;
1877 /* VALUE == 1 when AFTER-CHANGE functions are
1878 installed which is the case most of the time
1879 because FONT-LOCK installs one. */
1880 if (!lose && !value)
1881 direct_output_for_insert (c);
1882 goto directly_done;
1886 /* Here for a command that isn't executed directly */
1889 #ifdef HAVE_WINDOW_SYSTEM
1890 int scount = SPECPDL_INDEX ();
1892 if (display_hourglass_p
1893 && NILP (Vexecuting_kbd_macro))
1895 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1896 start_hourglass ();
1898 #endif
1900 nonundocount = 0;
1901 if (NILP (current_kboard->Vprefix_arg))
1902 Fundo_boundary ();
1903 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1905 #ifdef HAVE_WINDOW_SYSTEM
1906 /* Do not check display_hourglass_p here, because
1907 Fcommand_execute could change it, but we should cancel
1908 hourglass cursor anyway.
1909 But don't cancel the hourglass within a macro
1910 just because a command in the macro finishes. */
1911 if (NILP (Vexecuting_kbd_macro))
1912 unbind_to (scount, Qnil);
1913 #endif
1916 directly_done: ;
1917 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1919 /* Note that the value cell will never directly contain nil
1920 if the symbol is a local variable. */
1921 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1922 safe_run_hooks (Qpost_command_hook);
1924 /* If displaying a message, resize the echo area window to fit
1925 that message's size exactly. */
1926 if (!NILP (echo_area_buffer[0]))
1927 resize_echo_area_exactly ();
1929 if (!NILP (Vdeferred_action_list))
1930 safe_run_hooks (Qdeferred_action_function);
1932 /* If there is a prefix argument,
1933 1) We don't want Vlast_command to be ``universal-argument''
1934 (that would be dumb), so don't set Vlast_command,
1935 2) we want to leave echoing on so that the prefix will be
1936 echoed as part of this key sequence, so don't call
1937 cancel_echoing, and
1938 3) we want to leave this_command_key_count non-zero, so that
1939 read_char will realize that it is re-reading a character, and
1940 not echo it a second time.
1942 If the command didn't actually create a prefix arg,
1943 but is merely a frame event that is transparent to prefix args,
1944 then the above doesn't apply. */
1945 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_event))
1947 current_kboard->Vlast_command = Vthis_command;
1948 current_kboard->Vreal_last_command = real_this_command;
1949 if (!CONSP (last_command_event))
1950 current_kboard->Vlast_repeatable_command = real_this_command;
1951 cancel_echoing ();
1952 this_command_key_count = 0;
1953 this_command_key_count_reset = 0;
1954 this_single_command_key_start = 0;
1957 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1959 /* In Emacs 22, setting transient-mark-mode to `only' was a
1960 way of turning it on for just one command. This usage is
1961 obsolete, but support it anyway. */
1962 if (EQ (Vtransient_mark_mode, Qidentity))
1963 Vtransient_mark_mode = Qnil;
1964 else if (EQ (Vtransient_mark_mode, Qonly))
1965 Vtransient_mark_mode = Qidentity;
1967 if (!NILP (Vdeactivate_mark))
1968 call0 (Qdeactivate_mark);
1969 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1970 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1973 finalize:
1975 if (current_buffer == prev_buffer
1976 && last_point_position != PT
1977 && NILP (Vdisable_point_adjustment)
1978 && NILP (Vglobal_disable_point_adjustment)
1979 && !already_adjusted)
1980 adjust_point_for_property (last_point_position, MODIFF != prev_modiff);
1982 /* Install chars successfully executed in kbd macro. */
1984 if (!NILP (current_kboard->defining_kbd_macro)
1985 && NILP (current_kboard->Vprefix_arg))
1986 finalize_kbd_macro_chars ();
1987 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1988 if (!was_locked)
1989 any_kboard_state ();
1990 #endif
1994 extern Lisp_Object Qcomposition, Qdisplay;
1996 /* Adjust point to a boundary of a region that has such a property
1997 that should be treated intangible. For the moment, we check
1998 `composition', `display' and `invisible' properties.
1999 LAST_PT is the last position of point. */
2001 extern Lisp_Object Qafter_string, Qbefore_string;
2002 extern Lisp_Object get_pos_property P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
2004 static void
2005 adjust_point_for_property (last_pt, modified)
2006 int last_pt;
2007 int modified;
2009 EMACS_INT beg, end;
2010 Lisp_Object val, overlay, tmp;
2011 int check_composition = 1, check_display = 1, check_invisible = 1;
2012 int orig_pt = PT;
2014 /* FIXME: cycling is probably not necessary because these properties
2015 can't be usefully combined anyway. */
2016 while (check_composition || check_display || check_invisible)
2018 /* FIXME: check `intangible'. */
2019 if (check_composition
2020 && PT > BEGV && PT < ZV
2021 && (beg = composition_adjust_point (last_pt)) != PT)
2023 SET_PT (beg);
2024 check_display = check_invisible = 1;
2026 check_composition = 0;
2027 if (check_display
2028 && PT > BEGV && PT < ZV
2029 && !NILP (val = get_char_property_and_overlay
2030 (make_number (PT), Qdisplay, Qnil, &overlay))
2031 && display_prop_intangible_p (val)
2032 && (!OVERLAYP (overlay)
2033 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
2034 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
2035 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
2036 && (beg < PT /* && end > PT <- It's always the case. */
2037 || (beg <= PT && STRINGP (val) && SCHARS (val) == 0)))
2039 xassert (end > PT);
2040 SET_PT (PT < last_pt
2041 ? (STRINGP (val) && SCHARS (val) == 0 ? beg - 1 : beg)
2042 : end);
2043 check_composition = check_invisible = 1;
2045 check_display = 0;
2046 if (check_invisible && PT > BEGV && PT < ZV)
2048 int inv, ellipsis = 0;
2049 beg = end = PT;
2051 /* Find boundaries `beg' and `end' of the invisible area, if any. */
2052 while (end < ZV
2053 #if 0
2054 /* FIXME: We should stop if we find a spot between
2055 two runs of `invisible' where inserted text would
2056 be visible. This is important when we have two
2057 invisible boundaries that enclose an area: if the
2058 area is empty, we need this test in order to make
2059 it possible to place point in the middle rather
2060 than skip both boundaries. However, this code
2061 also stops anywhere in a non-sticky text-property,
2062 which breaks (e.g.) Org mode. */
2063 && (val = get_pos_property (make_number (end),
2064 Qinvisible, Qnil),
2065 TEXT_PROP_MEANS_INVISIBLE (val))
2066 #endif
2067 && !NILP (val = get_char_property_and_overlay
2068 (make_number (end), Qinvisible, Qnil, &overlay))
2069 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
2071 ellipsis = ellipsis || inv > 1
2072 || (OVERLAYP (overlay)
2073 && (!NILP (Foverlay_get (overlay, Qafter_string))
2074 || !NILP (Foverlay_get (overlay, Qbefore_string))));
2075 tmp = Fnext_single_char_property_change
2076 (make_number (end), Qinvisible, Qnil, Qnil);
2077 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
2079 while (beg > BEGV
2080 #if 0
2081 && (val = get_pos_property (make_number (beg),
2082 Qinvisible, Qnil),
2083 TEXT_PROP_MEANS_INVISIBLE (val))
2084 #endif
2085 && !NILP (val = get_char_property_and_overlay
2086 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
2087 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
2089 ellipsis = ellipsis || inv > 1
2090 || (OVERLAYP (overlay)
2091 && (!NILP (Foverlay_get (overlay, Qafter_string))
2092 || !NILP (Foverlay_get (overlay, Qbefore_string))));
2093 tmp = Fprevious_single_char_property_change
2094 (make_number (beg), Qinvisible, Qnil, Qnil);
2095 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
2098 /* Move away from the inside area. */
2099 if (beg < PT && end > PT)
2101 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
2102 /* We haven't moved yet (so we don't need to fear
2103 infinite-looping) and we were outside the range
2104 before (so either end of the range still corresponds
2105 to a move in the right direction): pretend we moved
2106 less than we actually did, so that we still have
2107 more freedom below in choosing which end of the range
2108 to go to. */
2109 ? (orig_pt = -1, PT < last_pt ? end : beg)
2110 /* We either have moved already or the last point
2111 was already in the range: we don't get to choose
2112 which end of the range we have to go to. */
2113 : (PT < last_pt ? beg : end));
2114 check_composition = check_display = 1;
2116 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
2117 the point to something other than its argument, due to
2118 point-motion hooks, intangibility, etc. */
2119 xassert (PT == beg || PT == end);
2120 #endif
2122 /* Pretend the area doesn't exist if the buffer is not
2123 modified. */
2124 if (!modified && !ellipsis && beg < end)
2126 if (last_pt == beg && PT == end && end < ZV)
2127 (check_composition = check_display = 1, SET_PT (end + 1));
2128 else if (last_pt == end && PT == beg && beg > BEGV)
2129 (check_composition = check_display = 1, SET_PT (beg - 1));
2130 else if (PT == ((PT < last_pt) ? beg : end))
2131 /* We've already moved as far as we can. Trying to go
2132 to the other end would mean moving backwards and thus
2133 could lead to an infinite loop. */
2135 else if (val = get_pos_property (make_number (PT),
2136 Qinvisible, Qnil),
2137 TEXT_PROP_MEANS_INVISIBLE (val)
2138 && (val = get_pos_property
2139 (make_number (PT == beg ? end : beg),
2140 Qinvisible, Qnil),
2141 !TEXT_PROP_MEANS_INVISIBLE (val)))
2142 (check_composition = check_display = 1,
2143 SET_PT (PT == beg ? end : beg));
2146 check_invisible = 0;
2150 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2152 static Lisp_Object
2153 safe_run_hooks_1 (hook)
2154 Lisp_Object hook;
2156 if (NILP (Vrun_hooks))
2157 return Qnil;
2158 return call1 (Vrun_hooks, Vinhibit_quit);
2161 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2163 static Lisp_Object
2164 safe_run_hooks_error (data)
2165 Lisp_Object data;
2167 Lisp_Object args[3];
2168 args[0] = build_string ("Error in %s: %s");
2169 args[1] = Vinhibit_quit;
2170 args[2] = data;
2171 Fmessage (3, args);
2172 return Fset (Vinhibit_quit, Qnil);
2175 /* If we get an error while running the hook, cause the hook variable
2176 to be nil. Also inhibit quits, so that C-g won't cause the hook
2177 to mysteriously evaporate. */
2179 void
2180 safe_run_hooks (hook)
2181 Lisp_Object hook;
2183 int count = SPECPDL_INDEX ();
2184 specbind (Qinhibit_quit, hook);
2186 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
2188 unbind_to (count, Qnil);
2192 /* Number of seconds between polling for input. This is a Lisp
2193 variable that can be bound. */
2195 EMACS_INT polling_period;
2197 /* Nonzero means polling for input is temporarily suppressed. */
2199 int poll_suppress_count;
2201 /* Asynchronous timer for polling. */
2203 struct atimer *poll_timer;
2206 #ifdef POLL_FOR_INPUT
2208 /* Poll for input, so that we catch a C-g if it comes in. This
2209 function is called from x_make_frame_visible, see comment
2210 there. */
2212 void
2213 poll_for_input_1 ()
2215 /* Tell ns_read_socket() it is being called asynchronously so it can avoid
2216 doing anything dangerous. */
2217 #ifdef HAVE_NS
2218 ++handling_signal;
2219 #endif
2220 if (interrupt_input_blocked == 0
2221 && !waiting_for_input)
2222 read_avail_input (0);
2223 #ifdef HAVE_NS
2224 --handling_signal;
2225 #endif
2228 /* Timer callback function for poll_timer. TIMER is equal to
2229 poll_timer. */
2231 void
2232 poll_for_input (timer)
2233 struct atimer *timer;
2235 if (poll_suppress_count == 0)
2237 #ifdef SYNC_INPUT
2238 interrupt_input_pending = 1;
2239 pending_signals = 1;
2240 #else
2241 poll_for_input_1 ();
2242 #endif
2246 #endif /* POLL_FOR_INPUT */
2248 /* Begin signals to poll for input, if they are appropriate.
2249 This function is called unconditionally from various places. */
2251 void
2252 start_polling ()
2254 #ifdef POLL_FOR_INPUT
2255 /* XXX This condition was (read_socket_hook && !interrupt_input),
2256 but read_socket_hook is not global anymore. Let's pretend that
2257 it's always set. */
2258 if (!interrupt_input)
2260 /* Turn alarm handling on unconditionally. It might have
2261 been turned off in process.c. */
2262 turn_on_atimers (1);
2264 /* If poll timer doesn't exist, are we need one with
2265 a different interval, start a new one. */
2266 if (poll_timer == NULL
2267 || EMACS_SECS (poll_timer->interval) != polling_period)
2269 EMACS_TIME interval;
2271 if (poll_timer)
2272 cancel_atimer (poll_timer);
2274 EMACS_SET_SECS_USECS (interval, polling_period, 0);
2275 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2276 poll_for_input, NULL);
2279 /* Let the timer's callback function poll for input
2280 if this becomes zero. */
2281 --poll_suppress_count;
2283 #endif
2286 /* Nonzero if we are using polling to handle input asynchronously. */
2289 input_polling_used ()
2291 #ifdef POLL_FOR_INPUT
2292 /* XXX This condition was (read_socket_hook && !interrupt_input),
2293 but read_socket_hook is not global anymore. Let's pretend that
2294 it's always set. */
2295 return !interrupt_input;
2296 #else
2297 return 0;
2298 #endif
2301 /* Turn off polling. */
2303 void
2304 stop_polling ()
2306 #ifdef POLL_FOR_INPUT
2307 /* XXX This condition was (read_socket_hook && !interrupt_input),
2308 but read_socket_hook is not global anymore. Let's pretend that
2309 it's always set. */
2310 if (!interrupt_input)
2311 ++poll_suppress_count;
2312 #endif
2315 /* Set the value of poll_suppress_count to COUNT
2316 and start or stop polling accordingly. */
2318 void
2319 set_poll_suppress_count (count)
2320 int count;
2322 #ifdef POLL_FOR_INPUT
2323 if (count == 0 && poll_suppress_count != 0)
2325 poll_suppress_count = 1;
2326 start_polling ();
2328 else if (count != 0 && poll_suppress_count == 0)
2330 stop_polling ();
2332 poll_suppress_count = count;
2333 #endif
2336 /* Bind polling_period to a value at least N.
2337 But don't decrease it. */
2339 void
2340 bind_polling_period (n)
2341 int n;
2343 #ifdef POLL_FOR_INPUT
2344 int new = polling_period;
2346 if (n > new)
2347 new = n;
2349 stop_other_atimers (poll_timer);
2350 stop_polling ();
2351 specbind (Qpolling_period, make_number (new));
2352 /* Start a new alarm with the new period. */
2353 start_polling ();
2354 #endif
2357 /* Apply the control modifier to CHARACTER. */
2360 make_ctrl_char (c)
2361 int c;
2363 /* Save the upper bits here. */
2364 int upper = c & ~0177;
2366 if (! ASCII_BYTE_P (c))
2367 return c |= ctrl_modifier;
2369 c &= 0177;
2371 /* Everything in the columns containing the upper-case letters
2372 denotes a control character. */
2373 if (c >= 0100 && c < 0140)
2375 int oc = c;
2376 c &= ~0140;
2377 /* Set the shift modifier for a control char
2378 made from a shifted letter. But only for letters! */
2379 if (oc >= 'A' && oc <= 'Z')
2380 c |= shift_modifier;
2383 /* The lower-case letters denote control characters too. */
2384 else if (c >= 'a' && c <= 'z')
2385 c &= ~0140;
2387 /* Include the bits for control and shift
2388 only if the basic ASCII code can't indicate them. */
2389 else if (c >= ' ')
2390 c |= ctrl_modifier;
2392 /* Replace the high bits. */
2393 c |= (upper & ~ctrl_modifier);
2395 return c;
2398 /* Display the help-echo property of the character after the mouse pointer.
2399 Either show it in the echo area, or call show-help-function to display
2400 it by other means (maybe in a tooltip).
2402 If HELP is nil, that means clear the previous help echo.
2404 If HELP is a string, display that string. If HELP is a function,
2405 call it with OBJECT and POS as arguments; the function should
2406 return a help string or nil for none. For all other types of HELP,
2407 evaluate it to obtain a string.
2409 WINDOW is the window in which the help was generated, if any.
2410 It is nil if not in a window.
2412 If OBJECT is a buffer, POS is the position in the buffer where the
2413 `help-echo' text property was found.
2415 If OBJECT is an overlay, that overlay has a `help-echo' property,
2416 and POS is the position in the overlay's buffer under the mouse.
2418 If OBJECT is a string (an overlay string or a string displayed with
2419 the `display' property). POS is the position in that string under
2420 the mouse.
2422 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2423 echo overwrites a keystroke echo currently displayed in the echo
2424 area.
2426 Note: this function may only be called with HELP nil or a string
2427 from X code running asynchronously. */
2429 void
2430 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2431 Lisp_Object help, window, object, pos;
2432 int ok_to_overwrite_keystroke_echo;
2434 if (!NILP (help) && !STRINGP (help))
2436 if (FUNCTIONP (help))
2438 Lisp_Object args[4];
2439 args[0] = help;
2440 args[1] = window;
2441 args[2] = object;
2442 args[3] = pos;
2443 help = safe_call (4, args);
2445 else
2446 help = safe_eval (help);
2448 if (!STRINGP (help))
2449 return;
2452 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
2453 if (!noninteractive && STRINGP (help))
2455 /* The mouse-fixup-help-message Lisp function can call
2456 mouse_position_hook, which resets the mouse_moved flags.
2457 This causes trouble if we are trying to read a mouse motion
2458 event (i.e., if we are inside a `track-mouse' form), so we
2459 restore the mouse_moved flag. */
2460 FRAME_PTR f = NILP (do_mouse_tracking) ? NULL : some_mouse_moved ();
2461 help = call1 (Qmouse_fixup_help_message, help);
2462 if (f)
2463 f->mouse_moved = 1;
2465 #endif
2467 if (STRINGP (help) || NILP (help))
2469 if (!NILP (Vshow_help_function))
2470 call1 (Vshow_help_function, help);
2471 help_echo_showing_p = STRINGP (help);
2477 /* Input of single characters from keyboard */
2479 Lisp_Object print_help ();
2480 static Lisp_Object kbd_buffer_get_event ();
2481 static void record_char ();
2483 static Lisp_Object help_form_saved_window_configs;
2484 static Lisp_Object
2485 read_char_help_form_unwind (Lisp_Object arg)
2487 Lisp_Object window_config = XCAR (help_form_saved_window_configs);
2488 help_form_saved_window_configs = XCDR (help_form_saved_window_configs);
2489 if (!NILP (window_config))
2490 Fset_window_configuration (window_config);
2491 return Qnil;
2494 #define STOP_POLLING \
2495 do { if (! polling_stopped_here) stop_polling (); \
2496 polling_stopped_here = 1; } while (0)
2498 #define RESUME_POLLING \
2499 do { if (polling_stopped_here) start_polling (); \
2500 polling_stopped_here = 0; } while (0)
2502 /* read a character from the keyboard; call the redisplay if needed */
2503 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2504 -1 means do not do redisplay, but do do autosaving.
2505 1 means do both. */
2507 /* The arguments MAPS and NMAPS are for menu prompting.
2508 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2510 PREV_EVENT is the previous input event, or nil if we are reading
2511 the first event of a key sequence (or not reading a key sequence).
2512 If PREV_EVENT is t, that is a "magic" value that says
2513 not to run input methods, but in other respects to act as if
2514 not reading a key sequence.
2516 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2517 if we used a mouse menu to read the input, or zero otherwise. If
2518 USED_MOUSE_MENU is null, we don't dereference it.
2520 Value is -2 when we find input on another keyboard. A second call
2521 to read_char will read it.
2523 If END_TIME is non-null, it is a pointer to an EMACS_TIME
2524 specifying the maximum time to wait until. If no input arrives by
2525 that time, stop waiting and return nil.
2527 Value is t if we showed a menu and the user rejected it. */
2529 Lisp_Object
2530 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu, end_time)
2531 int commandflag;
2532 int nmaps;
2533 Lisp_Object *maps;
2534 Lisp_Object prev_event;
2535 int *used_mouse_menu;
2536 EMACS_TIME *end_time;
2538 volatile Lisp_Object c;
2539 int count, jmpcount;
2540 jmp_buf local_getcjmp;
2541 jmp_buf save_jump;
2542 volatile int key_already_recorded = 0;
2543 Lisp_Object tem, save;
2544 volatile Lisp_Object previous_echo_area_message;
2545 volatile Lisp_Object also_record;
2546 volatile int reread;
2547 struct gcpro gcpro1, gcpro2;
2548 int polling_stopped_here = 0;
2549 struct kboard *orig_kboard = current_kboard;
2551 also_record = Qnil;
2553 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2554 before_command_key_count = this_command_key_count;
2555 before_command_echo_length = echo_length ();
2556 #endif
2557 c = Qnil;
2558 previous_echo_area_message = Qnil;
2560 GCPRO2 (c, previous_echo_area_message);
2562 retry:
2564 reread = 0;
2565 if (CONSP (Vunread_post_input_method_events))
2567 c = XCAR (Vunread_post_input_method_events);
2568 Vunread_post_input_method_events
2569 = XCDR (Vunread_post_input_method_events);
2571 /* Undo what read_char_x_menu_prompt did when it unread
2572 additional keys returned by Fx_popup_menu. */
2573 if (CONSP (c)
2574 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2575 && NILP (XCDR (c)))
2576 c = XCAR (c);
2578 reread = 1;
2579 goto reread_first;
2582 if (unread_command_char != -1)
2584 XSETINT (c, unread_command_char);
2585 unread_command_char = -1;
2587 reread = 1;
2588 goto reread_first;
2591 if (CONSP (Vunread_command_events))
2593 int was_disabled = 0;
2595 c = XCAR (Vunread_command_events);
2596 Vunread_command_events = XCDR (Vunread_command_events);
2598 reread = 1;
2600 /* Undo what sit-for did when it unread additional keys
2601 inside universal-argument. */
2603 if (CONSP (c)
2604 && EQ (XCAR (c), Qt))
2606 reread = 0;
2607 c = XCDR (c);
2610 /* Undo what read_char_x_menu_prompt did when it unread
2611 additional keys returned by Fx_popup_menu. */
2612 if (CONSP (c)
2613 && EQ (XCDR (c), Qdisabled)
2614 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2616 was_disabled = 1;
2617 c = XCAR (c);
2620 /* If the queued event is something that used the mouse,
2621 set used_mouse_menu accordingly. */
2622 if (used_mouse_menu
2623 /* Also check was_disabled so last-nonmenu-event won't return
2624 a bad value when submenus are involved. (Bug#447) */
2625 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar) || was_disabled))
2626 *used_mouse_menu = 1;
2628 goto reread_for_input_method;
2631 if (CONSP (Vunread_input_method_events))
2633 c = XCAR (Vunread_input_method_events);
2634 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2636 /* Undo what read_char_x_menu_prompt did when it unread
2637 additional keys returned by Fx_popup_menu. */
2638 if (CONSP (c)
2639 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2640 && NILP (XCDR (c)))
2641 c = XCAR (c);
2642 reread = 1;
2643 goto reread_for_input_method;
2646 this_command_key_count_reset = 0;
2648 if (!NILP (Vexecuting_kbd_macro))
2650 /* We set this to Qmacro; since that's not a frame, nobody will
2651 try to switch frames on us, and the selected window will
2652 remain unchanged.
2654 Since this event came from a macro, it would be misleading to
2655 leave internal_last_event_frame set to wherever the last
2656 real event came from. Normally, a switch-frame event selects
2657 internal_last_event_frame after each command is read, but
2658 events read from a macro should never cause a new frame to be
2659 selected. */
2660 Vlast_event_frame = internal_last_event_frame = Qmacro;
2662 /* Exit the macro if we are at the end.
2663 Also, some things replace the macro with t
2664 to force an early exit. */
2665 if (EQ (Vexecuting_kbd_macro, Qt)
2666 || executing_kbd_macro_index >= XFASTINT (Flength (Vexecuting_kbd_macro)))
2668 XSETINT (c, -1);
2669 goto exit;
2672 c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index));
2673 if (STRINGP (Vexecuting_kbd_macro)
2674 && (XINT (c) & 0x80) && (XUINT (c) <= 0xff))
2675 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2677 executing_kbd_macro_index++;
2679 goto from_macro;
2682 if (!NILP (unread_switch_frame))
2684 c = unread_switch_frame;
2685 unread_switch_frame = Qnil;
2687 /* This event should make it into this_command_keys, and get echoed
2688 again, so we do not set `reread'. */
2689 goto reread_first;
2692 /* if redisplay was requested */
2693 if (commandflag >= 0)
2695 int echo_current = EQ (echo_message_buffer, echo_area_buffer[0]);
2697 /* If there is pending input, process any events which are not
2698 user-visible, such as X selection_request events. */
2699 if (input_pending
2700 || detect_input_pending_run_timers (0))
2701 swallow_events (0); /* may clear input_pending */
2703 /* Redisplay if no pending input. */
2704 while (!input_pending)
2706 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2707 redisplay_preserve_echo_area (5);
2708 else
2709 redisplay ();
2711 if (!input_pending)
2712 /* Normal case: no input arrived during redisplay. */
2713 break;
2715 /* Input arrived and pre-empted redisplay.
2716 Process any events which are not user-visible. */
2717 swallow_events (0);
2718 /* If that cleared input_pending, try again to redisplay. */
2721 /* Prevent the redisplay we just did
2722 from messing up echoing of the input after the prompt. */
2723 if (commandflag == 0 && echo_current)
2724 echo_message_buffer = echo_area_buffer[0];
2728 /* Message turns off echoing unless more keystrokes turn it on again.
2730 The code in 20.x for the condition was
2732 1. echo_area_glyphs && *echo_area_glyphs
2733 2. && echo_area_glyphs != current_kboard->echobuf
2734 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2736 (1) means there's a current message displayed
2738 (2) means it's not the message from echoing from the current
2739 kboard.
2741 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2742 is set to a non-null value. This is done in read_char and it is
2743 set to echo_area_glyphs after a call to echo_char. That means
2744 ok_to_echo_at_next_pause is either null or
2745 current_kboard->echobuf with the appropriate current_kboard at
2746 that time.
2748 So, condition (3) means in clear text ok_to_echo_at_next_pause
2749 must be either null, or the current message isn't from echoing at
2750 all, or it's from echoing from a different kboard than the
2751 current one. */
2753 if (/* There currently is something in the echo area. */
2754 !NILP (echo_area_buffer[0])
2755 && (/* And it's either not from echoing. */
2756 !EQ (echo_area_buffer[0], echo_message_buffer)
2757 /* Or it's an echo from a different kboard. */
2758 || echo_kboard != current_kboard
2759 /* Or we explicitly allow overwriting whatever there is. */
2760 || ok_to_echo_at_next_pause == NULL))
2761 cancel_echoing ();
2762 else
2763 echo_dash ();
2765 /* Try reading a character via menu prompting in the minibuf.
2766 Try this before the sit-for, because the sit-for
2767 would do the wrong thing if we are supposed to do
2768 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2769 after a mouse event so don't try a minibuf menu. */
2770 c = Qnil;
2771 if (nmaps > 0 && INTERACTIVE
2772 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2773 /* Don't bring up a menu if we already have another event. */
2774 && NILP (Vunread_command_events)
2775 && unread_command_char < 0
2776 && !detect_input_pending_run_timers (0))
2778 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2780 if (INTEGERP (c) && XINT (c) == -2)
2781 return c; /* wrong_kboard_jmpbuf */
2783 if (! NILP (c))
2785 key_already_recorded = 1;
2786 goto non_reread_1;
2790 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2791 We will do that below, temporarily for short sections of code,
2792 when appropriate. local_getcjmp must be in effect
2793 around any call to sit_for or kbd_buffer_get_event;
2794 it *must not* be in effect when we call redisplay. */
2796 jmpcount = SPECPDL_INDEX ();
2797 if (_setjmp (local_getcjmp))
2799 /* Handle quits while reading the keyboard. */
2800 /* We must have saved the outer value of getcjmp here,
2801 so restore it now. */
2802 restore_getcjmp (save_jump);
2803 unbind_to (jmpcount, Qnil);
2804 XSETINT (c, quit_char);
2805 internal_last_event_frame = selected_frame;
2806 Vlast_event_frame = internal_last_event_frame;
2807 /* If we report the quit char as an event,
2808 don't do so more than once. */
2809 if (!NILP (Vinhibit_quit))
2810 Vquit_flag = Qnil;
2813 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2814 if (kb != current_kboard)
2816 Lisp_Object link = kb->kbd_queue;
2817 /* We shouldn't get here if we were in single-kboard mode! */
2818 if (single_kboard)
2819 abort ();
2820 if (CONSP (link))
2822 while (CONSP (XCDR (link)))
2823 link = XCDR (link);
2824 if (!NILP (XCDR (link)))
2825 abort ();
2827 if (!CONSP (link))
2828 kb->kbd_queue = Fcons (c, Qnil);
2829 else
2830 XSETCDR (link, Fcons (c, Qnil));
2831 kb->kbd_queue_has_data = 1;
2832 current_kboard = kb;
2833 /* This is going to exit from read_char
2834 so we had better get rid of this frame's stuff. */
2835 UNGCPRO;
2836 return make_number (-2); /* wrong_kboard_jmpbuf */
2839 goto non_reread;
2842 /* Start idle timers if no time limit is supplied. We don't do it
2843 if a time limit is supplied to avoid an infinite recursion in the
2844 situation where an idle timer calls `sit-for'. */
2846 if (!end_time)
2847 timer_start_idle ();
2849 /* If in middle of key sequence and minibuffer not active,
2850 start echoing if enough time elapses. */
2852 if (minibuf_level == 0
2853 && !end_time
2854 && !current_kboard->immediate_echo
2855 && this_command_key_count > 0
2856 && ! noninteractive
2857 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2858 && NILP (Fzerop (Vecho_keystrokes))
2859 && (/* No message. */
2860 NILP (echo_area_buffer[0])
2861 /* Or empty message. */
2862 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2863 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2864 /* Or already echoing from same kboard. */
2865 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2866 /* Or not echoing before and echoing allowed. */
2867 || (!echo_kboard && ok_to_echo_at_next_pause)))
2869 /* After a mouse event, start echoing right away.
2870 This is because we are probably about to display a menu,
2871 and we don't want to delay before doing so. */
2872 if (EVENT_HAS_PARAMETERS (prev_event))
2873 echo_now ();
2874 else
2876 Lisp_Object tem0;
2878 save_getcjmp (save_jump);
2879 restore_getcjmp (local_getcjmp);
2880 tem0 = sit_for (Vecho_keystrokes, 1, 1);
2881 restore_getcjmp (save_jump);
2882 if (EQ (tem0, Qt)
2883 && ! CONSP (Vunread_command_events))
2884 echo_now ();
2888 /* Maybe auto save due to number of keystrokes. */
2890 if (commandflag != 0
2891 && auto_save_interval > 0
2892 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2893 && !detect_input_pending_run_timers (0))
2895 Fdo_auto_save (Qnil, Qnil);
2896 /* Hooks can actually change some buffers in auto save. */
2897 redisplay ();
2900 /* Try reading using an X menu.
2901 This is never confused with reading using the minibuf
2902 because the recursive call of read_char in read_char_minibuf_menu_prompt
2903 does not pass on any keymaps. */
2905 if (nmaps > 0 && INTERACTIVE
2906 && !NILP (prev_event)
2907 && EVENT_HAS_PARAMETERS (prev_event)
2908 && !EQ (XCAR (prev_event), Qmenu_bar)
2909 && !EQ (XCAR (prev_event), Qtool_bar)
2910 /* Don't bring up a menu if we already have another event. */
2911 && NILP (Vunread_command_events)
2912 && unread_command_char < 0)
2914 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2916 /* Now that we have read an event, Emacs is not idle. */
2917 if (!end_time)
2918 timer_stop_idle ();
2920 goto exit;
2923 /* Maybe autosave and/or garbage collect due to idleness. */
2925 if (INTERACTIVE && NILP (c))
2927 int delay_level, buffer_size;
2929 /* Slow down auto saves logarithmically in size of current buffer,
2930 and garbage collect while we're at it. */
2931 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2932 last_non_minibuf_size = Z - BEG;
2933 buffer_size = (last_non_minibuf_size >> 8) + 1;
2934 delay_level = 0;
2935 while (buffer_size > 64)
2936 delay_level++, buffer_size -= buffer_size >> 2;
2937 if (delay_level < 4) delay_level = 4;
2938 /* delay_level is 4 for files under around 50k, 7 at 100k,
2939 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2941 /* Auto save if enough time goes by without input. */
2942 if (commandflag != 0
2943 && num_nonmacro_input_events > last_auto_save
2944 && INTEGERP (Vauto_save_timeout)
2945 && XINT (Vauto_save_timeout) > 0)
2947 Lisp_Object tem0;
2948 int timeout = delay_level * XFASTINT (Vauto_save_timeout) / 4;
2950 save_getcjmp (save_jump);
2951 restore_getcjmp (local_getcjmp);
2952 tem0 = sit_for (make_number (timeout), 1, 1);
2953 restore_getcjmp (save_jump);
2955 if (EQ (tem0, Qt)
2956 && ! CONSP (Vunread_command_events))
2958 Fdo_auto_save (Qnil, Qnil);
2960 /* If we have auto-saved and there is still no input
2961 available, garbage collect if there has been enough
2962 consing going on to make it worthwhile. */
2963 if (!detect_input_pending_run_timers (0)
2964 && consing_since_gc > gc_cons_threshold / 2)
2965 Fgarbage_collect ();
2967 redisplay ();
2972 /* Notify the caller if an autosave hook, or a timer, sentinel or
2973 filter in the sit_for calls above have changed the current
2974 kboard. This could happen if they use the minibuffer or start a
2975 recursive edit, like the fancy splash screen in server.el's
2976 filter. If this longjmp wasn't here, read_key_sequence would
2977 interpret the next key sequence using the wrong translation
2978 tables and function keymaps. */
2979 if (NILP (c) && current_kboard != orig_kboard)
2981 UNGCPRO;
2982 return make_number (-2); /* wrong_kboard_jmpbuf */
2985 /* If this has become non-nil here, it has been set by a timer
2986 or sentinel or filter. */
2987 if (CONSP (Vunread_command_events))
2989 c = XCAR (Vunread_command_events);
2990 Vunread_command_events = XCDR (Vunread_command_events);
2993 /* Read something from current KBOARD's side queue, if possible. */
2995 if (NILP (c))
2997 if (current_kboard->kbd_queue_has_data)
2999 if (!CONSP (current_kboard->kbd_queue))
3000 abort ();
3001 c = XCAR (current_kboard->kbd_queue);
3002 current_kboard->kbd_queue
3003 = XCDR (current_kboard->kbd_queue);
3004 if (NILP (current_kboard->kbd_queue))
3005 current_kboard->kbd_queue_has_data = 0;
3006 input_pending = readable_events (0);
3007 if (EVENT_HAS_PARAMETERS (c)
3008 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
3009 internal_last_event_frame = XCAR (XCDR (c));
3010 Vlast_event_frame = internal_last_event_frame;
3014 /* If current_kboard's side queue is empty check the other kboards.
3015 If one of them has data that we have not yet seen here,
3016 switch to it and process the data waiting for it.
3018 Note: if the events queued up for another kboard
3019 have already been seen here, and therefore are not a complete command,
3020 the kbd_queue_has_data field is 0, so we skip that kboard here.
3021 That's to avoid an infinite loop switching between kboards here. */
3022 if (NILP (c) && !single_kboard)
3024 KBOARD *kb;
3025 for (kb = all_kboards; kb; kb = kb->next_kboard)
3026 if (kb->kbd_queue_has_data)
3028 current_kboard = kb;
3029 /* This is going to exit from read_char
3030 so we had better get rid of this frame's stuff. */
3031 UNGCPRO;
3032 return make_number (-2); /* wrong_kboard_jmpbuf */
3036 wrong_kboard:
3038 STOP_POLLING;
3040 /* Finally, we read from the main queue,
3041 and if that gives us something we can't use yet, we put it on the
3042 appropriate side queue and try again. */
3044 if (NILP (c))
3046 KBOARD *kb;
3048 if (end_time)
3050 EMACS_TIME now;
3051 EMACS_GET_TIME (now);
3052 if (EMACS_TIME_GE (now, *end_time))
3053 goto exit;
3056 /* Actually read a character, waiting if necessary. */
3057 save_getcjmp (save_jump);
3058 restore_getcjmp (local_getcjmp);
3059 if (!end_time)
3060 timer_start_idle ();
3061 c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time);
3062 restore_getcjmp (save_jump);
3064 if (! NILP (c) && (kb != current_kboard))
3066 Lisp_Object link = kb->kbd_queue;
3067 if (CONSP (link))
3069 while (CONSP (XCDR (link)))
3070 link = XCDR (link);
3071 if (!NILP (XCDR (link)))
3072 abort ();
3074 if (!CONSP (link))
3075 kb->kbd_queue = Fcons (c, Qnil);
3076 else
3077 XSETCDR (link, Fcons (c, Qnil));
3078 kb->kbd_queue_has_data = 1;
3079 c = Qnil;
3080 if (single_kboard)
3081 goto wrong_kboard;
3082 current_kboard = kb;
3083 /* This is going to exit from read_char
3084 so we had better get rid of this frame's stuff. */
3085 UNGCPRO;
3086 return make_number (-2);
3090 /* Terminate Emacs in batch mode if at eof. */
3091 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
3092 Fkill_emacs (make_number (1));
3094 if (INTEGERP (c))
3096 /* Add in any extra modifiers, where appropriate. */
3097 if ((extra_keyboard_modifiers & CHAR_CTL)
3098 || ((extra_keyboard_modifiers & 0177) < ' '
3099 && (extra_keyboard_modifiers & 0177) != 0))
3100 XSETINT (c, make_ctrl_char (XINT (c)));
3102 /* Transfer any other modifier bits directly from
3103 extra_keyboard_modifiers to c. Ignore the actual character code
3104 in the low 16 bits of extra_keyboard_modifiers. */
3105 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
3108 non_reread:
3110 if (!end_time)
3111 timer_stop_idle ();
3112 RESUME_POLLING;
3114 if (NILP (c))
3116 if (commandflag >= 0
3117 && !input_pending && !detect_input_pending_run_timers (0))
3118 redisplay ();
3120 goto wrong_kboard;
3123 non_reread_1:
3125 /* Buffer switch events are only for internal wakeups
3126 so don't show them to the user.
3127 Also, don't record a key if we already did. */
3128 if (BUFFERP (c) || key_already_recorded)
3129 goto exit;
3131 /* Process special events within read_char
3132 and loop around to read another event. */
3133 save = Vquit_flag;
3134 Vquit_flag = Qnil;
3135 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
3136 Vquit_flag = save;
3138 if (!NILP (tem))
3140 #if 0 /* This shouldn't be necessary anymore. --lorentey */
3141 int was_locked = single_kboard;
3142 int count = SPECPDL_INDEX ();
3143 record_single_kboard_state ();
3144 #endif
3146 last_input_event = c;
3147 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_event), Qt);
3149 if (CONSP (c) && EQ (XCAR (c), Qselect_window) && !end_time)
3150 /* We stopped being idle for this event; undo that. This
3151 prevents automatic window selection (under
3152 mouse_autoselect_window from acting as a real input event, for
3153 example banishing the mouse under mouse-avoidance-mode. */
3154 timer_resume_idle ();
3156 #if 0 /* This shouldn't be necessary anymore. --lorentey */
3157 /* Resume allowing input from any kboard, if that was true before. */
3158 if (!was_locked)
3159 any_kboard_state ();
3160 unbind_to (count, Qnil);
3161 #endif
3163 goto retry;
3166 /* Handle things that only apply to characters. */
3167 if (INTEGERP (c))
3169 /* If kbd_buffer_get_event gave us an EOF, return that. */
3170 if (XINT (c) == -1)
3171 goto exit;
3173 if ((STRINGP (current_kboard->Vkeyboard_translate_table)
3174 && SCHARS (current_kboard->Vkeyboard_translate_table) > (unsigned) XFASTINT (c))
3175 || (VECTORP (current_kboard->Vkeyboard_translate_table)
3176 && XVECTOR (current_kboard->Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
3177 || (CHAR_TABLE_P (current_kboard->Vkeyboard_translate_table)
3178 && CHARACTERP (c)))
3180 Lisp_Object d;
3181 d = Faref (current_kboard->Vkeyboard_translate_table, c);
3182 /* nil in keyboard-translate-table means no translation. */
3183 if (!NILP (d))
3184 c = d;
3188 /* If this event is a mouse click in the menu bar,
3189 return just menu-bar for now. Modify the mouse click event
3190 so we won't do this twice, then queue it up. */
3191 if (EVENT_HAS_PARAMETERS (c)
3192 && CONSP (XCDR (c))
3193 && CONSP (EVENT_START (c))
3194 && CONSP (XCDR (EVENT_START (c))))
3196 Lisp_Object posn;
3198 posn = POSN_POSN (EVENT_START (c));
3199 /* Handle menu-bar events:
3200 insert the dummy prefix event `menu-bar'. */
3201 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
3203 /* Change menu-bar to (menu-bar) as the event "position". */
3204 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
3206 also_record = c;
3207 Vunread_command_events = Fcons (c, Vunread_command_events);
3208 c = posn;
3212 /* Store these characters into recent_keys, the dribble file if any,
3213 and the keyboard macro being defined, if any. */
3214 record_char (c);
3215 if (! NILP (also_record))
3216 record_char (also_record);
3218 /* Wipe the echo area.
3219 But first, if we are about to use an input method,
3220 save the echo area contents for it to refer to. */
3221 if (INTEGERP (c)
3222 && ! NILP (Vinput_method_function)
3223 && (unsigned) XINT (c) >= ' '
3224 && (unsigned) XINT (c) != 127
3225 && (unsigned) XINT (c) < 256)
3227 previous_echo_area_message = Fcurrent_message ();
3228 Vinput_method_previous_message = previous_echo_area_message;
3231 /* Now wipe the echo area, except for help events which do their
3232 own stuff with the echo area. */
3233 if (!CONSP (c)
3234 || (!(EQ (Qhelp_echo, XCAR (c)))
3235 && !(EQ (Qswitch_frame, XCAR (c)))))
3237 if (!NILP (echo_area_buffer[0]))
3238 safe_run_hooks (Qecho_area_clear_hook);
3239 clear_message (1, 0);
3242 reread_for_input_method:
3243 from_macro:
3244 /* Pass this to the input method, if appropriate. */
3245 if (INTEGERP (c)
3246 && ! NILP (Vinput_method_function)
3247 /* Don't run the input method within a key sequence,
3248 after the first event of the key sequence. */
3249 && NILP (prev_event)
3250 && (unsigned) XINT (c) >= ' '
3251 && (unsigned) XINT (c) != 127
3252 && (unsigned) XINT (c) < 256)
3254 Lisp_Object keys;
3255 int key_count, key_count_reset;
3256 struct gcpro gcpro1;
3257 int count = SPECPDL_INDEX ();
3259 /* Save the echo status. */
3260 int saved_immediate_echo = current_kboard->immediate_echo;
3261 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
3262 Lisp_Object saved_echo_string = current_kboard->echo_string;
3263 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
3265 #if 0
3266 if (before_command_restore_flag)
3268 this_command_key_count = before_command_key_count_1;
3269 if (this_command_key_count < this_single_command_key_start)
3270 this_single_command_key_start = this_command_key_count;
3271 echo_truncate (before_command_echo_length_1);
3272 before_command_restore_flag = 0;
3274 #endif
3276 /* Save the this_command_keys status. */
3277 key_count = this_command_key_count;
3278 key_count_reset = this_command_key_count_reset;
3280 if (key_count > 0)
3281 keys = Fcopy_sequence (this_command_keys);
3282 else
3283 keys = Qnil;
3284 GCPRO1 (keys);
3286 /* Clear out this_command_keys. */
3287 this_command_key_count = 0;
3288 this_command_key_count_reset = 0;
3290 /* Now wipe the echo area. */
3291 if (!NILP (echo_area_buffer[0]))
3292 safe_run_hooks (Qecho_area_clear_hook);
3293 clear_message (1, 0);
3294 echo_truncate (0);
3296 /* If we are not reading a key sequence,
3297 never use the echo area. */
3298 if (maps == 0)
3300 specbind (Qinput_method_use_echo_area, Qt);
3303 /* Call the input method. */
3304 tem = call1 (Vinput_method_function, c);
3306 tem = unbind_to (count, tem);
3308 /* Restore the saved echoing state
3309 and this_command_keys state. */
3310 this_command_key_count = key_count;
3311 this_command_key_count_reset = key_count_reset;
3312 if (key_count > 0)
3313 this_command_keys = keys;
3315 cancel_echoing ();
3316 ok_to_echo_at_next_pause = saved_ok_to_echo;
3317 current_kboard->echo_string = saved_echo_string;
3318 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3319 if (saved_immediate_echo)
3320 echo_now ();
3322 UNGCPRO;
3324 /* The input method can return no events. */
3325 if (! CONSP (tem))
3327 /* Bring back the previous message, if any. */
3328 if (! NILP (previous_echo_area_message))
3329 message_with_string ("%s", previous_echo_area_message, 0);
3330 goto retry;
3332 /* It returned one event or more. */
3333 c = XCAR (tem);
3334 Vunread_post_input_method_events
3335 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3338 reread_first:
3340 /* Display help if not echoing. */
3341 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3343 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3344 Lisp_Object help, object, position, window, tem;
3346 tem = Fcdr (XCDR (c));
3347 help = Fcar (tem);
3348 tem = Fcdr (tem);
3349 window = Fcar (tem);
3350 tem = Fcdr (tem);
3351 object = Fcar (tem);
3352 tem = Fcdr (tem);
3353 position = Fcar (tem);
3355 show_help_echo (help, window, object, position, 0);
3357 /* We stopped being idle for this event; undo that. */
3358 if (!end_time)
3359 timer_resume_idle ();
3360 goto retry;
3363 if ((! reread || this_command_key_count == 0
3364 || this_command_key_count_reset)
3365 && !end_time)
3368 /* Don't echo mouse motion events. */
3369 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3370 && NILP (Fzerop (Vecho_keystrokes))
3371 && ! (EVENT_HAS_PARAMETERS (c)
3372 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3374 echo_char (c);
3375 if (! NILP (also_record))
3376 echo_char (also_record);
3377 /* Once we reread a character, echoing can happen
3378 the next time we pause to read a new one. */
3379 ok_to_echo_at_next_pause = current_kboard;
3382 /* Record this character as part of the current key. */
3383 add_command_key (c);
3384 if (! NILP (also_record))
3385 add_command_key (also_record);
3388 last_input_event = c;
3389 num_input_events++;
3391 /* Process the help character specially if enabled */
3392 if (!NILP (Vhelp_form) && help_char_p (c))
3394 Lisp_Object tem0;
3395 count = SPECPDL_INDEX ();
3397 help_form_saved_window_configs
3398 = Fcons (Fcurrent_window_configuration (Qnil),
3399 help_form_saved_window_configs);
3400 record_unwind_protect (read_char_help_form_unwind, Qnil);
3402 tem0 = Feval (Vhelp_form);
3403 if (STRINGP (tem0))
3404 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3406 cancel_echoing ();
3409 c = read_char (0, 0, 0, Qnil, 0, NULL);
3410 if (EVENT_HAS_PARAMETERS (c)
3411 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_click))
3412 XSETCAR (help_form_saved_window_configs, Qnil);
3414 while (BUFFERP (c));
3415 /* Remove the help from the frame */
3416 unbind_to (count, Qnil);
3418 redisplay ();
3419 if (EQ (c, make_number (040)))
3421 cancel_echoing ();
3423 c = read_char (0, 0, 0, Qnil, 0, NULL);
3424 while (BUFFERP (c));
3428 exit:
3429 RESUME_POLLING;
3430 RETURN_UNGCPRO (c);
3433 /* Record a key that came from a mouse menu.
3434 Record it for echoing, for this-command-keys, and so on. */
3436 static void
3437 record_menu_key (c)
3438 Lisp_Object c;
3440 /* Wipe the echo area. */
3441 clear_message (1, 0);
3443 record_char (c);
3445 #if 0
3446 before_command_key_count = this_command_key_count;
3447 before_command_echo_length = echo_length ();
3448 #endif
3450 /* Don't echo mouse motion events. */
3451 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3452 && NILP (Fzerop (Vecho_keystrokes)))
3454 echo_char (c);
3456 /* Once we reread a character, echoing can happen
3457 the next time we pause to read a new one. */
3458 ok_to_echo_at_next_pause = 0;
3461 /* Record this character as part of the current key. */
3462 add_command_key (c);
3464 /* Re-reading in the middle of a command */
3465 last_input_event = c;
3466 num_input_events++;
3469 /* Return 1 if should recognize C as "the help character". */
3472 help_char_p (c)
3473 Lisp_Object c;
3475 Lisp_Object tail;
3477 if (EQ (c, Vhelp_char))
3478 return 1;
3479 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3480 if (EQ (c, XCAR (tail)))
3481 return 1;
3482 return 0;
3485 /* Record the input event C in various ways. */
3487 static void
3488 record_char (c)
3489 Lisp_Object c;
3491 int recorded = 0;
3493 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3495 /* To avoid filling recent_keys with help-echo and mouse-movement
3496 events, we filter out repeated help-echo events, only store the
3497 first and last in a series of mouse-movement events, and don't
3498 store repeated help-echo events which are only separated by
3499 mouse-movement events. */
3501 Lisp_Object ev1, ev2, ev3;
3502 int ix1, ix2, ix3;
3504 if ((ix1 = recent_keys_index - 1) < 0)
3505 ix1 = NUM_RECENT_KEYS - 1;
3506 ev1 = AREF (recent_keys, ix1);
3508 if ((ix2 = ix1 - 1) < 0)
3509 ix2 = NUM_RECENT_KEYS - 1;
3510 ev2 = AREF (recent_keys, ix2);
3512 if ((ix3 = ix2 - 1) < 0)
3513 ix3 = NUM_RECENT_KEYS - 1;
3514 ev3 = AREF (recent_keys, ix3);
3516 if (EQ (XCAR (c), Qhelp_echo))
3518 /* Don't record `help-echo' in recent_keys unless it shows some help
3519 message, and a different help than the previously recorded
3520 event. */
3521 Lisp_Object help, last_help;
3523 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3524 if (!STRINGP (help))
3525 recorded = 1;
3526 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3527 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3528 recorded = 1;
3529 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3530 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3531 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3532 recorded = -1;
3533 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3534 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3535 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3536 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3537 recorded = -2;
3539 else if (EQ (XCAR (c), Qmouse_movement))
3541 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3542 So additional mouse movement events replace the last element. */
3543 Lisp_Object last_window, window;
3545 window = Fcar_safe (Fcar_safe (XCDR (c)));
3546 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3547 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3548 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3549 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3551 ASET (recent_keys, ix1, c);
3552 recorded = 1;
3556 else
3557 store_kbd_macro_char (c);
3559 if (!recorded)
3561 total_keys++;
3562 ASET (recent_keys, recent_keys_index, c);
3563 if (++recent_keys_index >= NUM_RECENT_KEYS)
3564 recent_keys_index = 0;
3566 else if (recorded < 0)
3568 /* We need to remove one or two events from recent_keys.
3569 To do this, we simply put nil at those events and move the
3570 recent_keys_index backwards over those events. Usually,
3571 users will never see those nil events, as they will be
3572 overwritten by the command keys entered to see recent_keys
3573 (e.g. C-h l). */
3575 while (recorded++ < 0 && total_keys > 0)
3577 if (total_keys < NUM_RECENT_KEYS)
3578 total_keys--;
3579 if (--recent_keys_index < 0)
3580 recent_keys_index = NUM_RECENT_KEYS - 1;
3581 ASET (recent_keys, recent_keys_index, Qnil);
3585 num_nonmacro_input_events++;
3587 /* Write c to the dribble file. If c is a lispy event, write
3588 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3589 If you, dear reader, have a better idea, you've got the source. :-) */
3590 if (dribble)
3592 BLOCK_INPUT;
3593 if (INTEGERP (c))
3595 if (XUINT (c) < 0x100)
3596 putc (XINT (c), dribble);
3597 else
3598 fprintf (dribble, " 0x%x", (int) XUINT (c));
3600 else
3602 Lisp_Object dribblee;
3604 /* If it's a structured event, take the event header. */
3605 dribblee = EVENT_HEAD (c);
3607 if (SYMBOLP (dribblee))
3609 putc ('<', dribble);
3610 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3611 SBYTES (SYMBOL_NAME (dribblee)),
3612 dribble);
3613 putc ('>', dribble);
3617 fflush (dribble);
3618 UNBLOCK_INPUT;
3622 Lisp_Object
3623 print_help (object)
3624 Lisp_Object object;
3626 struct buffer *old = current_buffer;
3627 Fprinc (object, Qnil);
3628 set_buffer_internal (XBUFFER (Vstandard_output));
3629 call0 (intern ("help-mode"));
3630 set_buffer_internal (old);
3631 return Qnil;
3634 /* Copy out or in the info on where C-g should throw to.
3635 This is used when running Lisp code from within get_char,
3636 in case get_char is called recursively.
3637 See read_process_output. */
3639 static void
3640 save_getcjmp (temp)
3641 jmp_buf temp;
3643 bcopy (getcjmp, temp, sizeof getcjmp);
3646 static void
3647 restore_getcjmp (temp)
3648 jmp_buf temp;
3650 bcopy (temp, getcjmp, sizeof getcjmp);
3653 /* Low level keyboard/mouse input.
3654 kbd_buffer_store_event places events in kbd_buffer, and
3655 kbd_buffer_get_event retrieves them. */
3657 /* Return true if there are any events in the queue that read-char
3658 would return. If this returns false, a read-char would block. */
3659 static int
3660 readable_events (flags)
3661 int flags;
3663 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3664 timer_check (1);
3666 /* If the buffer contains only FOCUS_IN_EVENT events, and
3667 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3668 if (kbd_fetch_ptr != kbd_store_ptr)
3670 if (flags & (READABLE_EVENTS_FILTER_EVENTS
3671 #ifdef USE_TOOLKIT_SCROLL_BARS
3672 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3673 #endif
3676 struct input_event *event;
3678 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3679 ? kbd_fetch_ptr
3680 : kbd_buffer);
3684 if (!(
3685 #ifdef USE_TOOLKIT_SCROLL_BARS
3686 (flags & READABLE_EVENTS_FILTER_EVENTS) &&
3687 #endif
3688 event->kind == FOCUS_IN_EVENT)
3689 #ifdef USE_TOOLKIT_SCROLL_BARS
3690 && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3691 && event->kind == SCROLL_BAR_CLICK_EVENT
3692 && event->part == scroll_bar_handle
3693 && event->modifiers == 0)
3694 #endif
3696 return 1;
3697 event++;
3698 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3699 event = kbd_buffer;
3701 while (event != kbd_store_ptr);
3703 else
3704 return 1;
3707 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
3708 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3709 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3710 return 1;
3711 #endif
3712 if (single_kboard)
3714 if (current_kboard->kbd_queue_has_data)
3715 return 1;
3717 else
3719 KBOARD *kb;
3720 for (kb = all_kboards; kb; kb = kb->next_kboard)
3721 if (kb->kbd_queue_has_data)
3722 return 1;
3724 return 0;
3727 /* Set this for debugging, to have a way to get out */
3728 int stop_character;
3730 static KBOARD *
3731 event_to_kboard (event)
3732 struct input_event *event;
3734 Lisp_Object frame;
3735 frame = event->frame_or_window;
3736 if (CONSP (frame))
3737 frame = XCAR (frame);
3738 else if (WINDOWP (frame))
3739 frame = WINDOW_FRAME (XWINDOW (frame));
3741 /* There are still some events that don't set this field.
3742 For now, just ignore the problem.
3743 Also ignore dead frames here. */
3744 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3745 return 0;
3746 else
3747 return FRAME_KBOARD (XFRAME (frame));
3751 Lisp_Object Vthrow_on_input;
3753 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3755 void
3756 kbd_buffer_store_event (event)
3757 register struct input_event *event;
3759 kbd_buffer_store_event_hold (event, 0);
3762 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3764 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3765 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3766 Else, if EVENT is a quit event, store the quit event
3767 in HOLD_QUIT, and return (thus ignoring further events).
3769 This is used in read_avail_input to postpone the processing
3770 of the quit event until all subsequent input events have been
3771 parsed (and discarded).
3774 void
3775 kbd_buffer_store_event_hold (event, hold_quit)
3776 register struct input_event *event;
3777 struct input_event *hold_quit;
3779 if (event->kind == NO_EVENT)
3780 abort ();
3782 if (hold_quit && hold_quit->kind != NO_EVENT)
3783 return;
3785 if (event->kind == ASCII_KEYSTROKE_EVENT)
3787 register int c = event->code & 0377;
3789 if (event->modifiers & ctrl_modifier)
3790 c = make_ctrl_char (c);
3792 c |= (event->modifiers
3793 & (meta_modifier | alt_modifier
3794 | hyper_modifier | super_modifier));
3796 if (c == quit_char)
3798 KBOARD *kb = FRAME_KBOARD (XFRAME (event->frame_or_window));
3799 struct input_event *sp;
3801 if (single_kboard && kb != current_kboard)
3803 kb->kbd_queue
3804 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3805 Fcons (make_number (c), Qnil));
3806 kb->kbd_queue_has_data = 1;
3807 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3809 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3810 sp = kbd_buffer;
3812 if (event_to_kboard (sp) == kb)
3814 sp->kind = NO_EVENT;
3815 sp->frame_or_window = Qnil;
3816 sp->arg = Qnil;
3819 return;
3822 if (hold_quit)
3824 bcopy (event, (char *) hold_quit, sizeof (*event));
3825 return;
3828 /* If this results in a quit_char being returned to Emacs as
3829 input, set Vlast_event_frame properly. If this doesn't
3830 get returned to Emacs as an event, the next event read
3831 will set Vlast_event_frame again, so this is safe to do. */
3833 Lisp_Object focus;
3835 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3836 if (NILP (focus))
3837 focus = event->frame_or_window;
3838 internal_last_event_frame = focus;
3839 Vlast_event_frame = focus;
3842 last_event_timestamp = event->timestamp;
3843 handle_interrupt ();
3844 return;
3847 if (c && c == stop_character)
3849 sys_suspend ();
3850 return;
3853 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3854 Just ignore the second one. */
3855 else if (event->kind == BUFFER_SWITCH_EVENT
3856 && kbd_fetch_ptr != kbd_store_ptr
3857 && ((kbd_store_ptr == kbd_buffer
3858 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3859 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3860 return;
3862 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3863 kbd_store_ptr = kbd_buffer;
3865 /* Don't let the very last slot in the buffer become full,
3866 since that would make the two pointers equal,
3867 and that is indistinguishable from an empty buffer.
3868 Discard the event if it would fill the last slot. */
3869 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3871 *kbd_store_ptr = *event;
3872 ++kbd_store_ptr;
3875 /* If we're inside while-no-input, and this event qualifies
3876 as input, set quit-flag to cause an interrupt. */
3877 if (!NILP (Vthrow_on_input)
3878 && event->kind != FOCUS_IN_EVENT
3879 && event->kind != HELP_EVENT
3880 && event->kind != DEICONIFY_EVENT)
3882 Vquit_flag = Vthrow_on_input;
3883 /* If we're inside a function that wants immediate quits,
3884 do it now. */
3885 if (immediate_quit && NILP (Vinhibit_quit))
3887 immediate_quit = 0;
3888 sigfree ();
3889 QUIT;
3895 /* Put an input event back in the head of the event queue. */
3897 void
3898 kbd_buffer_unget_event (event)
3899 register struct input_event *event;
3901 if (kbd_fetch_ptr == kbd_buffer)
3902 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3904 /* Don't let the very last slot in the buffer become full, */
3905 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3907 --kbd_fetch_ptr;
3908 *kbd_fetch_ptr = *event;
3913 /* Generate HELP_EVENT input_events in BUFP which has room for
3914 SIZE events. If there's not enough room in BUFP, ignore this
3915 event.
3917 HELP is the help form.
3919 FRAME is the frame on which the help is generated. OBJECT is the
3920 Lisp object where the help was found (a buffer, a string, an
3921 overlay, or nil if neither from a string nor from a buffer. POS is
3922 the position within OBJECT where the help was found.
3924 Value is the number of input_events generated. */
3926 void
3927 gen_help_event (help, frame, window, object, pos)
3928 Lisp_Object help, frame, object, window;
3929 int pos;
3931 struct input_event event;
3933 EVENT_INIT (event);
3935 event.kind = HELP_EVENT;
3936 event.frame_or_window = frame;
3937 event.arg = object;
3938 event.x = WINDOWP (window) ? window : frame;
3939 event.y = help;
3940 event.code = pos;
3941 kbd_buffer_store_event (&event);
3945 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3947 void
3948 kbd_buffer_store_help_event (frame, help)
3949 Lisp_Object frame, help;
3951 struct input_event event;
3953 event.kind = HELP_EVENT;
3954 event.frame_or_window = frame;
3955 event.arg = Qnil;
3956 event.x = Qnil;
3957 event.y = help;
3958 event.code = 0;
3959 kbd_buffer_store_event (&event);
3963 /* Discard any mouse events in the event buffer by setting them to
3964 NO_EVENT. */
3965 void
3966 discard_mouse_events ()
3968 struct input_event *sp;
3969 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3971 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3972 sp = kbd_buffer;
3974 if (sp->kind == MOUSE_CLICK_EVENT
3975 || sp->kind == WHEEL_EVENT
3976 || sp->kind == HORIZ_WHEEL_EVENT
3977 #ifdef HAVE_GPM
3978 || sp->kind == GPM_CLICK_EVENT
3979 #endif
3980 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3982 sp->kind = NO_EVENT;
3988 /* Return non-zero if there are any real events waiting in the event
3989 buffer, not counting `NO_EVENT's.
3991 If DISCARD is non-zero, discard NO_EVENT events at the front of
3992 the input queue, possibly leaving the input queue empty if there
3993 are no real input events. */
3996 kbd_buffer_events_waiting (discard)
3997 int discard;
3999 struct input_event *sp;
4001 for (sp = kbd_fetch_ptr;
4002 sp != kbd_store_ptr && sp->kind == NO_EVENT;
4003 ++sp)
4005 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
4006 sp = kbd_buffer;
4009 if (discard)
4010 kbd_fetch_ptr = sp;
4012 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
4016 /* Clear input event EVENT. */
4018 static INLINE void
4019 clear_event (event)
4020 struct input_event *event;
4022 event->kind = NO_EVENT;
4026 /* Read one event from the event buffer, waiting if necessary.
4027 The value is a Lisp object representing the event.
4028 The value is nil for an event that should be ignored,
4029 or that was handled here.
4030 We always read and discard one event. */
4032 static Lisp_Object
4033 kbd_buffer_get_event (kbp, used_mouse_menu, end_time)
4034 KBOARD **kbp;
4035 int *used_mouse_menu;
4036 EMACS_TIME *end_time;
4038 register int c;
4039 Lisp_Object obj;
4041 if (noninteractive
4042 /* In case we are running as a daemon, only do this before
4043 detaching from the terminal. */
4044 || (IS_DAEMON && daemon_pipe[1] >= 0))
4046 c = getchar ();
4047 XSETINT (obj, c);
4048 *kbp = current_kboard;
4049 return obj;
4052 /* Wait until there is input available. */
4053 for (;;)
4055 /* Break loop if there's an unread command event. Needed in
4056 moused window autoselection which uses a timer to insert such
4057 events. */
4058 if (CONSP (Vunread_command_events))
4059 break;
4061 if (kbd_fetch_ptr != kbd_store_ptr)
4062 break;
4063 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
4064 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4065 break;
4066 #endif
4068 /* If the quit flag is set, then read_char will return
4069 quit_char, so that counts as "available input." */
4070 if (!NILP (Vquit_flag))
4071 quit_throw_to_read_char ();
4073 /* One way or another, wait until input is available; then, if
4074 interrupt handlers have not read it, read it now. */
4076 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4077 #ifdef SIGIO
4078 gobble_input (0);
4079 #endif /* SIGIO */
4080 if (kbd_fetch_ptr != kbd_store_ptr)
4081 break;
4082 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
4083 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4084 break;
4085 #endif
4086 if (end_time)
4088 EMACS_TIME duration;
4089 EMACS_GET_TIME (duration);
4090 if (EMACS_TIME_GE (duration, *end_time))
4091 return Qnil; /* finished waiting */
4092 else
4094 EMACS_SUB_TIME (duration, *end_time, duration);
4095 wait_reading_process_output (EMACS_SECS (duration),
4096 EMACS_USECS (duration),
4097 -1, 1, Qnil, NULL, 0);
4100 else
4101 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0);
4103 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
4104 /* Pass 1 for EXPECT since we just waited to have input. */
4105 read_avail_input (1);
4108 if (CONSP (Vunread_command_events))
4110 Lisp_Object first;
4111 first = XCAR (Vunread_command_events);
4112 Vunread_command_events = XCDR (Vunread_command_events);
4113 *kbp = current_kboard;
4114 return first;
4117 /* At this point, we know that there is a readable event available
4118 somewhere. If the event queue is empty, then there must be a
4119 mouse movement enabled and available. */
4120 if (kbd_fetch_ptr != kbd_store_ptr)
4122 struct input_event *event;
4124 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4125 ? kbd_fetch_ptr
4126 : kbd_buffer);
4128 last_event_timestamp = event->timestamp;
4130 *kbp = event_to_kboard (event);
4131 if (*kbp == 0)
4132 *kbp = current_kboard; /* Better than returning null ptr? */
4134 obj = Qnil;
4136 /* These two kinds of events get special handling
4137 and don't actually appear to the command loop.
4138 We return nil for them. */
4139 if (event->kind == SELECTION_REQUEST_EVENT
4140 || event->kind == SELECTION_CLEAR_EVENT)
4142 #ifdef HAVE_X11
4143 struct input_event copy;
4145 /* Remove it from the buffer before processing it,
4146 since otherwise swallow_events will see it
4147 and process it again. */
4148 copy = *event;
4149 kbd_fetch_ptr = event + 1;
4150 input_pending = readable_events (0);
4151 x_handle_selection_event (&copy);
4152 #else
4153 /* We're getting selection request events, but we don't have
4154 a window system. */
4155 abort ();
4156 #endif
4159 #if defined (HAVE_NS)
4160 else if (event->kind == NS_TEXT_EVENT)
4162 if (event->code == KEY_NS_PUT_WORKING_TEXT)
4163 obj = Fcons (intern ("ns-put-working-text"), Qnil);
4164 else
4165 obj = Fcons (intern ("ns-unput-working-text"), Qnil);
4166 kbd_fetch_ptr = event + 1;
4167 if (used_mouse_menu)
4168 *used_mouse_menu = 1;
4170 #endif
4172 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
4173 || defined (HAVE_NS)
4174 else if (event->kind == DELETE_WINDOW_EVENT)
4176 /* Make an event (delete-frame (FRAME)). */
4177 obj = Fcons (event->frame_or_window, Qnil);
4178 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
4179 kbd_fetch_ptr = event + 1;
4181 #endif
4182 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
4183 || defined (HAVE_NS)
4184 else if (event->kind == ICONIFY_EVENT)
4186 /* Make an event (iconify-frame (FRAME)). */
4187 obj = Fcons (event->frame_or_window, Qnil);
4188 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
4189 kbd_fetch_ptr = event + 1;
4191 else if (event->kind == DEICONIFY_EVENT)
4193 /* Make an event (make-frame-visible (FRAME)). */
4194 obj = Fcons (event->frame_or_window, Qnil);
4195 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
4196 kbd_fetch_ptr = event + 1;
4198 #endif
4199 else if (event->kind == BUFFER_SWITCH_EVENT)
4201 /* The value doesn't matter here; only the type is tested. */
4202 XSETBUFFER (obj, current_buffer);
4203 kbd_fetch_ptr = event + 1;
4205 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4206 || defined(HAVE_NS) || defined (USE_GTK)
4207 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
4209 kbd_fetch_ptr = event + 1;
4210 input_pending = readable_events (0);
4211 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
4212 x_activate_menubar (XFRAME (event->frame_or_window));
4214 #endif
4215 #if defined (WINDOWSNT)
4216 else if (event->kind == LANGUAGE_CHANGE_EVENT)
4218 /* Make an event (language-change (FRAME CHARSET LCID)). */
4219 obj = Fcons (event->frame_or_window, Qnil);
4220 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
4221 kbd_fetch_ptr = event + 1;
4223 #endif
4224 else if (event->kind == SAVE_SESSION_EVENT)
4226 obj = Fcons (Qsave_session, Qnil);
4227 kbd_fetch_ptr = event + 1;
4229 /* Just discard these, by returning nil.
4230 With MULTI_KBOARD, these events are used as placeholders
4231 when we need to randomly delete events from the queue.
4232 (They shouldn't otherwise be found in the buffer,
4233 but on some machines it appears they do show up
4234 even without MULTI_KBOARD.) */
4235 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4236 mouse events during a popup-menu call. */
4237 else if (event->kind == NO_EVENT)
4238 kbd_fetch_ptr = event + 1;
4239 else if (event->kind == HELP_EVENT)
4241 Lisp_Object object, position, help, frame, window;
4243 frame = event->frame_or_window;
4244 object = event->arg;
4245 position = make_number (event->code);
4246 window = event->x;
4247 help = event->y;
4248 clear_event (event);
4250 kbd_fetch_ptr = event + 1;
4251 if (!WINDOWP (window))
4252 window = Qnil;
4253 obj = Fcons (Qhelp_echo,
4254 list5 (frame, help, window, object, position));
4256 else if (event->kind == FOCUS_IN_EVENT)
4258 /* Notification of a FocusIn event. The frame receiving the
4259 focus is in event->frame_or_window. Generate a
4260 switch-frame event if necessary. */
4261 Lisp_Object frame, focus;
4263 frame = event->frame_or_window;
4264 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4265 if (FRAMEP (focus))
4266 frame = focus;
4268 if (!EQ (frame, internal_last_event_frame)
4269 && !EQ (frame, selected_frame))
4270 obj = make_lispy_switch_frame (frame);
4271 internal_last_event_frame = frame;
4272 kbd_fetch_ptr = event + 1;
4274 #ifdef HAVE_DBUS
4275 else if (event->kind == DBUS_EVENT)
4277 obj = make_lispy_event (event);
4278 kbd_fetch_ptr = event + 1;
4280 #endif
4281 else
4283 /* If this event is on a different frame, return a switch-frame this
4284 time, and leave the event in the queue for next time. */
4285 Lisp_Object frame;
4286 Lisp_Object focus;
4288 frame = event->frame_or_window;
4289 if (CONSP (frame))
4290 frame = XCAR (frame);
4291 else if (WINDOWP (frame))
4292 frame = WINDOW_FRAME (XWINDOW (frame));
4294 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4295 if (! NILP (focus))
4296 frame = focus;
4298 if (! EQ (frame, internal_last_event_frame)
4299 && !EQ (frame, selected_frame))
4300 obj = make_lispy_switch_frame (frame);
4301 internal_last_event_frame = frame;
4303 /* If we didn't decide to make a switch-frame event, go ahead
4304 and build a real event from the queue entry. */
4306 if (NILP (obj))
4308 obj = make_lispy_event (event);
4310 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4311 || defined(HAVE_NS) || defined (USE_GTK)
4312 /* If this was a menu selection, then set the flag to inhibit
4313 writing to last_nonmenu_event. Don't do this if the event
4314 we're returning is (menu-bar), though; that indicates the
4315 beginning of the menu sequence, and we might as well leave
4316 that as the `event with parameters' for this selection. */
4317 if (used_mouse_menu
4318 && !EQ (event->frame_or_window, event->arg)
4319 && (event->kind == MENU_BAR_EVENT
4320 || event->kind == TOOL_BAR_EVENT))
4321 *used_mouse_menu = 1;
4322 #endif
4323 #ifdef HAVE_NS
4324 /* certain system events are non-key events */
4325 if (used_mouse_menu
4326 && event->kind == NS_NONKEY_EVENT)
4327 *used_mouse_menu = 1;
4328 #endif
4330 /* Wipe out this event, to catch bugs. */
4331 clear_event (event);
4332 kbd_fetch_ptr = event + 1;
4336 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
4337 /* Try generating a mouse motion event. */
4338 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4340 FRAME_PTR f = some_mouse_moved ();
4341 Lisp_Object bar_window;
4342 enum scroll_bar_part part;
4343 Lisp_Object x, y;
4344 unsigned long time;
4346 *kbp = current_kboard;
4347 /* Note that this uses F to determine which terminal to look at.
4348 If there is no valid info, it does not store anything
4349 so x remains nil. */
4350 x = Qnil;
4352 /* XXX Can f or mouse_position_hook be NULL here? */
4353 if (f && FRAME_TERMINAL (f)->mouse_position_hook)
4354 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, 0, &bar_window,
4355 &part, &x, &y, &time);
4357 obj = Qnil;
4359 /* Decide if we should generate a switch-frame event. Don't
4360 generate switch-frame events for motion outside of all Emacs
4361 frames. */
4362 if (!NILP (x) && f)
4364 Lisp_Object frame;
4366 frame = FRAME_FOCUS_FRAME (f);
4367 if (NILP (frame))
4368 XSETFRAME (frame, f);
4370 if (! EQ (frame, internal_last_event_frame)
4371 && !EQ (frame, selected_frame))
4372 obj = make_lispy_switch_frame (frame);
4373 internal_last_event_frame = frame;
4376 /* If we didn't decide to make a switch-frame event, go ahead and
4377 return a mouse-motion event. */
4378 if (!NILP (x) && NILP (obj))
4379 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4381 #endif /* HAVE_MOUSE || HAVE GPM */
4382 else
4383 /* We were promised by the above while loop that there was
4384 something for us to read! */
4385 abort ();
4387 input_pending = readable_events (0);
4389 Vlast_event_frame = internal_last_event_frame;
4391 return (obj);
4394 /* Process any events that are not user-visible,
4395 then return, without reading any user-visible events. */
4397 void
4398 swallow_events (do_display)
4399 int do_display;
4401 int old_timers_run;
4403 while (kbd_fetch_ptr != kbd_store_ptr)
4405 struct input_event *event;
4407 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4408 ? kbd_fetch_ptr
4409 : kbd_buffer);
4411 last_event_timestamp = event->timestamp;
4413 /* These two kinds of events get special handling
4414 and don't actually appear to the command loop. */
4415 if (event->kind == SELECTION_REQUEST_EVENT
4416 || event->kind == SELECTION_CLEAR_EVENT)
4418 #ifdef HAVE_X11
4419 struct input_event copy;
4421 /* Remove it from the buffer before processing it,
4422 since otherwise swallow_events called recursively could see it
4423 and process it again. */
4424 copy = *event;
4425 kbd_fetch_ptr = event + 1;
4426 input_pending = readable_events (0);
4427 x_handle_selection_event (&copy);
4428 #else
4429 /* We're getting selection request events, but we don't have
4430 a window system. */
4431 abort ();
4432 #endif
4434 else
4435 break;
4438 old_timers_run = timers_run;
4439 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
4441 if (timers_run != old_timers_run && do_display)
4442 redisplay_preserve_echo_area (7);
4445 /* Record the start of when Emacs is idle,
4446 for the sake of running idle-time timers. */
4448 static void
4449 timer_start_idle ()
4451 Lisp_Object timers;
4453 /* If we are already in the idle state, do nothing. */
4454 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4455 return;
4457 EMACS_GET_TIME (timer_idleness_start_time);
4459 timer_last_idleness_start_time = timer_idleness_start_time;
4461 /* Mark all idle-time timers as once again candidates for running. */
4462 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4464 Lisp_Object timer;
4466 timer = XCAR (timers);
4468 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4469 continue;
4470 XVECTOR (timer)->contents[0] = Qnil;
4474 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4476 static void
4477 timer_stop_idle ()
4479 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4482 /* Resume idle timer from last idle start time. */
4484 static void
4485 timer_resume_idle ()
4487 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4488 return;
4490 timer_idleness_start_time = timer_last_idleness_start_time;
4493 /* This is only for debugging. */
4494 struct input_event last_timer_event;
4496 /* List of elisp functions to call, delayed because they were generated in
4497 a context where Elisp could not be safely run (e.g. redisplay, signal,
4498 ...). Each element has the form (FUN . ARGS). */
4499 Lisp_Object pending_funcalls;
4501 extern Lisp_Object Qapply;
4503 /* Check whether a timer has fired. To prevent larger problems we simply
4504 disregard elements that are not proper timers. Do not make a circular
4505 timer list for the time being.
4507 Returns the number of seconds to wait until the next timer fires. If a
4508 timer is triggering now, return zero seconds.
4509 If no timer is active, return -1 seconds.
4511 If a timer is ripe, we run it, with quitting turned off.
4513 DO_IT_NOW is now ignored. It used to mean that we should
4514 run the timer directly instead of queueing a timer-event.
4515 Now we always run timers directly. */
4517 EMACS_TIME
4518 timer_check (do_it_now)
4519 int do_it_now;
4521 EMACS_TIME nexttime;
4522 EMACS_TIME now, idleness_now;
4523 Lisp_Object timers, idle_timers, chosen_timer;
4524 struct gcpro gcpro1, gcpro2, gcpro3;
4526 EMACS_SET_SECS (nexttime, -1);
4527 EMACS_SET_USECS (nexttime, -1);
4529 /* Always consider the ordinary timers. */
4530 timers = Vtimer_list;
4531 /* Consider the idle timers only if Emacs is idle. */
4532 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4533 idle_timers = Vtimer_idle_list;
4534 else
4535 idle_timers = Qnil;
4536 chosen_timer = Qnil;
4537 GCPRO3 (timers, idle_timers, chosen_timer);
4539 /* First run the code that was delayed. */
4540 while (CONSP (pending_funcalls))
4542 Lisp_Object funcall = XCAR (pending_funcalls);
4543 pending_funcalls = XCDR (pending_funcalls);
4544 safe_call2 (Qapply, XCAR (funcall), XCDR (funcall));
4547 if (CONSP (timers) || CONSP (idle_timers))
4549 EMACS_GET_TIME (now);
4550 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4551 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4554 while (CONSP (timers) || CONSP (idle_timers))
4556 Lisp_Object *vector;
4557 Lisp_Object timer = Qnil, idle_timer = Qnil;
4558 EMACS_TIME timer_time, idle_timer_time;
4559 EMACS_TIME difference, timer_difference, idle_timer_difference;
4561 /* Skip past invalid timers and timers already handled. */
4562 if (!NILP (timers))
4564 timer = XCAR (timers);
4565 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4567 timers = XCDR (timers);
4568 continue;
4570 vector = XVECTOR (timer)->contents;
4572 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4573 || !INTEGERP (vector[3])
4574 || ! NILP (vector[0]))
4576 timers = XCDR (timers);
4577 continue;
4580 if (!NILP (idle_timers))
4582 timer = XCAR (idle_timers);
4583 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4585 idle_timers = XCDR (idle_timers);
4586 continue;
4588 vector = XVECTOR (timer)->contents;
4590 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4591 || !INTEGERP (vector[3])
4592 || ! NILP (vector[0]))
4594 idle_timers = XCDR (idle_timers);
4595 continue;
4599 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4600 based on the next ordinary timer.
4601 TIMER_DIFFERENCE is the distance in time from NOW to when
4602 this timer becomes ripe (negative if it's already ripe). */
4603 if (!NILP (timers))
4605 timer = XCAR (timers);
4606 vector = XVECTOR (timer)->contents;
4607 EMACS_SET_SECS (timer_time,
4608 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4609 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4610 EMACS_SUB_TIME (timer_difference, timer_time, now);
4613 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4614 based on the next idle timer. */
4615 if (!NILP (idle_timers))
4617 idle_timer = XCAR (idle_timers);
4618 vector = XVECTOR (idle_timer)->contents;
4619 EMACS_SET_SECS (idle_timer_time,
4620 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4621 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4622 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4625 /* Decide which timer is the next timer,
4626 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4627 Also step down the list where we found that timer. */
4629 if (! NILP (timers) && ! NILP (idle_timers))
4631 EMACS_TIME temp;
4632 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4633 if (EMACS_TIME_NEG_P (temp))
4635 chosen_timer = timer;
4636 timers = XCDR (timers);
4637 difference = timer_difference;
4639 else
4641 chosen_timer = idle_timer;
4642 idle_timers = XCDR (idle_timers);
4643 difference = idle_timer_difference;
4646 else if (! NILP (timers))
4648 chosen_timer = timer;
4649 timers = XCDR (timers);
4650 difference = timer_difference;
4652 else
4654 chosen_timer = idle_timer;
4655 idle_timers = XCDR (idle_timers);
4656 difference = idle_timer_difference;
4658 vector = XVECTOR (chosen_timer)->contents;
4660 /* If timer is ripe, run it if it hasn't been run. */
4661 if (EMACS_TIME_NEG_P (difference)
4662 || (EMACS_SECS (difference) == 0
4663 && EMACS_USECS (difference) == 0))
4665 if (NILP (vector[0]))
4667 int count = SPECPDL_INDEX ();
4668 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4670 /* Mark the timer as triggered to prevent problems if the lisp
4671 code fails to reschedule it right. */
4672 vector[0] = Qt;
4674 specbind (Qinhibit_quit, Qt);
4676 call1 (Qtimer_event_handler, chosen_timer);
4677 Vdeactivate_mark = old_deactivate_mark;
4678 timers_run++;
4679 unbind_to (count, Qnil);
4681 /* Since we have handled the event,
4682 we don't need to tell the caller to wake up and do it. */
4685 else
4686 /* When we encounter a timer that is still waiting,
4687 return the amount of time to wait before it is ripe. */
4689 UNGCPRO;
4690 return difference;
4694 /* No timers are pending in the future. */
4695 /* Return 0 if we generated an event, and -1 if not. */
4696 UNGCPRO;
4697 return nexttime;
4700 DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0,
4701 doc: /* Return the current length of Emacs idleness, or nil.
4702 The value when Emacs is idle is a list of three integers. The first has
4703 the most significant 16 bits of the seconds, while the second has the least
4704 significant 16 bits. The third integer gives the microsecond count.
4706 The value when Emacs is not idle is nil.
4708 The microsecond count is zero on systems that do not provide
4709 resolution finer than a second. */)
4712 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4714 EMACS_TIME now, idleness_now;
4716 EMACS_GET_TIME (now);
4717 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4719 return list3 (make_number ((EMACS_SECS (idleness_now) >> 16) & 0xffff),
4720 make_number ((EMACS_SECS (idleness_now) >> 0) & 0xffff),
4721 make_number (EMACS_USECS (idleness_now)));
4724 return Qnil;
4727 /* Caches for modify_event_symbol. */
4728 static Lisp_Object accent_key_syms;
4729 static Lisp_Object func_key_syms;
4730 static Lisp_Object mouse_syms;
4731 static Lisp_Object wheel_syms;
4732 static Lisp_Object drag_n_drop_syms;
4734 /* This is a list of keysym codes for special "accent" characters.
4735 It parallels lispy_accent_keys. */
4737 static int lispy_accent_codes[] =
4739 #ifdef XK_dead_circumflex
4740 XK_dead_circumflex,
4741 #else
4743 #endif
4744 #ifdef XK_dead_grave
4745 XK_dead_grave,
4746 #else
4748 #endif
4749 #ifdef XK_dead_tilde
4750 XK_dead_tilde,
4751 #else
4753 #endif
4754 #ifdef XK_dead_diaeresis
4755 XK_dead_diaeresis,
4756 #else
4758 #endif
4759 #ifdef XK_dead_macron
4760 XK_dead_macron,
4761 #else
4763 #endif
4764 #ifdef XK_dead_degree
4765 XK_dead_degree,
4766 #else
4768 #endif
4769 #ifdef XK_dead_acute
4770 XK_dead_acute,
4771 #else
4773 #endif
4774 #ifdef XK_dead_cedilla
4775 XK_dead_cedilla,
4776 #else
4778 #endif
4779 #ifdef XK_dead_breve
4780 XK_dead_breve,
4781 #else
4783 #endif
4784 #ifdef XK_dead_ogonek
4785 XK_dead_ogonek,
4786 #else
4788 #endif
4789 #ifdef XK_dead_caron
4790 XK_dead_caron,
4791 #else
4793 #endif
4794 #ifdef XK_dead_doubleacute
4795 XK_dead_doubleacute,
4796 #else
4798 #endif
4799 #ifdef XK_dead_abovedot
4800 XK_dead_abovedot,
4801 #else
4803 #endif
4804 #ifdef XK_dead_abovering
4805 XK_dead_abovering,
4806 #else
4808 #endif
4809 #ifdef XK_dead_iota
4810 XK_dead_iota,
4811 #else
4813 #endif
4814 #ifdef XK_dead_belowdot
4815 XK_dead_belowdot,
4816 #else
4818 #endif
4819 #ifdef XK_dead_voiced_sound
4820 XK_dead_voiced_sound,
4821 #else
4823 #endif
4824 #ifdef XK_dead_semivoiced_sound
4825 XK_dead_semivoiced_sound,
4826 #else
4828 #endif
4829 #ifdef XK_dead_hook
4830 XK_dead_hook,
4831 #else
4833 #endif
4834 #ifdef XK_dead_horn
4835 XK_dead_horn,
4836 #else
4838 #endif
4841 /* This is a list of Lisp names for special "accent" characters.
4842 It parallels lispy_accent_codes. */
4844 static char *lispy_accent_keys[] =
4846 "dead-circumflex",
4847 "dead-grave",
4848 "dead-tilde",
4849 "dead-diaeresis",
4850 "dead-macron",
4851 "dead-degree",
4852 "dead-acute",
4853 "dead-cedilla",
4854 "dead-breve",
4855 "dead-ogonek",
4856 "dead-caron",
4857 "dead-doubleacute",
4858 "dead-abovedot",
4859 "dead-abovering",
4860 "dead-iota",
4861 "dead-belowdot",
4862 "dead-voiced-sound",
4863 "dead-semivoiced-sound",
4864 "dead-hook",
4865 "dead-horn",
4868 #ifdef HAVE_NTGUI
4869 #define FUNCTION_KEY_OFFSET 0x0
4871 char *lispy_function_keys[] =
4873 0, /* 0 */
4875 0, /* VK_LBUTTON 0x01 */
4876 0, /* VK_RBUTTON 0x02 */
4877 "cancel", /* VK_CANCEL 0x03 */
4878 0, /* VK_MBUTTON 0x04 */
4880 0, 0, 0, /* 0x05 .. 0x07 */
4882 "backspace", /* VK_BACK 0x08 */
4883 "tab", /* VK_TAB 0x09 */
4885 0, 0, /* 0x0A .. 0x0B */
4887 "clear", /* VK_CLEAR 0x0C */
4888 "return", /* VK_RETURN 0x0D */
4890 0, 0, /* 0x0E .. 0x0F */
4892 0, /* VK_SHIFT 0x10 */
4893 0, /* VK_CONTROL 0x11 */
4894 0, /* VK_MENU 0x12 */
4895 "pause", /* VK_PAUSE 0x13 */
4896 "capslock", /* VK_CAPITAL 0x14 */
4897 "kana", /* VK_KANA/VK_HANGUL 0x15 */
4898 0, /* 0x16 */
4899 "junja", /* VK_JUNJA 0x17 */
4900 "final", /* VK_FINAL 0x18 */
4901 "kanji", /* VK_KANJI/VK_HANJA 0x19 */
4902 0, /* 0x1A */
4903 "escape", /* VK_ESCAPE 0x1B */
4904 "convert", /* VK_CONVERT 0x1C */
4905 "non-convert", /* VK_NONCONVERT 0x1D */
4906 "accept", /* VK_ACCEPT 0x1E */
4907 "mode-change", /* VK_MODECHANGE 0x1F */
4908 0, /* VK_SPACE 0x20 */
4909 "prior", /* VK_PRIOR 0x21 */
4910 "next", /* VK_NEXT 0x22 */
4911 "end", /* VK_END 0x23 */
4912 "home", /* VK_HOME 0x24 */
4913 "left", /* VK_LEFT 0x25 */
4914 "up", /* VK_UP 0x26 */
4915 "right", /* VK_RIGHT 0x27 */
4916 "down", /* VK_DOWN 0x28 */
4917 "select", /* VK_SELECT 0x29 */
4918 "print", /* VK_PRINT 0x2A */
4919 "execute", /* VK_EXECUTE 0x2B */
4920 "snapshot", /* VK_SNAPSHOT 0x2C */
4921 "insert", /* VK_INSERT 0x2D */
4922 "delete", /* VK_DELETE 0x2E */
4923 "help", /* VK_HELP 0x2F */
4925 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4927 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4929 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4931 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4933 0, 0, 0, 0, 0, 0, 0, 0, 0,
4934 0, 0, 0, 0, 0, 0, 0, 0, 0,
4935 0, 0, 0, 0, 0, 0, 0, 0,
4937 "lwindow", /* VK_LWIN 0x5B */
4938 "rwindow", /* VK_RWIN 0x5C */
4939 "apps", /* VK_APPS 0x5D */
4940 0, /* 0x5E */
4941 "sleep",
4942 "kp-0", /* VK_NUMPAD0 0x60 */
4943 "kp-1", /* VK_NUMPAD1 0x61 */
4944 "kp-2", /* VK_NUMPAD2 0x62 */
4945 "kp-3", /* VK_NUMPAD3 0x63 */
4946 "kp-4", /* VK_NUMPAD4 0x64 */
4947 "kp-5", /* VK_NUMPAD5 0x65 */
4948 "kp-6", /* VK_NUMPAD6 0x66 */
4949 "kp-7", /* VK_NUMPAD7 0x67 */
4950 "kp-8", /* VK_NUMPAD8 0x68 */
4951 "kp-9", /* VK_NUMPAD9 0x69 */
4952 "kp-multiply", /* VK_MULTIPLY 0x6A */
4953 "kp-add", /* VK_ADD 0x6B */
4954 "kp-separator", /* VK_SEPARATOR 0x6C */
4955 "kp-subtract", /* VK_SUBTRACT 0x6D */
4956 "kp-decimal", /* VK_DECIMAL 0x6E */
4957 "kp-divide", /* VK_DIVIDE 0x6F */
4958 "f1", /* VK_F1 0x70 */
4959 "f2", /* VK_F2 0x71 */
4960 "f3", /* VK_F3 0x72 */
4961 "f4", /* VK_F4 0x73 */
4962 "f5", /* VK_F5 0x74 */
4963 "f6", /* VK_F6 0x75 */
4964 "f7", /* VK_F7 0x76 */
4965 "f8", /* VK_F8 0x77 */
4966 "f9", /* VK_F9 0x78 */
4967 "f10", /* VK_F10 0x79 */
4968 "f11", /* VK_F11 0x7A */
4969 "f12", /* VK_F12 0x7B */
4970 "f13", /* VK_F13 0x7C */
4971 "f14", /* VK_F14 0x7D */
4972 "f15", /* VK_F15 0x7E */
4973 "f16", /* VK_F16 0x7F */
4974 "f17", /* VK_F17 0x80 */
4975 "f18", /* VK_F18 0x81 */
4976 "f19", /* VK_F19 0x82 */
4977 "f20", /* VK_F20 0x83 */
4978 "f21", /* VK_F21 0x84 */
4979 "f22", /* VK_F22 0x85 */
4980 "f23", /* VK_F23 0x86 */
4981 "f24", /* VK_F24 0x87 */
4983 0, 0, 0, 0, /* 0x88 .. 0x8B */
4984 0, 0, 0, 0, /* 0x8C .. 0x8F */
4986 "kp-numlock", /* VK_NUMLOCK 0x90 */
4987 "scroll", /* VK_SCROLL 0x91 */
4988 /* Not sure where the following block comes from.
4989 Windows headers have NEC and Fujitsu specific keys in
4990 this block, but nothing generic. */
4991 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4992 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4993 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4994 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4995 "kp-end", /* VK_NUMPAD_END 0x96 */
4996 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4997 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4998 "kp-up", /* VK_NUMPAD_UP 0x99 */
4999 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
5000 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
5001 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
5002 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
5004 0, 0, /* 0x9E .. 0x9F */
5007 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
5008 * Used only as parameters to GetAsyncKeyState and GetKeyState.
5009 * No other API or message will distinguish left and right keys this way.
5010 * 0xA0 .. 0xA5
5012 0, 0, 0, 0, 0, 0,
5014 /* Multimedia keys. These are handled as WM_APPCOMMAND, which allows us
5015 to enable them selectively, and gives access to a few more functions.
5016 See lispy_multimedia_keys below. */
5017 0, 0, 0, 0, 0, 0, 0, /* 0xA6 .. 0xAC Browser */
5018 0, 0, 0, /* 0xAD .. 0xAF Volume */
5019 0, 0, 0, 0, /* 0xB0 .. 0xB3 Media */
5020 0, 0, 0, 0, /* 0xB4 .. 0xB7 Apps */
5022 /* 0xB8 .. 0xC0 "OEM" keys - all seem to be punctuation. */
5023 0, 0, 0, 0, 0, 0, 0, 0, 0,
5025 /* 0xC1 - 0xDA unallocated, 0xDB-0xDF more OEM keys */
5026 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5027 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5029 0, /* 0xE0 */
5030 "ax", /* VK_OEM_AX 0xE1 */
5031 0, /* VK_OEM_102 0xE2 */
5032 "ico-help", /* VK_ICO_HELP 0xE3 */
5033 "ico-00", /* VK_ICO_00 0xE4 */
5034 0, /* VK_PROCESSKEY 0xE5 */
5035 "ico-clear", /* VK_ICO_CLEAR 0xE6 */
5036 "packet", /* VK_PACKET 0xE7 */
5037 0, /* 0xE8 */
5038 "reset", /* VK_OEM_RESET 0xE9 */
5039 "jump", /* VK_OEM_JUMP 0xEA */
5040 "oem-pa1", /* VK_OEM_PA1 0xEB */
5041 "oem-pa2", /* VK_OEM_PA2 0xEC */
5042 "oem-pa3", /* VK_OEM_PA3 0xED */
5043 "wsctrl", /* VK_OEM_WSCTRL 0xEE */
5044 "cusel", /* VK_OEM_CUSEL 0xEF */
5045 "oem-attn", /* VK_OEM_ATTN 0xF0 */
5046 "finish", /* VK_OEM_FINISH 0xF1 */
5047 "copy", /* VK_OEM_COPY 0xF2 */
5048 "auto", /* VK_OEM_AUTO 0xF3 */
5049 "enlw", /* VK_OEM_ENLW 0xF4 */
5050 "backtab", /* VK_OEM_BACKTAB 0xF5 */
5051 "attn", /* VK_ATTN 0xF6 */
5052 "crsel", /* VK_CRSEL 0xF7 */
5053 "exsel", /* VK_EXSEL 0xF8 */
5054 "ereof", /* VK_EREOF 0xF9 */
5055 "play", /* VK_PLAY 0xFA */
5056 "zoom", /* VK_ZOOM 0xFB */
5057 "noname", /* VK_NONAME 0xFC */
5058 "pa1", /* VK_PA1 0xFD */
5059 "oem_clear", /* VK_OEM_CLEAR 0xFE */
5060 0 /* 0xFF */
5063 /* Some of these duplicate the "Media keys" on newer keyboards,
5064 but they are delivered to the application in a different way. */
5065 static char *lispy_multimedia_keys[] =
5068 "browser-back",
5069 "browser-forward",
5070 "browser-refresh",
5071 "browser-stop",
5072 "browser-search",
5073 "browser-favorites",
5074 "browser-home",
5075 "volume-mute",
5076 "volume-down",
5077 "volume-up",
5078 "media-next",
5079 "media-previous",
5080 "media-stop",
5081 "media-play-pause",
5082 "mail",
5083 "media-select",
5084 "app-1",
5085 "app-2",
5086 "bass-down",
5087 "bass-boost",
5088 "bass-up",
5089 "treble-down",
5090 "treble-up",
5091 "mic-volume-mute",
5092 "mic-volume-down",
5093 "mic-volume-up",
5094 "help",
5095 "find",
5096 "new",
5097 "open",
5098 "close",
5099 "save",
5100 "print",
5101 "undo",
5102 "redo",
5103 "copy",
5104 "cut",
5105 "paste",
5106 "mail-reply",
5107 "mail-forward",
5108 "mail-send",
5109 "spell-check",
5110 "toggle-dictate-command",
5111 "mic-toggle",
5112 "correction-list",
5113 "media-play",
5114 "media-pause",
5115 "media-record",
5116 "media-fast-forward",
5117 "media-rewind",
5118 "media-channel-up",
5119 "media-channel-down"
5122 #else /* not HAVE_NTGUI */
5124 /* This should be dealt with in XTread_socket now, and that doesn't
5125 depend on the client system having the Kana syms defined. See also
5126 the XK_kana_A case below. */
5127 #if 0
5128 #ifdef XK_kana_A
5129 static char *lispy_kana_keys[] =
5131 /* X Keysym value */
5132 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
5133 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
5134 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
5135 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
5136 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
5137 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
5138 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
5139 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
5140 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
5141 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
5142 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
5143 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
5144 "kana-i", "kana-u", "kana-e", "kana-o",
5145 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
5146 "prolongedsound", "kana-A", "kana-I", "kana-U",
5147 "kana-E", "kana-O", "kana-KA", "kana-KI",
5148 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
5149 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
5150 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
5151 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
5152 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
5153 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
5154 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
5155 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
5156 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
5157 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
5158 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
5159 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
5161 #endif /* XK_kana_A */
5162 #endif /* 0 */
5164 #define FUNCTION_KEY_OFFSET 0xff00
5166 /* You'll notice that this table is arranged to be conveniently
5167 indexed by X Windows keysym values. */
5168 static char *lispy_function_keys[] =
5170 /* X Keysym value */
5172 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
5173 "backspace", "tab", "linefeed", "clear",
5174 0, "return", 0, 0,
5175 0, 0, 0, "pause", /* 0xff10...1f */
5176 0, 0, 0, 0, 0, 0, 0, "escape",
5177 0, 0, 0, 0,
5178 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
5179 "romaji", "hiragana", "katakana", "hiragana-katakana",
5180 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
5181 "massyo", "kana-lock", "kana-shift", "eisu-shift",
5182 "eisu-toggle", /* 0xff30...3f */
5183 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5184 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
5186 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
5187 "down", "prior", "next", "end",
5188 "begin", 0, 0, 0, 0, 0, 0, 0,
5189 "select", /* 0xff60 */ /* IsMiscFunctionKey */
5190 "print",
5191 "execute",
5192 "insert",
5193 0, /* 0xff64 */
5194 "undo",
5195 "redo",
5196 "menu",
5197 "find",
5198 "cancel",
5199 "help",
5200 "break", /* 0xff6b */
5202 0, 0, 0, 0,
5203 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
5204 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
5205 "kp-space", /* 0xff80 */ /* IsKeypadKey */
5206 0, 0, 0, 0, 0, 0, 0, 0,
5207 "kp-tab", /* 0xff89 */
5208 0, 0, 0,
5209 "kp-enter", /* 0xff8d */
5210 0, 0, 0,
5211 "kp-f1", /* 0xff91 */
5212 "kp-f2",
5213 "kp-f3",
5214 "kp-f4",
5215 "kp-home", /* 0xff95 */
5216 "kp-left",
5217 "kp-up",
5218 "kp-right",
5219 "kp-down",
5220 "kp-prior", /* kp-page-up */
5221 "kp-next", /* kp-page-down */
5222 "kp-end",
5223 "kp-begin",
5224 "kp-insert",
5225 "kp-delete",
5226 0, /* 0xffa0 */
5227 0, 0, 0, 0, 0, 0, 0, 0, 0,
5228 "kp-multiply", /* 0xffaa */
5229 "kp-add",
5230 "kp-separator",
5231 "kp-subtract",
5232 "kp-decimal",
5233 "kp-divide", /* 0xffaf */
5234 "kp-0", /* 0xffb0 */
5235 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5236 0, /* 0xffba */
5237 0, 0,
5238 "kp-equal", /* 0xffbd */
5239 "f1", /* 0xffbe */ /* IsFunctionKey */
5240 "f2",
5241 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5242 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5243 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5244 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5245 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5246 0, 0, 0, 0, 0, 0, 0, 0,
5247 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5248 0, 0, 0, 0, 0, 0, 0, "delete"
5251 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5252 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5254 static char *iso_lispy_function_keys[] =
5256 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5257 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5258 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5259 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5260 "iso-lefttab", /* 0xfe20 */
5261 "iso-move-line-up", "iso-move-line-down",
5262 "iso-partial-line-up", "iso-partial-line-down",
5263 "iso-partial-space-left", "iso-partial-space-right",
5264 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5265 "iso-release-margin-left", "iso-release-margin-right",
5266 "iso-release-both-margins",
5267 "iso-fast-cursor-left", "iso-fast-cursor-right",
5268 "iso-fast-cursor-up", "iso-fast-cursor-down",
5269 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5270 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5273 #endif /* not HAVE_NTGUI */
5275 Lisp_Object Vlispy_mouse_stem;
5277 static char *lispy_wheel_names[] =
5279 "wheel-up", "wheel-down", "wheel-left", "wheel-right"
5282 /* drag-n-drop events are generated when a set of selected files are
5283 dragged from another application and dropped onto an Emacs window. */
5284 static char *lispy_drag_n_drop_names[] =
5286 "drag-n-drop"
5289 /* Scroll bar parts. */
5290 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
5291 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
5292 Lisp_Object Qtop, Qratio;
5294 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
5295 Lisp_Object *scroll_bar_parts[] = {
5296 &Qabove_handle, &Qhandle, &Qbelow_handle,
5297 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
5300 /* A vector, indexed by button number, giving the down-going location
5301 of currently depressed buttons, both scroll bar and non-scroll bar.
5303 The elements have the form
5304 (BUTTON-NUMBER MODIFIER-MASK . REST)
5305 where REST is the cdr of a position as it would be reported in the event.
5307 The make_lispy_event function stores positions here to tell the
5308 difference between click and drag events, and to store the starting
5309 location to be included in drag events. */
5311 static Lisp_Object button_down_location;
5313 /* Information about the most recent up-going button event: Which
5314 button, what location, and what time. */
5316 static int last_mouse_button;
5317 static int last_mouse_x;
5318 static int last_mouse_y;
5319 static unsigned long button_down_time;
5321 /* The maximum time between clicks to make a double-click, or Qnil to
5322 disable double-click detection, or Qt for no time limit. */
5324 Lisp_Object Vdouble_click_time;
5326 /* Maximum number of pixels the mouse may be moved between clicks
5327 to make a double-click. */
5329 EMACS_INT double_click_fuzz;
5331 /* The number of clicks in this multiple-click. */
5333 int double_click_count;
5335 /* Return position of a mouse click or wheel event */
5337 static Lisp_Object
5338 make_lispy_position (f, x, y, time)
5339 struct frame *f;
5340 Lisp_Object *x, *y;
5341 unsigned long time;
5343 Lisp_Object window;
5344 enum window_part part;
5345 Lisp_Object posn = Qnil;
5346 Lisp_Object extra_info = Qnil;
5347 int wx, wy;
5349 /* Set `window' to the window under frame pixel coordinates (x,y) */
5350 if (f)
5351 window = window_from_coordinates (f, XINT (*x), XINT (*y),
5352 &part, &wx, &wy, 0);
5353 else
5354 window = Qnil;
5356 if (WINDOWP (window))
5358 /* It's a click in window window at frame coordinates (x,y) */
5359 struct window *w = XWINDOW (window);
5360 Lisp_Object string_info = Qnil;
5361 int textpos = -1, rx = -1, ry = -1;
5362 int dx = -1, dy = -1;
5363 int width = -1, height = -1;
5364 Lisp_Object object = Qnil;
5366 /* Set event coordinates to window-relative coordinates
5367 for constructing the Lisp event below. */
5368 XSETINT (*x, wx);
5369 XSETINT (*y, wy);
5371 if (part == ON_TEXT)
5373 wx += WINDOW_LEFT_MARGIN_WIDTH (w);
5375 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5377 /* Mode line or header line. Look for a string under
5378 the mouse that may have a `local-map' property. */
5379 Lisp_Object string;
5380 int charpos;
5382 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5383 rx = wx, ry = wy;
5384 string = mode_line_string (w, part, &rx, &ry, &charpos,
5385 &object, &dx, &dy, &width, &height);
5386 if (STRINGP (string))
5387 string_info = Fcons (string, make_number (charpos));
5388 if (w == XWINDOW (selected_window)
5389 && current_buffer == XBUFFER (w->buffer))
5390 textpos = PT;
5391 else
5392 textpos = XMARKER (w->pointm)->charpos;
5394 else if (part == ON_VERTICAL_BORDER)
5396 posn = Qvertical_line;
5397 wx = -1;
5398 dx = 0;
5399 width = 1;
5401 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5403 Lisp_Object string;
5404 int charpos;
5406 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5407 rx = wx, ry = wy;
5408 string = marginal_area_string (w, part, &rx, &ry, &charpos,
5409 &object, &dx, &dy, &width, &height);
5410 if (STRINGP (string))
5411 string_info = Fcons (string, make_number (charpos));
5412 if (part == ON_LEFT_MARGIN)
5413 wx = 0;
5414 else
5415 wx = window_box_right_offset (w, TEXT_AREA) - 1;
5417 else if (part == ON_LEFT_FRINGE)
5419 posn = Qleft_fringe;
5420 rx = 0;
5421 dx = wx;
5422 wx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5424 : window_box_width (w, LEFT_MARGIN_AREA));
5425 dx -= wx;
5427 else if (part == ON_RIGHT_FRINGE)
5429 posn = Qright_fringe;
5430 rx = 0;
5431 dx = wx;
5432 wx = (window_box_width (w, LEFT_MARGIN_AREA)
5433 + window_box_width (w, TEXT_AREA)
5434 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5435 ? window_box_width (w, RIGHT_MARGIN_AREA)
5436 : 0));
5437 dx -= wx;
5439 else
5441 /* Note: We have no special posn for part == ON_SCROLL_BAR. */
5442 wx = max (WINDOW_LEFT_MARGIN_WIDTH (w), wx);
5445 if (textpos < 0)
5447 Lisp_Object string2, object2 = Qnil;
5448 struct display_pos p;
5449 int dx2, dy2;
5450 int width2, height2;
5451 string2 = buffer_posn_from_coords (w, &wx, &wy, &p,
5452 &object2, &dx2, &dy2,
5453 &width2, &height2);
5454 textpos = CHARPOS (p.pos);
5455 if (rx < 0) rx = wx;
5456 if (ry < 0) ry = wy;
5457 if (dx < 0) dx = dx2;
5458 if (dy < 0) dy = dy2;
5459 if (width < 0) width = width2;
5460 if (height < 0) height = height2;
5462 if (NILP (posn))
5464 posn = make_number (textpos);
5465 if (STRINGP (string2))
5466 string_info = Fcons (string2,
5467 make_number (CHARPOS (p.string_pos)));
5469 if (NILP (object))
5470 object = object2;
5473 #ifdef HAVE_WINDOW_SYSTEM
5474 if (IMAGEP (object))
5476 Lisp_Object image_map, hotspot;
5477 if ((image_map = Fplist_get (XCDR (object), QCmap),
5478 !NILP (image_map))
5479 && (hotspot = find_hot_spot (image_map, dx, dy),
5480 CONSP (hotspot))
5481 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5482 posn = XCAR (hotspot);
5484 #endif
5486 /* Object info */
5487 extra_info = Fcons (object,
5488 Fcons (Fcons (make_number (dx),
5489 make_number (dy)),
5490 Fcons (Fcons (make_number (width),
5491 make_number (height)),
5492 Qnil)));
5494 /* String info */
5495 extra_info = Fcons (string_info,
5496 Fcons (make_number (textpos),
5497 Fcons (Fcons (make_number (rx),
5498 make_number (ry)),
5499 extra_info)));
5501 else if (f != 0)
5503 XSETFRAME (window, f);
5505 else
5507 window = Qnil;
5508 XSETFASTINT (*x, 0);
5509 XSETFASTINT (*y, 0);
5512 return Fcons (window,
5513 Fcons (posn,
5514 Fcons (Fcons (*x, *y),
5515 Fcons (make_number (time),
5516 extra_info))));
5519 /* Given a struct input_event, build the lisp event which represents
5520 it. If EVENT is 0, build a mouse movement event from the mouse
5521 movement buffer, which should have a movement event in it.
5523 Note that events must be passed to this function in the order they
5524 are received; this function stores the location of button presses
5525 in order to build drag events when the button is released. */
5527 static Lisp_Object
5528 make_lispy_event (event)
5529 struct input_event *event;
5531 int i;
5533 switch (SWITCH_ENUM_CAST (event->kind))
5535 /* A simple keystroke. */
5536 case ASCII_KEYSTROKE_EVENT:
5537 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5539 Lisp_Object lispy_c;
5540 int c = event->code;
5541 if (event->kind == ASCII_KEYSTROKE_EVENT)
5543 c &= 0377;
5544 eassert (c == event->code);
5545 /* Turn ASCII characters into control characters
5546 when proper. */
5547 if (event->modifiers & ctrl_modifier)
5549 c = make_ctrl_char (c);
5550 event->modifiers &= ~ctrl_modifier;
5554 /* Add in the other modifier bits. The shift key was taken care
5555 of by the X code. */
5556 c |= (event->modifiers
5557 & (meta_modifier | alt_modifier
5558 | hyper_modifier | super_modifier | ctrl_modifier));
5559 /* Distinguish Shift-SPC from SPC. */
5560 if ((event->code) == 040
5561 && event->modifiers & shift_modifier)
5562 c |= shift_modifier;
5563 button_down_time = 0;
5564 XSETFASTINT (lispy_c, c);
5565 return lispy_c;
5568 #ifdef HAVE_NS
5569 /* NS_NONKEY_EVENTs are just like NON_ASCII_KEYSTROKE_EVENTs,
5570 except that they are non-key events (last-nonmenu-event is nil). */
5571 case NS_NONKEY_EVENT:
5572 #endif
5574 /* A function key. The symbol may need to have modifier prefixes
5575 tacked onto it. */
5576 case NON_ASCII_KEYSTROKE_EVENT:
5577 button_down_time = 0;
5579 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5580 if (event->code == lispy_accent_codes[i])
5581 return modify_event_symbol (i,
5582 event->modifiers,
5583 Qfunction_key, Qnil,
5584 lispy_accent_keys, &accent_key_syms,
5585 (sizeof (lispy_accent_keys)
5586 / sizeof (lispy_accent_keys[0])));
5588 #if 0
5589 #ifdef XK_kana_A
5590 if (event->code >= 0x400 && event->code < 0x500)
5591 return modify_event_symbol (event->code - 0x400,
5592 event->modifiers & ~shift_modifier,
5593 Qfunction_key, Qnil,
5594 lispy_kana_keys, &func_key_syms,
5595 (sizeof (lispy_kana_keys)
5596 / sizeof (lispy_kana_keys[0])));
5597 #endif /* XK_kana_A */
5598 #endif /* 0 */
5600 #ifdef ISO_FUNCTION_KEY_OFFSET
5601 if (event->code < FUNCTION_KEY_OFFSET
5602 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5603 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5604 event->modifiers,
5605 Qfunction_key, Qnil,
5606 iso_lispy_function_keys, &func_key_syms,
5607 (sizeof (iso_lispy_function_keys)
5608 / sizeof (iso_lispy_function_keys[0])));
5609 #endif
5611 /* Handle system-specific or unknown keysyms. */
5612 if (event->code & (1 << 28)
5613 || event->code - FUNCTION_KEY_OFFSET < 0
5614 || (event->code - FUNCTION_KEY_OFFSET
5615 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5616 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5618 /* We need to use an alist rather than a vector as the cache
5619 since we can't make a vector long enuf. */
5620 if (NILP (current_kboard->system_key_syms))
5621 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5622 return modify_event_symbol (event->code,
5623 event->modifiers,
5624 Qfunction_key,
5625 current_kboard->Vsystem_key_alist,
5626 0, &current_kboard->system_key_syms,
5627 (unsigned) -1);
5630 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5631 event->modifiers,
5632 Qfunction_key, Qnil,
5633 lispy_function_keys, &func_key_syms,
5634 (sizeof (lispy_function_keys)
5635 / sizeof (lispy_function_keys[0])));
5637 #ifdef WINDOWSNT
5638 case MULTIMEDIA_KEY_EVENT:
5639 if (event->code < (sizeof (lispy_multimedia_keys)
5640 / sizeof (lispy_multimedia_keys[0]))
5641 && event->code > 0 && lispy_multimedia_keys[event->code])
5643 return modify_event_symbol (event->code, event->modifiers,
5644 Qfunction_key, Qnil,
5645 lispy_multimedia_keys, &func_key_syms,
5646 (sizeof (lispy_multimedia_keys)
5647 / sizeof (lispy_multimedia_keys[0])));
5649 return Qnil;
5650 #endif
5652 #ifdef HAVE_MOUSE
5653 /* A mouse click. Figure out where it is, decide whether it's
5654 a press, click or drag, and build the appropriate structure. */
5655 case MOUSE_CLICK_EVENT:
5656 #ifndef USE_TOOLKIT_SCROLL_BARS
5657 case SCROLL_BAR_CLICK_EVENT:
5658 #endif
5660 int button = event->code;
5661 int is_double;
5662 Lisp_Object position;
5663 Lisp_Object *start_pos_ptr;
5664 Lisp_Object start_pos;
5666 position = Qnil;
5668 /* Build the position as appropriate for this mouse click. */
5669 if (event->kind == MOUSE_CLICK_EVENT)
5671 struct frame *f = XFRAME (event->frame_or_window);
5672 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5673 int row, column;
5674 #endif
5676 /* Ignore mouse events that were made on frame that
5677 have been deleted. */
5678 if (! FRAME_LIVE_P (f))
5679 return Qnil;
5681 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5682 /* EVENT->x and EVENT->y are frame-relative pixel
5683 coordinates at this place. Under old redisplay, COLUMN
5684 and ROW are set to frame relative glyph coordinates
5685 which are then used to determine whether this click is
5686 in a menu (non-toolkit version). */
5687 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5688 &column, &row, NULL, 1);
5690 /* In the non-toolkit version, clicks on the menu bar
5691 are ordinary button events in the event buffer.
5692 Distinguish them, and invoke the menu.
5694 (In the toolkit version, the toolkit handles the menu bar
5695 and Emacs doesn't know about it until after the user
5696 makes a selection.) */
5697 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5698 && (event->modifiers & down_modifier))
5700 Lisp_Object items, item;
5701 int hpos;
5702 int i;
5704 #if 0
5705 /* Activate the menu bar on the down event. If the
5706 up event comes in before the menu code can deal with it,
5707 just ignore it. */
5708 if (! (event->modifiers & down_modifier))
5709 return Qnil;
5710 #endif
5712 /* Find the menu bar item under `column'. */
5713 item = Qnil;
5714 items = FRAME_MENU_BAR_ITEMS (f);
5715 for (i = 0; i < XVECTOR (items)->size; i += 4)
5717 Lisp_Object pos, string;
5718 string = AREF (items, i + 1);
5719 pos = AREF (items, i + 3);
5720 if (NILP (string))
5721 break;
5722 if (column >= XINT (pos)
5723 && column < XINT (pos) + SCHARS (string))
5725 item = AREF (items, i);
5726 break;
5730 /* ELisp manual 2.4b says (x y) are window relative but
5731 code says they are frame-relative. */
5732 position
5733 = Fcons (event->frame_or_window,
5734 Fcons (Qmenu_bar,
5735 Fcons (Fcons (event->x, event->y),
5736 Fcons (make_number (event->timestamp),
5737 Qnil))));
5739 return Fcons (item, Fcons (position, Qnil));
5741 #endif /* not USE_X_TOOLKIT && not USE_GTK && not HAVE_NS */
5743 position = make_lispy_position (f, &event->x, &event->y,
5744 event->timestamp);
5746 #ifndef USE_TOOLKIT_SCROLL_BARS
5747 else
5749 /* It's a scrollbar click. */
5750 Lisp_Object window;
5751 Lisp_Object portion_whole;
5752 Lisp_Object part;
5754 window = event->frame_or_window;
5755 portion_whole = Fcons (event->x, event->y);
5756 part = *scroll_bar_parts[(int) event->part];
5758 position
5759 = Fcons (window,
5760 Fcons (Qvertical_scroll_bar,
5761 Fcons (portion_whole,
5762 Fcons (make_number (event->timestamp),
5763 Fcons (part, Qnil)))));
5765 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5767 if (button >= ASIZE (button_down_location))
5769 button_down_location = larger_vector (button_down_location,
5770 button + 1, Qnil);
5771 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5774 start_pos_ptr = &AREF (button_down_location, button);
5775 start_pos = *start_pos_ptr;
5776 *start_pos_ptr = Qnil;
5779 /* On window-system frames, use the value of
5780 double-click-fuzz as is. On other frames, interpret it
5781 as a multiple of 1/8 characters. */
5782 struct frame *f;
5783 int fuzz;
5785 if (WINDOWP (event->frame_or_window))
5786 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5787 else if (FRAMEP (event->frame_or_window))
5788 f = XFRAME (event->frame_or_window);
5789 else
5790 abort ();
5792 if (FRAME_WINDOW_P (f))
5793 fuzz = double_click_fuzz;
5794 else
5795 fuzz = double_click_fuzz / 8;
5797 is_double = (button == last_mouse_button
5798 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5799 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5800 && button_down_time != 0
5801 && (EQ (Vdouble_click_time, Qt)
5802 || (INTEGERP (Vdouble_click_time)
5803 && ((int)(event->timestamp - button_down_time)
5804 < XINT (Vdouble_click_time)))));
5807 last_mouse_button = button;
5808 last_mouse_x = XINT (event->x);
5809 last_mouse_y = XINT (event->y);
5811 /* If this is a button press, squirrel away the location, so
5812 we can decide later whether it was a click or a drag. */
5813 if (event->modifiers & down_modifier)
5815 if (is_double)
5817 double_click_count++;
5818 event->modifiers |= ((double_click_count > 2)
5819 ? triple_modifier
5820 : double_modifier);
5822 else
5823 double_click_count = 1;
5824 button_down_time = event->timestamp;
5825 *start_pos_ptr = Fcopy_alist (position);
5826 ignore_mouse_drag_p = 0;
5829 /* Now we're releasing a button - check the co-ordinates to
5830 see if this was a click or a drag. */
5831 else if (event->modifiers & up_modifier)
5833 /* If we did not see a down before this up, ignore the up.
5834 Probably this happened because the down event chose a
5835 menu item. It would be an annoyance to treat the
5836 release of the button that chose the menu item as a
5837 separate event. */
5839 if (!CONSP (start_pos))
5840 return Qnil;
5842 event->modifiers &= ~up_modifier;
5843 #if 0 /* Formerly we treated an up with no down as a click event. */
5844 if (!CONSP (start_pos))
5845 event->modifiers |= click_modifier;
5846 else
5847 #endif
5849 Lisp_Object down;
5850 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5852 /* The third element of every position
5853 should be the (x,y) pair. */
5854 down = Fcar (Fcdr (Fcdr (start_pos)));
5855 if (CONSP (down)
5856 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5858 xdiff = XINT (event->x) - XINT (XCAR (down));
5859 ydiff = XINT (event->y) - XINT (XCDR (down));
5862 if (ignore_mouse_drag_p)
5864 event->modifiers |= click_modifier;
5865 ignore_mouse_drag_p = 0;
5867 else if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5868 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5869 /* Maybe the mouse has moved a lot, caused scrolling, and
5870 eventually ended up at the same screen position (but
5871 not buffer position) in which case it is a drag, not
5872 a click. */
5873 /* FIXME: OTOH if the buffer position has changed
5874 because of a timer or process filter rather than
5875 because of mouse movement, it should be considered as
5876 a click. But mouse-drag-region completely ignores
5877 this case and it hasn't caused any real problem, so
5878 it's probably OK to ignore it as well. */
5879 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5880 /* Mouse hasn't moved (much). */
5881 event->modifiers |= click_modifier;
5882 else
5884 button_down_time = 0;
5885 event->modifiers |= drag_modifier;
5888 /* Don't check is_double; treat this as multiple
5889 if the down-event was multiple. */
5890 if (double_click_count > 1)
5891 event->modifiers |= ((double_click_count > 2)
5892 ? triple_modifier
5893 : double_modifier);
5896 else
5897 /* Every mouse event should either have the down_modifier or
5898 the up_modifier set. */
5899 abort ();
5902 /* Get the symbol we should use for the mouse click. */
5903 Lisp_Object head;
5905 head = modify_event_symbol (button,
5906 event->modifiers,
5907 Qmouse_click, Vlispy_mouse_stem,
5908 NULL,
5909 &mouse_syms,
5910 XVECTOR (mouse_syms)->size);
5911 if (event->modifiers & drag_modifier)
5912 return Fcons (head,
5913 Fcons (start_pos,
5914 Fcons (position,
5915 Qnil)));
5916 else if (event->modifiers & (double_modifier | triple_modifier))
5917 return Fcons (head,
5918 Fcons (position,
5919 Fcons (make_number (double_click_count),
5920 Qnil)));
5921 else
5922 return Fcons (head,
5923 Fcons (position,
5924 Qnil));
5928 case WHEEL_EVENT:
5929 case HORIZ_WHEEL_EVENT:
5931 Lisp_Object position;
5932 Lisp_Object head;
5934 /* Build the position as appropriate for this mouse click. */
5935 struct frame *f = XFRAME (event->frame_or_window);
5937 /* Ignore wheel events that were made on frame that have been
5938 deleted. */
5939 if (! FRAME_LIVE_P (f))
5940 return Qnil;
5942 position = make_lispy_position (f, &event->x, &event->y,
5943 event->timestamp);
5945 /* Set double or triple modifiers to indicate the wheel speed. */
5947 /* On window-system frames, use the value of
5948 double-click-fuzz as is. On other frames, interpret it
5949 as a multiple of 1/8 characters. */
5950 struct frame *f;
5951 int fuzz;
5952 int is_double;
5954 if (WINDOWP (event->frame_or_window))
5955 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5956 else if (FRAMEP (event->frame_or_window))
5957 f = XFRAME (event->frame_or_window);
5958 else
5959 abort ();
5961 if (FRAME_WINDOW_P (f))
5962 fuzz = double_click_fuzz;
5963 else
5964 fuzz = double_click_fuzz / 8;
5966 is_double = (last_mouse_button < 0
5967 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5968 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5969 && button_down_time != 0
5970 && (EQ (Vdouble_click_time, Qt)
5971 || (INTEGERP (Vdouble_click_time)
5972 && ((int)(event->timestamp - button_down_time)
5973 < XINT (Vdouble_click_time)))));
5974 if (is_double)
5976 double_click_count++;
5977 event->modifiers |= ((double_click_count > 2)
5978 ? triple_modifier
5979 : double_modifier);
5981 else
5983 double_click_count = 1;
5984 event->modifiers |= click_modifier;
5987 button_down_time = event->timestamp;
5988 /* Use a negative value to distinguish wheel from mouse button. */
5989 last_mouse_button = -1;
5990 last_mouse_x = XINT (event->x);
5991 last_mouse_y = XINT (event->y);
5995 int symbol_num;
5997 if (event->modifiers & up_modifier)
5999 /* Emit a wheel-up event. */
6000 event->modifiers &= ~up_modifier;
6001 symbol_num = 0;
6003 else if (event->modifiers & down_modifier)
6005 /* Emit a wheel-down event. */
6006 event->modifiers &= ~down_modifier;
6007 symbol_num = 1;
6009 else
6010 /* Every wheel event should either have the down_modifier or
6011 the up_modifier set. */
6012 abort ();
6014 if (event->kind == HORIZ_WHEEL_EVENT)
6015 symbol_num += 2;
6017 /* Get the symbol we should use for the wheel event. */
6018 head = modify_event_symbol (symbol_num,
6019 event->modifiers,
6020 Qmouse_click,
6021 Qnil,
6022 lispy_wheel_names,
6023 &wheel_syms,
6024 ASIZE (wheel_syms));
6027 if (event->modifiers & (double_modifier | triple_modifier))
6028 return Fcons (head,
6029 Fcons (position,
6030 Fcons (make_number (double_click_count),
6031 Qnil)));
6032 else
6033 return Fcons (head,
6034 Fcons (position,
6035 Qnil));
6039 #ifdef USE_TOOLKIT_SCROLL_BARS
6041 /* We don't have down and up events if using toolkit scroll bars,
6042 so make this always a click event. Store in the `part' of
6043 the Lisp event a symbol which maps to the following actions:
6045 `above_handle' page up
6046 `below_handle' page down
6047 `up' line up
6048 `down' line down
6049 `top' top of buffer
6050 `bottom' bottom of buffer
6051 `handle' thumb has been dragged.
6052 `end-scroll' end of interaction with scroll bar
6054 The incoming input_event contains in its `part' member an
6055 index of type `enum scroll_bar_part' which we can use as an
6056 index in scroll_bar_parts to get the appropriate symbol. */
6058 case SCROLL_BAR_CLICK_EVENT:
6060 Lisp_Object position, head, window, portion_whole, part;
6062 window = event->frame_or_window;
6063 portion_whole = Fcons (event->x, event->y);
6064 part = *scroll_bar_parts[(int) event->part];
6066 position
6067 = Fcons (window,
6068 Fcons (Qvertical_scroll_bar,
6069 Fcons (portion_whole,
6070 Fcons (make_number (event->timestamp),
6071 Fcons (part, Qnil)))));
6073 /* Always treat scroll bar events as clicks. */
6074 event->modifiers |= click_modifier;
6075 event->modifiers &= ~up_modifier;
6077 if (event->code >= ASIZE (mouse_syms))
6078 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
6080 /* Get the symbol we should use for the mouse click. */
6081 head = modify_event_symbol (event->code,
6082 event->modifiers,
6083 Qmouse_click,
6084 Vlispy_mouse_stem,
6085 NULL, &mouse_syms,
6086 XVECTOR (mouse_syms)->size);
6087 return Fcons (head, Fcons (position, Qnil));
6090 #endif /* USE_TOOLKIT_SCROLL_BARS */
6092 case DRAG_N_DROP_EVENT:
6094 FRAME_PTR f;
6095 Lisp_Object head, position;
6096 Lisp_Object files;
6098 f = XFRAME (event->frame_or_window);
6099 files = event->arg;
6101 /* Ignore mouse events that were made on frames that
6102 have been deleted. */
6103 if (! FRAME_LIVE_P (f))
6104 return Qnil;
6106 position = make_lispy_position (f, &event->x, &event->y,
6107 event->timestamp);
6109 head = modify_event_symbol (0, event->modifiers,
6110 Qdrag_n_drop, Qnil,
6111 lispy_drag_n_drop_names,
6112 &drag_n_drop_syms, 1);
6113 return Fcons (head,
6114 Fcons (position,
6115 Fcons (files,
6116 Qnil)));
6118 #endif /* HAVE_MOUSE */
6120 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
6121 || defined(HAVE_NS) || defined (USE_GTK)
6122 case MENU_BAR_EVENT:
6123 if (EQ (event->arg, event->frame_or_window))
6124 /* This is the prefix key. We translate this to
6125 `(menu_bar)' because the code in keyboard.c for menu
6126 events, which we use, relies on this. */
6127 return Fcons (Qmenu_bar, Qnil);
6128 return event->arg;
6129 #endif
6131 case SELECT_WINDOW_EVENT:
6132 /* Make an event (select-window (WINDOW)). */
6133 return Fcons (Qselect_window,
6134 Fcons (Fcons (event->frame_or_window, Qnil),
6135 Qnil));
6137 case TOOL_BAR_EVENT:
6138 if (EQ (event->arg, event->frame_or_window))
6139 /* This is the prefix key. We translate this to
6140 `(tool_bar)' because the code in keyboard.c for tool bar
6141 events, which we use, relies on this. */
6142 return Fcons (Qtool_bar, Qnil);
6143 else if (SYMBOLP (event->arg))
6144 return apply_modifiers (event->modifiers, event->arg);
6145 return event->arg;
6147 case USER_SIGNAL_EVENT:
6148 /* A user signal. */
6150 char *name = find_user_signal_name (event->code);
6151 if (!name)
6152 abort ();
6153 return intern (name);
6156 case SAVE_SESSION_EVENT:
6157 return Qsave_session;
6159 #ifdef HAVE_DBUS
6160 case DBUS_EVENT:
6162 return Fcons (Qdbus_event, event->arg);
6164 #endif /* HAVE_DBUS */
6166 #ifdef HAVE_GPM
6167 case GPM_CLICK_EVENT:
6169 FRAME_PTR f = XFRAME (event->frame_or_window);
6170 Lisp_Object head, position;
6171 Lisp_Object *start_pos_ptr;
6172 Lisp_Object start_pos;
6173 int button = event->code;
6175 if (button >= ASIZE (button_down_location))
6177 button_down_location = larger_vector (button_down_location,
6178 button + 1, Qnil);
6179 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
6182 start_pos_ptr = &AREF (button_down_location, button);
6183 start_pos = *start_pos_ptr;
6185 position = make_lispy_position (f, &event->x, &event->y,
6186 event->timestamp);
6188 if (event->modifiers & down_modifier)
6189 *start_pos_ptr = Fcopy_alist (position);
6190 else if (event->modifiers & (up_modifier | drag_modifier))
6192 if (!CONSP (start_pos))
6193 return Qnil;
6194 event->modifiers &= ~up_modifier;
6197 head = modify_event_symbol (button,
6198 event->modifiers,
6199 Qmouse_click, Vlispy_mouse_stem,
6200 NULL,
6201 &mouse_syms,
6202 XVECTOR (mouse_syms)->size);
6204 if (event->modifiers & drag_modifier)
6205 return Fcons (head,
6206 Fcons (start_pos,
6207 Fcons (position,
6208 Qnil)));
6209 else if (event->modifiers & double_modifier)
6210 return Fcons (head,
6211 Fcons (position,
6212 Fcons (make_number (2),
6213 Qnil)));
6214 else if (event->modifiers & triple_modifier)
6215 return Fcons (head,
6216 Fcons (position,
6217 Fcons (make_number (3),
6218 Qnil)));
6219 else
6220 return Fcons (head,
6221 Fcons (position,
6222 Qnil));
6224 #endif /* HAVE_GPM */
6226 /* The 'kind' field of the event is something we don't recognize. */
6227 default:
6228 abort ();
6232 #if defined(HAVE_MOUSE) || defined(HAVE_GPM)
6234 static Lisp_Object
6235 make_lispy_movement (frame, bar_window, part, x, y, time)
6236 FRAME_PTR frame;
6237 Lisp_Object bar_window;
6238 enum scroll_bar_part part;
6239 Lisp_Object x, y;
6240 unsigned long time;
6242 /* Is it a scroll bar movement? */
6243 if (frame && ! NILP (bar_window))
6245 Lisp_Object part_sym;
6247 part_sym = *scroll_bar_parts[(int) part];
6248 return Fcons (Qscroll_bar_movement,
6249 (Fcons (Fcons (bar_window,
6250 Fcons (Qvertical_scroll_bar,
6251 Fcons (Fcons (x, y),
6252 Fcons (make_number (time),
6253 Fcons (part_sym,
6254 Qnil))))),
6255 Qnil)));
6258 /* Or is it an ordinary mouse movement? */
6259 else
6261 Lisp_Object position;
6263 position = make_lispy_position (frame, &x, &y, time);
6265 return Fcons (Qmouse_movement,
6266 Fcons (position,
6267 Qnil));
6271 #endif /* HAVE_MOUSE || HAVE GPM */
6273 /* Construct a switch frame event. */
6274 static Lisp_Object
6275 make_lispy_switch_frame (frame)
6276 Lisp_Object frame;
6278 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
6281 /* Manipulating modifiers. */
6283 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6285 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6286 SYMBOL's name of the end of the modifiers; the string from this
6287 position is the unmodified symbol name.
6289 This doesn't use any caches. */
6291 static int
6292 parse_modifiers_uncached (symbol, modifier_end)
6293 Lisp_Object symbol;
6294 int *modifier_end;
6296 Lisp_Object name;
6297 int i;
6298 int modifiers;
6300 CHECK_SYMBOL (symbol);
6302 modifiers = 0;
6303 name = SYMBOL_NAME (symbol);
6305 for (i = 0; i+2 <= SBYTES (name); )
6307 int this_mod_end = 0;
6308 int this_mod = 0;
6310 /* See if the name continues with a modifier word.
6311 Check that the word appears, but don't check what follows it.
6312 Set this_mod and this_mod_end to record what we find. */
6314 switch (SREF (name, i))
6316 #define SINGLE_LETTER_MOD(BIT) \
6317 (this_mod_end = i + 1, this_mod = BIT)
6319 case 'A':
6320 SINGLE_LETTER_MOD (alt_modifier);
6321 break;
6323 case 'C':
6324 SINGLE_LETTER_MOD (ctrl_modifier);
6325 break;
6327 case 'H':
6328 SINGLE_LETTER_MOD (hyper_modifier);
6329 break;
6331 case 'M':
6332 SINGLE_LETTER_MOD (meta_modifier);
6333 break;
6335 case 'S':
6336 SINGLE_LETTER_MOD (shift_modifier);
6337 break;
6339 case 's':
6340 SINGLE_LETTER_MOD (super_modifier);
6341 break;
6343 #undef SINGLE_LETTER_MOD
6345 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6346 if (i + LEN + 1 <= SBYTES (name) \
6347 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
6349 this_mod_end = i + LEN; \
6350 this_mod = BIT; \
6353 case 'd':
6354 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6355 MULTI_LETTER_MOD (down_modifier, "down", 4);
6356 MULTI_LETTER_MOD (double_modifier, "double", 6);
6357 break;
6359 case 't':
6360 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6361 break;
6362 #undef MULTI_LETTER_MOD
6366 /* If we found no modifier, stop looking for them. */
6367 if (this_mod_end == 0)
6368 break;
6370 /* Check there is a dash after the modifier, so that it
6371 really is a modifier. */
6372 if (this_mod_end >= SBYTES (name)
6373 || SREF (name, this_mod_end) != '-')
6374 break;
6376 /* This modifier is real; look for another. */
6377 modifiers |= this_mod;
6378 i = this_mod_end + 1;
6381 /* Should we include the `click' modifier? */
6382 if (! (modifiers & (down_modifier | drag_modifier
6383 | double_modifier | triple_modifier))
6384 && i + 7 == SBYTES (name)
6385 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
6386 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6387 modifiers |= click_modifier;
6389 if (! (modifiers & (double_modifier | triple_modifier))
6390 && i + 6 < SBYTES (name)
6391 && strncmp (SDATA (name) + i, "wheel-", 6) == 0)
6392 modifiers |= click_modifier;
6394 if (modifier_end)
6395 *modifier_end = i;
6397 return modifiers;
6400 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6401 prepended to the string BASE[0..BASE_LEN-1].
6402 This doesn't use any caches. */
6403 static Lisp_Object
6404 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
6405 int modifiers;
6406 char *base;
6407 int base_len, base_len_byte;
6409 /* Since BASE could contain nulls, we can't use intern here; we have
6410 to use Fintern, which expects a genuine Lisp_String, and keeps a
6411 reference to it. */
6412 char *new_mods
6413 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6414 int mod_len;
6417 char *p = new_mods;
6419 /* Only the event queue may use the `up' modifier; it should always
6420 be turned into a click or drag event before presented to lisp code. */
6421 if (modifiers & up_modifier)
6422 abort ();
6424 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6425 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6426 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6427 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6428 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6429 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6430 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
6431 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
6432 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
6433 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
6434 /* The click modifier is denoted by the absence of other modifiers. */
6436 *p = '\0';
6438 mod_len = p - new_mods;
6442 Lisp_Object new_name;
6444 new_name = make_uninit_multibyte_string (mod_len + base_len,
6445 mod_len + base_len_byte);
6446 bcopy (new_mods, SDATA (new_name), mod_len);
6447 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
6449 return Fintern (new_name, Qnil);
6454 static char *modifier_names[] =
6456 "up", "down", "drag", "click", "double", "triple", 0, 0,
6457 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6458 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6460 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6462 static Lisp_Object modifier_symbols;
6464 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6465 static Lisp_Object
6466 lispy_modifier_list (modifiers)
6467 int modifiers;
6469 Lisp_Object modifier_list;
6470 int i;
6472 modifier_list = Qnil;
6473 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6474 if (modifiers & (1<<i))
6475 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
6476 modifier_list);
6478 return modifier_list;
6482 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6483 where UNMODIFIED is the unmodified form of SYMBOL,
6484 MASK is the set of modifiers present in SYMBOL's name.
6485 This is similar to parse_modifiers_uncached, but uses the cache in
6486 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6487 Qevent_symbol_elements property. */
6489 #define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTERBITS) - 1))
6491 Lisp_Object
6492 parse_modifiers (symbol)
6493 Lisp_Object symbol;
6495 Lisp_Object elements;
6497 if (INTEGERP (symbol))
6498 return (Fcons (make_number (KEY_TO_CHAR (symbol)),
6499 Fcons (make_number (XINT (symbol) & CHAR_MODIFIER_MASK),
6500 Qnil)));
6501 else if (!SYMBOLP (symbol))
6502 return Qnil;
6504 elements = Fget (symbol, Qevent_symbol_element_mask);
6505 if (CONSP (elements))
6506 return elements;
6507 else
6509 int end;
6510 int modifiers = parse_modifiers_uncached (symbol, &end);
6511 Lisp_Object unmodified;
6512 Lisp_Object mask;
6514 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
6515 SBYTES (SYMBOL_NAME (symbol)) - end),
6516 Qnil);
6518 if (modifiers & ~INTMASK)
6519 abort ();
6520 XSETFASTINT (mask, modifiers);
6521 elements = Fcons (unmodified, Fcons (mask, Qnil));
6523 /* Cache the parsing results on SYMBOL. */
6524 Fput (symbol, Qevent_symbol_element_mask,
6525 elements);
6526 Fput (symbol, Qevent_symbol_elements,
6527 Fcons (unmodified, lispy_modifier_list (modifiers)));
6529 /* Since we know that SYMBOL is modifiers applied to unmodified,
6530 it would be nice to put that in unmodified's cache.
6531 But we can't, since we're not sure that parse_modifiers is
6532 canonical. */
6534 return elements;
6538 DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,
6539 Sevent_symbol_parse_modifiers, 1, 1, 0,
6540 doc: /* Parse the event symbol. For internal use. */)
6541 (symbol)
6542 Lisp_Object symbol;
6544 /* Fill the cache if needed. */
6545 parse_modifiers (symbol);
6546 /* Ignore the result (which is stored on Qevent_symbol_element_mask)
6547 and use the Lispier representation stored on Qevent_symbol_elements
6548 instead. */
6549 return Fget (symbol, Qevent_symbol_elements);
6552 /* Apply the modifiers MODIFIERS to the symbol BASE.
6553 BASE must be unmodified.
6555 This is like apply_modifiers_uncached, but uses BASE's
6556 Qmodifier_cache property, if present. It also builds
6557 Qevent_symbol_elements properties, since it has that info anyway.
6559 apply_modifiers copies the value of BASE's Qevent_kind property to
6560 the modified symbol. */
6561 static Lisp_Object
6562 apply_modifiers (modifiers, base)
6563 int modifiers;
6564 Lisp_Object base;
6566 Lisp_Object cache, index, entry, new_symbol;
6568 /* Mask out upper bits. We don't know where this value's been. */
6569 modifiers &= INTMASK;
6571 if (INTEGERP (base))
6572 return make_number (XINT (base) | modifiers);
6574 /* The click modifier never figures into cache indices. */
6575 cache = Fget (base, Qmodifier_cache);
6576 XSETFASTINT (index, (modifiers & ~click_modifier));
6577 entry = assq_no_quit (index, cache);
6579 if (CONSP (entry))
6580 new_symbol = XCDR (entry);
6581 else
6583 /* We have to create the symbol ourselves. */
6584 new_symbol = apply_modifiers_uncached (modifiers,
6585 SDATA (SYMBOL_NAME (base)),
6586 SCHARS (SYMBOL_NAME (base)),
6587 SBYTES (SYMBOL_NAME (base)));
6589 /* Add the new symbol to the base's cache. */
6590 entry = Fcons (index, new_symbol);
6591 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6593 /* We have the parsing info now for free, so we could add it to
6594 the caches:
6595 XSETFASTINT (index, modifiers);
6596 Fput (new_symbol, Qevent_symbol_element_mask,
6597 Fcons (base, Fcons (index, Qnil)));
6598 Fput (new_symbol, Qevent_symbol_elements,
6599 Fcons (base, lispy_modifier_list (modifiers)));
6600 Sadly, this is only correct if `base' is indeed a base event,
6601 which is not necessarily the case. -stef */
6604 /* Make sure this symbol is of the same kind as BASE.
6606 You'd think we could just set this once and for all when we
6607 intern the symbol above, but reorder_modifiers may call us when
6608 BASE's property isn't set right; we can't assume that just
6609 because it has a Qmodifier_cache property it must have its
6610 Qevent_kind set right as well. */
6611 if (NILP (Fget (new_symbol, Qevent_kind)))
6613 Lisp_Object kind;
6615 kind = Fget (base, Qevent_kind);
6616 if (! NILP (kind))
6617 Fput (new_symbol, Qevent_kind, kind);
6620 return new_symbol;
6624 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6625 return a symbol with the modifiers placed in the canonical order.
6626 Canonical order is alphabetical, except for down and drag, which
6627 always come last. The 'click' modifier is never written out.
6629 Fdefine_key calls this to make sure that (for example) C-M-foo
6630 and M-C-foo end up being equivalent in the keymap. */
6632 Lisp_Object
6633 reorder_modifiers (symbol)
6634 Lisp_Object symbol;
6636 /* It's hopefully okay to write the code this way, since everything
6637 will soon be in caches, and no consing will be done at all. */
6638 Lisp_Object parsed;
6640 parsed = parse_modifiers (symbol);
6641 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6642 XCAR (parsed));
6646 /* For handling events, we often want to produce a symbol whose name
6647 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6648 to some base, like the name of a function key or mouse button.
6649 modify_event_symbol produces symbols of this sort.
6651 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6652 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6653 in the table.
6655 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6656 into symbol names, or a string specifying a name stem used to
6657 construct a symbol name or the form `STEM-N', where N is the decimal
6658 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6659 non-nil; otherwise NAME_TABLE is used.
6661 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6662 persist between calls to modify_event_symbol that it can use to
6663 store a cache of the symbols it's generated for this NAME_TABLE
6664 before. The object stored there may be a vector or an alist.
6666 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6668 MODIFIERS is a set of modifier bits (as given in struct input_events)
6669 whose prefixes should be applied to the symbol name.
6671 SYMBOL_KIND is the value to be placed in the event_kind property of
6672 the returned symbol.
6674 The symbols we create are supposed to have an
6675 `event-symbol-elements' property, which lists the modifiers present
6676 in the symbol's name. */
6678 static Lisp_Object
6679 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
6680 name_table, symbol_table, table_size)
6681 int symbol_num;
6682 unsigned modifiers;
6683 Lisp_Object symbol_kind;
6684 Lisp_Object name_alist_or_stem;
6685 char **name_table;
6686 Lisp_Object *symbol_table;
6687 unsigned int table_size;
6689 Lisp_Object value;
6690 Lisp_Object symbol_int;
6692 /* Get rid of the "vendor-specific" bit here. */
6693 XSETINT (symbol_int, symbol_num & 0xffffff);
6695 /* Is this a request for a valid symbol? */
6696 if (symbol_num < 0 || symbol_num >= table_size)
6697 return Qnil;
6699 if (CONSP (*symbol_table))
6700 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6702 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6703 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6704 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6705 we've never used that symbol before. */
6706 else
6708 if (! VECTORP (*symbol_table)
6709 || XVECTOR (*symbol_table)->size != table_size)
6711 Lisp_Object size;
6713 XSETFASTINT (size, table_size);
6714 *symbol_table = Fmake_vector (size, Qnil);
6717 value = XVECTOR (*symbol_table)->contents[symbol_num];
6720 /* Have we already used this symbol before? */
6721 if (NILP (value))
6723 /* No; let's create it. */
6724 if (CONSP (name_alist_or_stem))
6725 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6726 else if (STRINGP (name_alist_or_stem))
6728 int len = SBYTES (name_alist_or_stem);
6729 char *buf = (char *) alloca (len + 50);
6730 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6731 (long) XINT (symbol_int) + 1);
6732 value = intern (buf);
6734 else if (name_table != 0 && name_table[symbol_num])
6735 value = intern (name_table[symbol_num]);
6737 #ifdef HAVE_WINDOW_SYSTEM
6738 if (NILP (value))
6740 char *name = x_get_keysym_name (symbol_num);
6741 if (name)
6742 value = intern (name);
6744 #endif
6746 if (NILP (value))
6748 char buf[20];
6749 sprintf (buf, "key-%d", symbol_num);
6750 value = intern (buf);
6753 if (CONSP (*symbol_table))
6754 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6755 else
6756 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6758 /* Fill in the cache entries for this symbol; this also
6759 builds the Qevent_symbol_elements property, which the user
6760 cares about. */
6761 apply_modifiers (modifiers & click_modifier, value);
6762 Fput (value, Qevent_kind, symbol_kind);
6765 /* Apply modifiers to that symbol. */
6766 return apply_modifiers (modifiers, value);
6769 /* Convert a list that represents an event type,
6770 such as (ctrl meta backspace), into the usual representation of that
6771 event type as a number or a symbol. */
6773 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6774 doc: /* Convert the event description list EVENT-DESC to an event type.
6775 EVENT-DESC should contain one base event type (a character or symbol)
6776 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6777 drag, down, double or triple). The base must be last.
6778 The return value is an event type (a character or symbol) which
6779 has the same base event type and all the specified modifiers. */)
6780 (event_desc)
6781 Lisp_Object event_desc;
6783 Lisp_Object base;
6784 int modifiers = 0;
6785 Lisp_Object rest;
6787 base = Qnil;
6788 rest = event_desc;
6789 while (CONSP (rest))
6791 Lisp_Object elt;
6792 int this = 0;
6794 elt = XCAR (rest);
6795 rest = XCDR (rest);
6797 /* Given a symbol, see if it is a modifier name. */
6798 if (SYMBOLP (elt) && CONSP (rest))
6799 this = parse_solitary_modifier (elt);
6801 if (this != 0)
6802 modifiers |= this;
6803 else if (!NILP (base))
6804 error ("Two bases given in one event");
6805 else
6806 base = elt;
6810 /* Let the symbol A refer to the character A. */
6811 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6812 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6814 if (INTEGERP (base))
6816 /* Turn (shift a) into A. */
6817 if ((modifiers & shift_modifier) != 0
6818 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6820 XSETINT (base, XINT (base) - ('a' - 'A'));
6821 modifiers &= ~shift_modifier;
6824 /* Turn (control a) into C-a. */
6825 if (modifiers & ctrl_modifier)
6826 return make_number ((modifiers & ~ctrl_modifier)
6827 | make_ctrl_char (XINT (base)));
6828 else
6829 return make_number (modifiers | XINT (base));
6831 else if (SYMBOLP (base))
6832 return apply_modifiers (modifiers, base);
6833 else
6835 error ("Invalid base event");
6836 return Qnil;
6840 /* Try to recognize SYMBOL as a modifier name.
6841 Return the modifier flag bit, or 0 if not recognized. */
6844 parse_solitary_modifier (Lisp_Object symbol)
6846 Lisp_Object name = SYMBOL_NAME (symbol);
6848 switch (SREF (name, 0))
6850 #define SINGLE_LETTER_MOD(BIT) \
6851 if (SBYTES (name) == 1) \
6852 return BIT;
6854 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6855 if (LEN == SBYTES (name) \
6856 && ! strncmp (SDATA (name), NAME, LEN)) \
6857 return BIT;
6859 case 'A':
6860 SINGLE_LETTER_MOD (alt_modifier);
6861 break;
6863 case 'a':
6864 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6865 break;
6867 case 'C':
6868 SINGLE_LETTER_MOD (ctrl_modifier);
6869 break;
6871 case 'c':
6872 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6873 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6874 break;
6876 case 'H':
6877 SINGLE_LETTER_MOD (hyper_modifier);
6878 break;
6880 case 'h':
6881 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6882 break;
6884 case 'M':
6885 SINGLE_LETTER_MOD (meta_modifier);
6886 break;
6888 case 'm':
6889 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6890 break;
6892 case 'S':
6893 SINGLE_LETTER_MOD (shift_modifier);
6894 break;
6896 case 's':
6897 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6898 MULTI_LETTER_MOD (super_modifier, "super", 5);
6899 SINGLE_LETTER_MOD (super_modifier);
6900 break;
6902 case 'd':
6903 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6904 MULTI_LETTER_MOD (down_modifier, "down", 4);
6905 MULTI_LETTER_MOD (double_modifier, "double", 6);
6906 break;
6908 case 't':
6909 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6910 break;
6912 #undef SINGLE_LETTER_MOD
6913 #undef MULTI_LETTER_MOD
6916 return 0;
6919 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6920 Such a list is not valid as an event,
6921 but it can be a Lucid-style event type list. */
6924 lucid_event_type_list_p (object)
6925 Lisp_Object object;
6927 Lisp_Object tail;
6929 if (! CONSP (object))
6930 return 0;
6932 if (EQ (XCAR (object), Qhelp_echo)
6933 || EQ (XCAR (object), Qvertical_line)
6934 || EQ (XCAR (object), Qmode_line)
6935 || EQ (XCAR (object), Qheader_line))
6936 return 0;
6938 for (tail = object; CONSP (tail); tail = XCDR (tail))
6940 Lisp_Object elt;
6941 elt = XCAR (tail);
6942 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6943 return 0;
6946 return NILP (tail);
6949 /* Store into *addr a value nonzero if terminal input chars are available.
6950 Serves the purpose of ioctl (0, FIONREAD, addr)
6951 but works even if FIONREAD does not exist.
6952 (In fact, this may actually read some input.)
6954 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6955 timer events that are ripe.
6956 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6957 events (FOCUS_IN_EVENT).
6958 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6959 movements and toolkit scroll bar thumb drags. */
6961 static void
6962 get_input_pending (addr, flags)
6963 int *addr;
6964 int flags;
6966 /* First of all, have we already counted some input? */
6967 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6969 /* If input is being read as it arrives, and we have none, there is none. */
6970 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6971 return;
6973 /* Try to read some input and see how much we get. */
6974 gobble_input (0);
6975 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6978 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6980 void
6981 gobble_input (expected)
6982 int expected;
6984 #ifdef HAVE_DBUS
6985 /* Check whether a D-Bus message has arrived. */
6986 xd_read_queued_messages ();
6987 #endif /* HAVE_DBUS */
6989 #ifdef SIGIO
6990 if (interrupt_input)
6992 SIGMASKTYPE mask;
6993 mask = sigblock (sigmask (SIGIO));
6994 read_avail_input (expected);
6995 sigsetmask (mask);
6997 else
6998 #ifdef POLL_FOR_INPUT
6999 /* XXX This condition was (read_socket_hook && !interrupt_input),
7000 but read_socket_hook is not global anymore. Let's pretend that
7001 it's always set. */
7002 if (!interrupt_input && poll_suppress_count == 0)
7004 SIGMASKTYPE mask;
7005 mask = sigblock (sigmask (SIGALRM));
7006 read_avail_input (expected);
7007 sigsetmask (mask);
7009 else
7010 #endif
7011 #endif
7012 read_avail_input (expected);
7015 /* Put a BUFFER_SWITCH_EVENT in the buffer
7016 so that read_key_sequence will notice the new current buffer. */
7018 void
7019 record_asynch_buffer_change ()
7021 struct input_event event;
7022 Lisp_Object tem;
7023 EVENT_INIT (event);
7025 event.kind = BUFFER_SWITCH_EVENT;
7026 event.frame_or_window = Qnil;
7027 event.arg = Qnil;
7029 #ifdef subprocesses
7030 /* We don't need a buffer-switch event unless Emacs is waiting for input.
7031 The purpose of the event is to make read_key_sequence look up the
7032 keymaps again. If we aren't in read_key_sequence, we don't need one,
7033 and the event could cause trouble by messing up (input-pending-p). */
7034 tem = Fwaiting_for_user_input_p ();
7035 if (NILP (tem))
7036 return;
7037 #else
7038 /* We never need these events if we have no asynchronous subprocesses. */
7039 return;
7040 #endif
7042 /* Make sure no interrupt happens while storing the event. */
7043 #ifdef SIGIO
7044 if (interrupt_input)
7046 SIGMASKTYPE mask;
7047 mask = sigblock (sigmask (SIGIO));
7048 kbd_buffer_store_event (&event);
7049 sigsetmask (mask);
7051 else
7052 #endif
7054 stop_polling ();
7055 kbd_buffer_store_event (&event);
7056 start_polling ();
7060 /* Read any terminal input already buffered up by the system
7061 into the kbd_buffer, but do not wait.
7063 EXPECTED should be nonzero if the caller knows there is some input.
7065 Returns the number of keyboard chars read, or -1 meaning
7066 this is a bad time to try to read input. */
7068 static int
7069 read_avail_input (expected)
7070 int expected;
7072 int nread = 0;
7073 int err = 0;
7074 struct terminal *t;
7076 /* Store pending user signal events, if any. */
7077 if (store_user_signal_events ())
7078 expected = 0;
7080 /* Loop through the available terminals, and call their input hooks. */
7081 t = terminal_list;
7082 while (t)
7084 struct terminal *next = t->next_terminal;
7086 if (t->read_socket_hook)
7088 int nr;
7089 struct input_event hold_quit;
7091 EVENT_INIT (hold_quit);
7092 hold_quit.kind = NO_EVENT;
7094 /* No need for FIONREAD or fcntl; just say don't wait. */
7095 while (nr = (*t->read_socket_hook) (t, expected, &hold_quit), nr > 0)
7097 nread += nr;
7098 expected = 0;
7101 if (nr == -1) /* Not OK to read input now. */
7103 err = 1;
7105 else if (nr == -2) /* Non-transient error. */
7107 /* The terminal device terminated; it should be closed. */
7109 /* Kill Emacs if this was our last terminal. */
7110 if (!terminal_list->next_terminal)
7111 /* Formerly simply reported no input, but that
7112 sometimes led to a failure of Emacs to terminate.
7113 SIGHUP seems appropriate if we can't reach the
7114 terminal. */
7115 /* ??? Is it really right to send the signal just to
7116 this process rather than to the whole process
7117 group? Perhaps on systems with FIONREAD Emacs is
7118 alone in its group. */
7119 kill (getpid (), SIGHUP);
7121 /* XXX Is calling delete_terminal safe here? It calls delete_frame. */
7123 Lisp_Object tmp;
7124 XSETTERMINAL (tmp, t);
7125 Fdelete_terminal (tmp, Qnoelisp);
7129 if (hold_quit.kind != NO_EVENT)
7130 kbd_buffer_store_event (&hold_quit);
7133 t = next;
7136 if (err && !nread)
7137 nread = -1;
7139 frame_make_pointer_visible ();
7141 return nread;
7144 static void
7145 decode_keyboard_code (struct tty_display_info *tty,
7146 struct coding_system *coding,
7147 unsigned char *buf, int nbytes)
7149 unsigned char *src = buf;
7150 const unsigned char *p;
7151 int i;
7153 if (nbytes == 0)
7154 return;
7155 if (tty->meta_key != 2)
7156 for (i = 0; i < nbytes; i++)
7157 buf[i] &= ~0x80;
7158 if (coding->carryover_bytes > 0)
7160 src = alloca (coding->carryover_bytes + nbytes);
7161 memcpy (src, coding->carryover, coding->carryover_bytes);
7162 memcpy (src + coding->carryover_bytes, buf, nbytes);
7163 nbytes += coding->carryover_bytes;
7165 coding->destination = alloca (nbytes * 4);
7166 coding->dst_bytes = nbytes * 4;
7167 decode_coding_c_string (coding, src, nbytes, Qnil);
7168 if (coding->produced_char == 0)
7169 return;
7170 for (i = 0, p = coding->destination; i < coding->produced_char; i++)
7172 struct input_event buf;
7174 EVENT_INIT (buf);
7175 buf.code = STRING_CHAR_ADVANCE (p);
7176 buf.kind = (ASCII_CHAR_P (buf.code)
7177 ? ASCII_KEYSTROKE_EVENT : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
7178 /* See the comment in tty_read_avail_input. */
7179 buf.frame_or_window = tty->top_frame;
7180 buf.arg = Qnil;
7181 kbd_buffer_store_event (&buf);
7185 /* This is the tty way of reading available input.
7187 Note that each terminal device has its own `struct terminal' object,
7188 and so this function is called once for each individual termcap
7189 terminal. The first parameter indicates which terminal to read from. */
7192 tty_read_avail_input (struct terminal *terminal,
7193 int expected,
7194 struct input_event *hold_quit)
7196 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
7197 the kbd_buffer can really hold. That may prevent loss
7198 of characters on some systems when input is stuffed at us. */
7199 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
7200 int n_to_read, i;
7201 struct tty_display_info *tty = terminal->display_info.tty;
7202 int nread = 0;
7204 if (!terminal->name) /* Don't read from a dead terminal. */
7205 return 0;
7207 if (terminal->type != output_termcap
7208 && terminal->type != output_msdos_raw)
7209 abort ();
7211 /* XXX I think the following code should be moved to separate hook
7212 functions in system-dependent files. */
7213 #ifdef WINDOWSNT
7214 return 0;
7215 #else /* not WINDOWSNT */
7216 if (! tty->term_initted) /* In case we get called during bootstrap. */
7217 return 0;
7219 if (! tty->input)
7220 return 0; /* The terminal is suspended. */
7222 #ifdef MSDOS
7223 n_to_read = dos_keysns ();
7224 if (n_to_read == 0)
7225 return 0;
7227 cbuf[0] = dos_keyread ();
7228 nread = 1;
7230 #else /* not MSDOS */
7231 #ifdef HAVE_GPM
7232 if (gpm_tty == tty)
7234 Gpm_Event event;
7235 struct input_event hold_quit;
7236 int gpm, fd = gpm_fd;
7238 EVENT_INIT (hold_quit);
7239 hold_quit.kind = NO_EVENT;
7241 /* gpm==1 if event received.
7242 gpm==0 if the GPM daemon has closed the connection, in which case
7243 Gpm_GetEvent closes gpm_fd and clears it to -1, which is why
7244 we save it in `fd' so close_gpm can remove it from the
7245 select masks.
7246 gpm==-1 if a protocol error or EWOULDBLOCK; the latter is normal. */
7247 while (gpm = Gpm_GetEvent (&event), gpm == 1) {
7248 nread += handle_one_term_event (tty, &event, &hold_quit);
7250 if (gpm == 0)
7251 /* Presumably the GPM daemon has closed the connection. */
7252 close_gpm (fd);
7253 if (hold_quit.kind != NO_EVENT)
7254 kbd_buffer_store_event (&hold_quit);
7255 if (nread)
7256 return nread;
7258 #endif /* HAVE_GPM */
7260 /* Determine how many characters we should *try* to read. */
7261 #ifdef FIONREAD
7262 /* Find out how much input is available. */
7263 if (ioctl (fileno (tty->input), FIONREAD, &n_to_read) < 0)
7265 if (! noninteractive)
7266 return -2; /* Close this terminal. */
7267 else
7268 n_to_read = 0;
7270 if (n_to_read == 0)
7271 return 0;
7272 if (n_to_read > sizeof cbuf)
7273 n_to_read = sizeof cbuf;
7274 #else /* no FIONREAD */
7275 #if defined (USG) || defined(CYGWIN)
7276 /* Read some input if available, but don't wait. */
7277 n_to_read = sizeof cbuf;
7278 fcntl (fileno (tty->input), F_SETFL, O_NDELAY);
7279 #else
7280 you lose;
7281 #endif
7282 #endif
7284 /* Now read; for one reason or another, this will not block.
7285 NREAD is set to the number of chars read. */
7288 nread = emacs_read (fileno (tty->input), cbuf, n_to_read);
7289 /* POSIX infers that processes which are not in the session leader's
7290 process group won't get SIGHUP's at logout time. BSDI adheres to
7291 this part standard and returns -1 from read (0) with errno==EIO
7292 when the control tty is taken away.
7293 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
7294 if (nread == -1 && errno == EIO)
7295 return -2; /* Close this terminal. */
7296 #if defined (AIX) && defined (_BSD)
7297 /* The kernel sometimes fails to deliver SIGHUP for ptys.
7298 This looks incorrect, but it isn't, because _BSD causes
7299 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
7300 and that causes a value other than 0 when there is no input. */
7301 if (nread == 0)
7302 return -2; /* Close this terminal. */
7303 #endif
7305 while (
7306 /* We used to retry the read if it was interrupted.
7307 But this does the wrong thing when O_NDELAY causes
7308 an EAGAIN error. Does anybody know of a situation
7309 where a retry is actually needed? */
7310 #if 0
7311 nread < 0 && (errno == EAGAIN
7312 #ifdef EFAULT
7313 || errno == EFAULT
7314 #endif
7315 #ifdef EBADSLT
7316 || errno == EBADSLT
7317 #endif
7319 #else
7321 #endif
7324 #ifndef FIONREAD
7325 #if defined (USG) || defined (CYGWIN)
7326 fcntl (fileno (tty->input), F_SETFL, 0);
7327 #endif /* USG or CYGWIN */
7328 #endif /* no FIONREAD */
7330 if (nread <= 0)
7331 return nread;
7333 #endif /* not MSDOS */
7334 #endif /* not WINDOWSNT */
7336 if (TERMINAL_KEYBOARD_CODING (terminal)->common_flags
7337 & CODING_REQUIRE_DECODING_MASK)
7339 struct coding_system *coding = TERMINAL_KEYBOARD_CODING (terminal);
7340 int from;
7342 /* Decode the key sequence except for those with meta
7343 modifiers. */
7344 for (i = from = 0; ; i++)
7345 if (i == nread || (tty->meta_key == 1 && (cbuf[i] & 0x80)))
7347 struct input_event buf;
7349 decode_keyboard_code (tty, coding, cbuf + from, i - from);
7350 if (i == nread)
7351 break;
7353 EVENT_INIT (buf);
7354 buf.kind = ASCII_KEYSTROKE_EVENT;
7355 buf.modifiers = meta_modifier;
7356 buf.code = cbuf[i] & ~0x80;
7357 /* See the comment below. */
7358 buf.frame_or_window = tty->top_frame;
7359 buf.arg = Qnil;
7360 kbd_buffer_store_event (&buf);
7361 from = i + 1;
7363 return nread;
7366 for (i = 0; i < nread; i++)
7368 struct input_event buf;
7369 EVENT_INIT (buf);
7370 buf.kind = ASCII_KEYSTROKE_EVENT;
7371 buf.modifiers = 0;
7372 if (tty->meta_key == 1 && (cbuf[i] & 0x80))
7373 buf.modifiers = meta_modifier;
7374 if (tty->meta_key != 2)
7375 cbuf[i] &= ~0x80;
7377 buf.code = cbuf[i];
7378 /* Set the frame corresponding to the active tty. Note that the
7379 value of selected_frame is not reliable here, redisplay tends
7380 to temporarily change it. */
7381 buf.frame_or_window = tty->top_frame;
7382 buf.arg = Qnil;
7384 kbd_buffer_store_event (&buf);
7385 /* Don't look at input that follows a C-g too closely.
7386 This reduces lossage due to autorepeat on C-g. */
7387 if (buf.kind == ASCII_KEYSTROKE_EVENT
7388 && buf.code == quit_char)
7389 break;
7392 return nread;
7395 void
7396 handle_async_input ()
7398 interrupt_input_pending = 0;
7399 #ifdef SYNC_INPUT
7400 pending_signals = pending_atimers;
7401 #endif
7402 /* Tell ns_read_socket() it is being called asynchronously so it can avoid
7403 doing anything dangerous. */
7404 #ifdef HAVE_NS
7405 ++handling_signal;
7406 #endif
7407 while (1)
7409 int nread;
7410 nread = read_avail_input (1);
7411 /* -1 means it's not ok to read the input now.
7412 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
7413 0 means there was no keyboard input available. */
7414 if (nread <= 0)
7415 break;
7417 #ifdef HAVE_NS
7418 --handling_signal;
7419 #endif
7422 void
7423 process_pending_signals ()
7425 if (interrupt_input_pending)
7426 handle_async_input ();
7427 do_pending_atimers ();
7430 #ifdef SIGIO /* for entire page */
7431 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7433 static SIGTYPE
7434 input_available_signal (signo)
7435 int signo;
7437 /* Must preserve main program's value of errno. */
7438 int old_errno = errno;
7439 #if defined (USG) && !defined (POSIX_SIGNALS)
7440 /* USG systems forget handlers when they are used;
7441 must reestablish each time */
7442 signal (signo, input_available_signal);
7443 #endif /* USG */
7445 #ifdef SYNC_INPUT
7446 interrupt_input_pending = 1;
7447 pending_signals = 1;
7448 #else
7449 SIGNAL_THREAD_CHECK (signo);
7450 #endif
7452 if (input_available_clear_time)
7453 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
7455 #ifndef SYNC_INPUT
7456 handle_async_input ();
7457 #endif
7459 errno = old_errno;
7461 #endif /* SIGIO */
7463 /* Send ourselves a SIGIO.
7465 This function exists so that the UNBLOCK_INPUT macro in
7466 blockinput.h can have some way to take care of input we put off
7467 dealing with, without assuming that every file which uses
7468 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
7469 void
7470 reinvoke_input_signal ()
7472 #ifdef SIGIO
7473 handle_async_input ();
7474 #endif
7479 /* User signal events. */
7481 struct user_signal_info
7483 /* Signal number. */
7484 int sig;
7486 /* Name of the signal. */
7487 char *name;
7489 /* Number of pending signals. */
7490 int npending;
7492 struct user_signal_info *next;
7495 /* List of user signals. */
7496 static struct user_signal_info *user_signals = NULL;
7498 void
7499 add_user_signal (sig, name)
7500 int sig;
7501 const char *name;
7503 struct user_signal_info *p;
7505 for (p = user_signals; p; p = p->next)
7506 if (p->sig == sig)
7507 /* Already added. */
7508 return;
7510 p = xmalloc (sizeof (struct user_signal_info));
7511 p->sig = sig;
7512 p->name = xstrdup (name);
7513 p->npending = 0;
7514 p->next = user_signals;
7515 user_signals = p;
7517 signal (sig, handle_user_signal);
7520 static SIGTYPE
7521 handle_user_signal (sig)
7522 int sig;
7524 int old_errno = errno;
7525 struct user_signal_info *p;
7527 #if defined (USG) && !defined (POSIX_SIGNALS)
7528 /* USG systems forget handlers when they are used;
7529 must reestablish each time */
7530 signal (sig, handle_user_signal);
7531 #endif
7533 SIGNAL_THREAD_CHECK (sig);
7535 for (p = user_signals; p; p = p->next)
7536 if (p->sig == sig)
7538 p->npending++;
7539 #ifdef SIGIO
7540 if (interrupt_input)
7541 kill (getpid (), SIGIO);
7542 else
7543 #endif
7545 /* Tell wait_reading_process_output that it needs to wake
7546 up and look around. */
7547 if (input_available_clear_time)
7548 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
7550 break;
7553 errno = old_errno;
7556 static char *
7557 find_user_signal_name (sig)
7558 int sig;
7560 struct user_signal_info *p;
7562 for (p = user_signals; p; p = p->next)
7563 if (p->sig == sig)
7564 return p->name;
7566 return NULL;
7569 static int
7570 store_user_signal_events ()
7572 struct user_signal_info *p;
7573 struct input_event buf;
7574 int nstored = 0;
7576 for (p = user_signals; p; p = p->next)
7577 if (p->npending > 0)
7579 SIGMASKTYPE mask;
7581 if (nstored == 0)
7583 bzero (&buf, sizeof buf);
7584 buf.kind = USER_SIGNAL_EVENT;
7585 buf.frame_or_window = selected_frame;
7587 nstored += p->npending;
7589 mask = sigblock (sigmask (p->sig));
7592 buf.code = p->sig;
7593 kbd_buffer_store_event (&buf);
7594 p->npending--;
7596 while (p->npending > 0);
7597 sigsetmask (mask);
7600 return nstored;
7604 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
7605 static Lisp_Object menu_bar_one_keymap_changed_items;
7607 /* These variables hold the vector under construction within
7608 menu_bar_items and its subroutines, and the current index
7609 for storing into that vector. */
7610 static Lisp_Object menu_bar_items_vector;
7611 static int menu_bar_items_index;
7613 /* Return a vector of menu items for a menu bar, appropriate
7614 to the current buffer. Each item has three elements in the vector:
7615 KEY STRING MAPLIST.
7617 OLD is an old vector we can optionally reuse, or nil. */
7619 Lisp_Object
7620 menu_bar_items (old)
7621 Lisp_Object old;
7623 /* The number of keymaps we're scanning right now, and the number of
7624 keymaps we have allocated space for. */
7625 int nmaps;
7627 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7628 in the current keymaps, or nil where it is not a prefix. */
7629 Lisp_Object *maps;
7631 Lisp_Object def, tail;
7633 Lisp_Object result;
7635 int mapno;
7636 Lisp_Object oquit;
7638 int i;
7640 /* In order to build the menus, we need to call the keymap
7641 accessors. They all call QUIT. But this function is called
7642 during redisplay, during which a quit is fatal. So inhibit
7643 quitting while building the menus.
7644 We do this instead of specbind because (1) errors will clear it anyway
7645 and (2) this avoids risk of specpdl overflow. */
7646 oquit = Vinhibit_quit;
7647 Vinhibit_quit = Qt;
7649 if (!NILP (old))
7650 menu_bar_items_vector = old;
7651 else
7652 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
7653 menu_bar_items_index = 0;
7655 /* Build our list of keymaps.
7656 If we recognize a function key and replace its escape sequence in
7657 keybuf with its symbol, or if the sequence starts with a mouse
7658 click and we need to switch buffers, we jump back here to rebuild
7659 the initial keymaps from the current buffer. */
7661 Lisp_Object *tmaps;
7663 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7664 if (!NILP (Voverriding_local_map_menu_flag))
7666 /* Yes, use them (if non-nil) as well as the global map. */
7667 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7668 nmaps = 0;
7669 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7670 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7671 if (!NILP (Voverriding_local_map))
7672 maps[nmaps++] = Voverriding_local_map;
7674 else
7676 /* No, so use major and minor mode keymaps and keymap property.
7677 Note that menu-bar bindings in the local-map and keymap
7678 properties may not work reliable, as they are only
7679 recognized when the menu-bar (or mode-line) is updated,
7680 which does not normally happen after every command. */
7681 Lisp_Object tem;
7682 int nminor;
7683 nminor = current_minor_maps (NULL, &tmaps);
7684 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7685 nmaps = 0;
7686 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7687 maps[nmaps++] = tem;
7688 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7689 nmaps += nminor;
7690 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7692 maps[nmaps++] = current_global_map;
7695 /* Look up in each map the dummy prefix key `menu-bar'. */
7697 result = Qnil;
7699 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7700 if (!NILP (maps[mapno]))
7702 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7703 0, 1);
7704 if (CONSP (def))
7706 menu_bar_one_keymap_changed_items = Qnil;
7707 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
7711 /* Move to the end those items that should be at the end. */
7713 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7715 int i;
7716 int end = menu_bar_items_index;
7718 for (i = 0; i < end; i += 4)
7719 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
7721 Lisp_Object tem0, tem1, tem2, tem3;
7722 /* Move the item at index I to the end,
7723 shifting all the others forward. */
7724 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
7725 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
7726 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7727 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
7728 if (end > i + 4)
7729 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7730 &XVECTOR (menu_bar_items_vector)->contents[i],
7731 (end - i - 4) * sizeof (Lisp_Object));
7732 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
7733 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
7734 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
7735 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
7736 break;
7740 /* Add nil, nil, nil, nil at the end. */
7741 i = menu_bar_items_index;
7742 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7743 menu_bar_items_vector = larger_vector (menu_bar_items_vector, 2 * i, Qnil);
7744 /* Add this item. */
7745 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7746 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7747 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7748 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7749 menu_bar_items_index = i;
7751 Vinhibit_quit = oquit;
7752 return menu_bar_items_vector;
7755 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7756 If there's already an item for KEY, add this DEF to it. */
7758 Lisp_Object item_properties;
7760 static void
7761 menu_bar_item (key, item, dummy1, dummy2)
7762 Lisp_Object key, item, dummy1;
7763 void *dummy2;
7765 struct gcpro gcpro1;
7766 int i;
7767 Lisp_Object tem;
7769 if (EQ (item, Qundefined))
7771 /* If a map has an explicit `undefined' as definition,
7772 discard any previously made menu bar item. */
7774 for (i = 0; i < menu_bar_items_index; i += 4)
7775 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7777 if (menu_bar_items_index > i + 4)
7778 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7779 &XVECTOR (menu_bar_items_vector)->contents[i],
7780 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
7781 menu_bar_items_index -= 4;
7785 /* If this keymap has already contributed to this KEY,
7786 don't contribute to it a second time. */
7787 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7788 if (!NILP (tem) || NILP (item))
7789 return;
7791 menu_bar_one_keymap_changed_items
7792 = Fcons (key, menu_bar_one_keymap_changed_items);
7794 /* We add to menu_bar_one_keymap_changed_items before doing the
7795 parse_menu_item, so that if it turns out it wasn't a menu item,
7796 it still correctly hides any further menu item. */
7797 GCPRO1 (key);
7798 i = parse_menu_item (item, 0, 1);
7799 UNGCPRO;
7800 if (!i)
7801 return;
7803 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7805 /* Find any existing item for this KEY. */
7806 for (i = 0; i < menu_bar_items_index; i += 4)
7807 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7808 break;
7810 /* If we did not find this KEY, add it at the end. */
7811 if (i == menu_bar_items_index)
7813 /* If vector is too small, get a bigger one. */
7814 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7815 menu_bar_items_vector = larger_vector (menu_bar_items_vector, 2 * i, Qnil);
7816 /* Add this item. */
7817 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
7818 XVECTOR (menu_bar_items_vector)->contents[i++]
7819 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7820 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
7821 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
7822 menu_bar_items_index = i;
7824 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7825 else
7827 Lisp_Object old;
7828 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7829 /* If the new and the old items are not both keymaps,
7830 the lookup will only find `item'. */
7831 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7832 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
7836 /* This is used as the handler when calling menu_item_eval_property. */
7837 static Lisp_Object
7838 menu_item_eval_property_1 (arg)
7839 Lisp_Object arg;
7841 /* If we got a quit from within the menu computation,
7842 quit all the way out of it. This takes care of C-] in the debugger. */
7843 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7844 Fsignal (Qquit, Qnil);
7846 return Qnil;
7849 /* Evaluate an expression and return the result (or nil if something
7850 went wrong). Used to evaluate dynamic parts of menu items. */
7851 Lisp_Object
7852 menu_item_eval_property (sexpr)
7853 Lisp_Object sexpr;
7855 int count = SPECPDL_INDEX ();
7856 Lisp_Object val;
7857 specbind (Qinhibit_redisplay, Qt);
7858 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7859 menu_item_eval_property_1);
7860 return unbind_to (count, val);
7863 /* This function parses a menu item and leaves the result in the
7864 vector item_properties.
7865 ITEM is a key binding, a possible menu item.
7866 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7867 evaluate dynamic expressions in the menu item.
7868 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7869 top level.
7870 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7871 parse_menu_item returns true if the item is a menu item and false
7872 otherwise. */
7875 parse_menu_item (item, notreal, inmenubar)
7876 Lisp_Object item;
7877 int notreal, inmenubar;
7879 Lisp_Object def, tem, item_string, start;
7880 Lisp_Object cachelist;
7881 Lisp_Object filter;
7882 Lisp_Object keyhint;
7883 int i;
7884 int newcache = 0;
7886 cachelist = Qnil;
7887 filter = Qnil;
7888 keyhint = Qnil;
7890 if (!CONSP (item))
7891 return 0;
7893 /* Create item_properties vector if necessary. */
7894 if (NILP (item_properties))
7895 item_properties
7896 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7898 /* Initialize optional entries. */
7899 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7900 ASET (item_properties, i, Qnil);
7901 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7903 /* Save the item here to protect it from GC. */
7904 ASET (item_properties, ITEM_PROPERTY_ITEM, item);
7906 item_string = XCAR (item);
7908 start = item;
7909 item = XCDR (item);
7910 if (STRINGP (item_string))
7912 /* Old format menu item. */
7913 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
7915 /* Maybe help string. */
7916 if (CONSP (item) && STRINGP (XCAR (item)))
7918 ASET (item_properties, ITEM_PROPERTY_HELP, XCAR (item));
7919 start = item;
7920 item = XCDR (item);
7923 /* Maybe key binding cache. */
7924 if (CONSP (item) && CONSP (XCAR (item))
7925 && (NILP (XCAR (XCAR (item)))
7926 || VECTORP (XCAR (XCAR (item)))))
7928 cachelist = XCAR (item);
7929 item = XCDR (item);
7932 /* This is the real definition--the function to run. */
7933 ASET (item_properties, ITEM_PROPERTY_DEF, item);
7935 /* Get enable property, if any. */
7936 if (SYMBOLP (item))
7938 tem = Fget (item, Qmenu_enable);
7939 if (!NILP (Venable_disabled_menus_and_buttons))
7940 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7941 else if (!NILP (tem))
7942 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
7945 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7947 /* New format menu item. */
7948 ASET (item_properties, ITEM_PROPERTY_NAME, XCAR (item));
7949 start = XCDR (item);
7950 if (CONSP (start))
7952 /* We have a real binding. */
7953 ASET (item_properties, ITEM_PROPERTY_DEF, XCAR (start));
7955 item = XCDR (start);
7956 /* Is there a cache list with key equivalences. */
7957 if (CONSP (item) && CONSP (XCAR (item)))
7959 cachelist = XCAR (item);
7960 item = XCDR (item);
7963 /* Parse properties. */
7964 while (CONSP (item) && CONSP (XCDR (item)))
7966 tem = XCAR (item);
7967 item = XCDR (item);
7969 if (EQ (tem, QCenable))
7971 if (!NILP (Venable_disabled_menus_and_buttons))
7972 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7973 else
7974 ASET (item_properties, ITEM_PROPERTY_ENABLE, XCAR (item));
7976 else if (EQ (tem, QCvisible) && !notreal)
7978 /* If got a visible property and that evaluates to nil
7979 then ignore this item. */
7980 tem = menu_item_eval_property (XCAR (item));
7981 if (NILP (tem))
7982 return 0;
7984 else if (EQ (tem, QChelp))
7985 ASET (item_properties, ITEM_PROPERTY_HELP, XCAR (item));
7986 else if (EQ (tem, QCfilter))
7987 filter = item;
7988 else if (EQ (tem, QCkey_sequence))
7990 tem = XCAR (item);
7991 if (NILP (cachelist)
7992 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7993 /* Be GC protected. Set keyhint to item instead of tem. */
7994 keyhint = item;
7996 else if (EQ (tem, QCkeys))
7998 tem = XCAR (item);
7999 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
8000 ASET (item_properties, ITEM_PROPERTY_KEYEQ, tem);
8002 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
8004 Lisp_Object type;
8005 tem = XCAR (item);
8006 type = XCAR (tem);
8007 if (EQ (type, QCtoggle) || EQ (type, QCradio))
8009 ASET (item_properties, ITEM_PROPERTY_SELECTED,
8010 XCDR (tem));
8011 ASET (item_properties, ITEM_PROPERTY_TYPE, type);
8014 item = XCDR (item);
8017 else if (inmenubar || !NILP (start))
8018 return 0;
8020 else
8021 return 0; /* not a menu item */
8023 /* If item string is not a string, evaluate it to get string.
8024 If we don't get a string, skip this item. */
8025 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
8026 if (!(STRINGP (item_string) || notreal))
8028 item_string = menu_item_eval_property (item_string);
8029 if (!STRINGP (item_string))
8030 return 0;
8031 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
8034 /* If got a filter apply it on definition. */
8035 def = AREF (item_properties, ITEM_PROPERTY_DEF);
8036 if (!NILP (filter))
8038 def = menu_item_eval_property (list2 (XCAR (filter),
8039 list2 (Qquote, def)));
8041 ASET (item_properties, ITEM_PROPERTY_DEF, def);
8044 /* Enable or disable selection of item. */
8045 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
8046 if (!EQ (tem, Qt))
8048 if (notreal)
8049 tem = Qt;
8050 else
8051 tem = menu_item_eval_property (tem);
8052 if (inmenubar && NILP (tem))
8053 return 0; /* Ignore disabled items in menu bar. */
8054 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
8057 /* If we got no definition, this item is just unselectable text which
8058 is OK in a submenu but not in the menubar. */
8059 if (NILP (def))
8060 return (inmenubar ? 0 : 1);
8062 /* See if this is a separate pane or a submenu. */
8063 def = AREF (item_properties, ITEM_PROPERTY_DEF);
8064 tem = get_keymap (def, 0, 1);
8065 /* For a subkeymap, just record its details and exit. */
8066 if (CONSP (tem))
8068 ASET (item_properties, ITEM_PROPERTY_MAP, tem);
8069 ASET (item_properties, ITEM_PROPERTY_DEF, tem);
8070 return 1;
8073 /* At the top level in the menu bar, do likewise for commands also.
8074 The menu bar does not display equivalent key bindings anyway.
8075 ITEM_PROPERTY_DEF is already set up properly. */
8076 if (inmenubar > 0)
8077 return 1;
8079 /* This is a command. See if there is an equivalent key binding. */
8080 if (NILP (cachelist))
8082 /* We have to create a cachelist. */
8083 /* With the introduction of where_is_cache, the computation
8084 of equivalent key bindings is sufficiently fast that we
8085 do not need to cache it here any more. */
8086 /* CHECK_IMPURE (start);
8087 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
8088 cachelist = XCAR (XCDR (start)); */
8089 cachelist = Fcons (Qnil, Qnil);
8090 newcache = 1;
8091 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
8092 if (!NILP (keyhint))
8094 XSETCAR (cachelist, XCAR (keyhint));
8095 newcache = 0;
8097 else if (STRINGP (tem))
8099 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
8100 XSETCAR (cachelist, Qt);
8104 tem = XCAR (cachelist);
8105 if (!EQ (tem, Qt))
8107 int chkcache = 0;
8108 Lisp_Object prefix;
8110 if (!NILP (tem))
8111 tem = Fkey_binding (tem, Qnil, Qnil, Qnil);
8113 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
8114 if (CONSP (prefix))
8116 def = XCAR (prefix);
8117 prefix = XCDR (prefix);
8119 else
8120 def = AREF (item_properties, ITEM_PROPERTY_DEF);
8122 if (NILP (XCAR (cachelist))) /* Have no saved key. */
8124 if (newcache /* Always check first time. */
8125 /* Should we check everything when precomputing key
8126 bindings? */
8127 /* If something had no key binding before, don't recheck it
8128 because that is too slow--except if we have a list of
8129 rebound commands in Vdefine_key_rebound_commands, do
8130 recheck any command that appears in that list. */
8131 || (CONSP (Vdefine_key_rebound_commands)
8132 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
8133 chkcache = 1;
8135 /* We had a saved key. Is it still bound to the command? */
8136 else if (NILP (tem)
8137 || (!EQ (tem, def)
8138 /* If the command is an alias for another
8139 (such as lmenu.el set it up), check if the
8140 original command matches the cached command. */
8141 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
8142 chkcache = 1; /* Need to recompute key binding. */
8144 if (chkcache)
8146 /* Recompute equivalent key binding. If the command is an alias
8147 for another (such as lmenu.el set it up), see if the original
8148 command name has equivalent keys. Otherwise look up the
8149 specified command itself. We don't try both, because that
8150 makes lmenu menus slow. */
8151 if (SYMBOLP (def)
8152 && SYMBOLP (XSYMBOL (def)->function)
8153 && ! NILP (Fget (def, Qmenu_alias)))
8154 def = XSYMBOL (def)->function;
8155 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
8157 /* Don't display remap bindings.*/
8158 if (VECTORP (tem) && ASIZE (tem) > 0 && EQ (AREF (tem, 0), Qremap))
8159 tem = Qnil;
8161 XSETCAR (cachelist, tem);
8162 if (NILP (tem))
8164 XSETCDR (cachelist, Qnil);
8165 chkcache = 0;
8168 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
8170 tem = XCAR (cachelist);
8171 chkcache = 1;
8174 newcache = chkcache;
8175 if (chkcache)
8177 tem = Fkey_description (tem, Qnil);
8178 if (CONSP (prefix))
8180 if (STRINGP (XCAR (prefix)))
8181 tem = concat2 (XCAR (prefix), tem);
8182 if (STRINGP (XCDR (prefix)))
8183 tem = concat2 (tem, XCDR (prefix));
8185 XSETCDR (cachelist, tem);
8189 tem = XCDR (cachelist);
8190 if (newcache && !NILP (tem))
8192 tem = concat2 (build_string (" "), tem);
8193 /* tem = concat3 (build_string (" ("), tem, build_string (")")); */
8194 XSETCDR (cachelist, tem);
8197 /* If we only want to precompute equivalent key bindings, stop here. */
8198 if (notreal)
8199 return 1;
8201 /* If we have an equivalent key binding, use that. */
8202 ASET (item_properties, ITEM_PROPERTY_KEYEQ, tem);
8204 /* Include this when menu help is implemented.
8205 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
8206 if (!(NILP (tem) || STRINGP (tem)))
8208 tem = menu_item_eval_property (tem);
8209 if (!STRINGP (tem))
8210 tem = Qnil;
8211 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
8215 /* Handle radio buttons or toggle boxes. */
8216 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
8217 if (!NILP (tem))
8218 ASET (item_properties, ITEM_PROPERTY_SELECTED,
8219 menu_item_eval_property (tem));
8221 return 1;
8226 /***********************************************************************
8227 Tool-bars
8228 ***********************************************************************/
8230 /* A vector holding tool bar items while they are parsed in function
8231 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
8232 in the vector. */
8234 static Lisp_Object tool_bar_items_vector;
8236 /* A vector holding the result of parse_tool_bar_item. Layout is like
8237 the one for a single item in tool_bar_items_vector. */
8239 static Lisp_Object tool_bar_item_properties;
8241 /* Next free index in tool_bar_items_vector. */
8243 static int ntool_bar_items;
8245 /* The symbols `tool-bar', `:image' and `:rtl'. */
8247 extern Lisp_Object Qtool_bar;
8248 Lisp_Object QCimage;
8249 Lisp_Object Qrtl;
8251 /* Function prototypes. */
8253 static void init_tool_bar_items P_ ((Lisp_Object));
8254 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
8255 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
8256 static void append_tool_bar_item P_ ((void));
8259 /* Return a vector of tool bar items for keymaps currently in effect.
8260 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
8261 tool bar items found. */
8263 Lisp_Object
8264 tool_bar_items (reuse, nitems)
8265 Lisp_Object reuse;
8266 int *nitems;
8268 Lisp_Object *maps;
8269 int nmaps, i;
8270 Lisp_Object oquit;
8271 Lisp_Object *tmaps;
8273 *nitems = 0;
8275 /* In order to build the menus, we need to call the keymap
8276 accessors. They all call QUIT. But this function is called
8277 during redisplay, during which a quit is fatal. So inhibit
8278 quitting while building the menus. We do this instead of
8279 specbind because (1) errors will clear it anyway and (2) this
8280 avoids risk of specpdl overflow. */
8281 oquit = Vinhibit_quit;
8282 Vinhibit_quit = Qt;
8284 /* Initialize tool_bar_items_vector and protect it from GC. */
8285 init_tool_bar_items (reuse);
8287 /* Build list of keymaps in maps. Set nmaps to the number of maps
8288 to process. */
8290 /* Should overriding-terminal-local-map and overriding-local-map apply? */
8291 if (!NILP (Voverriding_local_map_menu_flag))
8293 /* Yes, use them (if non-nil) as well as the global map. */
8294 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
8295 nmaps = 0;
8296 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8297 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8298 if (!NILP (Voverriding_local_map))
8299 maps[nmaps++] = Voverriding_local_map;
8301 else
8303 /* No, so use major and minor mode keymaps and keymap property.
8304 Note that tool-bar bindings in the local-map and keymap
8305 properties may not work reliable, as they are only
8306 recognized when the tool-bar (or mode-line) is updated,
8307 which does not normally happen after every command. */
8308 Lisp_Object tem;
8309 int nminor;
8310 nminor = current_minor_maps (NULL, &tmaps);
8311 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
8312 nmaps = 0;
8313 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
8314 maps[nmaps++] = tem;
8315 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
8316 nmaps += nminor;
8317 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
8320 /* Add global keymap at the end. */
8321 maps[nmaps++] = current_global_map;
8323 /* Process maps in reverse order and look up in each map the prefix
8324 key `tool-bar'. */
8325 for (i = nmaps - 1; i >= 0; --i)
8326 if (!NILP (maps[i]))
8328 Lisp_Object keymap;
8330 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
8331 if (CONSP (keymap))
8332 map_keymap (keymap, process_tool_bar_item, Qnil, NULL, 1);
8335 Vinhibit_quit = oquit;
8336 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
8337 return tool_bar_items_vector;
8341 /* Process the definition of KEY which is DEF. */
8343 static void
8344 process_tool_bar_item (key, def, data, args)
8345 Lisp_Object key, def, data;
8346 void *args;
8348 int i;
8349 extern Lisp_Object Qundefined;
8350 struct gcpro gcpro1, gcpro2;
8352 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
8353 eval. */
8354 GCPRO2 (key, def);
8356 if (EQ (def, Qundefined))
8358 /* If a map has an explicit `undefined' as definition,
8359 discard any previously made item. */
8360 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
8362 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
8364 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
8366 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
8367 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
8368 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
8369 * sizeof (Lisp_Object)));
8370 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
8371 break;
8375 else if (parse_tool_bar_item (key, def))
8376 /* Append a new tool bar item to tool_bar_items_vector. Accept
8377 more than one definition for the same key. */
8378 append_tool_bar_item ();
8380 UNGCPRO;
8384 /* Parse a tool bar item specification ITEM for key KEY and return the
8385 result in tool_bar_item_properties. Value is zero if ITEM is
8386 invalid.
8388 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
8390 CAPTION is the caption of the item, If it's not a string, it is
8391 evaluated to get a string.
8393 BINDING is the tool bar item's binding. Tool-bar items with keymaps
8394 as binding are currently ignored.
8396 The following properties are recognized:
8398 - `:enable FORM'.
8400 FORM is evaluated and specifies whether the tool bar item is
8401 enabled or disabled.
8403 - `:visible FORM'
8405 FORM is evaluated and specifies whether the tool bar item is visible.
8407 - `:filter FUNCTION'
8409 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
8410 result is stored as the new binding.
8412 - `:button (TYPE SELECTED)'
8414 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8415 and specifies whether the button is selected (pressed) or not.
8417 - `:image IMAGES'
8419 IMAGES is either a single image specification or a vector of four
8420 image specifications. See enum tool_bar_item_images.
8422 - `:help HELP-STRING'.
8424 Gives a help string to display for the tool bar item. */
8426 static int
8427 parse_tool_bar_item (key, item)
8428 Lisp_Object key, item;
8430 /* Access slot with index IDX of vector tool_bar_item_properties. */
8431 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
8433 Lisp_Object filter = Qnil;
8434 Lisp_Object caption;
8435 int i;
8437 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
8438 Rule out items that aren't lists, don't start with
8439 `menu-item' or whose rest following `tool-bar-item' is not a
8440 list. */
8441 if (!CONSP (item)
8442 || !EQ (XCAR (item), Qmenu_item)
8443 || (item = XCDR (item),
8444 !CONSP (item)))
8445 return 0;
8447 /* Create tool_bar_item_properties vector if necessary. Reset it to
8448 defaults. */
8449 if (VECTORP (tool_bar_item_properties))
8451 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
8452 PROP (i) = Qnil;
8454 else
8455 tool_bar_item_properties
8456 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
8458 /* Set defaults. */
8459 PROP (TOOL_BAR_ITEM_KEY) = key;
8460 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
8462 /* Get the caption of the item. If the caption is not a string,
8463 evaluate it to get a string. If we don't get a string, skip this
8464 item. */
8465 caption = XCAR (item);
8466 if (!STRINGP (caption))
8468 caption = menu_item_eval_property (caption);
8469 if (!STRINGP (caption))
8470 return 0;
8472 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
8474 /* Give up if rest following the caption is not a list. */
8475 item = XCDR (item);
8476 if (!CONSP (item))
8477 return 0;
8479 /* Store the binding. */
8480 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
8481 item = XCDR (item);
8483 /* Ignore cached key binding, if any. */
8484 if (CONSP (item) && CONSP (XCAR (item)))
8485 item = XCDR (item);
8487 /* Process the rest of the properties. */
8488 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
8490 Lisp_Object key, value;
8492 key = XCAR (item);
8493 value = XCAR (XCDR (item));
8495 if (EQ (key, QCenable))
8497 /* `:enable FORM'. */
8498 if (!NILP (Venable_disabled_menus_and_buttons))
8499 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
8500 else
8501 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
8503 else if (EQ (key, QCvisible))
8505 /* `:visible FORM'. If got a visible property and that
8506 evaluates to nil then ignore this item. */
8507 if (NILP (menu_item_eval_property (value)))
8508 return 0;
8510 else if (EQ (key, QChelp))
8511 /* `:help HELP-STRING'. */
8512 PROP (TOOL_BAR_ITEM_HELP) = value;
8513 else if (EQ (key, QCfilter))
8514 /* ':filter FORM'. */
8515 filter = value;
8516 else if (EQ (key, QCbutton) && CONSP (value))
8518 /* `:button (TYPE . SELECTED)'. */
8519 Lisp_Object type, selected;
8521 type = XCAR (value);
8522 selected = XCDR (value);
8523 if (EQ (type, QCtoggle) || EQ (type, QCradio))
8525 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
8526 PROP (TOOL_BAR_ITEM_TYPE) = type;
8529 else if (EQ (key, QCimage)
8530 && (CONSP (value)
8531 || (VECTORP (value) && XVECTOR (value)->size == 4)))
8532 /* Value is either a single image specification or a vector
8533 of 4 such specifications for the different button states. */
8534 PROP (TOOL_BAR_ITEM_IMAGES) = value;
8535 else if (EQ (key, Qrtl))
8536 /* ':rtl STRING' */
8537 PROP (TOOL_BAR_ITEM_RTL_IMAGE) = value;
8540 /* If got a filter apply it on binding. */
8541 if (!NILP (filter))
8542 PROP (TOOL_BAR_ITEM_BINDING)
8543 = menu_item_eval_property (list2 (filter,
8544 list2 (Qquote,
8545 PROP (TOOL_BAR_ITEM_BINDING))));
8547 /* See if the binding is a keymap. Give up if it is. */
8548 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
8549 return 0;
8551 /* Enable or disable selection of item. */
8552 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
8553 PROP (TOOL_BAR_ITEM_ENABLED_P)
8554 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
8556 /* Handle radio buttons or toggle boxes. */
8557 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
8558 PROP (TOOL_BAR_ITEM_SELECTED_P)
8559 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
8561 return 1;
8563 #undef PROP
8567 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8568 that can be reused. */
8570 static void
8571 init_tool_bar_items (reuse)
8572 Lisp_Object reuse;
8574 if (VECTORP (reuse))
8575 tool_bar_items_vector = reuse;
8576 else
8577 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
8578 ntool_bar_items = 0;
8582 /* Append parsed tool bar item properties from
8583 tool_bar_item_properties */
8585 static void
8586 append_tool_bar_item ()
8588 Lisp_Object *to, *from;
8590 /* Enlarge tool_bar_items_vector if necessary. */
8591 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
8592 >= XVECTOR (tool_bar_items_vector)->size)
8593 tool_bar_items_vector
8594 = larger_vector (tool_bar_items_vector,
8595 2 * XVECTOR (tool_bar_items_vector)->size, Qnil);
8597 /* Append entries from tool_bar_item_properties to the end of
8598 tool_bar_items_vector. */
8599 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
8600 from = XVECTOR (tool_bar_item_properties)->contents;
8601 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
8602 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
8609 /* Read a character using menus based on maps in the array MAPS.
8610 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
8611 Return t if we displayed a menu but the user rejected it.
8613 PREV_EVENT is the previous input event, or nil if we are reading
8614 the first event of a key sequence.
8616 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
8617 if we used a mouse menu to read the input, or zero otherwise. If
8618 USED_MOUSE_MENU is null, we don't dereference it.
8620 The prompting is done based on the prompt-string of the map
8621 and the strings associated with various map elements.
8623 This can be done with X menus or with menus put in the minibuf.
8624 These are done in different ways, depending on how the input will be read.
8625 Menus using X are done after auto-saving in read-char, getting the input
8626 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8627 and do auto-saving in the inner call of read_char. */
8629 static Lisp_Object
8630 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
8631 int nmaps;
8632 Lisp_Object *maps;
8633 Lisp_Object prev_event;
8634 int *used_mouse_menu;
8636 int mapno;
8637 register Lisp_Object name = Qnil;
8639 if (used_mouse_menu)
8640 *used_mouse_menu = 0;
8642 /* Use local over global Menu maps */
8644 if (! menu_prompting)
8645 return Qnil;
8647 /* Optionally disregard all but the global map. */
8648 if (inhibit_local_menu_bar_menus)
8650 maps += (nmaps - 1);
8651 nmaps = 1;
8654 /* Get the menu name from the first map that has one (a prompt string). */
8655 for (mapno = 0; mapno < nmaps; mapno++)
8657 name = Fkeymap_prompt (maps[mapno]);
8658 if (!NILP (name))
8659 break;
8662 /* If we don't have any menus, just read a character normally. */
8663 if (!STRINGP (name))
8664 return Qnil;
8666 #ifdef HAVE_MENUS
8667 /* If we got to this point via a mouse click,
8668 use a real menu for mouse selection. */
8669 if (EVENT_HAS_PARAMETERS (prev_event)
8670 && !EQ (XCAR (prev_event), Qmenu_bar)
8671 && !EQ (XCAR (prev_event), Qtool_bar))
8673 /* Display the menu and get the selection. */
8674 Lisp_Object *realmaps
8675 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
8676 Lisp_Object value;
8677 int nmaps1 = 0;
8679 /* Use the maps that are not nil. */
8680 for (mapno = 0; mapno < nmaps; mapno++)
8681 if (!NILP (maps[mapno]))
8682 realmaps[nmaps1++] = maps[mapno];
8684 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
8685 if (CONSP (value))
8687 Lisp_Object tem;
8689 record_menu_key (XCAR (value));
8691 /* If we got multiple events, unread all but
8692 the first.
8693 There is no way to prevent those unread events
8694 from showing up later in last_nonmenu_event.
8695 So turn symbol and integer events into lists,
8696 to indicate that they came from a mouse menu,
8697 so that when present in last_nonmenu_event
8698 they won't confuse things. */
8699 for (tem = XCDR (value); CONSP (tem); tem = XCDR (tem))
8701 record_menu_key (XCAR (tem));
8702 if (SYMBOLP (XCAR (tem))
8703 || INTEGERP (XCAR (tem)))
8704 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8707 /* If we got more than one event, put all but the first
8708 onto this list to be read later.
8709 Return just the first event now. */
8710 Vunread_command_events
8711 = nconc2 (XCDR (value), Vunread_command_events);
8712 value = XCAR (value);
8714 else if (NILP (value))
8715 value = Qt;
8716 if (used_mouse_menu)
8717 *used_mouse_menu = 1;
8718 return value;
8720 #endif /* HAVE_MENUS */
8721 return Qnil ;
8724 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8725 We make this bigger when necessary, and never free it. */
8726 static char *read_char_minibuf_menu_text;
8727 /* Size of that buffer. */
8728 static int read_char_minibuf_menu_width;
8730 static Lisp_Object
8731 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
8732 int commandflag ;
8733 int nmaps;
8734 Lisp_Object *maps;
8736 int mapno;
8737 register Lisp_Object name;
8738 int nlength;
8739 /* FIXME: Use the minibuffer's frame width. */
8740 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8741 int idx = -1;
8742 int nobindings = 1;
8743 Lisp_Object rest, vector;
8744 char *menu;
8746 vector = Qnil;
8747 name = Qnil;
8749 if (! menu_prompting)
8750 return Qnil;
8752 /* Get the menu name from the first map that has one (a prompt string). */
8753 for (mapno = 0; mapno < nmaps; mapno++)
8755 name = Fkeymap_prompt (maps[mapno]);
8756 if (!NILP (name))
8757 break;
8760 /* If we don't have any menus, just read a character normally. */
8761 if (!STRINGP (name))
8762 return Qnil;
8764 /* Make sure we have a big enough buffer for the menu text. */
8765 width = max (width, SBYTES (name));
8766 if (read_char_minibuf_menu_text == 0)
8768 read_char_minibuf_menu_width = width + 4;
8769 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
8771 else if (width + 4 > read_char_minibuf_menu_width)
8773 read_char_minibuf_menu_width = width + 4;
8774 read_char_minibuf_menu_text
8775 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
8777 menu = read_char_minibuf_menu_text;
8779 /* Prompt string always starts with map's prompt, and a space. */
8780 strcpy (menu, SDATA (name));
8781 nlength = SBYTES (name);
8782 menu[nlength++] = ':';
8783 menu[nlength++] = ' ';
8784 menu[nlength] = 0;
8786 /* Start prompting at start of first map. */
8787 mapno = 0;
8788 rest = maps[mapno];
8790 /* Present the documented bindings, a line at a time. */
8791 while (1)
8793 int notfirst = 0;
8794 int i = nlength;
8795 Lisp_Object obj;
8796 int ch;
8797 Lisp_Object orig_defn_macro;
8799 /* Loop over elements of map. */
8800 while (i < width)
8802 Lisp_Object elt;
8804 /* If reached end of map, start at beginning of next map. */
8805 if (NILP (rest))
8807 mapno++;
8808 /* At end of last map, wrap around to first map if just starting,
8809 or end this line if already have something on it. */
8810 if (mapno == nmaps)
8812 mapno = 0;
8813 if (notfirst || nobindings) break;
8815 rest = maps[mapno];
8818 /* Look at the next element of the map. */
8819 if (idx >= 0)
8820 elt = XVECTOR (vector)->contents[idx];
8821 else
8822 elt = Fcar_safe (rest);
8824 if (idx < 0 && VECTORP (elt))
8826 /* If we found a dense table in the keymap,
8827 advanced past it, but start scanning its contents. */
8828 rest = Fcdr_safe (rest);
8829 vector = elt;
8830 idx = 0;
8832 else
8834 /* An ordinary element. */
8835 Lisp_Object event, tem;
8837 if (idx < 0)
8839 event = Fcar_safe (elt); /* alist */
8840 elt = Fcdr_safe (elt);
8842 else
8844 XSETINT (event, idx); /* vector */
8847 /* Ignore the element if it has no prompt string. */
8848 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8850 /* 1 if the char to type matches the string. */
8851 int char_matches;
8852 Lisp_Object upcased_event, downcased_event;
8853 Lisp_Object desc = Qnil;
8854 Lisp_Object s
8855 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8857 upcased_event = Fupcase (event);
8858 downcased_event = Fdowncase (event);
8859 char_matches = (XINT (upcased_event) == SREF (s, 0)
8860 || XINT (downcased_event) == SREF (s, 0));
8861 if (! char_matches)
8862 desc = Fsingle_key_description (event, Qnil);
8864 #if 0 /* It is redundant to list the equivalent key bindings because
8865 the prefix is what the user has already typed. */
8867 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8868 if (!NILP (tem))
8869 /* Insert equivalent keybinding. */
8870 s = concat2 (s, tem);
8871 #endif
8873 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8874 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8876 /* Insert button prefix. */
8877 Lisp_Object selected
8878 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8879 if (EQ (tem, QCradio))
8880 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8881 else
8882 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8883 s = concat2 (tem, s);
8887 /* If we have room for the prompt string, add it to this line.
8888 If this is the first on the line, always add it. */
8889 if ((SCHARS (s) + i + 2
8890 + (char_matches ? 0 : SCHARS (desc) + 3))
8891 < width
8892 || !notfirst)
8894 int thiswidth;
8896 /* Punctuate between strings. */
8897 if (notfirst)
8899 strcpy (menu + i, ", ");
8900 i += 2;
8902 notfirst = 1;
8903 nobindings = 0 ;
8905 /* If the char to type doesn't match the string's
8906 first char, explicitly show what char to type. */
8907 if (! char_matches)
8909 /* Add as much of string as fits. */
8910 thiswidth = SCHARS (desc);
8911 if (thiswidth + i > width)
8912 thiswidth = width - i;
8913 bcopy (SDATA (desc), menu + i, thiswidth);
8914 i += thiswidth;
8915 strcpy (menu + i, " = ");
8916 i += 3;
8919 /* Add as much of string as fits. */
8920 thiswidth = SCHARS (s);
8921 if (thiswidth + i > width)
8922 thiswidth = width - i;
8923 bcopy (SDATA (s), menu + i, thiswidth);
8924 i += thiswidth;
8925 menu[i] = 0;
8927 else
8929 /* If this element does not fit, end the line now,
8930 and save the element for the next line. */
8931 strcpy (menu + i, "...");
8932 break;
8936 /* Move past this element. */
8937 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8938 /* Handle reaching end of dense table. */
8939 idx = -1;
8940 if (idx >= 0)
8941 idx++;
8942 else
8943 rest = Fcdr_safe (rest);
8947 /* Prompt with that and read response. */
8948 message2_nolog (menu, strlen (menu),
8949 ! NILP (current_buffer->enable_multibyte_characters));
8951 /* Make believe its not a keyboard macro in case the help char
8952 is pressed. Help characters are not recorded because menu prompting
8953 is not used on replay.
8955 orig_defn_macro = current_kboard->defining_kbd_macro;
8956 current_kboard->defining_kbd_macro = Qnil;
8958 obj = read_char (commandflag, 0, 0, Qt, 0, NULL);
8959 while (BUFFERP (obj));
8960 current_kboard->defining_kbd_macro = orig_defn_macro;
8962 if (!INTEGERP (obj))
8963 return obj;
8964 else if (XINT (obj) == -2)
8965 return obj;
8966 else
8967 ch = XINT (obj);
8969 if (! EQ (obj, menu_prompt_more_char)
8970 && (!INTEGERP (menu_prompt_more_char)
8971 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8973 if (!NILP (current_kboard->defining_kbd_macro))
8974 store_kbd_macro_char (obj);
8975 return obj;
8977 /* Help char - go round again */
8981 /* Reading key sequences. */
8983 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8984 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8985 keymap, or nil otherwise. Return the index of the first keymap in
8986 which KEY has any binding, or NMAPS if no map has a binding.
8988 If KEY is a meta ASCII character, treat it like meta-prefix-char
8989 followed by the corresponding non-meta character. Keymaps in
8990 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8991 NEXT.
8993 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8994 unmodified.
8996 NEXT may be the same array as CURRENT. */
8998 static int
8999 follow_key (key, nmaps, current, defs, next)
9000 Lisp_Object key;
9001 Lisp_Object *current, *defs, *next;
9002 int nmaps;
9004 int i, first_binding;
9006 first_binding = nmaps;
9007 for (i = nmaps - 1; i >= 0; i--)
9009 if (! NILP (current[i]))
9011 defs[i] = access_keymap (current[i], key, 1, 0, 1);
9012 if (! NILP (defs[i]))
9013 first_binding = i;
9015 else
9016 defs[i] = Qnil;
9019 /* Given the set of bindings we've found, produce the next set of maps. */
9020 if (first_binding < nmaps)
9021 for (i = 0; i < nmaps; i++)
9022 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
9024 return first_binding;
9027 /* Structure used to keep track of partial application of key remapping
9028 such as Vfunction_key_map and Vkey_translation_map. */
9029 typedef struct keyremap
9031 /* This is the map originally specified for this use. */
9032 Lisp_Object parent;
9033 /* This is a submap reached by looking up, in PARENT,
9034 the events from START to END. */
9035 Lisp_Object map;
9036 /* Positions [START, END) in the key sequence buffer
9037 are the key that we have scanned so far.
9038 Those events are the ones that we will replace
9039 if PAREHT maps them into a key sequence. */
9040 int start, end;
9041 } keyremap;
9043 /* Lookup KEY in MAP.
9044 MAP is a keymap mapping keys to key vectors or functions.
9045 If the mapping is a function and DO_FUNCTION is non-zero, then
9046 the function is called with PROMPT as parameter and its return
9047 value is used as the return value of this function (after checking
9048 that it is indeed a vector). */
9050 static Lisp_Object
9051 access_keymap_keyremap (map, key, prompt, do_funcall)
9052 Lisp_Object map, key, prompt;
9053 int do_funcall;
9055 Lisp_Object next;
9057 next = access_keymap (map, key, 1, 0, 1);
9059 /* Handle symbol with autoload definition. */
9060 if (SYMBOLP (next) && !NILP (Ffboundp (next))
9061 && CONSP (XSYMBOL (next)->function)
9062 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
9063 do_autoload (XSYMBOL (next)->function, next);
9065 /* Handle a symbol whose function definition is a keymap
9066 or an array. */
9067 if (SYMBOLP (next) && !NILP (Ffboundp (next))
9068 && (ARRAYP (XSYMBOL (next)->function)
9069 || KEYMAPP (XSYMBOL (next)->function)))
9070 next = XSYMBOL (next)->function;
9072 /* If the keymap gives a function, not an
9073 array, then call the function with one arg and use
9074 its value instead. */
9075 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
9077 Lisp_Object tem;
9078 tem = next;
9080 next = call1 (next, prompt);
9081 /* If the function returned something invalid,
9082 barf--don't ignore it.
9083 (To ignore it safely, we would need to gcpro a bunch of
9084 other variables.) */
9085 if (! (VECTORP (next) || STRINGP (next)))
9086 error ("Function %s returns invalid key sequence", tem);
9088 return next;
9091 /* Do one step of the key remapping used for function-key-map and
9092 key-translation-map:
9093 KEYBUF is the buffer holding the input events.
9094 BUFSIZE is its maximum size.
9095 FKEY is a pointer to the keyremap structure to use.
9096 INPUT is the index of the last element in KEYBUF.
9097 DOIT if non-zero says that the remapping can actually take place.
9098 DIFF is used to return the number of keys added/removed by the remapping.
9099 PARENT is the root of the keymap.
9100 PROMPT is the prompt to use if the remapping happens through a function.
9101 The return value is non-zero if the remapping actually took place. */
9103 static int
9104 keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
9105 Lisp_Object *keybuf, prompt;
9106 keyremap *fkey;
9107 int input, doit, *diff, bufsize;
9109 Lisp_Object next, key;
9111 key = keybuf[fkey->end++];
9113 if (KEYMAPP (fkey->parent))
9114 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
9115 else
9116 next = Qnil;
9118 /* If keybuf[fkey->start..fkey->end] is bound in the
9119 map and we're in a position to do the key remapping, replace it with
9120 the binding and restart with fkey->start at the end. */
9121 if ((VECTORP (next) || STRINGP (next)) && doit)
9123 int len = XFASTINT (Flength (next));
9124 int i;
9126 *diff = len - (fkey->end - fkey->start);
9128 if (input + *diff >= bufsize)
9129 error ("Key sequence too long");
9131 /* Shift the keys that follow fkey->end. */
9132 if (*diff < 0)
9133 for (i = fkey->end; i < input; i++)
9134 keybuf[i + *diff] = keybuf[i];
9135 else if (*diff > 0)
9136 for (i = input - 1; i >= fkey->end; i--)
9137 keybuf[i + *diff] = keybuf[i];
9138 /* Overwrite the old keys with the new ones. */
9139 for (i = 0; i < len; i++)
9140 keybuf[fkey->start + i]
9141 = Faref (next, make_number (i));
9143 fkey->start = fkey->end += *diff;
9144 fkey->map = fkey->parent;
9146 return 1;
9149 fkey->map = get_keymap (next, 0, 1);
9151 /* If we no longer have a bound suffix, try a new position for
9152 fkey->start. */
9153 if (!CONSP (fkey->map))
9155 fkey->end = ++fkey->start;
9156 fkey->map = fkey->parent;
9158 return 0;
9161 /* Read a sequence of keys that ends with a non prefix character,
9162 storing it in KEYBUF, a buffer of size BUFSIZE.
9163 Prompt with PROMPT.
9164 Return the length of the key sequence stored.
9165 Return -1 if the user rejected a command menu.
9167 Echo starting immediately unless `prompt' is 0.
9169 Where a key sequence ends depends on the currently active keymaps.
9170 These include any minor mode keymaps active in the current buffer,
9171 the current buffer's local map, and the global map.
9173 If a key sequence has no other bindings, we check Vfunction_key_map
9174 to see if some trailing subsequence might be the beginning of a
9175 function key's sequence. If so, we try to read the whole function
9176 key, and substitute its symbolic name into the key sequence.
9178 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
9179 `double-' events into similar click events, if that would make them
9180 bound. We try to turn `triple-' events first into `double-' events,
9181 then into clicks.
9183 If we get a mouse click in a mode line, vertical divider, or other
9184 non-text area, we treat the click as if it were prefixed by the
9185 symbol denoting that area - `mode-line', `vertical-line', or
9186 whatever.
9188 If the sequence starts with a mouse click, we read the key sequence
9189 with respect to the buffer clicked on, not the current buffer.
9191 If the user switches frames in the midst of a key sequence, we put
9192 off the switch-frame event until later; the next call to
9193 read_char will return it.
9195 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
9196 from the selected window's buffer. */
9198 static int
9199 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
9200 can_return_switch_frame, fix_current_buffer)
9201 Lisp_Object *keybuf;
9202 int bufsize;
9203 Lisp_Object prompt;
9204 int dont_downcase_last;
9205 int can_return_switch_frame;
9206 int fix_current_buffer;
9208 volatile Lisp_Object from_string;
9209 volatile int count = SPECPDL_INDEX ();
9211 /* How many keys there are in the current key sequence. */
9212 volatile int t;
9214 /* The length of the echo buffer when we started reading, and
9215 the length of this_command_keys when we started reading. */
9216 volatile int echo_start;
9217 volatile int keys_start;
9219 /* The number of keymaps we're scanning right now, and the number of
9220 keymaps we have allocated space for. */
9221 volatile int nmaps;
9222 volatile int nmaps_allocated = 0;
9224 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
9225 the current keymaps. */
9226 Lisp_Object *volatile defs = NULL;
9228 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
9229 in the current keymaps, or nil where it is not a prefix. */
9230 Lisp_Object *volatile submaps = NULL;
9232 /* The local map to start out with at start of key sequence. */
9233 volatile Lisp_Object orig_local_map;
9235 /* The map from the `keymap' property to start out with at start of
9236 key sequence. */
9237 volatile Lisp_Object orig_keymap;
9239 /* 1 if we have already considered switching to the local-map property
9240 of the place where a mouse click occurred. */
9241 volatile int localized_local_map = 0;
9243 /* The index in submaps[] of the first keymap that has a binding for
9244 this key sequence. In other words, the lowest i such that
9245 submaps[i] is non-nil. */
9246 volatile int first_binding;
9247 /* Index of the first key that has no binding.
9248 It is useless to try fkey.start larger than that. */
9249 volatile int first_unbound;
9251 /* If t < mock_input, then KEYBUF[t] should be read as the next
9252 input key.
9254 We use this to recover after recognizing a function key. Once we
9255 realize that a suffix of the current key sequence is actually a
9256 function key's escape sequence, we replace the suffix with the
9257 function key's binding from Vfunction_key_map. Now keybuf
9258 contains a new and different key sequence, so the echo area,
9259 this_command_keys, and the submaps and defs arrays are wrong. In
9260 this situation, we set mock_input to t, set t to 0, and jump to
9261 restart_sequence; the loop will read keys from keybuf up until
9262 mock_input, thus rebuilding the state; and then it will resume
9263 reading characters from the keyboard. */
9264 volatile int mock_input = 0;
9266 /* If the sequence is unbound in submaps[], then
9267 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
9268 and fkey.map is its binding.
9270 These might be > t, indicating that all function key scanning
9271 should hold off until t reaches them. We do this when we've just
9272 recognized a function key, to avoid searching for the function
9273 key's again in Vfunction_key_map. */
9274 volatile keyremap fkey;
9276 /* Likewise, for key_translation_map and input-decode-map. */
9277 volatile keyremap keytran, indec;
9279 /* Non-zero if we are trying to map a key by changing an upper-case
9280 letter to lower case, or a shifted function key to an unshifted
9281 one. */
9282 volatile int shift_translated = 0;
9284 /* If we receive a `switch-frame' or `select-window' event in the middle of
9285 a key sequence, we put it off for later.
9286 While we're reading, we keep the event here. */
9287 volatile Lisp_Object delayed_switch_frame;
9289 /* See the comment below... */
9290 #if defined (GOBBLE_FIRST_EVENT)
9291 Lisp_Object first_event;
9292 #endif
9294 volatile Lisp_Object original_uppercase;
9295 volatile int original_uppercase_position = -1;
9297 /* Gets around Microsoft compiler limitations. */
9298 int dummyflag = 0;
9300 struct buffer *starting_buffer;
9302 /* List of events for which a fake prefix key has been generated. */
9303 volatile Lisp_Object fake_prefixed_keys = Qnil;
9305 #if defined (GOBBLE_FIRST_EVENT)
9306 int junk;
9307 #endif
9309 struct gcpro gcpro1;
9311 GCPRO1 (fake_prefixed_keys);
9312 raw_keybuf_count = 0;
9314 last_nonmenu_event = Qnil;
9316 delayed_switch_frame = Qnil;
9318 if (INTERACTIVE)
9320 if (!NILP (prompt))
9321 echo_prompt (prompt);
9322 else if (cursor_in_echo_area
9323 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9324 && NILP (Fzerop (Vecho_keystrokes)))
9325 /* This doesn't put in a dash if the echo buffer is empty, so
9326 you don't always see a dash hanging out in the minibuffer. */
9327 echo_dash ();
9330 /* Record the initial state of the echo area and this_command_keys;
9331 we will need to restore them if we replay a key sequence. */
9332 if (INTERACTIVE)
9333 echo_start = echo_length ();
9334 keys_start = this_command_key_count;
9335 this_single_command_key_start = keys_start;
9337 #if defined (GOBBLE_FIRST_EVENT)
9338 /* This doesn't quite work, because some of the things that read_char
9339 does cannot safely be bypassed. It seems too risky to try to make
9340 this work right. */
9342 /* Read the first char of the sequence specially, before setting
9343 up any keymaps, in case a filter runs and switches buffers on us. */
9344 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
9345 &junk, NULL);
9346 #endif /* GOBBLE_FIRST_EVENT */
9348 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9349 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9350 from_string = Qnil;
9352 /* We jump here when we need to reinitialize fkey and keytran; this
9353 happens if we switch keyboards between rescans. */
9354 replay_entire_sequence:
9356 indec.map = indec.parent = current_kboard->Vinput_decode_map;
9357 fkey.map = fkey.parent = current_kboard->Vlocal_function_key_map;
9358 keytran.map = keytran.parent = Vkey_translation_map;
9359 indec.start = indec.end = 0;
9360 fkey.start = fkey.end = 0;
9361 keytran.start = keytran.end = 0;
9363 /* We jump here when the key sequence has been thoroughly changed, and
9364 we need to rescan it starting from the beginning. When we jump here,
9365 keybuf[0..mock_input] holds the sequence we should reread. */
9366 replay_sequence:
9368 starting_buffer = current_buffer;
9369 first_unbound = bufsize + 1;
9371 /* Build our list of keymaps.
9372 If we recognize a function key and replace its escape sequence in
9373 keybuf with its symbol, or if the sequence starts with a mouse
9374 click and we need to switch buffers, we jump back here to rebuild
9375 the initial keymaps from the current buffer. */
9376 nmaps = 0;
9378 if (!NILP (current_kboard->Voverriding_terminal_local_map))
9380 if (2 > nmaps_allocated)
9382 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
9383 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
9384 nmaps_allocated = 2;
9386 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
9388 else if (!NILP (Voverriding_local_map))
9390 if (2 > nmaps_allocated)
9392 submaps = (Lisp_Object *) alloca (2 * sizeof (submaps[0]));
9393 defs = (Lisp_Object *) alloca (2 * sizeof (defs[0]));
9394 nmaps_allocated = 2;
9396 submaps[nmaps++] = Voverriding_local_map;
9398 else
9400 int nminor;
9401 int total;
9402 Lisp_Object *maps;
9404 nminor = current_minor_maps (0, &maps);
9405 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
9407 if (total > nmaps_allocated)
9409 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
9410 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
9411 nmaps_allocated = total;
9414 if (!NILP (orig_keymap))
9415 submaps[nmaps++] = orig_keymap;
9417 bcopy (maps, (void *) (submaps + nmaps),
9418 nminor * sizeof (submaps[0]));
9420 nmaps += nminor;
9422 submaps[nmaps++] = orig_local_map;
9424 submaps[nmaps++] = current_global_map;
9426 /* Find an accurate initial value for first_binding. */
9427 for (first_binding = 0; first_binding < nmaps; first_binding++)
9428 if (! NILP (submaps[first_binding]))
9429 break;
9431 /* Start from the beginning in keybuf. */
9432 t = 0;
9434 /* These are no-ops the first time through, but if we restart, they
9435 revert the echo area and this_command_keys to their original state. */
9436 this_command_key_count = keys_start;
9437 if (INTERACTIVE && t < mock_input)
9438 echo_truncate (echo_start);
9440 /* If the best binding for the current key sequence is a keymap, or
9441 we may be looking at a function key's escape sequence, keep on
9442 reading. */
9443 while (first_binding < nmaps
9444 /* Keep reading as long as there's a prefix binding. */
9445 ? !NILP (submaps[first_binding])
9446 /* Don't return in the middle of a possible function key sequence,
9447 if the only bindings we found were via case conversion.
9448 Thus, if ESC O a has a function-key-map translation
9449 and ESC o has a binding, don't return after ESC O,
9450 so that we can translate ESC O plus the next character. */
9451 : (/* indec.start < t || fkey.start < t || */ keytran.start < t))
9453 Lisp_Object key;
9454 int used_mouse_menu = 0;
9456 /* Where the last real key started. If we need to throw away a
9457 key that has expanded into more than one element of keybuf
9458 (say, a mouse click on the mode line which is being treated
9459 as [mode-line (mouse-...)], then we backtrack to this point
9460 of keybuf. */
9461 volatile int last_real_key_start;
9463 /* These variables are analogous to echo_start and keys_start;
9464 while those allow us to restart the entire key sequence,
9465 echo_local_start and keys_local_start allow us to throw away
9466 just one key. */
9467 volatile int echo_local_start, keys_local_start, local_first_binding;
9469 eassert (indec.end == t || (indec.end > t && indec.end <= mock_input));
9470 eassert (indec.start <= indec.end);
9471 eassert (fkey.start <= fkey.end);
9472 eassert (keytran.start <= keytran.end);
9473 /* key-translation-map is applied *after* function-key-map
9474 which is itself applied *after* input-decode-map. */
9475 eassert (fkey.end <= indec.start);
9476 eassert (keytran.end <= fkey.start);
9478 if (/* first_unbound < indec.start && first_unbound < fkey.start && */
9479 first_unbound < keytran.start)
9480 { /* The prefix upto first_unbound has no binding and has
9481 no translation left to do either, so we know it's unbound.
9482 If we don't stop now, we risk staying here indefinitely
9483 (if the user keeps entering fkey or keytran prefixes
9484 like C-c ESC ESC ESC ESC ...) */
9485 int i;
9486 for (i = first_unbound + 1; i < t; i++)
9487 keybuf[i - first_unbound - 1] = keybuf[i];
9488 mock_input = t - first_unbound - 1;
9489 indec.end = indec.start -= first_unbound + 1;
9490 indec.map = indec.parent;
9491 fkey.end = fkey.start -= first_unbound + 1;
9492 fkey.map = fkey.parent;
9493 keytran.end = keytran.start -= first_unbound + 1;
9494 keytran.map = keytran.parent;
9495 goto replay_sequence;
9498 if (t >= bufsize)
9499 error ("Key sequence too long");
9501 if (INTERACTIVE)
9502 echo_local_start = echo_length ();
9503 keys_local_start = this_command_key_count;
9504 local_first_binding = first_binding;
9506 replay_key:
9507 /* These are no-ops, unless we throw away a keystroke below and
9508 jumped back up to replay_key; in that case, these restore the
9509 variables to their original state, allowing us to replay the
9510 loop. */
9511 if (INTERACTIVE && t < mock_input)
9512 echo_truncate (echo_local_start);
9513 this_command_key_count = keys_local_start;
9514 first_binding = local_first_binding;
9516 /* By default, assume each event is "real". */
9517 last_real_key_start = t;
9519 /* Does mock_input indicate that we are re-reading a key sequence? */
9520 if (t < mock_input)
9522 key = keybuf[t];
9523 add_command_key (key);
9524 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9525 && NILP (Fzerop (Vecho_keystrokes)))
9526 echo_char (key);
9529 /* If not, we should actually read a character. */
9530 else
9533 KBOARD *interrupted_kboard = current_kboard;
9534 struct frame *interrupted_frame = SELECTED_FRAME ();
9535 key = read_char (NILP (prompt), nmaps,
9536 (Lisp_Object *) submaps, last_nonmenu_event,
9537 &used_mouse_menu, NULL);
9538 if (INTEGERP (key) && XINT (key) == -2) /* wrong_kboard_jmpbuf */
9540 int found = 0;
9541 struct kboard *k;
9543 for (k = all_kboards; k; k = k->next_kboard)
9544 if (k == interrupted_kboard)
9545 found = 1;
9547 if (!found)
9549 /* Don't touch interrupted_kboard when it's been
9550 deleted. */
9551 delayed_switch_frame = Qnil;
9552 goto replay_entire_sequence;
9555 if (!NILP (delayed_switch_frame))
9557 interrupted_kboard->kbd_queue
9558 = Fcons (delayed_switch_frame,
9559 interrupted_kboard->kbd_queue);
9560 delayed_switch_frame = Qnil;
9563 while (t > 0)
9564 interrupted_kboard->kbd_queue
9565 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
9567 /* If the side queue is non-empty, ensure it begins with a
9568 switch-frame, so we'll replay it in the right context. */
9569 if (CONSP (interrupted_kboard->kbd_queue)
9570 && (key = XCAR (interrupted_kboard->kbd_queue),
9571 !(EVENT_HAS_PARAMETERS (key)
9572 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
9573 Qswitch_frame))))
9575 Lisp_Object frame;
9576 XSETFRAME (frame, interrupted_frame);
9577 interrupted_kboard->kbd_queue
9578 = Fcons (make_lispy_switch_frame (frame),
9579 interrupted_kboard->kbd_queue);
9581 mock_input = 0;
9582 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9583 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9584 goto replay_entire_sequence;
9588 /* read_char returns t when it shows a menu and the user rejects it.
9589 Just return -1. */
9590 if (EQ (key, Qt))
9592 unbind_to (count, Qnil);
9593 UNGCPRO;
9594 return -1;
9597 /* read_char returns -1 at the end of a macro.
9598 Emacs 18 handles this by returning immediately with a
9599 zero, so that's what we'll do. */
9600 if (INTEGERP (key) && XINT (key) == -1)
9602 t = 0;
9603 /* The Microsoft C compiler can't handle the goto that
9604 would go here. */
9605 dummyflag = 1;
9606 break;
9609 /* If the current buffer has been changed from under us, the
9610 keymap may have changed, so replay the sequence. */
9611 if (BUFFERP (key))
9613 timer_resume_idle ();
9615 mock_input = t;
9616 /* Reset the current buffer from the selected window
9617 in case something changed the former and not the latter.
9618 This is to be more consistent with the behavior
9619 of the command_loop_1. */
9620 if (fix_current_buffer)
9622 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9623 Fkill_emacs (Qnil);
9624 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
9625 Fset_buffer (XWINDOW (selected_window)->buffer);
9628 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9629 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9630 goto replay_sequence;
9633 /* If we have a quit that was typed in another frame, and
9634 quit_throw_to_read_char switched buffers,
9635 replay to get the right keymap. */
9636 if (INTEGERP (key)
9637 && XINT (key) == quit_char
9638 && current_buffer != starting_buffer)
9640 GROW_RAW_KEYBUF;
9641 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9642 keybuf[t++] = key;
9643 mock_input = t;
9644 Vquit_flag = Qnil;
9645 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9646 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9647 goto replay_sequence;
9650 Vquit_flag = Qnil;
9652 if (EVENT_HAS_PARAMETERS (key)
9653 /* Either a `switch-frame' or a `select-window' event. */
9654 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
9656 /* If we're at the beginning of a key sequence, and the caller
9657 says it's okay, go ahead and return this event. If we're
9658 in the midst of a key sequence, delay it until the end. */
9659 if (t > 0 || !can_return_switch_frame)
9661 delayed_switch_frame = key;
9662 goto replay_key;
9666 GROW_RAW_KEYBUF;
9667 ASET (raw_keybuf, raw_keybuf_count, key);
9668 raw_keybuf_count++;
9671 /* Clicks in non-text areas get prefixed by the symbol
9672 in their CHAR-ADDRESS field. For example, a click on
9673 the mode line is prefixed by the symbol `mode-line'.
9675 Furthermore, key sequences beginning with mouse clicks
9676 are read using the keymaps of the buffer clicked on, not
9677 the current buffer. So we may have to switch the buffer
9678 here.
9680 When we turn one event into two events, we must make sure
9681 that neither of the two looks like the original--so that,
9682 if we replay the events, they won't be expanded again.
9683 If not for this, such reexpansion could happen either here
9684 or when user programs play with this-command-keys. */
9685 if (EVENT_HAS_PARAMETERS (key))
9687 Lisp_Object kind;
9688 Lisp_Object string;
9690 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
9691 if (EQ (kind, Qmouse_click))
9693 Lisp_Object window, posn;
9695 window = POSN_WINDOW (EVENT_START (key));
9696 posn = POSN_POSN (EVENT_START (key));
9698 if (CONSP (posn)
9699 || (!NILP (fake_prefixed_keys)
9700 && !NILP (Fmemq (key, fake_prefixed_keys))))
9702 /* We're looking a second time at an event for which
9703 we generated a fake prefix key. Set
9704 last_real_key_start appropriately. */
9705 if (t > 0)
9706 last_real_key_start = t - 1;
9709 /* Key sequences beginning with mouse clicks are
9710 read using the keymaps in the buffer clicked on,
9711 not the current buffer. If we're at the
9712 beginning of a key sequence, switch buffers. */
9713 if (last_real_key_start == 0
9714 && WINDOWP (window)
9715 && BUFFERP (XWINDOW (window)->buffer)
9716 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
9718 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9719 keybuf[t] = key;
9720 mock_input = t + 1;
9722 /* Arrange to go back to the original buffer once we're
9723 done reading the key sequence. Note that we can't
9724 use save_excursion_{save,restore} here, because they
9725 save point as well as the current buffer; we don't
9726 want to save point, because redisplay may change it,
9727 to accommodate a Fset_window_start or something. We
9728 don't want to do this at the top of the function,
9729 because we may get input from a subprocess which
9730 wants to change the selected window and stuff (say,
9731 emacsclient). */
9732 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
9734 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9735 Fkill_emacs (Qnil);
9736 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
9737 orig_local_map = get_local_map (PT, current_buffer,
9738 Qlocal_map);
9739 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9740 goto replay_sequence;
9743 /* For a mouse click, get the local text-property keymap
9744 of the place clicked on, rather than point. */
9745 if (last_real_key_start == 0
9746 && CONSP (XCDR (key))
9747 && ! localized_local_map)
9749 Lisp_Object map_here, start, pos;
9751 localized_local_map = 1;
9752 start = EVENT_START (key);
9754 if (CONSP (start) && POSN_INBUFFER_P (start))
9756 pos = POSN_BUFFER_POSN (start);
9757 if (INTEGERP (pos)
9758 && XINT (pos) >= BEGV
9759 && XINT (pos) <= ZV)
9761 map_here = get_local_map (XINT (pos),
9762 current_buffer, Qlocal_map);
9763 if (!EQ (map_here, orig_local_map))
9765 orig_local_map = map_here;
9766 ++localized_local_map;
9769 map_here = get_local_map (XINT (pos),
9770 current_buffer, Qkeymap);
9771 if (!EQ (map_here, orig_keymap))
9773 orig_keymap = map_here;
9774 ++localized_local_map;
9777 if (localized_local_map > 1)
9779 keybuf[t] = key;
9780 mock_input = t + 1;
9782 goto replay_sequence;
9788 /* Expand mode-line and scroll-bar events into two events:
9789 use posn as a fake prefix key. */
9790 if (SYMBOLP (posn)
9791 && (NILP (fake_prefixed_keys)
9792 || NILP (Fmemq (key, fake_prefixed_keys))))
9794 if (t + 1 >= bufsize)
9795 error ("Key sequence too long");
9797 keybuf[t] = posn;
9798 keybuf[t + 1] = key;
9799 mock_input = t + 2;
9801 /* Record that a fake prefix key has been generated
9802 for KEY. Don't modify the event; this would
9803 prevent proper action when the event is pushed
9804 back into unread-command-events. */
9805 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9807 /* If on a mode line string with a local keymap,
9808 reconsider the key sequence with that keymap. */
9809 if (string = POSN_STRING (EVENT_START (key)),
9810 (CONSP (string) && STRINGP (XCAR (string))))
9812 Lisp_Object pos, map, map2;
9814 pos = XCDR (string);
9815 string = XCAR (string);
9816 if (XINT (pos) >= 0
9817 && XINT (pos) < SCHARS (string))
9819 map = Fget_text_property (pos, Qlocal_map, string);
9820 if (!NILP (map))
9821 orig_local_map = map;
9822 map2 = Fget_text_property (pos, Qkeymap, string);
9823 if (!NILP (map2))
9824 orig_keymap = map2;
9825 if (!NILP (map) || !NILP (map2))
9826 goto replay_sequence;
9830 goto replay_key;
9832 else if (NILP (from_string)
9833 && (string = POSN_STRING (EVENT_START (key)),
9834 (CONSP (string) && STRINGP (XCAR (string)))))
9836 /* For a click on a string, i.e. overlay string or a
9837 string displayed via the `display' property,
9838 consider `local-map' and `keymap' properties of
9839 that string. */
9840 Lisp_Object pos, map, map2;
9842 pos = XCDR (string);
9843 string = XCAR (string);
9844 if (XINT (pos) >= 0
9845 && XINT (pos) < SCHARS (string))
9847 map = Fget_text_property (pos, Qlocal_map, string);
9848 if (!NILP (map))
9849 orig_local_map = map;
9850 map2 = Fget_text_property (pos, Qkeymap, string);
9851 if (!NILP (map2))
9852 orig_keymap = map2;
9854 if (!NILP (map) || !NILP (map2))
9856 from_string = string;
9857 keybuf[t++] = key;
9858 mock_input = t;
9859 goto replay_sequence;
9864 else if (CONSP (XCDR (key))
9865 && CONSP (EVENT_START (key))
9866 && CONSP (XCDR (EVENT_START (key))))
9868 Lisp_Object posn;
9870 posn = POSN_POSN (EVENT_START (key));
9871 /* Handle menu-bar events:
9872 insert the dummy prefix event `menu-bar'. */
9873 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9875 if (t + 1 >= bufsize)
9876 error ("Key sequence too long");
9877 keybuf[t] = posn;
9878 keybuf[t+1] = key;
9880 /* Zap the position in key, so we know that we've
9881 expanded it, and don't try to do so again. */
9882 POSN_SET_POSN (EVENT_START (key),
9883 Fcons (posn, Qnil));
9885 mock_input = t + 2;
9886 goto replay_sequence;
9888 else if (CONSP (posn))
9890 /* We're looking at the second event of a
9891 sequence which we expanded before. Set
9892 last_real_key_start appropriately. */
9893 if (last_real_key_start == t && t > 0)
9894 last_real_key_start = t - 1;
9899 /* We have finally decided that KEY is something we might want
9900 to look up. */
9901 first_binding = (follow_key (key,
9902 nmaps - first_binding,
9903 submaps + first_binding,
9904 defs + first_binding,
9905 submaps + first_binding)
9906 + first_binding);
9908 /* If KEY wasn't bound, we'll try some fallbacks. */
9909 if (first_binding < nmaps)
9910 /* This is needed for the following scenario:
9911 event 0: a down-event that gets dropped by calling replay_key.
9912 event 1: some normal prefix like C-h.
9913 After event 0, first_unbound is 0, after event 1 indec.start,
9914 fkey.start, and keytran.start are all 1, so when we see that
9915 C-h is bound, we need to update first_unbound. */
9916 first_unbound = max (t + 1, first_unbound);
9917 else
9919 Lisp_Object head;
9921 /* Remember the position to put an upper bound on indec.start. */
9922 first_unbound = min (t, first_unbound);
9924 head = EVENT_HEAD (key);
9925 if (help_char_p (head) && t > 0)
9927 read_key_sequence_cmd = Vprefix_help_command;
9928 keybuf[t++] = key;
9929 last_nonmenu_event = key;
9930 /* The Microsoft C compiler can't handle the goto that
9931 would go here. */
9932 dummyflag = 1;
9933 break;
9936 if (SYMBOLP (head))
9938 Lisp_Object breakdown;
9939 int modifiers;
9941 breakdown = parse_modifiers (head);
9942 modifiers = XINT (XCAR (XCDR (breakdown)));
9943 /* Attempt to reduce an unbound mouse event to a simpler
9944 event that is bound:
9945 Drags reduce to clicks.
9946 Double-clicks reduce to clicks.
9947 Triple-clicks reduce to double-clicks, then to clicks.
9948 Down-clicks are eliminated.
9949 Double-downs reduce to downs, then are eliminated.
9950 Triple-downs reduce to double-downs, then to downs,
9951 then are eliminated. */
9952 if (modifiers & (down_modifier | drag_modifier
9953 | double_modifier | triple_modifier))
9955 while (modifiers & (down_modifier | drag_modifier
9956 | double_modifier | triple_modifier))
9958 Lisp_Object new_head, new_click;
9959 if (modifiers & triple_modifier)
9960 modifiers ^= (double_modifier | triple_modifier);
9961 else if (modifiers & double_modifier)
9962 modifiers &= ~double_modifier;
9963 else if (modifiers & drag_modifier)
9964 modifiers &= ~drag_modifier;
9965 else
9967 /* Dispose of this `down' event by simply jumping
9968 back to replay_key, to get another event.
9970 Note that if this event came from mock input,
9971 then just jumping back to replay_key will just
9972 hand it to us again. So we have to wipe out any
9973 mock input.
9975 We could delete keybuf[t] and shift everything
9976 after that to the left by one spot, but we'd also
9977 have to fix up any variable that points into
9978 keybuf, and shifting isn't really necessary
9979 anyway.
9981 Adding prefixes for non-textual mouse clicks
9982 creates two characters of mock input, and both
9983 must be thrown away. If we're only looking at
9984 the prefix now, we can just jump back to
9985 replay_key. On the other hand, if we've already
9986 processed the prefix, and now the actual click
9987 itself is giving us trouble, then we've lost the
9988 state of the keymaps we want to backtrack to, and
9989 we need to replay the whole sequence to rebuild
9992 Beyond that, only function key expansion could
9993 create more than two keys, but that should never
9994 generate mouse events, so it's okay to zero
9995 mock_input in that case too.
9997 FIXME: The above paragraph seems just plain
9998 wrong, if you consider things like
9999 xterm-mouse-mode. -stef
10001 Isn't this just the most wonderful code ever? */
10003 /* If mock_input > t + 1, the above simplification
10004 will actually end up dropping keys on the floor.
10005 This is probably OK for now, but even
10006 if mock_input <= t + 1, we need to adjust indec,
10007 fkey, and keytran.
10008 Typical case [header-line down-mouse-N]:
10009 mock_input = 2, t = 1, fkey.end = 1,
10010 last_real_key_start = 0. */
10011 if (indec.end > last_real_key_start)
10013 indec.end = indec.start
10014 = min (last_real_key_start, indec.start);
10015 indec.map = indec.parent;
10016 if (fkey.end > last_real_key_start)
10018 fkey.end = fkey.start
10019 = min (last_real_key_start, fkey.start);
10020 fkey.map = fkey.parent;
10021 if (keytran.end > last_real_key_start)
10023 keytran.end = keytran.start
10024 = min (last_real_key_start, keytran.start);
10025 keytran.map = keytran.parent;
10029 if (t == last_real_key_start)
10031 mock_input = 0;
10032 goto replay_key;
10034 else
10036 mock_input = last_real_key_start;
10037 goto replay_sequence;
10041 new_head
10042 = apply_modifiers (modifiers, XCAR (breakdown));
10043 new_click
10044 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
10046 /* Look for a binding for this new key. follow_key
10047 promises that it didn't munge submaps the
10048 last time we called it, since key was unbound. */
10049 first_binding
10050 = (follow_key (new_click,
10051 nmaps - local_first_binding,
10052 submaps + local_first_binding,
10053 defs + local_first_binding,
10054 submaps + local_first_binding)
10055 + local_first_binding);
10057 /* If that click is bound, go for it. */
10058 if (first_binding < nmaps)
10060 key = new_click;
10061 break;
10063 /* Otherwise, we'll leave key set to the drag event. */
10069 keybuf[t++] = key;
10070 /* Normally, last_nonmenu_event gets the previous key we read.
10071 But when a mouse popup menu is being used,
10072 we don't update last_nonmenu_event; it continues to hold the mouse
10073 event that preceded the first level of menu. */
10074 if (!used_mouse_menu)
10075 last_nonmenu_event = key;
10077 /* Record what part of this_command_keys is the current key sequence. */
10078 this_single_command_key_start = this_command_key_count - t;
10080 /* Look for this sequence in input-decode-map.
10081 Scan from indec.end until we find a bound suffix. */
10082 while (indec.end < t)
10084 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10085 int done, diff;
10087 GCPRO4 (indec.map, fkey.map, keytran.map, delayed_switch_frame);
10088 done = keyremap_step (keybuf, bufsize, &indec, max (t, mock_input),
10089 1, &diff, prompt);
10090 UNGCPRO;
10091 if (done)
10093 mock_input = diff + max (t, mock_input);
10094 goto replay_sequence;
10098 if (first_binding < nmaps && NILP (submaps[first_binding])
10099 && indec.start >= t)
10100 /* There is a binding and it's not a prefix.
10101 (and it doesn't have any input-decode-map translation pending).
10102 There is thus no function-key in this sequence.
10103 Moving fkey.start is important in this case to allow keytran.start
10104 to go over the sequence before we return (since we keep the
10105 invariant that keytran.end <= fkey.start). */
10107 if (fkey.start < t)
10108 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
10110 else
10111 /* If the sequence is unbound, see if we can hang a function key
10112 off the end of it. */
10113 /* Continue scan from fkey.end until we find a bound suffix. */
10114 while (fkey.end < indec.start)
10116 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10117 int done, diff;
10119 GCPRO4 (indec.map, fkey.map, keytran.map, delayed_switch_frame);
10120 done = keyremap_step (keybuf, bufsize, &fkey,
10121 max (t, mock_input),
10122 /* If there's a binding (i.e.
10123 first_binding >= nmaps) we don't want
10124 to apply this function-key-mapping. */
10125 fkey.end + 1 == t && first_binding >= nmaps,
10126 &diff, prompt);
10127 UNGCPRO;
10128 if (done)
10130 mock_input = diff + max (t, mock_input);
10131 /* Adjust the input-decode-map counters. */
10132 indec.end += diff;
10133 indec.start += diff;
10135 goto replay_sequence;
10139 /* Look for this sequence in key-translation-map.
10140 Scan from keytran.end until we find a bound suffix. */
10141 while (keytran.end < fkey.start)
10143 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10144 int done, diff;
10146 GCPRO4 (indec.map, fkey.map, keytran.map, delayed_switch_frame);
10147 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
10148 1, &diff, prompt);
10149 UNGCPRO;
10150 if (done)
10152 mock_input = diff + max (t, mock_input);
10153 /* Adjust the function-key-map and input-decode-map counters. */
10154 indec.end += diff;
10155 indec.start += diff;
10156 fkey.end += diff;
10157 fkey.start += diff;
10159 goto replay_sequence;
10163 /* If KEY is not defined in any of the keymaps,
10164 and cannot be part of a function key or translation,
10165 and is an upper case letter
10166 use the corresponding lower-case letter instead. */
10167 if (first_binding >= nmaps
10168 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t
10169 && INTEGERP (key)
10170 && ((CHARACTERP (make_number (XINT (key) & ~CHAR_MODIFIER_MASK))
10171 && UPPERCASEP (XINT (key) & ~CHAR_MODIFIER_MASK))
10172 || (XINT (key) & shift_modifier)))
10174 Lisp_Object new_key;
10176 original_uppercase = key;
10177 original_uppercase_position = t - 1;
10179 if (XINT (key) & shift_modifier)
10180 XSETINT (new_key, XINT (key) & ~shift_modifier);
10181 else
10182 XSETINT (new_key, (DOWNCASE (XINT (key) & ~CHAR_MODIFIER_MASK)
10183 | (XINT (key) & CHAR_MODIFIER_MASK)));
10185 /* We have to do this unconditionally, regardless of whether
10186 the lower-case char is defined in the keymaps, because they
10187 might get translated through function-key-map. */
10188 keybuf[t - 1] = new_key;
10189 mock_input = max (t, mock_input);
10190 shift_translated = 1;
10192 goto replay_sequence;
10194 /* If KEY is not defined in any of the keymaps,
10195 and cannot be part of a function key or translation,
10196 and is a shifted function key,
10197 use the corresponding unshifted function key instead. */
10198 if (first_binding >= nmaps
10199 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t)
10201 Lisp_Object breakdown = parse_modifiers (key);
10202 int modifiers
10203 = CONSP (breakdown) ? (XINT (XCAR (XCDR (breakdown)))) : 0;
10205 if (modifiers & shift_modifier
10206 /* Treat uppercase keys as shifted. */
10207 || (INTEGERP (key)
10208 && (KEY_TO_CHAR (key)
10209 < XCHAR_TABLE (current_buffer->downcase_table)->size)
10210 && UPPERCASEP (KEY_TO_CHAR (key))))
10212 Lisp_Object new_key
10213 = (modifiers & shift_modifier
10214 ? apply_modifiers (modifiers & ~shift_modifier,
10215 XCAR (breakdown))
10216 : make_number (DOWNCASE (KEY_TO_CHAR (key)) | modifiers));
10218 original_uppercase = key;
10219 original_uppercase_position = t - 1;
10221 /* We have to do this unconditionally, regardless of whether
10222 the lower-case char is defined in the keymaps, because they
10223 might get translated through function-key-map. */
10224 keybuf[t - 1] = new_key;
10225 mock_input = max (t, mock_input);
10226 /* Reset fkey (and consequently keytran) to apply
10227 function-key-map on the result, so that S-backspace is
10228 correctly mapped to DEL (via backspace). OTOH,
10229 input-decode-map doesn't need to go through it again. */
10230 fkey.start = fkey.end = 0;
10231 keytran.start = keytran.end = 0;
10232 shift_translated = 1;
10234 goto replay_sequence;
10238 if (!dummyflag)
10239 read_key_sequence_cmd = (first_binding < nmaps
10240 ? defs[first_binding]
10241 : Qnil);
10243 unread_switch_frame = delayed_switch_frame;
10244 unbind_to (count, Qnil);
10246 /* Don't downcase the last character if the caller says don't.
10247 Don't downcase it if the result is undefined, either. */
10248 if ((dont_downcase_last || first_binding >= nmaps)
10249 && t > 0
10250 && t - 1 == original_uppercase_position)
10252 keybuf[t - 1] = original_uppercase;
10253 shift_translated = 0;
10256 if (shift_translated)
10257 Vthis_command_keys_shift_translated = Qt;
10259 /* Occasionally we fabricate events, perhaps by expanding something
10260 according to function-key-map, or by adding a prefix symbol to a
10261 mouse click in the scroll bar or modeline. In this cases, return
10262 the entire generated key sequence, even if we hit an unbound
10263 prefix or a definition before the end. This means that you will
10264 be able to push back the event properly, and also means that
10265 read-key-sequence will always return a logical unit.
10267 Better ideas? */
10268 for (; t < mock_input; t++)
10270 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
10271 && NILP (Fzerop (Vecho_keystrokes)))
10272 echo_char (keybuf[t]);
10273 add_command_key (keybuf[t]);
10276 UNGCPRO;
10277 return t;
10280 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
10281 doc: /* Read a sequence of keystrokes and return as a string or vector.
10282 The sequence is sufficient to specify a non-prefix command in the
10283 current local and global maps.
10285 First arg PROMPT is a prompt string. If nil, do not prompt specially.
10286 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
10287 as a continuation of the previous key.
10289 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
10290 convert the last event to lower case. (Normally any upper case event
10291 is converted to lower case if the original event is undefined and the lower
10292 case equivalent is defined.) A non-nil value is appropriate for reading
10293 a key sequence to be defined.
10295 A C-g typed while in this function is treated like any other character,
10296 and `quit-flag' is not set.
10298 If the key sequence starts with a mouse click, then the sequence is read
10299 using the keymaps of the buffer of the window clicked in, not the buffer
10300 of the selected window as normal.
10302 `read-key-sequence' drops unbound button-down events, since you normally
10303 only care about the click or drag events which follow them. If a drag
10304 or multi-click event is unbound, but the corresponding click event would
10305 be bound, `read-key-sequence' turns the event into a click event at the
10306 drag's starting position. This means that you don't have to distinguish
10307 between click and drag, double, or triple events unless you want to.
10309 `read-key-sequence' prefixes mouse events on mode lines, the vertical
10310 lines separating windows, and scroll bars with imaginary keys
10311 `mode-line', `vertical-line', and `vertical-scroll-bar'.
10313 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
10314 function will process a switch-frame event if the user switches frames
10315 before typing anything. If the user switches frames in the middle of a
10316 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
10317 is nil, then the event will be put off until after the current key sequence.
10319 `read-key-sequence' checks `function-key-map' for function key
10320 sequences, where they wouldn't conflict with ordinary bindings. See
10321 `function-key-map' for more details.
10323 The optional fifth argument COMMAND-LOOP, if non-nil, means
10324 that this key sequence is being read by something that will
10325 read commands one after another. It should be nil if the caller
10326 will read just one key sequence. */)
10327 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
10328 command_loop)
10329 Lisp_Object prompt, continue_echo, dont_downcase_last;
10330 Lisp_Object can_return_switch_frame, command_loop;
10332 Lisp_Object keybuf[30];
10333 register int i;
10334 struct gcpro gcpro1;
10335 int count = SPECPDL_INDEX ();
10337 if (!NILP (prompt))
10338 CHECK_STRING (prompt);
10339 QUIT;
10341 specbind (Qinput_method_exit_on_first_char,
10342 (NILP (command_loop) ? Qt : Qnil));
10343 specbind (Qinput_method_use_echo_area,
10344 (NILP (command_loop) ? Qt : Qnil));
10346 bzero (keybuf, sizeof keybuf);
10347 GCPRO1 (keybuf[0]);
10348 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
10350 if (NILP (continue_echo))
10352 this_command_key_count = 0;
10353 this_command_key_count_reset = 0;
10354 this_single_command_key_start = 0;
10357 #ifdef HAVE_WINDOW_SYSTEM
10358 if (display_hourglass_p)
10359 cancel_hourglass ();
10360 #endif
10362 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
10363 prompt, ! NILP (dont_downcase_last),
10364 ! NILP (can_return_switch_frame), 0);
10366 #if 0 /* The following is fine for code reading a key sequence and
10367 then proceeding with a lenghty computation, but it's not good
10368 for code reading keys in a loop, like an input method. */
10369 #ifdef HAVE_WINDOW_SYSTEM
10370 if (display_hourglass_p)
10371 start_hourglass ();
10372 #endif
10373 #endif
10375 if (i == -1)
10377 Vquit_flag = Qt;
10378 QUIT;
10380 UNGCPRO;
10381 return unbind_to (count, make_event_array (i, keybuf));
10384 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
10385 Sread_key_sequence_vector, 1, 5, 0,
10386 doc: /* Like `read-key-sequence' but always return a vector. */)
10387 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
10388 command_loop)
10389 Lisp_Object prompt, continue_echo, dont_downcase_last;
10390 Lisp_Object can_return_switch_frame, command_loop;
10392 Lisp_Object keybuf[30];
10393 register int i;
10394 struct gcpro gcpro1;
10395 int count = SPECPDL_INDEX ();
10397 if (!NILP (prompt))
10398 CHECK_STRING (prompt);
10399 QUIT;
10401 specbind (Qinput_method_exit_on_first_char,
10402 (NILP (command_loop) ? Qt : Qnil));
10403 specbind (Qinput_method_use_echo_area,
10404 (NILP (command_loop) ? Qt : Qnil));
10406 bzero (keybuf, sizeof keybuf);
10407 GCPRO1 (keybuf[0]);
10408 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
10410 if (NILP (continue_echo))
10412 this_command_key_count = 0;
10413 this_command_key_count_reset = 0;
10414 this_single_command_key_start = 0;
10417 #ifdef HAVE_WINDOW_SYSTEM
10418 if (display_hourglass_p)
10419 cancel_hourglass ();
10420 #endif
10422 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
10423 prompt, ! NILP (dont_downcase_last),
10424 ! NILP (can_return_switch_frame), 0);
10426 #ifdef HAVE_WINDOW_SYSTEM
10427 if (display_hourglass_p)
10428 start_hourglass ();
10429 #endif
10431 if (i == -1)
10433 Vquit_flag = Qt;
10434 QUIT;
10436 UNGCPRO;
10437 return unbind_to (count, Fvector (i, keybuf));
10440 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
10441 doc: /* Execute CMD as an editor command.
10442 CMD must be a symbol that satisfies the `commandp' predicate.
10443 Optional second arg RECORD-FLAG non-nil
10444 means unconditionally put this command in `command-history'.
10445 Otherwise, that is done only if an arg is read using the minibuffer.
10446 The argument KEYS specifies the value to use instead of (this-command-keys)
10447 when reading the arguments; if it is nil, (this-command-keys) is used.
10448 The argument SPECIAL, if non-nil, means that this command is executing
10449 a special event, so ignore the prefix argument and don't clear it. */)
10450 (cmd, record_flag, keys, special)
10451 Lisp_Object cmd, record_flag, keys, special;
10453 register Lisp_Object final;
10454 register Lisp_Object tem;
10455 Lisp_Object prefixarg;
10456 extern int debug_on_next_call;
10458 debug_on_next_call = 0;
10460 if (NILP (special))
10462 prefixarg = current_kboard->Vprefix_arg;
10463 Vcurrent_prefix_arg = prefixarg;
10464 current_kboard->Vprefix_arg = Qnil;
10466 else
10467 prefixarg = Qnil;
10469 if (SYMBOLP (cmd))
10471 tem = Fget (cmd, Qdisabled);
10472 if (!NILP (tem) && !NILP (Vrun_hooks))
10474 tem = Fsymbol_value (Qdisabled_command_function);
10475 if (!NILP (tem))
10476 return call1 (Vrun_hooks, Qdisabled_command_function);
10480 while (1)
10482 final = Findirect_function (cmd, Qnil);
10484 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
10486 struct gcpro gcpro1, gcpro2;
10488 GCPRO2 (cmd, prefixarg);
10489 do_autoload (final, cmd);
10490 UNGCPRO;
10492 else
10493 break;
10496 if (STRINGP (final) || VECTORP (final))
10498 /* If requested, place the macro in the command history. For
10499 other sorts of commands, call-interactively takes care of
10500 this. */
10501 if (!NILP (record_flag))
10503 Vcommand_history
10504 = Fcons (Fcons (Qexecute_kbd_macro,
10505 Fcons (final, Fcons (prefixarg, Qnil))),
10506 Vcommand_history);
10508 /* Don't keep command history around forever. */
10509 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
10511 tem = Fnthcdr (Vhistory_length, Vcommand_history);
10512 if (CONSP (tem))
10513 XSETCDR (tem, Qnil);
10517 return Fexecute_kbd_macro (final, prefixarg, Qnil);
10520 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
10521 /* Don't call Fcall_interactively directly because we want to make
10522 sure the backtrace has an entry for `call-interactively'.
10523 For the same reason, pass `cmd' rather than `final'. */
10524 return call3 (Qcall_interactively, cmd, record_flag, keys);
10526 return Qnil;
10531 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
10532 1, 1, "P",
10533 doc: /* Read function name, then read its arguments and call it.
10535 To pass a numeric argument to the command you are invoking with, specify
10536 the numeric argument to this command.
10538 Noninteractively, the argument PREFIXARG is the prefix argument to
10539 give to the command you invoke, if it asks for an argument. */)
10540 (prefixarg)
10541 Lisp_Object prefixarg;
10543 Lisp_Object function;
10544 char buf[40];
10545 int saved_last_point_position;
10546 Lisp_Object saved_keys, saved_last_point_position_buffer;
10547 Lisp_Object bindings, value;
10548 struct gcpro gcpro1, gcpro2, gcpro3;
10549 #ifdef HAVE_WINDOW_SYSTEM
10550 /* The call to Fcompleting_read wil start and cancel the hourglass,
10551 but if the hourglass was already scheduled, this means that no
10552 hourglass will be shown for the actual M-x command itself.
10553 So we restart it if it is already scheduled. Note that checking
10554 hourglass_shown_p is not enough, normally the hourglass is not shown,
10555 just scheduled to be shown. */
10556 int hstarted = hourglass_started ();
10557 #endif
10559 saved_keys = Fvector (this_command_key_count,
10560 XVECTOR (this_command_keys)->contents);
10561 saved_last_point_position_buffer = last_point_position_buffer;
10562 saved_last_point_position = last_point_position;
10563 buf[0] = 0;
10564 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
10566 if (EQ (prefixarg, Qminus))
10567 strcpy (buf, "- ");
10568 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
10569 strcpy (buf, "C-u ");
10570 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
10571 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
10572 else if (INTEGERP (prefixarg))
10573 sprintf (buf, "%ld ", (long) XINT (prefixarg));
10575 /* This isn't strictly correct if execute-extended-command
10576 is bound to anything else. Perhaps it should use
10577 this_command_keys? */
10578 strcat (buf, "M-x ");
10580 /* Prompt with buf, and then read a string, completing from and
10581 restricting to the set of all defined commands. Don't provide
10582 any initial input. Save the command read on the extended-command
10583 history list. */
10584 function = Fcompleting_read (build_string (buf),
10585 Vobarray, Qcommandp,
10586 Qt, Qnil, Qextended_command_history, Qnil,
10587 Qnil);
10589 #ifdef HAVE_WINDOW_SYSTEM
10590 if (hstarted) start_hourglass ();
10591 #endif
10593 if (STRINGP (function) && SCHARS (function) == 0)
10594 error ("No command name given");
10596 /* Set this_command_keys to the concatenation of saved_keys and
10597 function, followed by a RET. */
10599 Lisp_Object *keys;
10600 int i;
10602 this_command_key_count = 0;
10603 this_command_key_count_reset = 0;
10604 this_single_command_key_start = 0;
10606 keys = XVECTOR (saved_keys)->contents;
10607 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
10608 add_command_key (keys[i]);
10610 for (i = 0; i < SCHARS (function); i++)
10611 add_command_key (Faref (function, make_number (i)));
10613 add_command_key (make_number ('\015'));
10616 last_point_position = saved_last_point_position;
10617 last_point_position_buffer = saved_last_point_position_buffer;
10619 UNGCPRO;
10621 function = Fintern (function, Qnil);
10622 current_kboard->Vprefix_arg = prefixarg;
10623 Vthis_command = function;
10624 real_this_command = function;
10626 /* If enabled, show which key runs this command. */
10627 if (!NILP (Vsuggest_key_bindings)
10628 && NILP (Vexecuting_kbd_macro)
10629 && SYMBOLP (function))
10630 bindings = Fwhere_is_internal (function, Voverriding_local_map,
10631 Qt, Qnil, Qnil);
10632 else
10633 bindings = Qnil;
10635 value = Qnil;
10636 GCPRO3 (bindings, value, function);
10637 value = Fcommand_execute (function, Qt, Qnil, Qnil);
10639 /* If the command has a key binding, print it now. */
10640 if (!NILP (bindings)
10641 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
10642 Qmouse_movement)))
10644 /* But first wait, and skip the message if there is input. */
10645 Lisp_Object waited;
10647 /* If this command displayed something in the echo area;
10648 wait a few seconds, then display our suggestion message. */
10649 if (NILP (echo_area_buffer[0]))
10650 waited = sit_for (make_number (0), 0, 2);
10651 else if (NUMBERP (Vsuggest_key_bindings))
10652 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10653 else
10654 waited = sit_for (make_number (2), 0, 2);
10656 if (!NILP (waited) && ! CONSP (Vunread_command_events))
10658 Lisp_Object binding;
10659 char *newmessage;
10660 int message_p = push_message ();
10661 int count = SPECPDL_INDEX ();
10663 record_unwind_protect (pop_message_unwind, Qnil);
10664 binding = Fkey_description (bindings, Qnil);
10666 newmessage
10667 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
10668 + SBYTES (binding)
10669 + 100);
10670 sprintf (newmessage, "You can run the command `%s' with %s",
10671 SDATA (SYMBOL_NAME (function)),
10672 SDATA (binding));
10673 message2_nolog (newmessage,
10674 strlen (newmessage),
10675 STRING_MULTIBYTE (binding));
10676 if (NUMBERP (Vsuggest_key_bindings))
10677 waited = sit_for (Vsuggest_key_bindings, 0, 2);
10678 else
10679 waited = sit_for (make_number (2), 0, 2);
10681 if (!NILP (waited) && message_p)
10682 restore_message ();
10684 unbind_to (count, Qnil);
10688 RETURN_UNGCPRO (value);
10692 /* Return nonzero if input events are pending. */
10695 detect_input_pending ()
10697 if (!input_pending)
10698 get_input_pending (&input_pending, 0);
10700 return input_pending;
10703 /* Return nonzero if input events other than mouse movements are
10704 pending. */
10707 detect_input_pending_ignore_squeezables ()
10709 if (!input_pending)
10710 get_input_pending (&input_pending, READABLE_EVENTS_IGNORE_SQUEEZABLES);
10712 return input_pending;
10715 /* Return nonzero if input events are pending, and run any pending timers. */
10718 detect_input_pending_run_timers (do_display)
10719 int do_display;
10721 int old_timers_run = timers_run;
10723 if (!input_pending)
10724 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
10726 if (old_timers_run != timers_run && do_display)
10728 redisplay_preserve_echo_area (8);
10729 /* The following fixes a bug when using lazy-lock with
10730 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
10731 from an idle timer function. The symptom of the bug is that
10732 the cursor sometimes doesn't become visible until the next X
10733 event is processed. --gerd. */
10735 Lisp_Object tail, frame;
10736 FOR_EACH_FRAME (tail, frame)
10737 if (FRAME_RIF (XFRAME (frame)))
10738 FRAME_RIF (XFRAME (frame))->flush_display (XFRAME (frame));
10742 return input_pending;
10745 /* This is called in some cases before a possible quit.
10746 It cases the next call to detect_input_pending to recompute input_pending.
10747 So calling this function unnecessarily can't do any harm. */
10749 void
10750 clear_input_pending ()
10752 input_pending = 0;
10755 /* Return nonzero if there are pending requeued events.
10756 This isn't used yet. The hope is to make wait_reading_process_output
10757 call it, and return if it runs Lisp code that unreads something.
10758 The problem is, kbd_buffer_get_event needs to be fixed to know what
10759 to do in that case. It isn't trivial. */
10762 requeued_events_pending_p ()
10764 return (!NILP (Vunread_command_events) || unread_command_char != -1);
10768 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
10769 doc: /* Return t if command input is currently available with no wait.
10770 Actually, the value is nil only if we can be sure that no input is available;
10771 if there is a doubt, the value is t. */)
10774 if (!NILP (Vunread_command_events) || unread_command_char != -1
10775 || !NILP (Vunread_post_input_method_events)
10776 || !NILP (Vunread_input_method_events))
10777 return (Qt);
10779 get_input_pending (&input_pending,
10780 READABLE_EVENTS_DO_TIMERS_NOW
10781 | READABLE_EVENTS_FILTER_EVENTS);
10782 return input_pending > 0 ? Qt : Qnil;
10785 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
10786 doc: /* Return vector of last 300 events, not counting those from keyboard macros. */)
10789 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
10790 Lisp_Object val;
10792 if (total_keys < NUM_RECENT_KEYS)
10793 return Fvector (total_keys, keys);
10794 else
10796 val = Fvector (NUM_RECENT_KEYS, keys);
10797 bcopy (keys + recent_keys_index,
10798 XVECTOR (val)->contents,
10799 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
10800 bcopy (keys,
10801 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
10802 recent_keys_index * sizeof (Lisp_Object));
10803 return val;
10807 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10808 doc: /* Return the key sequence that invoked this command.
10809 However, if the command has called `read-key-sequence', it returns
10810 the last key sequence that has been read.
10811 The value is a string or a vector.
10813 See also `this-command-keys-vector'. */)
10816 return make_event_array (this_command_key_count,
10817 XVECTOR (this_command_keys)->contents);
10820 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10821 doc: /* Return the key sequence that invoked this command, as a vector.
10822 However, if the command has called `read-key-sequence', it returns
10823 the last key sequence that has been read.
10825 See also `this-command-keys'. */)
10828 return Fvector (this_command_key_count,
10829 XVECTOR (this_command_keys)->contents);
10832 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10833 Sthis_single_command_keys, 0, 0, 0,
10834 doc: /* Return the key sequence that invoked this command.
10835 More generally, it returns the last key sequence read, either by
10836 the command loop or by `read-key-sequence'.
10837 Unlike `this-command-keys', this function's value
10838 does not include prefix arguments.
10839 The value is always a vector. */)
10842 return Fvector (this_command_key_count
10843 - this_single_command_key_start,
10844 (XVECTOR (this_command_keys)->contents
10845 + this_single_command_key_start));
10848 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10849 Sthis_single_command_raw_keys, 0, 0, 0,
10850 doc: /* Return the raw events that were read for this command.
10851 More generally, it returns the last key sequence read, either by
10852 the command loop or by `read-key-sequence'.
10853 Unlike `this-single-command-keys', this function's value
10854 shows the events before all translations (except for input methods).
10855 The value is always a vector. */)
10858 return Fvector (raw_keybuf_count,
10859 (XVECTOR (raw_keybuf)->contents));
10862 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
10863 Sreset_this_command_lengths, 0, 0, 0,
10864 doc: /* Make the unread events replace the last command and echo.
10865 Used in `universal-argument-other-key'.
10867 `universal-argument-other-key' rereads the event just typed.
10868 It then gets translated through `function-key-map'.
10869 The translated event has to replace the real events,
10870 both in the value of (this-command-keys) and in echoing.
10871 To achieve this, `universal-argument-other-key' calls
10872 `reset-this-command-lengths', which discards the record of reading
10873 these events the first time. */)
10876 this_command_key_count = before_command_key_count;
10877 if (this_command_key_count < this_single_command_key_start)
10878 this_single_command_key_start = this_command_key_count;
10880 echo_truncate (before_command_echo_length);
10882 /* Cause whatever we put into unread-command-events
10883 to echo as if it were being freshly read from the keyboard. */
10884 this_command_key_count_reset = 1;
10886 return Qnil;
10889 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10890 Sclear_this_command_keys, 0, 1, 0,
10891 doc: /* Clear out the vector that `this-command-keys' returns.
10892 Also clear the record of the last 100 events, unless optional arg
10893 KEEP-RECORD is non-nil. */)
10894 (keep_record)
10895 Lisp_Object keep_record;
10897 int i;
10899 this_command_key_count = 0;
10900 this_command_key_count_reset = 0;
10902 if (NILP (keep_record))
10904 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
10905 XVECTOR (recent_keys)->contents[i] = Qnil;
10906 total_keys = 0;
10907 recent_keys_index = 0;
10909 return Qnil;
10912 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10913 doc: /* Return the current depth in recursive edits. */)
10916 Lisp_Object temp;
10917 XSETFASTINT (temp, command_loop_level + minibuf_level);
10918 return temp;
10921 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10922 "FOpen dribble file: ",
10923 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10924 If FILE is nil, close any open dribble file. */)
10925 (file)
10926 Lisp_Object file;
10928 if (dribble)
10930 BLOCK_INPUT;
10931 fclose (dribble);
10932 UNBLOCK_INPUT;
10933 dribble = 0;
10935 if (!NILP (file))
10937 file = Fexpand_file_name (file, Qnil);
10938 dribble = fopen (SDATA (file), "w");
10939 if (dribble == 0)
10940 report_file_error ("Opening dribble", Fcons (file, Qnil));
10942 return Qnil;
10945 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10946 doc: /* Discard the contents of the terminal input buffer.
10947 Also end any kbd macro being defined. */)
10950 if (!NILP (current_kboard->defining_kbd_macro))
10952 /* Discard the last command from the macro. */
10953 Fcancel_kbd_macro_events ();
10954 end_kbd_macro ();
10957 update_mode_lines++;
10959 Vunread_command_events = Qnil;
10960 unread_command_char = -1;
10962 discard_tty_input ();
10964 kbd_fetch_ptr = kbd_store_ptr;
10965 input_pending = 0;
10967 return Qnil;
10970 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10971 doc: /* Stop Emacs and return to superior process. You can resume later.
10972 If `cannot-suspend' is non-nil, or if the system doesn't support job
10973 control, run a subshell instead.
10975 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10976 to be read as terminal input by Emacs's parent, after suspension.
10978 Before suspending, run the normal hook `suspend-hook'.
10979 After resumption run the normal hook `suspend-resume-hook'.
10981 Some operating systems cannot stop the Emacs process and resume it later.
10982 On such systems, Emacs starts a subshell instead of suspending. */)
10983 (stuffstring)
10984 Lisp_Object stuffstring;
10986 int count = SPECPDL_INDEX ();
10987 int old_height, old_width;
10988 int width, height;
10989 struct gcpro gcpro1;
10991 if (tty_list && tty_list->next)
10992 error ("There are other tty frames open; close them before suspending Emacs");
10994 if (!NILP (stuffstring))
10995 CHECK_STRING (stuffstring);
10997 /* Run the functions in suspend-hook. */
10998 if (!NILP (Vrun_hooks))
10999 call1 (Vrun_hooks, intern ("suspend-hook"));
11001 GCPRO1 (stuffstring);
11002 get_tty_size (fileno (CURTTY ()->input), &old_width, &old_height);
11003 reset_all_sys_modes ();
11004 /* sys_suspend can get an error if it tries to fork a subshell
11005 and the system resources aren't available for that. */
11006 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_all_sys_modes,
11007 Qnil);
11008 stuff_buffered_input (stuffstring);
11009 if (cannot_suspend)
11010 sys_subshell ();
11011 else
11012 sys_suspend ();
11013 unbind_to (count, Qnil);
11015 /* Check if terminal/window size has changed.
11016 Note that this is not useful when we are running directly
11017 with a window system; but suspend should be disabled in that case. */
11018 get_tty_size (fileno (CURTTY ()->input), &width, &height);
11019 if (width != old_width || height != old_height)
11020 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
11022 /* Run suspend-resume-hook. */
11023 if (!NILP (Vrun_hooks))
11024 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
11026 UNGCPRO;
11027 return Qnil;
11030 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
11031 Then in any case stuff anything Emacs has read ahead and not used. */
11033 void
11034 stuff_buffered_input (stuffstring)
11035 Lisp_Object stuffstring;
11037 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
11038 register unsigned char *p;
11040 if (STRINGP (stuffstring))
11042 register int count;
11044 p = SDATA (stuffstring);
11045 count = SBYTES (stuffstring);
11046 while (count-- > 0)
11047 stuff_char (*p++);
11048 stuff_char ('\n');
11051 /* Anything we have read ahead, put back for the shell to read. */
11052 /* ?? What should this do when we have multiple keyboards??
11053 Should we ignore anything that was typed in at the "wrong" kboard?
11055 rms: we should stuff everything back into the kboard
11056 it came from. */
11057 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
11060 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
11061 kbd_fetch_ptr = kbd_buffer;
11062 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
11063 stuff_char (kbd_fetch_ptr->code);
11065 clear_event (kbd_fetch_ptr);
11068 input_pending = 0;
11069 #endif /* SIGTSTP */
11072 void
11073 set_waiting_for_input (time_to_clear)
11074 EMACS_TIME *time_to_clear;
11076 input_available_clear_time = time_to_clear;
11078 /* Tell handle_interrupt to throw back to read_char, */
11079 waiting_for_input = 1;
11081 /* If handle_interrupt was called before and buffered a C-g,
11082 make it run again now, to avoid timing error. */
11083 if (!NILP (Vquit_flag))
11084 quit_throw_to_read_char ();
11087 void
11088 clear_waiting_for_input ()
11090 /* Tell handle_interrupt not to throw back to read_char, */
11091 waiting_for_input = 0;
11092 input_available_clear_time = 0;
11095 /* The SIGINT handler.
11097 If we have a frame on the controlling tty, we assume that the
11098 SIGINT was generated by C-g, so we call handle_interrupt.
11099 Otherwise, the handler kills Emacs. */
11101 static SIGTYPE
11102 interrupt_signal (signalnum) /* If we don't have an argument, */
11103 int signalnum; /* some compilers complain in signal calls. */
11105 /* Must preserve main program's value of errno. */
11106 int old_errno = errno;
11107 struct terminal *terminal;
11109 #if defined (USG) && !defined (POSIX_SIGNALS)
11110 /* USG systems forget handlers when they are used;
11111 must reestablish each time */
11112 signal (SIGINT, interrupt_signal);
11113 signal (SIGQUIT, interrupt_signal);
11114 #endif /* USG */
11116 SIGNAL_THREAD_CHECK (signalnum);
11118 /* See if we have an active terminal on our controlling tty. */
11119 terminal = get_named_tty ("/dev/tty");
11120 if (!terminal)
11122 /* If there are no frames there, let's pretend that we are a
11123 well-behaving UN*X program and quit. */
11124 Fkill_emacs (Qnil);
11126 else
11128 /* Otherwise, the SIGINT was probably generated by C-g. */
11130 /* Set internal_last_event_frame to the top frame of the
11131 controlling tty, if we have a frame there. We disable the
11132 interrupt key on secondary ttys, so the SIGINT must have come
11133 from the controlling tty. */
11134 internal_last_event_frame = terminal->display_info.tty->top_frame;
11136 handle_interrupt ();
11139 errno = old_errno;
11142 /* This routine is called at interrupt level in response to C-g.
11144 It is called from the SIGINT handler or kbd_buffer_store_event.
11146 If `waiting_for_input' is non zero, then unless `echoing' is
11147 nonzero, immediately throw back to read_char.
11149 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
11150 eval to throw, when it gets a chance. If quit-flag is already
11151 non-nil, it stops the job right away. */
11153 static void
11154 handle_interrupt ()
11156 char c;
11158 cancel_echoing ();
11160 /* XXX This code needs to be revised for multi-tty support. */
11161 if (!NILP (Vquit_flag) && get_named_tty ("/dev/tty"))
11163 /* If SIGINT isn't blocked, don't let us be interrupted by
11164 another SIGINT, it might be harmful due to non-reentrancy
11165 in I/O functions. */
11166 sigblock (sigmask (SIGINT));
11168 fflush (stdout);
11169 reset_all_sys_modes ();
11171 #ifdef SIGTSTP /* Support possible in later USG versions */
11173 * On systems which can suspend the current process and return to the original
11174 * shell, this command causes the user to end up back at the shell.
11175 * The "Auto-save" and "Abort" questions are not asked until
11176 * the user elects to return to emacs, at which point he can save the current
11177 * job and either dump core or continue.
11179 sys_suspend ();
11180 #else
11181 /* Perhaps should really fork an inferior shell?
11182 But that would not provide any way to get back
11183 to the original shell, ever. */
11184 printf ("No support for stopping a process on this operating system;\n");
11185 printf ("you can continue or abort.\n");
11186 #endif /* not SIGTSTP */
11187 #ifdef MSDOS
11188 /* We must remain inside the screen area when the internal terminal
11189 is used. Note that [Enter] is not echoed by dos. */
11190 cursor_to (SELECTED_FRAME (), 0, 0);
11191 #endif
11192 /* It doesn't work to autosave while GC is in progress;
11193 the code used for auto-saving doesn't cope with the mark bit. */
11194 if (!gc_in_progress)
11196 printf ("Auto-save? (y or n) ");
11197 fflush (stdout);
11198 if (((c = getchar ()) & ~040) == 'Y')
11200 Fdo_auto_save (Qt, Qnil);
11201 #ifdef MSDOS
11202 printf ("\r\nAuto-save done");
11203 #else /* not MSDOS */
11204 printf ("Auto-save done\n");
11205 #endif /* not MSDOS */
11207 while (c != '\n') c = getchar ();
11209 else
11211 /* During GC, it must be safe to reenable quitting again. */
11212 Vinhibit_quit = Qnil;
11213 #ifdef MSDOS
11214 printf ("\r\n");
11215 #endif /* not MSDOS */
11216 printf ("Garbage collection in progress; cannot auto-save now\r\n");
11217 printf ("but will instead do a real quit after garbage collection ends\r\n");
11218 fflush (stdout);
11221 #ifdef MSDOS
11222 printf ("\r\nAbort? (y or n) ");
11223 #else /* not MSDOS */
11224 printf ("Abort (and dump core)? (y or n) ");
11225 #endif /* not MSDOS */
11226 fflush (stdout);
11227 if (((c = getchar ()) & ~040) == 'Y')
11228 abort ();
11229 while (c != '\n') c = getchar ();
11230 #ifdef MSDOS
11231 printf ("\r\nContinuing...\r\n");
11232 #else /* not MSDOS */
11233 printf ("Continuing...\n");
11234 #endif /* not MSDOS */
11235 fflush (stdout);
11236 init_all_sys_modes ();
11237 sigfree ();
11239 else
11241 /* If executing a function that wants to be interrupted out of
11242 and the user has not deferred quitting by binding `inhibit-quit'
11243 then quit right away. */
11244 if (immediate_quit && NILP (Vinhibit_quit))
11246 struct gl_state_s saved;
11247 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
11249 immediate_quit = 0;
11250 sigfree ();
11251 saved = gl_state;
11252 GCPRO4 (saved.object, saved.global_code,
11253 saved.current_syntax_table, saved.old_prop);
11254 Fsignal (Qquit, Qnil);
11255 gl_state = saved;
11256 UNGCPRO;
11258 else
11259 /* Else request quit when it's safe */
11260 Vquit_flag = Qt;
11263 /* TODO: The longjmp in this call throws the NS event loop integration off,
11264 and it seems to do fine without this. Probably some attention
11265 needs to be paid to the setting of waiting_for_input in
11266 wait_reading_process_output() under HAVE_NS because of the call
11267 to ns_select there (needed because otherwise events aren't picked up
11268 outside of polling since we don't get SIGIO like X and we don't have a
11269 separate event loop thread like W32. */
11270 #ifndef HAVE_NS
11271 if (waiting_for_input && !echoing)
11272 quit_throw_to_read_char ();
11273 #endif
11276 /* Handle a C-g by making read_char return C-g. */
11278 void
11279 quit_throw_to_read_char ()
11281 sigfree ();
11282 /* Prevent another signal from doing this before we finish. */
11283 clear_waiting_for_input ();
11284 input_pending = 0;
11286 Vunread_command_events = Qnil;
11287 unread_command_char = -1;
11289 #if 0 /* Currently, sit_for is called from read_char without turning
11290 off polling. And that can call set_waiting_for_input.
11291 It seems to be harmless. */
11292 #ifdef POLL_FOR_INPUT
11293 /* May be > 1 if in recursive minibuffer. */
11294 if (poll_suppress_count == 0)
11295 abort ();
11296 #endif
11297 #endif
11298 if (FRAMEP (internal_last_event_frame)
11299 && !EQ (internal_last_event_frame, selected_frame))
11300 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
11301 0, 0, Qnil);
11303 _longjmp (getcjmp, 1);
11306 DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode, Sset_input_interrupt_mode, 1, 1, 0,
11307 doc: /* Set interrupt mode of reading keyboard input.
11308 If INTERRUPT is non-nil, Emacs will use input interrupts;
11309 otherwise Emacs uses CBREAK mode.
11311 See also `current-input-mode'. */)
11312 (interrupt)
11313 Lisp_Object interrupt;
11315 int new_interrupt_input;
11316 #ifdef SIGIO
11317 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11318 #ifdef HAVE_X_WINDOWS
11319 if (x_display_list != NULL)
11321 /* When using X, don't give the user a real choice,
11322 because we haven't implemented the mechanisms to support it. */
11323 #ifdef NO_SOCK_SIGIO
11324 new_interrupt_input = 0;
11325 #else /* not NO_SOCK_SIGIO */
11326 new_interrupt_input = 1;
11327 #endif /* NO_SOCK_SIGIO */
11329 else
11330 #endif /* HAVE_X_WINDOWS */
11331 new_interrupt_input = !NILP (interrupt);
11332 #else /* not SIGIO */
11333 new_interrupt_input = 0;
11334 #endif /* not SIGIO */
11336 if (new_interrupt_input != interrupt_input)
11338 #ifdef POLL_FOR_INPUT
11339 stop_polling ();
11340 #endif
11341 #ifndef DOS_NT
11342 /* this causes startup screen to be restored and messes with the mouse */
11343 reset_all_sys_modes ();
11344 #endif
11345 interrupt_input = new_interrupt_input;
11346 #ifndef DOS_NT
11347 init_all_sys_modes ();
11348 #endif
11350 #ifdef POLL_FOR_INPUT
11351 poll_suppress_count = 1;
11352 start_polling ();
11353 #endif
11355 return Qnil;
11358 DEFUN ("set-output-flow-control", Fset_output_flow_control, Sset_output_flow_control, 1, 2, 0,
11359 doc: /* Enable or disable ^S/^Q flow control for output to TERMINAL.
11360 If FLOW is non-nil, flow control is enabled and you cannot use C-s or
11361 C-q in key sequences.
11363 This setting only has an effect on tty terminals and only when
11364 Emacs reads input in CBREAK mode; see `set-input-interrupt-mode'.
11366 See also `current-input-mode'. */)
11367 (flow, terminal)
11368 Lisp_Object flow, terminal;
11370 struct terminal *t = get_terminal (terminal, 1);
11371 struct tty_display_info *tty;
11372 if (t == NULL || (t->type != output_termcap && t->type != output_msdos_raw))
11373 return Qnil;
11374 tty = t->display_info.tty;
11376 if (tty->flow_control != !NILP (flow))
11378 #ifndef DOS_NT
11379 /* this causes startup screen to be restored and messes with the mouse */
11380 reset_sys_modes (tty);
11381 #endif
11383 tty->flow_control = !NILP (flow);
11385 #ifndef DOS_NT
11386 init_sys_modes (tty);
11387 #endif
11389 return Qnil;
11392 DEFUN ("set-input-meta-mode", Fset_input_meta_mode, Sset_input_meta_mode, 1, 2, 0,
11393 doc: /* Enable or disable 8-bit input on TERMINAL.
11394 If META is t, Emacs will accept 8-bit input, and interpret the 8th
11395 bit as the Meta modifier.
11397 If META is nil, Emacs will ignore the top bit, on the assumption it is
11398 parity.
11400 Otherwise, Emacs will accept and pass through 8-bit input without
11401 specially interpreting the top bit.
11403 This setting only has an effect on tty terminal devices.
11405 Optional parameter TERMINAL specifies the tty terminal device to use.
11406 It may be a terminal object, a frame, or nil for the terminal used by
11407 the currently selected frame.
11409 See also `current-input-mode'. */)
11410 (meta, terminal)
11411 Lisp_Object meta, terminal;
11413 struct terminal *t = get_terminal (terminal, 1);
11414 struct tty_display_info *tty;
11415 int new_meta;
11417 if (t == NULL || (t->type != output_termcap && t->type != output_msdos_raw))
11418 return Qnil;
11419 tty = t->display_info.tty;
11421 if (NILP (meta))
11422 new_meta = 0;
11423 else if (EQ (meta, Qt))
11424 new_meta = 1;
11425 else
11426 new_meta = 2;
11428 if (tty->meta_key != new_meta)
11430 #ifndef DOS_NT
11431 /* this causes startup screen to be restored and messes with the mouse */
11432 reset_sys_modes (tty);
11433 #endif
11435 tty->meta_key = new_meta;
11437 #ifndef DOS_NT
11438 init_sys_modes (tty);
11439 #endif
11441 return Qnil;
11444 DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_char, 1, 1, 0,
11445 doc: /* Specify character used for quitting.
11446 QUIT must be an ASCII character.
11448 This function only has an effect on the controlling tty of the Emacs
11449 process.
11451 See also `current-input-mode'. */)
11452 (quit)
11453 Lisp_Object quit;
11455 struct terminal *t = get_named_tty ("/dev/tty");
11456 struct tty_display_info *tty;
11457 if (t == NULL || (t->type != output_termcap && t->type != output_msdos_raw))
11458 return Qnil;
11459 tty = t->display_info.tty;
11461 if (NILP (quit) || !INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400)
11462 error ("QUIT must be an ASCII character");
11464 #ifndef DOS_NT
11465 /* this causes startup screen to be restored and messes with the mouse */
11466 reset_sys_modes (tty);
11467 #endif
11469 /* Don't let this value be out of range. */
11470 quit_char = XINT (quit) & (tty->meta_key == 0 ? 0177 : 0377);
11472 #ifndef DOS_NT
11473 init_sys_modes (tty);
11474 #endif
11476 return Qnil;
11479 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
11480 doc: /* Set mode of reading keyboard input.
11481 First arg INTERRUPT non-nil means use input interrupts;
11482 nil means use CBREAK mode.
11483 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
11484 (no effect except in CBREAK mode).
11485 Third arg META t means accept 8-bit input (for a Meta key).
11486 META nil means ignore the top bit, on the assumption it is parity.
11487 Otherwise, accept 8-bit input and don't use the top bit for Meta.
11488 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
11489 See also `current-input-mode'. */)
11490 (interrupt, flow, meta, quit)
11491 Lisp_Object interrupt, flow, meta, quit;
11493 Fset_input_interrupt_mode (interrupt);
11494 Fset_output_flow_control (flow, Qnil);
11495 Fset_input_meta_mode (meta, Qnil);
11496 if (!NILP (quit))
11497 Fset_quit_char (quit);
11498 return Qnil;
11501 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
11502 doc: /* Return information about the way Emacs currently reads keyboard input.
11503 The value is a list of the form (INTERRUPT FLOW META QUIT), where
11504 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
11505 nil, Emacs is using CBREAK mode.
11506 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
11507 terminal; this does not apply if Emacs uses interrupt-driven input.
11508 META is t if accepting 8-bit input with 8th bit as Meta flag.
11509 META nil means ignoring the top bit, on the assumption it is parity.
11510 META is neither t nor nil if accepting 8-bit input and using
11511 all 8 bits as the character code.
11512 QUIT is the character Emacs currently uses to quit.
11513 The elements of this list correspond to the arguments of
11514 `set-input-mode'. */)
11517 Lisp_Object val[4];
11518 struct frame *sf = XFRAME (selected_frame);
11520 val[0] = interrupt_input ? Qt : Qnil;
11521 if (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
11523 val[1] = FRAME_TTY (sf)->flow_control ? Qt : Qnil;
11524 val[2] = (FRAME_TTY (sf)->meta_key == 2
11525 ? make_number (0)
11526 : (CURTTY ()->meta_key == 1 ? Qt : Qnil));
11528 else
11530 val[1] = Qnil;
11531 val[2] = Qt;
11533 XSETFASTINT (val[3], quit_char);
11535 return Flist (sizeof (val) / sizeof (val[0]), val);
11538 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
11539 doc: /* Return position information for pixel coordinates X and Y.
11540 By default, X and Y are relative to text area of the selected window.
11541 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
11542 If optional fourth arg WHOLE is non-nil, X is relative to the left
11543 edge of the window.
11545 The return value is similar to a mouse click position:
11546 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
11547 IMAGE (DX . DY) (WIDTH . HEIGHT))
11548 The `posn-' functions access elements of such lists. */)
11549 (x, y, frame_or_window, whole)
11550 Lisp_Object x, y, frame_or_window, whole;
11552 CHECK_NATNUM (x);
11553 CHECK_NATNUM (y);
11555 if (NILP (frame_or_window))
11556 frame_or_window = selected_window;
11558 if (WINDOWP (frame_or_window))
11560 struct window *w;
11562 CHECK_LIVE_WINDOW (frame_or_window);
11564 w = XWINDOW (frame_or_window);
11565 XSETINT (x, (XINT (x)
11566 + WINDOW_LEFT_EDGE_X (w)
11567 + (NILP (whole)
11568 ? window_box_left_offset (w, TEXT_AREA)
11569 : 0)));
11570 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
11571 frame_or_window = w->frame;
11574 CHECK_LIVE_FRAME (frame_or_window);
11576 return make_lispy_position (XFRAME (frame_or_window), &x, &y, 0);
11579 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
11580 doc: /* Return position information for buffer POS in WINDOW.
11581 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
11583 Return nil if position is not visible in window. Otherwise,
11584 the return value is similar to that returned by `event-start' for
11585 a mouse click at the upper left corner of the glyph corresponding
11586 to the given buffer position:
11587 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
11588 IMAGE (DX . DY) (WIDTH . HEIGHT))
11589 The `posn-' functions access elements of such lists. */)
11590 (pos, window)
11591 Lisp_Object pos, window;
11593 Lisp_Object tem;
11595 if (NILP (window))
11596 window = selected_window;
11598 tem = Fpos_visible_in_window_p (pos, window, Qt);
11599 if (!NILP (tem))
11601 Lisp_Object x = XCAR (tem);
11602 Lisp_Object y = XCAR (XCDR (tem));
11604 /* Point invisible due to hscrolling? */
11605 if (XINT (x) < 0)
11606 return Qnil;
11607 tem = Fposn_at_x_y (x, y, window, Qnil);
11610 return tem;
11615 * Set up a new kboard object with reasonable initial values.
11617 void
11618 init_kboard (kb)
11619 KBOARD *kb;
11621 kb->Voverriding_terminal_local_map = Qnil;
11622 kb->Vlast_command = Qnil;
11623 kb->Vreal_last_command = Qnil;
11624 kb->Vkeyboard_translate_table = Qnil;
11625 kb->Vlast_repeatable_command = Qnil;
11626 kb->Vprefix_arg = Qnil;
11627 kb->Vlast_prefix_arg = Qnil;
11628 kb->kbd_queue = Qnil;
11629 kb->kbd_queue_has_data = 0;
11630 kb->immediate_echo = 0;
11631 kb->echo_string = Qnil;
11632 kb->echo_after_prompt = -1;
11633 kb->kbd_macro_buffer = 0;
11634 kb->kbd_macro_bufsize = 0;
11635 kb->defining_kbd_macro = Qnil;
11636 kb->Vlast_kbd_macro = Qnil;
11637 kb->reference_count = 0;
11638 kb->Vsystem_key_alist = Qnil;
11639 kb->system_key_syms = Qnil;
11640 kb->Vwindow_system = Qt; /* Unset. */
11641 kb->Vinput_decode_map = Fmake_sparse_keymap (Qnil);
11642 kb->Vlocal_function_key_map = Fmake_sparse_keymap (Qnil);
11643 Fset_keymap_parent (kb->Vlocal_function_key_map, Vfunction_key_map);
11644 kb->Vdefault_minibuffer_frame = Qnil;
11648 * Destroy the contents of a kboard object, but not the object itself.
11649 * We use this just before deleting it, or if we're going to initialize
11650 * it a second time.
11652 static void
11653 wipe_kboard (kb)
11654 KBOARD *kb;
11656 xfree (kb->kbd_macro_buffer);
11659 /* Free KB and memory referenced from it. */
11661 void
11662 delete_kboard (kb)
11663 KBOARD *kb;
11665 KBOARD **kbp;
11667 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
11668 if (*kbp == NULL)
11669 abort ();
11670 *kbp = kb->next_kboard;
11672 /* Prevent a dangling reference to KB. */
11673 if (kb == current_kboard
11674 && FRAMEP (selected_frame)
11675 && FRAME_LIVE_P (XFRAME (selected_frame)))
11677 current_kboard = FRAME_KBOARD (XFRAME (selected_frame));
11678 single_kboard = 0;
11679 if (current_kboard == kb)
11680 abort ();
11683 wipe_kboard (kb);
11684 xfree (kb);
11687 void
11688 init_keyboard ()
11690 /* This is correct before outermost invocation of the editor loop */
11691 command_loop_level = -1;
11692 immediate_quit = 0;
11693 quit_char = Ctl ('g');
11694 Vunread_command_events = Qnil;
11695 unread_command_char = -1;
11696 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
11697 total_keys = 0;
11698 recent_keys_index = 0;
11699 kbd_fetch_ptr = kbd_buffer;
11700 kbd_store_ptr = kbd_buffer;
11701 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11702 do_mouse_tracking = Qnil;
11703 #endif
11704 input_pending = 0;
11705 interrupt_input_blocked = 0;
11706 interrupt_input_pending = 0;
11707 #ifdef SYNC_INPUT
11708 pending_signals = 0;
11709 #endif
11711 /* This means that command_loop_1 won't try to select anything the first
11712 time through. */
11713 internal_last_event_frame = Qnil;
11714 Vlast_event_frame = internal_last_event_frame;
11716 current_kboard = initial_kboard;
11717 /* Re-initialize the keyboard again. */
11718 wipe_kboard (current_kboard);
11719 init_kboard (current_kboard);
11720 /* A value of nil for Vwindow_system normally means a tty, but we also use
11721 it for the initial terminal since there is no window system there. */
11722 current_kboard->Vwindow_system = Qnil;
11724 if (!noninteractive)
11726 /* Before multi-tty support, these handlers used to be installed
11727 only if the current session was a tty session. Now an Emacs
11728 session may have multiple display types, so we always handle
11729 SIGINT. There is special code in interrupt_signal to exit
11730 Emacs on SIGINT when there are no termcap frames on the
11731 controlling terminal. */
11732 signal (SIGINT, interrupt_signal);
11733 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
11734 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
11735 SIGQUIT and we can't tell which one it will give us. */
11736 signal (SIGQUIT, interrupt_signal);
11737 #endif /* HAVE_TERMIO */
11739 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11740 #ifdef SIGIO
11741 if (!noninteractive)
11742 signal (SIGIO, input_available_signal);
11743 #endif /* SIGIO */
11745 /* Use interrupt input by default, if it works and noninterrupt input
11746 has deficiencies. */
11748 #ifdef INTERRUPT_INPUT
11749 interrupt_input = 1;
11750 #else
11751 interrupt_input = 0;
11752 #endif
11754 sigfree ();
11755 dribble = 0;
11757 if (keyboard_init_hook)
11758 (*keyboard_init_hook) ();
11760 #ifdef POLL_FOR_INPUT
11761 poll_timer = NULL;
11762 poll_suppress_count = 1;
11763 start_polling ();
11764 #endif
11767 /* This type's only use is in syms_of_keyboard, to initialize the
11768 event header symbols and put properties on them. */
11769 struct event_head {
11770 Lisp_Object *var;
11771 char *name;
11772 Lisp_Object *kind;
11775 struct event_head head_table[] = {
11776 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
11777 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
11778 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
11779 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
11780 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
11781 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
11782 /* `select-window' should be handled just like `switch-frame'
11783 in read_key_sequence. */
11784 {&Qselect_window, "select-window", &Qswitch_frame}
11787 void
11788 syms_of_keyboard ()
11790 pending_funcalls = Qnil;
11791 staticpro (&pending_funcalls);
11793 Vlispy_mouse_stem = build_string ("mouse");
11794 staticpro (&Vlispy_mouse_stem);
11796 /* Tool-bars. */
11797 QCimage = intern (":image");
11798 staticpro (&QCimage);
11800 staticpro (&Qhelp_echo);
11801 Qhelp_echo = intern ("help-echo");
11803 staticpro (&Qrtl);
11804 Qrtl = intern (":rtl");
11806 staticpro (&item_properties);
11807 item_properties = Qnil;
11809 staticpro (&tool_bar_item_properties);
11810 tool_bar_item_properties = Qnil;
11811 staticpro (&tool_bar_items_vector);
11812 tool_bar_items_vector = Qnil;
11814 staticpro (&real_this_command);
11815 real_this_command = Qnil;
11817 Qtimer_event_handler = intern ("timer-event-handler");
11818 staticpro (&Qtimer_event_handler);
11820 Qdisabled_command_function = intern ("disabled-command-function");
11821 staticpro (&Qdisabled_command_function);
11823 Qself_insert_command = intern ("self-insert-command");
11824 staticpro (&Qself_insert_command);
11826 Qforward_char = intern ("forward-char");
11827 staticpro (&Qforward_char);
11829 Qbackward_char = intern ("backward-char");
11830 staticpro (&Qbackward_char);
11832 Qdisabled = intern ("disabled");
11833 staticpro (&Qdisabled);
11835 Qundefined = intern ("undefined");
11836 staticpro (&Qundefined);
11838 Qpre_command_hook = intern ("pre-command-hook");
11839 staticpro (&Qpre_command_hook);
11841 Qpost_command_hook = intern ("post-command-hook");
11842 staticpro (&Qpost_command_hook);
11844 Qdeferred_action_function = intern ("deferred-action-function");
11845 staticpro (&Qdeferred_action_function);
11847 Qcommand_hook_internal = intern ("command-hook-internal");
11848 staticpro (&Qcommand_hook_internal);
11850 Qfunction_key = intern ("function-key");
11851 staticpro (&Qfunction_key);
11852 Qmouse_click = intern ("mouse-click");
11853 staticpro (&Qmouse_click);
11854 #if defined (WINDOWSNT)
11855 Qlanguage_change = intern ("language-change");
11856 staticpro (&Qlanguage_change);
11857 #endif
11858 Qdrag_n_drop = intern ("drag-n-drop");
11859 staticpro (&Qdrag_n_drop);
11861 Qsave_session = intern ("save-session");
11862 staticpro (&Qsave_session);
11864 #ifdef HAVE_DBUS
11865 Qdbus_event = intern ("dbus-event");
11866 staticpro (&Qdbus_event);
11867 #endif
11869 Qmenu_enable = intern ("menu-enable");
11870 staticpro (&Qmenu_enable);
11871 Qmenu_alias = intern ("menu-alias");
11872 staticpro (&Qmenu_alias);
11873 QCenable = intern (":enable");
11874 staticpro (&QCenable);
11875 QCvisible = intern (":visible");
11876 staticpro (&QCvisible);
11877 QChelp = intern (":help");
11878 staticpro (&QChelp);
11879 QCfilter = intern (":filter");
11880 staticpro (&QCfilter);
11881 QCbutton = intern (":button");
11882 staticpro (&QCbutton);
11883 QCkeys = intern (":keys");
11884 staticpro (&QCkeys);
11885 QCkey_sequence = intern (":key-sequence");
11886 staticpro (&QCkey_sequence);
11887 QCtoggle = intern (":toggle");
11888 staticpro (&QCtoggle);
11889 QCradio = intern (":radio");
11890 staticpro (&QCradio);
11892 Qmode_line = intern ("mode-line");
11893 staticpro (&Qmode_line);
11894 Qvertical_line = intern ("vertical-line");
11895 staticpro (&Qvertical_line);
11896 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
11897 staticpro (&Qvertical_scroll_bar);
11898 Qmenu_bar = intern ("menu-bar");
11899 staticpro (&Qmenu_bar);
11901 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11902 Qmouse_fixup_help_message = intern ("mouse-fixup-help-message");
11903 staticpro (&Qmouse_fixup_help_message);
11904 #endif
11906 Qabove_handle = intern ("above-handle");
11907 staticpro (&Qabove_handle);
11908 Qhandle = intern ("handle");
11909 staticpro (&Qhandle);
11910 Qbelow_handle = intern ("below-handle");
11911 staticpro (&Qbelow_handle);
11912 Qup = intern ("up");
11913 staticpro (&Qup);
11914 Qdown = intern ("down");
11915 staticpro (&Qdown);
11916 Qtop = intern ("top");
11917 staticpro (&Qtop);
11918 Qbottom = intern ("bottom");
11919 staticpro (&Qbottom);
11920 Qend_scroll = intern ("end-scroll");
11921 staticpro (&Qend_scroll);
11922 Qratio = intern ("ratio");
11923 staticpro (&Qratio);
11925 Qevent_kind = intern ("event-kind");
11926 staticpro (&Qevent_kind);
11927 Qevent_symbol_elements = intern ("event-symbol-elements");
11928 staticpro (&Qevent_symbol_elements);
11929 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
11930 staticpro (&Qevent_symbol_element_mask);
11931 Qmodifier_cache = intern ("modifier-cache");
11932 staticpro (&Qmodifier_cache);
11934 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
11935 staticpro (&Qrecompute_lucid_menubar);
11936 Qactivate_menubar_hook = intern ("activate-menubar-hook");
11937 staticpro (&Qactivate_menubar_hook);
11939 Qpolling_period = intern ("polling-period");
11940 staticpro (&Qpolling_period);
11942 Qinput_method_function = intern ("input-method-function");
11943 staticpro (&Qinput_method_function);
11945 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
11946 staticpro (&Qinput_method_exit_on_first_char);
11947 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
11948 staticpro (&Qinput_method_use_echo_area);
11950 Fset (Qinput_method_exit_on_first_char, Qnil);
11951 Fset (Qinput_method_use_echo_area, Qnil);
11953 last_point_position_buffer = Qnil;
11954 last_point_position_window = Qnil;
11957 struct event_head *p;
11959 for (p = head_table;
11960 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
11961 p++)
11963 *p->var = intern (p->name);
11964 staticpro (p->var);
11965 Fput (*p->var, Qevent_kind, *p->kind);
11966 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
11970 button_down_location = Fmake_vector (make_number (1), Qnil);
11971 staticpro (&button_down_location);
11972 mouse_syms = Fmake_vector (make_number (1), Qnil);
11973 staticpro (&mouse_syms);
11974 wheel_syms = Fmake_vector (make_number (4), Qnil);
11975 staticpro (&wheel_syms);
11978 int i;
11979 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
11981 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11982 for (i = 0; i < len; i++)
11983 if (modifier_names[i])
11984 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
11985 staticpro (&modifier_symbols);
11988 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11989 staticpro (&recent_keys);
11991 this_command_keys = Fmake_vector (make_number (40), Qnil);
11992 staticpro (&this_command_keys);
11994 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11995 staticpro (&raw_keybuf);
11997 Qextended_command_history = intern ("extended-command-history");
11998 Fset (Qextended_command_history, Qnil);
11999 staticpro (&Qextended_command_history);
12001 accent_key_syms = Qnil;
12002 staticpro (&accent_key_syms);
12004 func_key_syms = Qnil;
12005 staticpro (&func_key_syms);
12007 drag_n_drop_syms = Qnil;
12008 staticpro (&drag_n_drop_syms);
12010 unread_switch_frame = Qnil;
12011 staticpro (&unread_switch_frame);
12013 internal_last_event_frame = Qnil;
12014 staticpro (&internal_last_event_frame);
12016 read_key_sequence_cmd = Qnil;
12017 staticpro (&read_key_sequence_cmd);
12019 menu_bar_one_keymap_changed_items = Qnil;
12020 staticpro (&menu_bar_one_keymap_changed_items);
12022 menu_bar_items_vector = Qnil;
12023 staticpro (&menu_bar_items_vector);
12025 help_form_saved_window_configs = Qnil;
12026 staticpro (&help_form_saved_window_configs);
12028 defsubr (&Scurrent_idle_time);
12029 defsubr (&Sevent_symbol_parse_modifiers);
12030 defsubr (&Sevent_convert_list);
12031 defsubr (&Sread_key_sequence);
12032 defsubr (&Sread_key_sequence_vector);
12033 defsubr (&Srecursive_edit);
12034 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
12035 defsubr (&Strack_mouse);
12036 #endif
12037 defsubr (&Sinput_pending_p);
12038 defsubr (&Scommand_execute);
12039 defsubr (&Srecent_keys);
12040 defsubr (&Sthis_command_keys);
12041 defsubr (&Sthis_command_keys_vector);
12042 defsubr (&Sthis_single_command_keys);
12043 defsubr (&Sthis_single_command_raw_keys);
12044 defsubr (&Sreset_this_command_lengths);
12045 defsubr (&Sclear_this_command_keys);
12046 defsubr (&Ssuspend_emacs);
12047 defsubr (&Sabort_recursive_edit);
12048 defsubr (&Sexit_recursive_edit);
12049 defsubr (&Srecursion_depth);
12050 defsubr (&Stop_level);
12051 defsubr (&Sdiscard_input);
12052 defsubr (&Sopen_dribble_file);
12053 defsubr (&Sset_input_interrupt_mode);
12054 defsubr (&Sset_output_flow_control);
12055 defsubr (&Sset_input_meta_mode);
12056 defsubr (&Sset_quit_char);
12057 defsubr (&Sset_input_mode);
12058 defsubr (&Scurrent_input_mode);
12059 defsubr (&Sexecute_extended_command);
12060 defsubr (&Sposn_at_point);
12061 defsubr (&Sposn_at_x_y);
12063 DEFVAR_LISP ("last-command-event", &last_command_event,
12064 doc: /* Last input event that was part of a command. */);
12066 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
12067 doc: /* Last input event in a command, except for mouse menu events.
12068 Mouse menus give back keys that don't look like mouse events;
12069 this variable holds the actual mouse event that led to the menu,
12070 so that you can determine whether the command was run by mouse or not. */);
12072 DEFVAR_LISP ("last-input-event", &last_input_event,
12073 doc: /* Last input event. */);
12075 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
12076 doc: /* List of events to be read as the command input.
12077 These events are processed first, before actual keyboard input.
12078 Events read from this list are not normally added to `this-command-keys',
12079 as they will already have been added once as they were read for the first time.
12080 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
12081 Vunread_command_events = Qnil;
12083 DEFVAR_INT ("unread-command-char", &unread_command_char,
12084 doc: /* If not -1, an object to be read as next command input event. */);
12086 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
12087 doc: /* List of events to be processed as input by input methods.
12088 These events are processed before `unread-command-events'
12089 and actual keyboard input, but are not given to `input-method-function'. */);
12090 Vunread_post_input_method_events = Qnil;
12092 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
12093 doc: /* List of events to be processed as input by input methods.
12094 These events are processed after `unread-command-events', but
12095 before actual keyboard input.
12096 If there's an active input method, the events are given to
12097 `input-method-function'. */);
12098 Vunread_input_method_events = Qnil;
12100 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
12101 doc: /* Meta-prefix character code.
12102 Meta-foo as command input turns into this character followed by foo. */);
12103 XSETINT (meta_prefix_char, 033);
12105 DEFVAR_KBOARD ("last-command", Vlast_command,
12106 doc: /* The last command executed.
12107 Normally a symbol with a function definition, but can be whatever was found
12108 in the keymap, or whatever the variable `this-command' was set to by that
12109 command.
12111 The value `mode-exit' is special; it means that the previous command
12112 read an event that told it to exit, and it did so and unread that event.
12113 In other words, the present command is the event that made the previous
12114 command exit.
12116 The value `kill-region' is special; it means that the previous command
12117 was a kill command.
12119 `last-command' has a separate binding for each terminal device.
12120 See Info node `(elisp)Multiple displays'. */);
12122 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
12123 doc: /* Same as `last-command', but never altered by Lisp code. */);
12125 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command,
12126 doc: /* Last command that may be repeated.
12127 The last command executed that was not bound to an input event.
12128 This is the command `repeat' will try to repeat. */);
12130 DEFVAR_LISP ("this-command", &Vthis_command,
12131 doc: /* The command now being executed.
12132 The command can set this variable; whatever is put here
12133 will be in `last-command' during the following command. */);
12134 Vthis_command = Qnil;
12136 DEFVAR_LISP ("this-command-keys-shift-translated",
12137 &Vthis_command_keys_shift_translated,
12138 doc: /* Non-nil if the key sequence activating this command was shift-translated.
12139 Shift-translation occurs when there is no binding for the key sequence
12140 as entered, but a binding was found by changing an upper-case letter
12141 to lower-case, or a shifted function key to an unshifted one. */);
12142 Vthis_command_keys_shift_translated = Qnil;
12144 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
12145 doc: /* The command bound to the current key sequence before remapping.
12146 It equals `this-command' if the original command was not remapped through
12147 any of the active keymaps. Otherwise, the value of `this-command' is the
12148 result of looking up the original command in the active keymaps. */);
12149 Vthis_original_command = Qnil;
12151 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
12152 doc: /* *Number of input events between auto-saves.
12153 Zero means disable autosaving due to number of characters typed. */);
12154 auto_save_interval = 300;
12156 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
12157 doc: /* *Number of seconds idle time before auto-save.
12158 Zero or nil means disable auto-saving due to idleness.
12159 After auto-saving due to this many seconds of idle time,
12160 Emacs also does a garbage collection if that seems to be warranted. */);
12161 XSETFASTINT (Vauto_save_timeout, 30);
12163 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
12164 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
12165 The value may be integer or floating point. */);
12166 Vecho_keystrokes = make_number (1);
12168 DEFVAR_INT ("polling-period", &polling_period,
12169 doc: /* *Interval between polling for input during Lisp execution.
12170 The reason for polling is to make C-g work to stop a running program.
12171 Polling is needed only when using X windows and SIGIO does not work.
12172 Polling is automatically disabled in all other cases. */);
12173 polling_period = 2;
12175 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
12176 doc: /* *Maximum time between mouse clicks to make a double-click.
12177 Measured in milliseconds. The value nil means disable double-click
12178 recognition; t means double-clicks have no time limit and are detected
12179 by position only. */);
12180 Vdouble_click_time = make_number (500);
12182 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
12183 doc: /* *Maximum mouse movement between clicks to make a double-click.
12184 On window-system frames, value is the number of pixels the mouse may have
12185 moved horizontally or vertically between two clicks to make a double-click.
12186 On non window-system frames, value is interpreted in units of 1/8 characters
12187 instead of pixels.
12189 This variable is also the threshold for motion of the mouse
12190 to count as a drag. */);
12191 double_click_fuzz = 3;
12193 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
12194 doc: /* *Non-nil means inhibit local map menu bar menus. */);
12195 inhibit_local_menu_bar_menus = 0;
12197 DEFVAR_INT ("num-input-keys", &num_input_keys,
12198 doc: /* Number of complete key sequences read as input so far.
12199 This includes key sequences read from keyboard macros.
12200 The number is effectively the number of interactive command invocations. */);
12201 num_input_keys = 0;
12203 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
12204 doc: /* Number of input events read from the keyboard so far.
12205 This does not include events generated by keyboard macros. */);
12206 num_nonmacro_input_events = 0;
12208 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
12209 doc: /* The frame in which the most recently read event occurred.
12210 If the last event came from a keyboard macro, this is set to `macro'. */);
12211 Vlast_event_frame = Qnil;
12213 /* This variable is set up in sysdep.c. */
12214 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
12215 doc: /* The ERASE character as set by the user with stty. */);
12217 DEFVAR_LISP ("help-char", &Vhelp_char,
12218 doc: /* Character to recognize as meaning Help.
12219 When it is read, do `(eval help-form)', and display result if it's a string.
12220 If the value of `help-form' is nil, this char can be read normally. */);
12221 XSETINT (Vhelp_char, Ctl ('H'));
12223 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
12224 doc: /* List of input events to recognize as meaning Help.
12225 These work just like the value of `help-char' (see that). */);
12226 Vhelp_event_list = Qnil;
12228 DEFVAR_LISP ("help-form", &Vhelp_form,
12229 doc: /* Form to execute when character `help-char' is read.
12230 If the form returns a string, that string is displayed.
12231 If `help-form' is nil, the help char is not recognized. */);
12232 Vhelp_form = Qnil;
12234 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
12235 doc: /* Command to run when `help-char' character follows a prefix key.
12236 This command is used only when there is no actual binding
12237 for that character after that prefix key. */);
12238 Vprefix_help_command = Qnil;
12240 DEFVAR_LISP ("top-level", &Vtop_level,
12241 doc: /* Form to evaluate when Emacs starts up.
12242 Useful to set before you dump a modified Emacs. */);
12243 Vtop_level = Qnil;
12245 DEFVAR_KBOARD ("keyboard-translate-table", Vkeyboard_translate_table,
12246 doc: /* Translate table for local keyboard input, or nil.
12247 If non-nil, the value should be a char-table. Each character read
12248 from the keyboard is looked up in this char-table. If the value found
12249 there is non-nil, then it is used instead of the actual input character.
12251 The value can also be a string or vector, but this is considered obsolete.
12252 If it is a string or vector of length N, character codes N and up are left
12253 untranslated. In a vector, an element which is nil means "no translation".
12255 This is applied to the characters supplied to input methods, not their
12256 output. See also `translation-table-for-input'.
12258 This variable has a separate binding for each terminal. See Info node
12259 `(elisp)Multiple displays'. */);
12261 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
12262 doc: /* Non-nil means to always spawn a subshell instead of suspending.
12263 \(Even if the operating system has support for stopping a process.\) */);
12264 cannot_suspend = 0;
12266 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
12267 doc: /* Non-nil means prompt with menus when appropriate.
12268 This is done when reading from a keymap that has a prompt string,
12269 for elements that have prompt strings.
12270 The menu is displayed on the screen
12271 if X menus were enabled at configuration
12272 time and the previous event was a mouse click prefix key.
12273 Otherwise, menu prompting uses the echo area. */);
12274 menu_prompting = 1;
12276 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
12277 doc: /* Character to see next line of menu prompt.
12278 Type this character while in a menu prompt to rotate around the lines of it. */);
12279 XSETINT (menu_prompt_more_char, ' ');
12281 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
12282 doc: /* A mask of additional modifier keys to use with every keyboard character.
12283 Emacs applies the modifiers of the character stored here to each keyboard
12284 character it reads. For example, after evaluating the expression
12285 (setq extra-keyboard-modifiers ?\\C-x)
12286 all input characters will have the control modifier applied to them.
12288 Note that the character ?\\C-@, equivalent to the integer zero, does
12289 not count as a control character; rather, it counts as a character
12290 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
12291 cancels any modification. */);
12292 extra_keyboard_modifiers = 0;
12294 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
12295 doc: /* If an editing command sets this to t, deactivate the mark afterward.
12296 The command loop sets this to nil before each command,
12297 and tests the value when the command returns.
12298 Buffer modification stores t in this variable. */);
12299 Vdeactivate_mark = Qnil;
12300 Qdeactivate_mark = intern ("deactivate-mark");
12301 staticpro (&Qdeactivate_mark);
12303 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
12304 doc: /* Temporary storage of `pre-command-hook' or `post-command-hook'. */);
12305 Vcommand_hook_internal = Qnil;
12307 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
12308 doc: /* Normal hook run before each command is executed.
12309 If an unhandled error happens in running this hook,
12310 the hook value is set to nil, since otherwise the error
12311 might happen repeatedly and make Emacs nonfunctional. */);
12312 Vpre_command_hook = Qnil;
12314 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
12315 doc: /* Normal hook run after each command is executed.
12316 If an unhandled error happens in running this hook,
12317 the hook value is set to nil, since otherwise the error
12318 might happen repeatedly and make Emacs nonfunctional. */);
12319 Vpost_command_hook = Qnil;
12321 #if 0
12322 DEFVAR_LISP ("echo-area-clear-hook", ...,
12323 doc: /* Normal hook run when clearing the echo area. */);
12324 #endif
12325 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
12326 staticpro (&Qecho_area_clear_hook);
12327 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
12329 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
12330 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
12331 Vlucid_menu_bar_dirty_flag = Qnil;
12333 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
12334 doc: /* List of menu bar items to move to the end of the menu bar.
12335 The elements of the list are event types that may have menu bar bindings. */);
12336 Vmenu_bar_final_items = Qnil;
12338 DEFVAR_KBOARD ("overriding-terminal-local-map",
12339 Voverriding_terminal_local_map,
12340 doc: /* Per-terminal keymap that overrides all other local keymaps.
12341 If this variable is non-nil, it is used as a keymap instead of the
12342 buffer's local map, and the minor mode keymaps and text property keymaps.
12343 It also replaces `overriding-local-map'.
12345 This variable is intended to let commands such as `universal-argument'
12346 set up a different keymap for reading the next command.
12348 `overriding-terminal-local-map' has a separate binding for each
12349 terminal device.
12350 See Info node `(elisp)Multiple displays'. */);
12352 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
12353 doc: /* Keymap that overrides all other local keymaps.
12354 If this variable is non-nil, it is used as a keymap--replacing the
12355 buffer's local map, the minor mode keymaps, and char property keymaps. */);
12356 Voverriding_local_map = Qnil;
12358 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
12359 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
12360 Otherwise, the menu bar continues to reflect the buffer's local map
12361 and the minor mode maps regardless of `overriding-local-map'. */);
12362 Voverriding_local_map_menu_flag = Qnil;
12364 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
12365 doc: /* Keymap defining bindings for special events to execute at low level. */);
12366 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
12368 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
12369 doc: /* *Non-nil means generate motion events for mouse motion. */);
12371 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
12372 doc: /* Alist of system-specific X windows key symbols.
12373 Each element should have the form (N . SYMBOL) where N is the
12374 numeric keysym code (sans the \"system-specific\" bit 1<<28)
12375 and SYMBOL is its name.
12377 `system-key-alist' has a separate binding for each terminal device.
12378 See Info node `(elisp)Multiple displays'. */);
12380 DEFVAR_KBOARD ("local-function-key-map", Vlocal_function_key_map,
12381 doc: /* Keymap that translates key sequences to key sequences during input.
12382 This is used mainly for mapping key sequences into some preferred
12383 key events (symbols).
12385 The `read-key-sequence' function replaces any subsequence bound by
12386 `local-function-key-map' with its binding. More precisely, when the
12387 active keymaps have no binding for the current key sequence but
12388 `local-function-key-map' binds a suffix of the sequence to a vector or
12389 string, `read-key-sequence' replaces the matching suffix with its
12390 binding, and continues with the new sequence.
12392 If the binding is a function, it is called with one argument (the prompt)
12393 and its return value (a key sequence) is used.
12395 The events that come from bindings in `local-function-key-map' are not
12396 themselves looked up in `local-function-key-map'.
12398 For example, suppose `local-function-key-map' binds `ESC O P' to [f1].
12399 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing
12400 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix key,
12401 typing `ESC O P x' would return [f1 x].
12403 `local-function-key-map' has a separate binding for each terminal
12404 device. See Info node `(elisp)Multiple displays'. If you need to
12405 define a binding on all terminals, change `function-key-map'
12406 instead. Initially, `local-function-key-map' is an empty keymap that
12407 has `function-key-map' as its parent on all terminal devices. */);
12409 DEFVAR_KBOARD ("input-decode-map", Vinput_decode_map,
12410 doc: /* Keymap that decodes input escape sequences.
12411 This is used mainly for mapping ASCII function key sequences into
12412 real Emacs function key events (symbols).
12414 The `read-key-sequence' function replaces any subsequence bound by
12415 `input-decode-map' with its binding. Contrary to `function-key-map',
12416 this map applies its rebinding regardless of the presence of an ordinary
12417 binding. So it is more like `key-translation-map' except that it applies
12418 before `function-key-map' rather than after.
12420 If the binding is a function, it is called with one argument (the prompt)
12421 and its return value (a key sequence) is used.
12423 The events that come from bindings in `input-decode-map' are not
12424 themselves looked up in `input-decode-map'.
12426 This variable is keyboard-local. */);
12428 DEFVAR_LISP ("function-key-map", &Vfunction_key_map,
12429 doc: /* The parent keymap of all `local-function-key-map' instances.
12430 Function key definitions that apply to all terminal devices should go
12431 here. If a mapping is defined in both the current
12432 `local-function-key-map' binding and this variable, then the local
12433 definition will take precendence. */);
12434 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
12436 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
12437 doc: /* Keymap of key translations that can override keymaps.
12438 This keymap works like `function-key-map', but comes after that,
12439 and its non-prefix bindings override ordinary bindings.
12440 Another difference is that it is global rather than keyboard-local. */);
12441 Vkey_translation_map = Fmake_sparse_keymap (Qnil);
12443 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
12444 doc: /* List of deferred actions to be performed at a later time.
12445 The precise format isn't relevant here; we just check whether it is nil. */);
12446 Vdeferred_action_list = Qnil;
12448 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
12449 doc: /* Function to call to handle deferred actions, after each command.
12450 This function is called with no arguments after each command
12451 whenever `deferred-action-list' is non-nil. */);
12452 Vdeferred_action_function = Qnil;
12454 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
12455 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
12456 The value can be a length of time to show the message for.
12457 If the value is non-nil and not a number, we wait 2 seconds. */);
12458 Vsuggest_key_bindings = Qt;
12460 DEFVAR_LISP ("timer-list", &Vtimer_list,
12461 doc: /* List of active absolute time timers in order of increasing time. */);
12462 Vtimer_list = Qnil;
12464 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
12465 doc: /* List of active idle-time timers in order of increasing time. */);
12466 Vtimer_idle_list = Qnil;
12468 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
12469 doc: /* If non-nil, the function that implements the current input method.
12470 It's called with one argument, a printing character that was just read.
12471 \(That means a character with code 040...0176.)
12472 Typically this function uses `read-event' to read additional events.
12473 When it does so, it should first bind `input-method-function' to nil
12474 so it will not be called recursively.
12476 The function should return a list of zero or more events
12477 to be used as input. If it wants to put back some events
12478 to be reconsidered, separately, by the input method,
12479 it can add them to the beginning of `unread-command-events'.
12481 The input method function can find in `input-method-previous-message'
12482 the previous echo area message.
12484 The input method function should refer to the variables
12485 `input-method-use-echo-area' and `input-method-exit-on-first-char'
12486 for guidance on what to do. */);
12487 Vinput_method_function = Qnil;
12489 DEFVAR_LISP ("input-method-previous-message",
12490 &Vinput_method_previous_message,
12491 doc: /* When `input-method-function' is called, hold the previous echo area message.
12492 This variable exists because `read-event' clears the echo area
12493 before running the input method. It is nil if there was no message. */);
12494 Vinput_method_previous_message = Qnil;
12496 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
12497 doc: /* If non-nil, the function that implements the display of help.
12498 It's called with one argument, the help string to display. */);
12499 Vshow_help_function = Qnil;
12501 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
12502 doc: /* If non-nil, suppress point adjustment after executing a command.
12504 After a command is executed, if point is moved into a region that has
12505 special properties (e.g. composition, display), we adjust point to
12506 the boundary of the region. But, when a command sets this variable to
12507 non-nil, we suppress the point adjustment.
12509 This variable is set to nil before reading a command, and is checked
12510 just after executing the command. */);
12511 Vdisable_point_adjustment = Qnil;
12513 DEFVAR_LISP ("global-disable-point-adjustment",
12514 &Vglobal_disable_point_adjustment,
12515 doc: /* *If non-nil, always suppress point adjustment.
12517 The default value is nil, in which case, point adjustment are
12518 suppressed only after special commands that set
12519 `disable-point-adjustment' (which see) to non-nil. */);
12520 Vglobal_disable_point_adjustment = Qnil;
12522 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
12523 doc: /* *How long to display an echo-area message when the minibuffer is active.
12524 If the value is not a number, such messages don't time out. */);
12525 Vminibuffer_message_timeout = make_number (2);
12527 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input,
12528 doc: /* If non-nil, any keyboard input throws to this symbol.
12529 The value of that variable is passed to `quit-flag' and later causes a
12530 peculiar kind of quitting. */);
12531 Vthrow_on_input = Qnil;
12533 DEFVAR_LISP ("command-error-function", &Vcommand_error_function,
12534 doc: /* If non-nil, function to output error messages.
12535 The arguments are the error data, a list of the form
12536 (SIGNALED-CONDITIONS . SIGNAL-DATA)
12537 such as just as `condition-case' would bind its variable to,
12538 the context (a string which normally goes at the start of the message),
12539 and the Lisp function within which the error was signaled. */);
12540 Vcommand_error_function = Qnil;
12542 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
12543 &Venable_disabled_menus_and_buttons,
12544 doc: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
12546 Help functions bind this to allow help on disabled menu items
12547 and tool-bar buttons. */);
12548 Venable_disabled_menus_and_buttons = Qnil;
12550 /* Create the initial keyboard. */
12551 initial_kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
12552 init_kboard (initial_kboard);
12553 /* Vwindow_system is left at t for now. */
12554 initial_kboard->next_kboard = all_kboards;
12555 all_kboards = initial_kboard;
12558 void
12559 keys_of_keyboard ()
12561 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
12562 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
12563 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
12564 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
12565 initial_define_key (meta_map, 'x', "execute-extended-command");
12567 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
12568 "handle-delete-frame");
12569 initial_define_lispy_key (Vspecial_event_map, "ns-put-working-text",
12570 "ns-put-working-text");
12571 initial_define_lispy_key (Vspecial_event_map, "ns-unput-working-text",
12572 "ns-unput-working-text");
12573 /* Here we used to use `ignore-event' which would simple set prefix-arg to
12574 current-prefix-arg, as is done in `handle-switch-frame'.
12575 But `handle-switch-frame is not run from the special-map.
12576 Commands from that map are run in a special way that automatically
12577 preserves the prefix-arg. Restoring the prefix arg here is not just
12578 redundant but harmful:
12579 - C-u C-x v =
12580 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
12581 - after the first prompt, the exit-minibuffer-hook is run which may
12582 iconify a frame and thus push a `iconify-frame' event.
12583 - after running exit-minibuffer-hook, current-prefix-arg is
12584 restored to the non-nil value it had before the prompt.
12585 - we enter the second prompt.
12586 current-prefix-arg is non-nil, prefix-arg is nil.
12587 - before running the first real event, we run the special iconify-frame
12588 event, but we pass the `special' arg to execute-command so
12589 current-prefix-arg and prefix-arg are left untouched.
12590 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
12591 - the next key event will have a spuriously non-nil current-prefix-arg. */
12592 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
12593 "ignore");
12594 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
12595 "ignore");
12596 /* Handling it at such a low-level causes read_key_sequence to get
12597 * confused because it doesn't realize that the current_buffer was
12598 * changed by read_char.
12600 * initial_define_lispy_key (Vspecial_event_map, "select-window",
12601 * "handle-select-window"); */
12602 initial_define_lispy_key (Vspecial_event_map, "save-session",
12603 "handle-save-session");
12605 #ifdef HAVE_DBUS
12606 /* Define a special event which is raised for dbus callback
12607 functions. */
12608 initial_define_lispy_key (Vspecial_event_map, "dbus-event",
12609 "dbus-handle-event");
12610 #endif
12613 /* Mark the pointers in the kboard objects.
12614 Called by the Fgarbage_collector. */
12615 void
12616 mark_kboards ()
12618 KBOARD *kb;
12619 Lisp_Object *p;
12620 for (kb = all_kboards; kb; kb = kb->next_kboard)
12622 if (kb->kbd_macro_buffer)
12623 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
12624 mark_object (*p);
12625 mark_object (kb->Voverriding_terminal_local_map);
12626 mark_object (kb->Vlast_command);
12627 mark_object (kb->Vreal_last_command);
12628 mark_object (kb->Vkeyboard_translate_table);
12629 mark_object (kb->Vlast_repeatable_command);
12630 mark_object (kb->Vprefix_arg);
12631 mark_object (kb->Vlast_prefix_arg);
12632 mark_object (kb->kbd_queue);
12633 mark_object (kb->defining_kbd_macro);
12634 mark_object (kb->Vlast_kbd_macro);
12635 mark_object (kb->Vsystem_key_alist);
12636 mark_object (kb->system_key_syms);
12637 mark_object (kb->Vwindow_system);
12638 mark_object (kb->Vinput_decode_map);
12639 mark_object (kb->Vlocal_function_key_map);
12640 mark_object (kb->Vdefault_minibuffer_frame);
12641 mark_object (kb->echo_string);
12644 struct input_event *event;
12645 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
12647 if (event == kbd_buffer + KBD_BUFFER_SIZE)
12648 event = kbd_buffer;
12649 if (event->kind != SELECTION_REQUEST_EVENT
12650 && event->kind != SELECTION_CLEAR_EVENT)
12652 mark_object (event->x);
12653 mark_object (event->y);
12655 mark_object (event->frame_or_window);
12656 mark_object (event->arg);
12661 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
12662 (do not change this comment) */