Address of Pieter Schoenmakers updated.
[emacs.git] / src / keyboard.c
blob780d76dbb5c2b94ae4e19d324303314f282fba98
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96,97,99, 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include <config.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include "termchar.h"
26 #include "termopts.h"
27 #include "lisp.h"
28 #include "termhooks.h"
29 #include "macros.h"
30 #include "keyboard.h"
31 #include "frame.h"
32 #include "window.h"
33 #include "commands.h"
34 #include "buffer.h"
35 #include "charset.h"
36 #include "disptab.h"
37 #include "dispextern.h"
38 #include "syntax.h"
39 #include "intervals.h"
40 #include "keymap.h"
41 #include "blockinput.h"
42 #include "puresize.h"
43 #include "systime.h"
44 #include "atimer.h"
45 #include <setjmp.h>
46 #include <errno.h>
48 #ifdef MSDOS
49 #include "msdos.h"
50 #include <time.h>
51 #else /* not MSDOS */
52 #ifndef VMS
53 #include <sys/ioctl.h>
54 #endif
55 #endif /* not MSDOS */
57 #include "syssignal.h"
58 #include "systty.h"
60 #include <sys/types.h>
61 #ifdef HAVE_UNISTD_H
62 #include <unistd.h>
63 #endif
65 /* This is to get the definitions of the XK_ symbols. */
66 #ifdef HAVE_X_WINDOWS
67 #include "xterm.h"
68 #endif
70 #ifdef HAVE_NTGUI
71 #include "w32term.h"
72 #endif /* HAVE_NTGUI */
74 #ifdef macintosh
75 #include "macterm.h"
76 #endif
78 #ifndef USE_CRT_DLL
79 extern int errno;
80 #endif
82 /* Variables for blockinput.h: */
84 /* Non-zero if interrupt input is blocked right now. */
85 int interrupt_input_blocked;
87 /* Nonzero means an input interrupt has arrived
88 during the current critical section. */
89 int interrupt_input_pending;
92 /* File descriptor to use for input. */
93 extern int input_fd;
95 #ifdef HAVE_WINDOW_SYSTEM
96 /* Make all keyboard buffers much bigger when using X windows. */
97 #ifdef macintosh
98 /* But not too big (local data > 32K error) if on macintosh. */
99 #define KBD_BUFFER_SIZE 512
100 #else
101 #define KBD_BUFFER_SIZE 4096
102 #endif
103 #else /* No X-windows, character input */
104 #define KBD_BUFFER_SIZE 4096
105 #endif /* No X-windows */
107 #define abs(x) ((x) >= 0 ? (x) : -(x))
109 /* Following definition copied from eval.c */
111 struct backtrace
113 struct backtrace *next;
114 Lisp_Object *function;
115 Lisp_Object *args; /* Points to vector of args. */
116 int nargs; /* length of vector. If nargs is UNEVALLED,
117 args points to slot holding list of
118 unevalled args */
119 char evalargs;
122 #ifdef MULTI_KBOARD
123 KBOARD *initial_kboard;
124 KBOARD *current_kboard;
125 KBOARD *all_kboards;
126 int single_kboard;
127 #else
128 KBOARD the_only_kboard;
129 #endif
131 /* Non-nil disable property on a command means
132 do not execute it; call disabled-command-hook's value instead. */
133 Lisp_Object Qdisabled, Qdisabled_command_hook;
135 #define NUM_RECENT_KEYS (100)
136 int recent_keys_index; /* Index for storing next element into recent_keys */
137 int total_keys; /* Total number of elements stored into recent_keys */
138 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
140 /* Vector holding the key sequence that invoked the current command.
141 It is reused for each command, and it may be longer than the current
142 sequence; this_command_key_count indicates how many elements
143 actually mean something.
144 It's easier to staticpro a single Lisp_Object than an array. */
145 Lisp_Object this_command_keys;
146 int this_command_key_count;
148 /* This vector is used as a buffer to record the events that were actually read
149 by read_key_sequence. */
150 Lisp_Object raw_keybuf;
151 int raw_keybuf_count;
153 #define GROW_RAW_KEYBUF \
154 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
156 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
157 Lisp_Object new; \
158 new = Fmake_vector (make_number (newsize), Qnil); \
159 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
160 raw_keybuf_count * sizeof (Lisp_Object)); \
161 raw_keybuf = new; \
164 /* Number of elements of this_command_keys
165 that precede this key sequence. */
166 int this_single_command_key_start;
168 /* Record values of this_command_key_count and echo_length ()
169 before this command was read. */
170 static int before_command_key_count;
171 static int before_command_echo_length;
172 /* Values of before_command_key_count and before_command_echo_length
173 saved by reset-this-command-lengths. */
174 static int before_command_key_count_1;
175 static int before_command_echo_length_1;
176 /* Flag set by reset-this-command-lengths,
177 saying to reset the lengths when add_command_key is called. */
178 static int before_command_restore_flag;
180 extern int minbuf_level;
182 extern int message_enable_multibyte;
184 extern struct backtrace *backtrace_list;
186 /* If non-nil, the function that implements the display of help.
187 It's called with one argument, the help string to display. */
189 Lisp_Object Vshow_help_function;
191 /* If a string, the message displayed before displaying a help-echo
192 in the echo area. */
194 Lisp_Object Vpre_help_message;
196 /* Nonzero means do menu prompting. */
198 static int menu_prompting;
200 /* Character to see next line of menu prompt. */
202 static Lisp_Object menu_prompt_more_char;
204 /* For longjmp to where kbd input is being done. */
206 static jmp_buf getcjmp;
208 /* True while doing kbd input. */
209 int waiting_for_input;
211 /* True while displaying for echoing. Delays C-g throwing. */
213 int echoing;
215 /* Non-null means we can start echoing at the next input pause even
216 though there is something in the echo area. */
218 static struct kboard *ok_to_echo_at_next_pause;
220 /* The kboard last echoing, or null for none. Reset to 0 in
221 cancel_echoing. If non-null, and a current echo area message
222 exists, and echo_message_buffer is eq to the current message
223 buffer, we know that the message comes from echo_kboard. */
225 struct kboard *echo_kboard;
227 /* The buffer used for echoing. Set in echo_now, reset in
228 cancel_echoing. */
230 Lisp_Object echo_message_buffer;
232 /* Nonzero means disregard local maps for the menu bar. */
233 static int inhibit_local_menu_bar_menus;
235 /* Nonzero means C-g should cause immediate error-signal. */
236 int immediate_quit;
238 /* The user's ERASE setting. */
239 Lisp_Object Vtty_erase_char;
241 /* Character to recognize as the help char. */
242 Lisp_Object Vhelp_char;
244 /* List of other event types to recognize as meaning "help". */
245 Lisp_Object Vhelp_event_list;
247 /* Form to execute when help char is typed. */
248 Lisp_Object Vhelp_form;
250 /* Command to run when the help character follows a prefix key. */
251 Lisp_Object Vprefix_help_command;
253 /* List of items that should move to the end of the menu bar. */
254 Lisp_Object Vmenu_bar_final_items;
256 /* Non-nil means show the equivalent key-binding for
257 any M-x command that has one.
258 The value can be a length of time to show the message for.
259 If the value is non-nil and not a number, we wait 2 seconds. */
260 Lisp_Object Vsuggest_key_bindings;
262 /* How long to display an echo-area message when the minibuffer is active.
263 If the value is not a number, such messages don't time out. */
264 Lisp_Object Vminibuffer_message_timeout;
266 /* Character that causes a quit. Normally C-g.
268 If we are running on an ordinary terminal, this must be an ordinary
269 ASCII char, since we want to make it our interrupt character.
271 If we are not running on an ordinary terminal, it still needs to be
272 an ordinary ASCII char. This character needs to be recognized in
273 the input interrupt handler. At this point, the keystroke is
274 represented as a struct input_event, while the desired quit
275 character is specified as a lispy event. The mapping from struct
276 input_events to lispy events cannot run in an interrupt handler,
277 and the reverse mapping is difficult for anything but ASCII
278 keystrokes.
280 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
281 ASCII character. */
282 int quit_char;
284 extern Lisp_Object current_global_map;
285 extern int minibuf_level;
287 /* If non-nil, this is a map that overrides all other local maps. */
288 Lisp_Object Voverriding_local_map;
290 /* If non-nil, Voverriding_local_map applies to the menu bar. */
291 Lisp_Object Voverriding_local_map_menu_flag;
293 /* Keymap that defines special misc events that should
294 be processed immediately at a low level. */
295 Lisp_Object Vspecial_event_map;
297 /* Current depth in recursive edits. */
298 int command_loop_level;
300 /* Total number of times command_loop has read a key sequence. */
301 EMACS_INT num_input_keys;
303 /* Last input character read as a command. */
304 Lisp_Object last_command_char;
306 /* Last input character read as a command, not counting menus
307 reached by the mouse. */
308 Lisp_Object last_nonmenu_event;
310 /* Last input character read for any purpose. */
311 Lisp_Object last_input_char;
313 /* If not Qnil, a list of objects to be read as subsequent command input. */
314 Lisp_Object Vunread_command_events;
316 /* If not Qnil, a list of objects to be read as subsequent command input
317 including input method processing. */
318 Lisp_Object Vunread_input_method_events;
320 /* If not Qnil, a list of objects to be read as subsequent command input
321 but NOT including input method processing. */
322 Lisp_Object Vunread_post_input_method_events;
324 /* If not -1, an event to be read as subsequent command input. */
325 EMACS_INT unread_command_char;
327 /* If not Qnil, this is a switch-frame event which we decided to put
328 off until the end of a key sequence. This should be read as the
329 next command input, after any unread_command_events.
331 read_key_sequence uses this to delay switch-frame events until the
332 end of the key sequence; Fread_char uses it to put off switch-frame
333 events until a non-ASCII event is acceptable as input. */
334 Lisp_Object unread_switch_frame;
336 /* A mask of extra modifier bits to put into every keyboard char. */
337 EMACS_INT extra_keyboard_modifiers;
339 /* Char to use as prefix when a meta character is typed in.
340 This is bound on entry to minibuffer in case ESC is changed there. */
342 Lisp_Object meta_prefix_char;
344 /* Last size recorded for a current buffer which is not a minibuffer. */
345 static int last_non_minibuf_size;
347 /* Number of idle seconds before an auto-save and garbage collection. */
348 static Lisp_Object Vauto_save_timeout;
350 /* Total number of times read_char has returned. */
351 int num_input_events;
353 /* Total number of times read_char has returned, outside of macros. */
354 EMACS_INT num_nonmacro_input_events;
356 /* Auto-save automatically when this many characters have been typed
357 since the last time. */
359 static EMACS_INT auto_save_interval;
361 /* Value of num_nonmacro_input_events as of last auto save. */
363 int last_auto_save;
365 /* The command being executed by the command loop.
366 Commands may set this, and the value set will be copied into
367 current_kboard->Vlast_command instead of the actual command. */
368 Lisp_Object Vthis_command;
370 /* This is like Vthis_command, except that commands never set it. */
371 Lisp_Object real_this_command;
373 /* If the lookup of the command returns a binding, the original
374 command is stored in this-original-command. It is nil otherwise. */
375 Lisp_Object Vthis_original_command;
377 /* The value of point when the last command was executed. */
378 int last_point_position;
380 /* The buffer that was current when the last command was started. */
381 Lisp_Object last_point_position_buffer;
383 /* The frame in which the last input event occurred, or Qmacro if the
384 last event came from a macro. We use this to determine when to
385 generate switch-frame events. This may be cleared by functions
386 like Fselect_frame, to make sure that a switch-frame event is
387 generated by the next character. */
388 Lisp_Object internal_last_event_frame;
390 /* A user-visible version of the above, intended to allow users to
391 figure out where the last event came from, if the event doesn't
392 carry that information itself (i.e. if it was a character). */
393 Lisp_Object Vlast_event_frame;
395 /* The timestamp of the last input event we received from the X server.
396 X Windows wants this for selection ownership. */
397 unsigned long last_event_timestamp;
399 Lisp_Object Qself_insert_command;
400 Lisp_Object Qforward_char;
401 Lisp_Object Qbackward_char;
402 Lisp_Object Qundefined;
403 Lisp_Object Qtimer_event_handler;
405 /* read_key_sequence stores here the command definition of the
406 key sequence that it reads. */
407 Lisp_Object read_key_sequence_cmd;
409 /* Echo unfinished commands after this many seconds of pause. */
410 Lisp_Object Vecho_keystrokes;
412 /* Form to evaluate (if non-nil) when Emacs is started. */
413 Lisp_Object Vtop_level;
415 /* User-supplied string to translate input characters through. */
416 Lisp_Object Vkeyboard_translate_table;
418 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
419 extern Lisp_Object Vfunction_key_map;
421 /* Another keymap that maps key sequences into key sequences.
422 This one takes precedence over ordinary definitions. */
423 extern Lisp_Object Vkey_translation_map;
425 /* If non-nil, this implements the current input method. */
426 Lisp_Object Vinput_method_function;
427 Lisp_Object Qinput_method_function;
429 /* When we call Vinput_method_function,
430 this holds the echo area message that was just erased. */
431 Lisp_Object Vinput_method_previous_message;
433 /* Non-nil means deactivate the mark at end of this command. */
434 Lisp_Object Vdeactivate_mark;
436 /* Menu bar specified in Lucid Emacs fashion. */
438 Lisp_Object Vlucid_menu_bar_dirty_flag;
439 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
441 Lisp_Object Qecho_area_clear_hook;
443 /* Hooks to run before and after each command. */
444 Lisp_Object Qpre_command_hook, Vpre_command_hook;
445 Lisp_Object Qpost_command_hook, Vpost_command_hook;
446 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
447 /* Hook run after a command if there's no more input soon. */
448 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
450 /* Delay time in microseconds before running post-command-idle-hook. */
451 EMACS_INT post_command_idle_delay;
453 /* List of deferred actions to be performed at a later time.
454 The precise format isn't relevant here; we just check whether it is nil. */
455 Lisp_Object Vdeferred_action_list;
457 /* Function to call to handle deferred actions, when there are any. */
458 Lisp_Object Vdeferred_action_function;
459 Lisp_Object Qdeferred_action_function;
461 Lisp_Object Qinput_method_exit_on_first_char;
462 Lisp_Object Qinput_method_use_echo_area;
464 /* File in which we write all commands we read. */
465 FILE *dribble;
467 /* Nonzero if input is available. */
468 int input_pending;
470 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
471 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
473 int meta_key;
475 /* Non-zero means force key bindings update in parse_menu_item. */
477 int update_menu_bindings;
479 extern char *pending_malloc_warning;
481 /* Circular buffer for pre-read keyboard input. */
483 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
485 /* Vector to GCPRO the Lisp objects referenced from kbd_buffer.
487 The interrupt-level event handlers will never enqueue an event on a
488 frame which is not in Vframe_list, and once an event is dequeued,
489 internal_last_event_frame or the event itself points to the frame.
490 So that's all fine.
492 But while the event is sitting in the queue, it's completely
493 unprotected. Suppose the user types one command which will run for
494 a while and then delete a frame, and then types another event at
495 the frame that will be deleted, before the command gets around to
496 it. Suppose there are no references to this frame elsewhere in
497 Emacs, and a GC occurs before the second event is dequeued. Now we
498 have an event referring to a freed frame, which will crash Emacs
499 when it is dequeued.
501 Similar things happen when an event on a scroll bar is enqueued; the
502 window may be deleted while the event is in the queue.
504 So, we use this vector to protect the Lisp_Objects in the event
505 queue. That way, they'll be dequeued as dead frames or windows,
506 but still valid Lisp objects.
508 If kbd_buffer[i].kind != no_event, then
510 AREF (kbd_buffer_gcpro, 2 * i) == kbd_buffer[i].frame_or_window.
511 AREF (kbd_buffer_gcpro, 2 * i + 1) == kbd_buffer[i].arg. */
513 static Lisp_Object kbd_buffer_gcpro;
515 /* Pointer to next available character in kbd_buffer.
516 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
517 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
518 next available char is in kbd_buffer[0]. */
519 static struct input_event *kbd_fetch_ptr;
521 /* Pointer to next place to store character in kbd_buffer. This
522 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
523 character should go in kbd_buffer[0]. */
524 static struct input_event * volatile kbd_store_ptr;
526 /* The above pair of variables forms a "queue empty" flag. When we
527 enqueue a non-hook event, we increment kbd_store_ptr. When we
528 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
529 there is input available iff the two pointers are not equal.
531 Why not just have a flag set and cleared by the enqueuing and
532 dequeuing functions? Such a flag could be screwed up by interrupts
533 at inopportune times. */
535 /* If this flag is non-nil, we check mouse_moved to see when the
536 mouse moves, and motion events will appear in the input stream.
537 Otherwise, mouse motion is ignored. */
538 Lisp_Object do_mouse_tracking;
540 /* Symbols to head events. */
541 Lisp_Object Qmouse_movement;
542 Lisp_Object Qscroll_bar_movement;
543 Lisp_Object Qswitch_frame;
544 Lisp_Object Qdelete_frame;
545 Lisp_Object Qiconify_frame;
546 Lisp_Object Qmake_frame_visible;
547 Lisp_Object Qhelp_echo;
549 /* Symbols to denote kinds of events. */
550 Lisp_Object Qfunction_key;
551 Lisp_Object Qmouse_click;
552 #ifdef WINDOWSNT
553 Lisp_Object Qmouse_wheel;
554 Lisp_Object Qlanguage_change;
555 #endif
556 Lisp_Object Qdrag_n_drop;
557 Lisp_Object Qsave_session;
559 /* Lisp_Object Qmouse_movement; - also an event header */
561 /* Properties of event headers. */
562 Lisp_Object Qevent_kind;
563 Lisp_Object Qevent_symbol_elements;
565 /* menu item parts */
566 Lisp_Object Qmenu_alias;
567 Lisp_Object Qmenu_enable;
568 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
569 Lisp_Object QCbutton, QCtoggle, QCradio;
570 extern Lisp_Object Vdefine_key_rebound_commands;
571 extern Lisp_Object Qmenu_item;
573 /* An event header symbol HEAD may have a property named
574 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
575 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
576 mask of modifiers applied to it. If present, this is used to help
577 speed up parse_modifiers. */
578 Lisp_Object Qevent_symbol_element_mask;
580 /* An unmodified event header BASE may have a property named
581 Qmodifier_cache, which is an alist mapping modifier masks onto
582 modified versions of BASE. If present, this helps speed up
583 apply_modifiers. */
584 Lisp_Object Qmodifier_cache;
586 /* Symbols to use for parts of windows. */
587 Lisp_Object Qmode_line;
588 Lisp_Object Qvertical_line;
589 Lisp_Object Qvertical_scroll_bar;
590 Lisp_Object Qmenu_bar;
592 Lisp_Object recursive_edit_unwind (), command_loop ();
593 Lisp_Object Fthis_command_keys ();
594 Lisp_Object Qextended_command_history;
595 EMACS_TIME timer_check ();
597 extern Lisp_Object Vhistory_length;
599 extern char *x_get_keysym_name ();
601 static void record_menu_key ();
603 Lisp_Object Qpolling_period;
605 /* List of absolute timers. Appears in order of next scheduled event. */
606 Lisp_Object Vtimer_list;
608 /* List of idle time timers. Appears in order of next scheduled event. */
609 Lisp_Object Vtimer_idle_list;
611 /* Incremented whenever a timer is run. */
612 int timers_run;
614 extern Lisp_Object Vprint_level, Vprint_length;
616 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
617 happens. */
618 EMACS_TIME *input_available_clear_time;
620 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
621 Default is 1 if INTERRUPT_INPUT is defined. */
622 int interrupt_input;
624 /* Nonzero while interrupts are temporarily deferred during redisplay. */
625 int interrupts_deferred;
627 /* Nonzero means use ^S/^Q for flow control. */
628 int flow_control;
630 /* Allow m- file to inhibit use of FIONREAD. */
631 #ifdef BROKEN_FIONREAD
632 #undef FIONREAD
633 #endif
635 /* We are unable to use interrupts if FIONREAD is not available,
636 so flush SIGIO so we won't try. */
637 #ifndef FIONREAD
638 #ifdef SIGIO
639 #undef SIGIO
640 #endif
641 #endif
643 /* If we support a window system, turn on the code to poll periodically
644 to detect C-g. It isn't actually used when doing interrupt input. */
645 #ifdef HAVE_WINDOW_SYSTEM
646 #define POLL_FOR_INPUT
647 #endif
649 /* After a command is executed, if point is moved into a region that
650 has specific properties (e.g. composition, display), we adjust
651 point to the boundary of the region. But, if a command sets this
652 variable to non-nil, we suppress this point adjustment. This
653 variable is set to nil before reading a command. */
655 Lisp_Object Vdisable_point_adjustment;
657 /* If non-nil, always disable point adjustment. */
659 Lisp_Object Vglobal_disable_point_adjustment;
661 /* The time when Emacs started being idle. */
663 static EMACS_TIME timer_idleness_start_time;
666 /* Global variable declarations. */
668 /* Function for init_keyboard to call with no args (if nonzero). */
669 void (*keyboard_init_hook) ();
671 static int read_avail_input P_ ((int));
672 static void get_input_pending P_ ((int *, int));
673 static int readable_events P_ ((int));
674 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
675 Lisp_Object, int *));
676 static Lisp_Object read_char_x_menu_prompt ();
677 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
678 Lisp_Object *));
679 static Lisp_Object make_lispy_event P_ ((struct input_event *));
680 #ifdef HAVE_MOUSE
681 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
682 enum scroll_bar_part,
683 Lisp_Object, Lisp_Object,
684 unsigned long));
685 #endif
686 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
687 Lisp_Object, char **,
688 Lisp_Object *, unsigned));
689 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
690 static int parse_solitary_modifier P_ ((Lisp_Object));
691 static int parse_solitary_modifier ();
692 static void save_getcjmp P_ ((jmp_buf));
693 static void save_getcjmp ();
694 static void restore_getcjmp P_ ((jmp_buf));
695 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
696 static void clear_event P_ ((struct input_event *));
697 static void any_kboard_state P_ ((void));
699 /* Nonzero means don't try to suspend even if the operating system seems
700 to support it. */
701 static int cannot_suspend;
703 /* Install the string STR as the beginning of the string of echoing,
704 so that it serves as a prompt for the next character.
705 Also start echoing. */
707 void
708 echo_prompt (str)
709 Lisp_Object str;
711 current_kboard->echo_string = str;
712 current_kboard->echo_after_prompt = SCHARS (str);
713 echo_now ();
716 /* Add C to the echo string, if echoing is going on.
717 C can be a character, which is printed prettily ("M-C-x" and all that
718 jazz), or a symbol, whose name is printed. */
720 void
721 echo_char (c)
722 Lisp_Object c;
724 if (current_kboard->immediate_echo)
726 int size = KEY_DESCRIPTION_SIZE + 100;
727 char *buffer = (char *) alloca (size);
728 char *ptr = buffer;
729 Lisp_Object echo_string;
731 echo_string = current_kboard->echo_string;
733 /* If someone has passed us a composite event, use its head symbol. */
734 c = EVENT_HEAD (c);
736 if (INTEGERP (c))
738 ptr = push_key_description (XINT (c), ptr, 1);
740 else if (SYMBOLP (c))
742 struct Lisp_String *name = XSYMBOL (c)->name;
743 int nbytes = STRING_BYTES (name);
745 if (size - (ptr - buffer) < nbytes)
747 int offset = ptr - buffer;
748 size = max (2 * size, size + nbytes);
749 buffer = (char *) alloca (size);
750 ptr = buffer + offset;
753 ptr += copy_text (name->data, ptr, nbytes,
754 name->size_byte >= 0, 1);
757 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
758 && help_char_p (c))
760 const char *text = " (Type ? for further options)";
761 int len = strlen (text);
763 if (size - (ptr - buffer) < len)
765 int offset = ptr - buffer;
766 size += len;
767 buffer = (char *) alloca (size);
768 ptr = buffer + offset;
771 bcopy (text, ptr, len);
772 ptr += len;
775 /* Replace a dash from echo_dash with a space, otherwise
776 add a space at the end as a separator between keys. */
777 if (STRINGP (echo_string)
778 && SCHARS (echo_string) > 0)
780 Lisp_Object last_char, idx;
782 idx = make_number (SCHARS (echo_string) - 1);
783 last_char = Faref (echo_string, idx);
785 if (XINT (last_char) == '-')
786 Faset (echo_string, idx, make_number (' '));
787 else
788 echo_string = concat2 (echo_string, build_string (" "));
791 current_kboard->echo_string
792 = concat2 (echo_string, make_string (buffer, ptr - buffer));
794 echo_now ();
798 /* Temporarily add a dash to the end of the echo string if it's not
799 empty, so that it serves as a mini-prompt for the very next character. */
801 void
802 echo_dash ()
804 /* Do nothing if not echoing at all. */
805 if (NILP (current_kboard->echo_string))
806 return;
808 if (!current_kboard->immediate_echo
809 && SCHARS (current_kboard->echo_string) == 0)
810 return;
812 /* Do nothing if we just printed a prompt. */
813 if (current_kboard->echo_after_prompt
814 == SCHARS (current_kboard->echo_string))
815 return;
817 /* Put a dash at the end of the buffer temporarily,
818 but make it go away when the next character is added. */
819 current_kboard->echo_string = concat2 (current_kboard->echo_string,
820 build_string ("-"));
821 echo_now ();
824 /* Display the current echo string, and begin echoing if not already
825 doing so. */
827 void
828 echo_now ()
830 if (!current_kboard->immediate_echo)
832 int i;
833 current_kboard->immediate_echo = 1;
835 for (i = 0; i < this_command_key_count; i++)
837 Lisp_Object c;
838 c = XVECTOR (this_command_keys)->contents[i];
839 if (! (EVENT_HAS_PARAMETERS (c)
840 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
841 echo_char (c);
843 echo_dash ();
846 echoing = 1;
847 message3_nolog (current_kboard->echo_string,
848 SBYTES (current_kboard->echo_string),
849 SMBP (current_kboard->echo_string));
850 echoing = 0;
852 /* Record in what buffer we echoed, and from which kboard. */
853 echo_message_buffer = echo_area_buffer[0];
854 echo_kboard = current_kboard;
856 if (waiting_for_input && !NILP (Vquit_flag))
857 quit_throw_to_read_char ();
860 /* Turn off echoing, for the start of a new command. */
862 void
863 cancel_echoing ()
865 current_kboard->immediate_echo = 0;
866 current_kboard->echo_after_prompt = -1;
867 current_kboard->echo_string = Qnil;
868 ok_to_echo_at_next_pause = NULL;
869 echo_kboard = NULL;
870 echo_message_buffer = Qnil;
873 /* Return the length of the current echo string. */
875 static int
876 echo_length ()
878 return (STRINGP (current_kboard->echo_string)
879 ? SCHARS (current_kboard->echo_string)
880 : 0);
883 /* Truncate the current echo message to its first LEN chars.
884 This and echo_char get used by read_key_sequence when the user
885 switches frames while entering a key sequence. */
887 static void
888 echo_truncate (nchars)
889 int nchars;
891 if (STRINGP (current_kboard->echo_string))
892 current_kboard->echo_string
893 = Fsubstring (current_kboard->echo_string,
894 make_number (0), make_number (nchars));
895 truncate_echo_area (nchars);
899 /* Functions for manipulating this_command_keys. */
900 static void
901 add_command_key (key)
902 Lisp_Object key;
904 /* If reset-this-command-length was called recently, obey it now.
905 See the doc string of that function for an explanation of why. */
906 if (before_command_restore_flag)
908 this_command_key_count = before_command_key_count_1;
909 if (this_command_key_count < this_single_command_key_start)
910 this_single_command_key_start = this_command_key_count;
911 echo_truncate (before_command_echo_length_1);
912 before_command_restore_flag = 0;
915 if (this_command_key_count >= ASIZE (this_command_keys))
916 this_command_keys = larger_vector (this_command_keys,
917 2 * ASIZE (this_command_keys),
918 Qnil);
920 AREF (this_command_keys, this_command_key_count) = key;
921 ++this_command_key_count;
925 Lisp_Object
926 recursive_edit_1 ()
928 int count = specpdl_ptr - specpdl;
929 Lisp_Object val;
931 if (command_loop_level > 0)
933 specbind (Qstandard_output, Qt);
934 specbind (Qstandard_input, Qt);
937 #ifdef HAVE_X_WINDOWS
938 /* The command loop has started an hourglass timer, so we have to
939 cancel it here, otherwise it will fire because the recursive edit
940 can take some time. Do not check for display_hourglass_p here,
941 because it could already be nil. */
942 cancel_hourglass ();
943 #endif
945 /* This function may have been called from a debugger called from
946 within redisplay, for instance by Edebugging a function called
947 from fontification-functions. We want to allow redisplay in
948 the debugging session.
950 The recursive edit is left with a `(throw exit ...)'. The `exit'
951 tag is not caught anywhere in redisplay, i.e. when we leave the
952 recursive edit, the original redisplay leading to the recursive
953 edit will be unwound. The outcome should therefore be safe. */
954 specbind (Qinhibit_redisplay, Qnil);
955 redisplaying_p = 0;
957 val = command_loop ();
958 if (EQ (val, Qt))
959 Fsignal (Qquit, Qnil);
960 /* Handle throw from read_minibuf when using minibuffer
961 while it's active but we're in another window. */
962 if (STRINGP (val))
963 Fsignal (Qerror, Fcons (val, Qnil));
965 return unbind_to (count, Qnil);
968 /* When an auto-save happens, record the "time", and don't do again soon. */
970 void
971 record_auto_save ()
973 last_auto_save = num_nonmacro_input_events;
976 /* Make an auto save happen as soon as possible at command level. */
978 void
979 force_auto_save_soon ()
981 last_auto_save = - auto_save_interval - 1;
983 record_asynch_buffer_change ();
986 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
987 doc: /* Invoke the editor command loop recursively.
988 To get out of the recursive edit, a command can do `(throw 'exit nil)';
989 that tells this function to return.
990 Alternately, `(throw 'exit t)' makes this function signal an error.
991 This function is called by the editor initialization to begin editing. */)
994 int count = specpdl_ptr - specpdl;
995 Lisp_Object buffer;
997 command_loop_level++;
998 update_mode_lines = 1;
1000 if (command_loop_level
1001 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1002 buffer = Fcurrent_buffer ();
1003 else
1004 buffer = Qnil;
1006 /* If we leave recursive_edit_1 below with a `throw' for instance,
1007 like it is done in the splash screen display, we have to
1008 make sure that we restore single_kboard as command_loop_1
1009 would have done if it were left normally. */
1010 record_unwind_protect (recursive_edit_unwind,
1011 Fcons (buffer, single_kboard ? Qt : Qnil));
1013 recursive_edit_1 ();
1014 return unbind_to (count, Qnil);
1017 Lisp_Object
1018 recursive_edit_unwind (info)
1019 Lisp_Object info;
1021 if (BUFFERP (XCAR (info)))
1022 Fset_buffer (XCAR (info));
1024 if (NILP (XCDR (info)))
1025 any_kboard_state ();
1026 else
1027 single_kboard_state ();
1029 command_loop_level--;
1030 update_mode_lines = 1;
1031 return Qnil;
1035 static void
1036 any_kboard_state ()
1038 #ifdef MULTI_KBOARD
1039 #if 0 /* Theory: if there's anything in Vunread_command_events,
1040 it will right away be read by read_key_sequence,
1041 and then if we do switch KBOARDS, it will go into the side
1042 queue then. So we don't need to do anything special here -- rms. */
1043 if (CONSP (Vunread_command_events))
1045 current_kboard->kbd_queue
1046 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1047 current_kboard->kbd_queue_has_data = 1;
1049 Vunread_command_events = Qnil;
1050 #endif
1051 single_kboard = 0;
1052 #endif
1055 /* Switch to the single-kboard state, making current_kboard
1056 the only KBOARD from which further input is accepted. */
1058 void
1059 single_kboard_state ()
1061 #ifdef MULTI_KBOARD
1062 single_kboard = 1;
1063 #endif
1066 /* Maintain a stack of kboards, so other parts of Emacs
1067 can switch temporarily to the kboard of a given frame
1068 and then revert to the previous status. */
1070 struct kboard_stack
1072 KBOARD *kboard;
1073 struct kboard_stack *next;
1076 static struct kboard_stack *kboard_stack;
1078 void
1079 push_frame_kboard (f)
1080 FRAME_PTR f;
1082 #ifdef MULTI_KBOARD
1083 struct kboard_stack *p
1084 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1086 p->next = kboard_stack;
1087 p->kboard = current_kboard;
1088 kboard_stack = p;
1090 current_kboard = FRAME_KBOARD (f);
1091 #endif
1094 void
1095 pop_frame_kboard ()
1097 #ifdef MULTI_KBOARD
1098 struct kboard_stack *p = kboard_stack;
1099 current_kboard = p->kboard;
1100 kboard_stack = p->next;
1101 xfree (p);
1102 #endif
1105 /* Handle errors that are not handled at inner levels
1106 by printing an error message and returning to the editor command loop. */
1108 Lisp_Object
1109 cmd_error (data)
1110 Lisp_Object data;
1112 Lisp_Object old_level, old_length;
1113 char macroerror[50];
1115 if (!NILP (executing_macro))
1117 if (executing_macro_iterations == 1)
1118 sprintf (macroerror, "After 1 kbd macro iteration: ");
1119 else
1120 sprintf (macroerror, "After %d kbd macro iterations: ",
1121 executing_macro_iterations);
1123 else
1124 *macroerror = 0;
1126 Vstandard_output = Qt;
1127 Vstandard_input = Qt;
1128 Vexecuting_macro = Qnil;
1129 executing_macro = Qnil;
1130 current_kboard->Vprefix_arg = Qnil;
1131 current_kboard->Vlast_prefix_arg = Qnil;
1132 cancel_echoing ();
1134 /* Avoid unquittable loop if data contains a circular list. */
1135 old_level = Vprint_level;
1136 old_length = Vprint_length;
1137 XSETFASTINT (Vprint_level, 10);
1138 XSETFASTINT (Vprint_length, 10);
1139 cmd_error_internal (data, macroerror);
1140 Vprint_level = old_level;
1141 Vprint_length = old_length;
1143 Vquit_flag = Qnil;
1145 Vinhibit_quit = Qnil;
1146 #ifdef MULTI_KBOARD
1147 any_kboard_state ();
1148 #endif
1150 return make_number (0);
1153 /* Take actions on handling an error. DATA is the data that describes
1154 the error.
1156 CONTEXT is a C-string containing ASCII characters only which
1157 describes the context in which the error happened. If we need to
1158 generalize CONTEXT to allow multibyte characters, make it a Lisp
1159 string. */
1161 void
1162 cmd_error_internal (data, context)
1163 Lisp_Object data;
1164 char *context;
1166 Lisp_Object stream;
1167 int kill_emacs_p = 0;
1168 struct frame *sf = SELECTED_FRAME ();
1170 Vquit_flag = Qnil;
1171 Vinhibit_quit = Qt;
1172 clear_message (1, 0);
1174 /* If the window system or terminal frame hasn't been initialized
1175 yet, or we're not interactive, it's best to dump this message out
1176 to stderr and exit. */
1177 if (!sf->glyphs_initialized_p
1178 /* This is the case of the frame dumped with Emacs, when we're
1179 running under a window system. */
1180 || (!NILP (Vwindow_system)
1181 && !inhibit_window_system
1182 && FRAME_TERMCAP_P (sf))
1183 || noninteractive)
1185 stream = Qexternal_debugging_output;
1186 kill_emacs_p = 1;
1188 else
1190 Fdiscard_input ();
1191 bitch_at_user ();
1192 stream = Qt;
1195 if (context != 0)
1196 write_string_1 (context, -1, stream);
1198 print_error_message (data, stream);
1200 /* If the window system or terminal frame hasn't been initialized
1201 yet, or we're in -batch mode, this error should cause Emacs to exit. */
1202 if (kill_emacs_p)
1204 Fterpri (stream);
1205 Fkill_emacs (make_number (-1));
1209 Lisp_Object command_loop_1 ();
1210 Lisp_Object command_loop_2 ();
1211 Lisp_Object top_level_1 ();
1213 /* Entry to editor-command-loop.
1214 This level has the catches for exiting/returning to editor command loop.
1215 It returns nil to exit recursive edit, t to abort it. */
1217 Lisp_Object
1218 command_loop ()
1220 if (command_loop_level > 0 || minibuf_level > 0)
1222 Lisp_Object val;
1223 val = internal_catch (Qexit, command_loop_2, Qnil);
1224 executing_macro = Qnil;
1225 return val;
1227 else
1228 while (1)
1230 internal_catch (Qtop_level, top_level_1, Qnil);
1231 internal_catch (Qtop_level, command_loop_2, Qnil);
1232 executing_macro = Qnil;
1234 /* End of file in -batch run causes exit here. */
1235 if (noninteractive)
1236 Fkill_emacs (Qt);
1240 /* Here we catch errors in execution of commands within the
1241 editing loop, and reenter the editing loop.
1242 When there is an error, cmd_error runs and returns a non-nil
1243 value to us. A value of nil means that command_loop_1 itself
1244 returned due to end of file (or end of kbd macro). */
1246 Lisp_Object
1247 command_loop_2 ()
1249 register Lisp_Object val;
1252 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1253 while (!NILP (val));
1255 return Qnil;
1258 Lisp_Object
1259 top_level_2 ()
1261 return Feval (Vtop_level);
1264 Lisp_Object
1265 top_level_1 ()
1267 /* On entry to the outer level, run the startup file */
1268 if (!NILP (Vtop_level))
1269 internal_condition_case (top_level_2, Qerror, cmd_error);
1270 else if (!NILP (Vpurify_flag))
1271 message ("Bare impure Emacs (standard Lisp code not loaded)");
1272 else
1273 message ("Bare Emacs (standard Lisp code not loaded)");
1274 return Qnil;
1277 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1278 doc: /* Exit all recursive editing levels. */)
1281 #ifdef HAVE_X_WINDOWS
1282 if (display_hourglass_p)
1283 cancel_hourglass ();
1284 #endif
1285 return Fthrow (Qtop_level, Qnil);
1288 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1289 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1292 if (command_loop_level > 0 || minibuf_level > 0)
1293 Fthrow (Qexit, Qnil);
1295 error ("No recursive edit is in progress");
1296 return Qnil;
1299 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1300 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1303 if (command_loop_level > 0 || minibuf_level > 0)
1304 Fthrow (Qexit, Qt);
1306 error ("No recursive edit is in progress");
1307 return Qnil;
1310 /* This is the actual command reading loop,
1311 sans error-handling encapsulation. */
1313 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1314 int, int, int));
1315 void safe_run_hooks P_ ((Lisp_Object));
1316 static void adjust_point_for_property P_ ((int));
1318 Lisp_Object
1319 command_loop_1 ()
1321 Lisp_Object cmd;
1322 int lose;
1323 int nonundocount;
1324 Lisp_Object keybuf[30];
1325 int i;
1326 int no_direct;
1327 int prev_modiff;
1328 struct buffer *prev_buffer = NULL;
1329 #ifdef MULTI_KBOARD
1330 int was_locked = single_kboard;
1331 #endif
1333 current_kboard->Vprefix_arg = Qnil;
1334 current_kboard->Vlast_prefix_arg = Qnil;
1335 Vdeactivate_mark = Qnil;
1336 waiting_for_input = 0;
1337 cancel_echoing ();
1339 nonundocount = 0;
1340 this_command_key_count = 0;
1341 this_single_command_key_start = 0;
1343 /* Make sure this hook runs after commands that get errors and
1344 throw to top level. */
1345 /* Note that the value cell will never directly contain nil
1346 if the symbol is a local variable. */
1347 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1348 safe_run_hooks (Qpost_command_hook);
1350 /* If displaying a message, resize the echo area window to fit
1351 that message's size exactly. */
1352 if (!NILP (echo_area_buffer[0]))
1353 resize_echo_area_exactly ();
1355 if (!NILP (Vdeferred_action_list))
1356 call0 (Vdeferred_action_function);
1358 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1360 if (NILP (Vunread_command_events)
1361 && NILP (Vunread_input_method_events)
1362 && NILP (Vunread_post_input_method_events)
1363 && NILP (Vexecuting_macro)
1364 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1365 safe_run_hooks (Qpost_command_idle_hook);
1368 /* Do this after running Vpost_command_hook, for consistency. */
1369 current_kboard->Vlast_command = Vthis_command;
1370 current_kboard->Vreal_last_command = real_this_command;
1372 while (1)
1374 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1375 Fkill_emacs (Qnil);
1377 /* Make sure the current window's buffer is selected. */
1378 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1379 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1381 /* Display any malloc warning that just came out. Use while because
1382 displaying one warning can cause another. */
1384 while (pending_malloc_warning)
1385 display_malloc_warning ();
1387 no_direct = 0;
1389 Vdeactivate_mark = Qnil;
1391 /* If minibuffer on and echo area in use,
1392 wait a short time and redraw minibuffer. */
1394 if (minibuf_level
1395 && !NILP (echo_area_buffer[0])
1396 && EQ (minibuf_window, echo_area_window)
1397 && NUMBERP (Vminibuffer_message_timeout))
1399 /* Bind inhibit-quit to t so that C-g gets read in
1400 rather than quitting back to the minibuffer. */
1401 int count = specpdl_ptr - specpdl;
1402 specbind (Qinhibit_quit, Qt);
1404 Fsit_for (Vminibuffer_message_timeout, Qnil, Qnil);
1405 /* Clear the echo area. */
1406 message2 (0, 0, 0);
1407 safe_run_hooks (Qecho_area_clear_hook);
1409 unbind_to (count, Qnil);
1411 /* If a C-g came in before, treat it as input now. */
1412 if (!NILP (Vquit_flag))
1414 Vquit_flag = Qnil;
1415 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1419 #ifdef C_ALLOCA
1420 alloca (0); /* Cause a garbage collection now */
1421 /* Since we can free the most stuff here. */
1422 #endif /* C_ALLOCA */
1424 #if 0
1425 /* Select the frame that the last event came from. Usually,
1426 switch-frame events will take care of this, but if some lisp
1427 code swallows a switch-frame event, we'll fix things up here.
1428 Is this a good idea? */
1429 if (FRAMEP (internal_last_event_frame)
1430 && !EQ (internal_last_event_frame, selected_frame))
1431 Fselect_frame (internal_last_event_frame, Qnil);
1432 #endif
1433 /* If it has changed current-menubar from previous value,
1434 really recompute the menubar from the value. */
1435 if (! NILP (Vlucid_menu_bar_dirty_flag)
1436 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1437 call0 (Qrecompute_lucid_menubar);
1439 before_command_key_count = this_command_key_count;
1440 before_command_echo_length = echo_length ();
1442 Vthis_command = Qnil;
1443 real_this_command = Qnil;
1445 /* Read next key sequence; i gets its length. */
1446 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1447 Qnil, 0, 1, 1);
1449 /* A filter may have run while we were reading the input. */
1450 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1451 Fkill_emacs (Qnil);
1452 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1453 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1455 ++num_input_keys;
1457 /* Now we have read a key sequence of length I,
1458 or else I is 0 and we found end of file. */
1460 if (i == 0) /* End of file -- happens only in */
1461 return Qnil; /* a kbd macro, at the end. */
1462 /* -1 means read_key_sequence got a menu that was rejected.
1463 Just loop around and read another command. */
1464 if (i == -1)
1466 cancel_echoing ();
1467 this_command_key_count = 0;
1468 this_single_command_key_start = 0;
1469 goto finalize;
1472 last_command_char = keybuf[i - 1];
1474 /* If the previous command tried to force a specific window-start,
1475 forget about that, in case this command moves point far away
1476 from that position. But also throw away beg_unchanged and
1477 end_unchanged information in that case, so that redisplay will
1478 update the whole window properly. */
1479 if (!NILP (XWINDOW (selected_window)->force_start))
1481 struct buffer *b;
1482 XWINDOW (selected_window)->force_start = Qnil;
1483 b = XBUFFER (XWINDOW (selected_window)->buffer);
1484 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1487 cmd = read_key_sequence_cmd;
1488 if (!NILP (Vexecuting_macro))
1490 if (!NILP (Vquit_flag))
1492 Vexecuting_macro = Qt;
1493 QUIT; /* Make some noise. */
1494 /* Will return since macro now empty. */
1498 /* Do redisplay processing after this command except in special
1499 cases identified below. */
1500 prev_buffer = current_buffer;
1501 prev_modiff = MODIFF;
1502 last_point_position = PT;
1503 XSETBUFFER (last_point_position_buffer, prev_buffer);
1505 /* By default, we adjust point to a boundary of a region that
1506 has such a property that should be treated intangible
1507 (e.g. composition, display). But, some commands will set
1508 this variable differently. */
1509 Vdisable_point_adjustment = Qnil;
1511 /* Process filters and timers may have messed with deactivate-mark.
1512 reset it before we execute the command. */
1513 Vdeactivate_mark = Qnil;
1515 /* Remap command through active keymaps */
1516 Vthis_original_command = cmd;
1517 if (SYMBOLP (cmd))
1519 Lisp_Object cmd1;
1520 if (cmd1 = Fremap_command (cmd), !NILP (cmd1))
1521 cmd = cmd1;
1524 /* Execute the command. */
1526 Vthis_command = cmd;
1527 real_this_command = cmd;
1528 /* Note that the value cell will never directly contain nil
1529 if the symbol is a local variable. */
1530 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1531 safe_run_hooks (Qpre_command_hook);
1533 if (NILP (Vthis_command))
1535 /* nil means key is undefined. */
1536 bitch_at_user ();
1537 current_kboard->defining_kbd_macro = Qnil;
1538 update_mode_lines = 1;
1539 current_kboard->Vprefix_arg = Qnil;
1541 else
1543 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1545 /* In case we jump to directly_done. */
1546 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1548 /* Recognize some common commands in common situations and
1549 do them directly. */
1550 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1552 struct Lisp_Char_Table *dp
1553 = window_display_table (XWINDOW (selected_window));
1554 lose = FETCH_CHAR (PT_BYTE);
1555 SET_PT (PT + 1);
1556 if ((dp
1557 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1558 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1559 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1560 && (lose >= 0x20 && lose < 0x7f)))
1561 : (lose >= 0x20 && lose < 0x7f))
1562 /* To extract the case of continuation on
1563 wide-column characters. */
1564 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1565 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1566 >= MODIFF)
1567 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1568 >= OVERLAY_MODIFF)
1569 && (XFASTINT (XWINDOW (selected_window)->last_point)
1570 == PT - 1)
1571 && !windows_or_buffers_changed
1572 && EQ (current_buffer->selective_display, Qnil)
1573 && !detect_input_pending ()
1574 && NILP (XWINDOW (selected_window)->column_number_displayed)
1575 && NILP (Vexecuting_macro))
1576 direct_output_forward_char (1);
1577 goto directly_done;
1579 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1581 struct Lisp_Char_Table *dp
1582 = window_display_table (XWINDOW (selected_window));
1583 SET_PT (PT - 1);
1584 lose = FETCH_CHAR (PT_BYTE);
1585 if ((dp
1586 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1587 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1588 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1589 && (lose >= 0x20 && lose < 0x7f)))
1590 : (lose >= 0x20 && lose < 0x7f))
1591 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1592 >= MODIFF)
1593 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1594 >= OVERLAY_MODIFF)
1595 && (XFASTINT (XWINDOW (selected_window)->last_point)
1596 == PT + 1)
1597 && !windows_or_buffers_changed
1598 && EQ (current_buffer->selective_display, Qnil)
1599 && !detect_input_pending ()
1600 && NILP (XWINDOW (selected_window)->column_number_displayed)
1601 && NILP (Vexecuting_macro))
1602 direct_output_forward_char (-1);
1603 goto directly_done;
1605 else if (EQ (Vthis_command, Qself_insert_command)
1606 /* Try this optimization only on ascii keystrokes. */
1607 && INTEGERP (last_command_char))
1609 unsigned int c = XINT (last_command_char);
1610 int value;
1611 if (NILP (Vexecuting_macro)
1612 && !EQ (minibuf_window, selected_window))
1614 if (!nonundocount || nonundocount >= 20)
1616 Fundo_boundary ();
1617 nonundocount = 0;
1619 nonundocount++;
1622 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1623 < MODIFF)
1624 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1625 < OVERLAY_MODIFF)
1626 || (XFASTINT (XWINDOW (selected_window)->last_point)
1627 != PT)
1628 || MODIFF <= SAVE_MODIFF
1629 || windows_or_buffers_changed
1630 || !EQ (current_buffer->selective_display, Qnil)
1631 || detect_input_pending ()
1632 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1633 || !NILP (Vexecuting_macro));
1635 value = internal_self_insert (c, 0);
1637 if (value == 2)
1638 nonundocount = 0;
1640 /* VALUE == 1 when AFTER-CHANGE functions are
1641 installed which is the case most of the time
1642 because FONT-LOCK installs one. */
1643 if (!lose && !value)
1644 direct_output_for_insert (c);
1645 goto directly_done;
1649 /* Here for a command that isn't executed directly */
1651 #ifdef HAVE_X_WINDOWS
1652 if (display_hourglass_p)
1653 start_hourglass ();
1654 #endif
1656 nonundocount = 0;
1657 if (NILP (current_kboard->Vprefix_arg))
1658 Fundo_boundary ();
1659 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1661 #ifdef HAVE_X_WINDOWS
1662 /* Do not check display_hourglass_p here, because
1663 Fcommand_execute could change it, but we should cancel
1664 hourglass cursor anyway. */
1665 cancel_hourglass ();
1666 #endif
1668 directly_done: ;
1669 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1671 /* Note that the value cell will never directly contain nil
1672 if the symbol is a local variable. */
1673 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1674 safe_run_hooks (Qpost_command_hook);
1676 /* If displaying a message, resize the echo area window to fit
1677 that message's size exactly. */
1678 if (!NILP (echo_area_buffer[0]))
1679 resize_echo_area_exactly ();
1681 if (!NILP (Vdeferred_action_list))
1682 safe_run_hooks (Qdeferred_action_function);
1684 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1686 if (NILP (Vunread_command_events)
1687 && NILP (Vunread_input_method_events)
1688 && NILP (Vunread_post_input_method_events)
1689 && NILP (Vexecuting_macro)
1690 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1691 safe_run_hooks (Qpost_command_idle_hook);
1694 /* If there is a prefix argument,
1695 1) We don't want Vlast_command to be ``universal-argument''
1696 (that would be dumb), so don't set Vlast_command,
1697 2) we want to leave echoing on so that the prefix will be
1698 echoed as part of this key sequence, so don't call
1699 cancel_echoing, and
1700 3) we want to leave this_command_key_count non-zero, so that
1701 read_char will realize that it is re-reading a character, and
1702 not echo it a second time.
1704 If the command didn't actually create a prefix arg,
1705 but is merely a frame event that is transparent to prefix args,
1706 then the above doesn't apply. */
1707 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1709 current_kboard->Vlast_command = Vthis_command;
1710 current_kboard->Vreal_last_command = real_this_command;
1711 cancel_echoing ();
1712 this_command_key_count = 0;
1713 this_single_command_key_start = 0;
1716 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1718 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1720 current_buffer->mark_active = Qnil;
1721 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1723 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1724 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1727 finalize:
1729 if (current_buffer == prev_buffer
1730 && last_point_position != PT
1731 && NILP (Vdisable_point_adjustment)
1732 && NILP (Vglobal_disable_point_adjustment))
1733 adjust_point_for_property (last_point_position);
1735 /* Install chars successfully executed in kbd macro. */
1737 if (!NILP (current_kboard->defining_kbd_macro)
1738 && NILP (current_kboard->Vprefix_arg))
1739 finalize_kbd_macro_chars ();
1741 #ifdef MULTI_KBOARD
1742 if (!was_locked)
1743 any_kboard_state ();
1744 #endif
1748 extern Lisp_Object Qcomposition, Qdisplay;
1750 /* Adjust point to a boundary of a region that has such a property
1751 that should be treated intangible. For the moment, we check
1752 `composition' and `display' property. LAST_PT is the last position
1753 of point. */
1755 static void
1756 adjust_point_for_property (last_pt)
1757 int last_pt;
1759 int start, end;
1760 Lisp_Object val;
1761 int check_composition = 1, check_display = 1;
1763 while (check_composition || check_display)
1765 if (check_composition
1766 && PT > BEGV && PT < ZV
1767 && get_property_and_range (PT, Qcomposition, &val, &start, &end, Qnil)
1768 && COMPOSITION_VALID_P (start, end, val)
1769 && start < PT && end > PT
1770 && (last_pt <= start || last_pt >= end))
1772 if (PT < last_pt)
1773 SET_PT (start);
1774 else
1775 SET_PT (end);
1776 check_display = 1;
1778 check_composition = 0;
1779 if (check_display
1780 && PT > BEGV && PT < ZV
1781 && get_property_and_range (PT, Qdisplay, &val, &start, &end, Qnil)
1782 && display_prop_intangible_p (val)
1783 && start < PT && end > PT
1784 && (last_pt <= start || last_pt >= end))
1786 if (PT < last_pt)
1787 SET_PT (start);
1788 else
1789 SET_PT (end);
1790 check_composition = 1;
1792 check_display = 0;
1796 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1798 static Lisp_Object
1799 safe_run_hooks_1 (hook)
1800 Lisp_Object hook;
1802 return call1 (Vrun_hooks, Vinhibit_quit);
1805 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1807 static Lisp_Object
1808 safe_run_hooks_error (data)
1809 Lisp_Object data;
1811 return Fset (Vinhibit_quit, Qnil);
1814 /* If we get an error while running the hook, cause the hook variable
1815 to be nil. Also inhibit quits, so that C-g won't cause the hook
1816 to mysteriously evaporate. */
1818 void
1819 safe_run_hooks (hook)
1820 Lisp_Object hook;
1822 int count = specpdl_ptr - specpdl;
1823 specbind (Qinhibit_quit, hook);
1825 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1827 unbind_to (count, Qnil);
1831 /* Number of seconds between polling for input. This is a Lisp
1832 variable that can be bound. */
1834 EMACS_INT polling_period;
1836 /* Nonzero means polling for input is temporarily suppressed. */
1838 int poll_suppress_count;
1840 /* Asynchronous timer for polling. */
1842 struct atimer *poll_timer;
1845 #ifdef POLL_FOR_INPUT
1847 /* Poll for input, so what we catch a C-g if it comes in. This
1848 function is called from x_make_frame_visible, see comment
1849 there. */
1851 void
1852 poll_for_input_1 ()
1854 if (interrupt_input_blocked == 0
1855 && !waiting_for_input)
1856 read_avail_input (0);
1859 /* Timer callback function for poll_timer. TIMER is equal to
1860 poll_timer. */
1862 void
1863 poll_for_input (timer)
1864 struct atimer *timer;
1866 if (poll_suppress_count == 0)
1867 poll_for_input_1 ();
1870 #endif /* POLL_FOR_INPUT */
1872 /* Begin signals to poll for input, if they are appropriate.
1873 This function is called unconditionally from various places. */
1875 void
1876 start_polling ()
1878 #ifdef POLL_FOR_INPUT
1879 if (read_socket_hook && !interrupt_input)
1881 /* Turn alarm handling on unconditionally. It might have
1882 been turned off in process.c. */
1883 turn_on_atimers (1);
1885 /* If poll timer doesn't exist, are we need one with
1886 a different interval, start a new one. */
1887 if (poll_timer == NULL
1888 || EMACS_SECS (poll_timer->interval) != polling_period)
1890 EMACS_TIME interval;
1892 if (poll_timer)
1893 cancel_atimer (poll_timer);
1895 EMACS_SET_SECS_USECS (interval, polling_period, 0);
1896 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
1897 poll_for_input, NULL);
1900 /* Let the timer's callback function poll for input
1901 if this becomes zero. */
1902 --poll_suppress_count;
1904 #endif
1907 /* Nonzero if we are using polling to handle input asynchronously. */
1910 input_polling_used ()
1912 #ifdef POLL_FOR_INPUT
1913 return read_socket_hook && !interrupt_input;
1914 #else
1915 return 0;
1916 #endif
1919 /* Turn off polling. */
1921 void
1922 stop_polling ()
1924 #ifdef POLL_FOR_INPUT
1925 if (read_socket_hook && !interrupt_input)
1926 ++poll_suppress_count;
1927 #endif
1930 /* Set the value of poll_suppress_count to COUNT
1931 and start or stop polling accordingly. */
1933 void
1934 set_poll_suppress_count (count)
1935 int count;
1937 #ifdef POLL_FOR_INPUT
1938 if (count == 0 && poll_suppress_count != 0)
1940 poll_suppress_count = 1;
1941 start_polling ();
1943 else if (count != 0 && poll_suppress_count == 0)
1945 stop_polling ();
1947 poll_suppress_count = count;
1948 #endif
1951 /* Bind polling_period to a value at least N.
1952 But don't decrease it. */
1954 void
1955 bind_polling_period (n)
1956 int n;
1958 #ifdef POLL_FOR_INPUT
1959 int new = polling_period;
1961 if (n > new)
1962 new = n;
1964 stop_other_atimers (poll_timer);
1965 stop_polling ();
1966 specbind (Qpolling_period, make_number (new));
1967 /* Start a new alarm with the new period. */
1968 start_polling ();
1969 #endif
1972 /* Apply the control modifier to CHARACTER. */
1975 make_ctrl_char (c)
1976 int c;
1978 /* Save the upper bits here. */
1979 int upper = c & ~0177;
1981 c &= 0177;
1983 /* Everything in the columns containing the upper-case letters
1984 denotes a control character. */
1985 if (c >= 0100 && c < 0140)
1987 int oc = c;
1988 c &= ~0140;
1989 /* Set the shift modifier for a control char
1990 made from a shifted letter. But only for letters! */
1991 if (oc >= 'A' && oc <= 'Z')
1992 c |= shift_modifier;
1995 /* The lower-case letters denote control characters too. */
1996 else if (c >= 'a' && c <= 'z')
1997 c &= ~0140;
1999 /* Include the bits for control and shift
2000 only if the basic ASCII code can't indicate them. */
2001 else if (c >= ' ')
2002 c |= ctrl_modifier;
2004 /* Replace the high bits. */
2005 c |= (upper & ~ctrl_modifier);
2007 return c;
2010 /* Display help echo in the echo area.
2012 HELP a string means display that string, HELP nil means clear the
2013 help echo. If HELP is a function, call it with OBJECT and POS as
2014 arguments; the function should return a help string or nil for
2015 none. For all other types of HELP evaluate it to obtain a string.
2017 WINDOW is the window in which the help was generated, if any.
2018 It is nil if not in a window.
2020 If OBJECT is a buffer, POS is the position in the buffer where the
2021 `help-echo' text property was found.
2023 If OBJECT is an overlay, that overlay has a `help-echo' property,
2024 and POS is the position in the overlay's buffer under the mouse.
2026 If OBJECT is a string (an overlay string or a string displayed with
2027 the `display' property). POS is the position in that string under
2028 the mouse.
2030 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2031 echo overwrites a keystroke echo currently displayed in the echo
2032 area.
2034 Note: this function may only be called with HELP nil or a string
2035 from X code running asynchronously. */
2037 void
2038 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2039 Lisp_Object help, window, object, pos;
2040 int ok_to_overwrite_keystroke_echo;
2042 if (!NILP (help) && !STRINGP (help))
2044 if (FUNCTIONP (help))
2046 Lisp_Object args[4];
2047 args[0] = help;
2048 args[1] = window;
2049 args[2] = object;
2050 args[3] = pos;
2051 help = safe_call (4, args);
2053 else
2054 help = safe_eval (help);
2056 if (!STRINGP (help))
2057 return;
2060 if (STRINGP (help) || NILP (help))
2062 if (!NILP (Vshow_help_function))
2063 call1 (Vshow_help_function, help);
2064 else if (/* Don't overwrite minibuffer contents. */
2065 !MINI_WINDOW_P (XWINDOW (selected_window))
2066 /* Don't overwrite a keystroke echo. */
2067 && (NILP (echo_message_buffer)
2068 || ok_to_overwrite_keystroke_echo)
2069 /* Don't overwrite a prompt. */
2070 && !cursor_in_echo_area)
2072 if (STRINGP (help))
2074 int count = BINDING_STACK_SIZE ();
2076 if (!help_echo_showing_p)
2077 Vpre_help_message = current_message ();
2079 specbind (Qmessage_truncate_lines, Qt);
2080 message3_nolog (help, STRING_BYTES (XSTRING (help)),
2081 STRING_MULTIBYTE (help));
2082 unbind_to (count, Qnil);
2084 else if (STRINGP (Vpre_help_message))
2086 message3_nolog (Vpre_help_message,
2087 STRING_BYTES (XSTRING (Vpre_help_message)),
2088 STRING_MULTIBYTE (Vpre_help_message));
2089 Vpre_help_message = Qnil;
2091 else
2092 message (0);
2095 help_echo_showing_p = STRINGP (help);
2101 /* Input of single characters from keyboard */
2103 Lisp_Object print_help ();
2104 static Lisp_Object kbd_buffer_get_event ();
2105 static void record_char ();
2107 #ifdef MULTI_KBOARD
2108 static jmp_buf wrong_kboard_jmpbuf;
2109 #endif
2111 /* read a character from the keyboard; call the redisplay if needed */
2112 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2113 -1 means do not do redisplay, but do do autosaving.
2114 1 means do both. */
2116 /* The arguments MAPS and NMAPS are for menu prompting.
2117 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2119 PREV_EVENT is the previous input event, or nil if we are reading
2120 the first event of a key sequence (or not reading a key sequence).
2121 If PREV_EVENT is t, that is a "magic" value that says
2122 not to run input methods, but in other respects to act as if
2123 not reading a key sequence.
2125 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2126 if we used a mouse menu to read the input, or zero otherwise. If
2127 USED_MOUSE_MENU is null, we don't dereference it.
2129 Value is t if we showed a menu and the user rejected it. */
2131 Lisp_Object
2132 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
2133 int commandflag;
2134 int nmaps;
2135 Lisp_Object *maps;
2136 Lisp_Object prev_event;
2137 int *used_mouse_menu;
2139 volatile Lisp_Object c;
2140 int count;
2141 jmp_buf local_getcjmp;
2142 jmp_buf save_jump;
2143 volatile int key_already_recorded = 0;
2144 Lisp_Object tem, save;
2145 volatile Lisp_Object previous_echo_area_message;
2146 volatile Lisp_Object also_record;
2147 volatile int reread;
2148 struct gcpro gcpro1, gcpro2;
2149 EMACS_TIME last_idle_start;
2151 also_record = Qnil;
2153 before_command_key_count = this_command_key_count;
2154 before_command_echo_length = echo_length ();
2155 c = Qnil;
2156 previous_echo_area_message = Qnil;
2158 GCPRO2 (c, previous_echo_area_message);
2160 retry:
2162 reread = 0;
2163 if (CONSP (Vunread_post_input_method_events))
2165 c = XCAR (Vunread_post_input_method_events);
2166 Vunread_post_input_method_events
2167 = XCDR (Vunread_post_input_method_events);
2169 /* Undo what read_char_x_menu_prompt did when it unread
2170 additional keys returned by Fx_popup_menu. */
2171 if (CONSP (c)
2172 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2173 && NILP (XCDR (c)))
2174 c = XCAR (c);
2176 reread = 1;
2177 goto reread_first;
2180 if (unread_command_char != -1)
2182 XSETINT (c, unread_command_char);
2183 unread_command_char = -1;
2185 reread = 1;
2186 goto reread_first;
2189 if (CONSP (Vunread_command_events))
2191 c = XCAR (Vunread_command_events);
2192 Vunread_command_events = XCDR (Vunread_command_events);
2194 /* Undo what read_char_x_menu_prompt did when it unread
2195 additional keys returned by Fx_popup_menu. */
2196 if (CONSP (c)
2197 && EQ (XCDR (c), Qdisabled)
2198 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2199 c = XCAR (c);
2201 /* If the queued event is something that used the mouse,
2202 set used_mouse_menu accordingly. */
2203 if (used_mouse_menu
2204 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2205 *used_mouse_menu = 1;
2207 reread = 1;
2208 goto reread_for_input_method;
2211 if (CONSP (Vunread_input_method_events))
2213 c = XCAR (Vunread_input_method_events);
2214 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2216 /* Undo what read_char_x_menu_prompt did when it unread
2217 additional keys returned by Fx_popup_menu. */
2218 if (CONSP (c)
2219 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2220 && NILP (XCDR (c)))
2221 c = XCAR (c);
2222 reread = 1;
2223 goto reread_for_input_method;
2226 /* If there is no function key translated before
2227 reset-this-command-lengths takes effect, forget about it. */
2228 before_command_restore_flag = 0;
2230 if (!NILP (Vexecuting_macro))
2232 /* We set this to Qmacro; since that's not a frame, nobody will
2233 try to switch frames on us, and the selected window will
2234 remain unchanged.
2236 Since this event came from a macro, it would be misleading to
2237 leave internal_last_event_frame set to wherever the last
2238 real event came from. Normally, a switch-frame event selects
2239 internal_last_event_frame after each command is read, but
2240 events read from a macro should never cause a new frame to be
2241 selected. */
2242 Vlast_event_frame = internal_last_event_frame = Qmacro;
2244 /* Exit the macro if we are at the end.
2245 Also, some things replace the macro with t
2246 to force an early exit. */
2247 if (EQ (Vexecuting_macro, Qt)
2248 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
2250 XSETINT (c, -1);
2251 RETURN_UNGCPRO (c);
2254 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
2255 if (STRINGP (Vexecuting_macro)
2256 && (XINT (c) & 0x80))
2257 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2259 executing_macro_index++;
2261 goto from_macro;
2264 if (!NILP (unread_switch_frame))
2266 c = unread_switch_frame;
2267 unread_switch_frame = Qnil;
2269 /* This event should make it into this_command_keys, and get echoed
2270 again, so we do not set `reread'. */
2271 goto reread_first;
2274 /* if redisplay was requested */
2275 if (commandflag >= 0)
2277 /* If there is pending input, process any events which are not
2278 user-visible, such as X selection_request events. */
2279 if (input_pending
2280 || detect_input_pending_run_timers (0))
2281 swallow_events (0); /* may clear input_pending */
2283 /* Redisplay if no pending input. */
2284 while (!input_pending)
2286 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2287 redisplay_preserve_echo_area (5);
2288 else
2289 redisplay ();
2291 if (!input_pending)
2292 /* Normal case: no input arrived during redisplay. */
2293 break;
2295 /* Input arrived and pre-empted redisplay.
2296 Process any events which are not user-visible. */
2297 swallow_events (0);
2298 /* If that cleared input_pending, try again to redisplay. */
2302 /* Message turns off echoing unless more keystrokes turn it on again.
2304 The code in 20.x for the condition was
2306 1. echo_area_glyphs && *echo_area_glyphs
2307 2. && echo_area_glyphs != current_kboard->echobuf
2308 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2310 (1) means there's a current message displayed
2312 (2) means it's not the message from echoing from the current
2313 kboard.
2315 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2316 is set to a non-null value. This is done in read_char and it is
2317 set to echo_area_glyphs after a call to echo_char. That means
2318 ok_to_echo_at_next_pause is either null or
2319 current_kboard->echobuf with the appropriate current_kboard at
2320 that time.
2322 So, condition (3) means in clear text ok_to_echo_at_next_pause
2323 must be either null, or the current message isn't from echoing at
2324 all, or it's from echoing from a different kboard than the
2325 current one. */
2327 if (/* There currently is something in the echo area. */
2328 !NILP (echo_area_buffer[0])
2329 && (/* And it's either not from echoing. */
2330 !EQ (echo_area_buffer[0], echo_message_buffer)
2331 /* Or it's an echo from a different kboard. */
2332 || echo_kboard != current_kboard
2333 /* Or we explicitly allow overwriting whatever there is. */
2334 || ok_to_echo_at_next_pause == NULL))
2335 cancel_echoing ();
2336 else
2337 echo_dash ();
2339 /* Try reading a character via menu prompting in the minibuf.
2340 Try this before the sit-for, because the sit-for
2341 would do the wrong thing if we are supposed to do
2342 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2343 after a mouse event so don't try a minibuf menu. */
2344 c = Qnil;
2345 if (nmaps > 0 && INTERACTIVE
2346 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2347 /* Don't bring up a menu if we already have another event. */
2348 && NILP (Vunread_command_events)
2349 && unread_command_char < 0
2350 && !detect_input_pending_run_timers (0))
2352 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2353 if (! NILP (c))
2355 key_already_recorded = 1;
2356 goto non_reread_1;
2360 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2361 We will do that below, temporarily for short sections of code,
2362 when appropriate. local_getcjmp must be in effect
2363 around any call to sit_for or kbd_buffer_get_event;
2364 it *must not* be in effect when we call redisplay. */
2366 if (_setjmp (local_getcjmp))
2368 XSETINT (c, quit_char);
2369 internal_last_event_frame = selected_frame;
2370 Vlast_event_frame = internal_last_event_frame;
2371 /* If we report the quit char as an event,
2372 don't do so more than once. */
2373 if (!NILP (Vinhibit_quit))
2374 Vquit_flag = Qnil;
2376 #ifdef MULTI_KBOARD
2378 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2379 if (kb != current_kboard)
2381 Lisp_Object link = kb->kbd_queue;
2382 /* We shouldn't get here if we were in single-kboard mode! */
2383 if (single_kboard)
2384 abort ();
2385 if (CONSP (link))
2387 while (CONSP (XCDR (link)))
2388 link = XCDR (link);
2389 if (!NILP (XCDR (link)))
2390 abort ();
2392 if (!CONSP (link))
2393 kb->kbd_queue = Fcons (c, Qnil);
2394 else
2395 XSETCDR (link, Fcons (c, Qnil));
2396 kb->kbd_queue_has_data = 1;
2397 current_kboard = kb;
2398 /* This is going to exit from read_char
2399 so we had better get rid of this frame's stuff. */
2400 UNGCPRO;
2401 longjmp (wrong_kboard_jmpbuf, 1);
2404 #endif
2405 goto non_reread;
2408 timer_start_idle ();
2410 /* If in middle of key sequence and minibuffer not active,
2411 start echoing if enough time elapses. */
2413 if (minibuf_level == 0
2414 && !current_kboard->immediate_echo
2415 && this_command_key_count > 0
2416 && ! noninteractive
2417 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2418 && NILP (Fzerop (Vecho_keystrokes))
2419 && (/* No message. */
2420 NILP (echo_area_buffer[0])
2421 /* Or empty message. */
2422 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2423 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2424 /* Or already echoing from same kboard. */
2425 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2426 /* Or not echoing before and echoing allowed. */
2427 || (!echo_kboard && ok_to_echo_at_next_pause)))
2429 Lisp_Object tem0;
2431 /* After a mouse event, start echoing right away.
2432 This is because we are probably about to display a menu,
2433 and we don't want to delay before doing so. */
2434 if (EVENT_HAS_PARAMETERS (prev_event))
2435 echo_now ();
2436 else
2438 int sec, usec;
2439 double duration = extract_float (Vecho_keystrokes);
2440 sec = (int) duration;
2441 usec = (duration - sec) * 1000000;
2442 save_getcjmp (save_jump);
2443 restore_getcjmp (local_getcjmp);
2444 tem0 = sit_for (sec, usec, 1, 1, 0);
2445 restore_getcjmp (save_jump);
2446 if (EQ (tem0, Qt)
2447 && ! CONSP (Vunread_command_events))
2448 echo_now ();
2452 /* Maybe auto save due to number of keystrokes. */
2454 if (commandflag != 0
2455 && auto_save_interval > 0
2456 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2457 && !detect_input_pending_run_timers (0))
2459 Fdo_auto_save (Qnil, Qnil);
2460 /* Hooks can actually change some buffers in auto save. */
2461 redisplay ();
2464 /* Try reading using an X menu.
2465 This is never confused with reading using the minibuf
2466 because the recursive call of read_char in read_char_minibuf_menu_prompt
2467 does not pass on any keymaps. */
2469 if (nmaps > 0 && INTERACTIVE
2470 && !NILP (prev_event)
2471 && EVENT_HAS_PARAMETERS (prev_event)
2472 && !EQ (XCAR (prev_event), Qmenu_bar)
2473 && !EQ (XCAR (prev_event), Qtool_bar)
2474 /* Don't bring up a menu if we already have another event. */
2475 && NILP (Vunread_command_events)
2476 && unread_command_char < 0)
2478 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2480 /* Now that we have read an event, Emacs is not idle. */
2481 timer_stop_idle ();
2483 RETURN_UNGCPRO (c);
2486 /* Maybe autosave and/or garbage collect due to idleness. */
2488 if (INTERACTIVE && NILP (c))
2490 int delay_level, buffer_size;
2492 /* Slow down auto saves logarithmically in size of current buffer,
2493 and garbage collect while we're at it. */
2494 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2495 last_non_minibuf_size = Z - BEG;
2496 buffer_size = (last_non_minibuf_size >> 8) + 1;
2497 delay_level = 0;
2498 while (buffer_size > 64)
2499 delay_level++, buffer_size -= buffer_size >> 2;
2500 if (delay_level < 4) delay_level = 4;
2501 /* delay_level is 4 for files under around 50k, 7 at 100k,
2502 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2504 /* Auto save if enough time goes by without input. */
2505 if (commandflag != 0
2506 && num_nonmacro_input_events > last_auto_save
2507 && INTEGERP (Vauto_save_timeout)
2508 && XINT (Vauto_save_timeout) > 0)
2510 Lisp_Object tem0;
2512 save_getcjmp (save_jump);
2513 restore_getcjmp (local_getcjmp);
2514 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
2515 0, 1, 1, 0);
2516 restore_getcjmp (save_jump);
2518 if (EQ (tem0, Qt)
2519 && ! CONSP (Vunread_command_events))
2521 Fdo_auto_save (Qnil, Qnil);
2523 /* If we have auto-saved and there is still no input
2524 available, garbage collect if there has been enough
2525 consing going on to make it worthwhile. */
2526 if (!detect_input_pending_run_timers (0)
2527 && consing_since_gc > gc_cons_threshold / 2)
2528 Fgarbage_collect ();
2530 redisplay ();
2535 /* If this has become non-nil here, it has been set by a timer
2536 or sentinel or filter. */
2537 if (CONSP (Vunread_command_events))
2539 c = XCAR (Vunread_command_events);
2540 Vunread_command_events = XCDR (Vunread_command_events);
2543 /* Read something from current KBOARD's side queue, if possible. */
2545 if (NILP (c))
2547 if (current_kboard->kbd_queue_has_data)
2549 if (!CONSP (current_kboard->kbd_queue))
2550 abort ();
2551 c = XCAR (current_kboard->kbd_queue);
2552 current_kboard->kbd_queue
2553 = XCDR (current_kboard->kbd_queue);
2554 if (NILP (current_kboard->kbd_queue))
2555 current_kboard->kbd_queue_has_data = 0;
2556 input_pending = readable_events (0);
2557 if (EVENT_HAS_PARAMETERS (c)
2558 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2559 internal_last_event_frame = XCAR (XCDR (c));
2560 Vlast_event_frame = internal_last_event_frame;
2564 #ifdef MULTI_KBOARD
2565 /* If current_kboard's side queue is empty check the other kboards.
2566 If one of them has data that we have not yet seen here,
2567 switch to it and process the data waiting for it.
2569 Note: if the events queued up for another kboard
2570 have already been seen here, and therefore are not a complete command,
2571 the kbd_queue_has_data field is 0, so we skip that kboard here.
2572 That's to avoid an infinite loop switching between kboards here. */
2573 if (NILP (c) && !single_kboard)
2575 KBOARD *kb;
2576 for (kb = all_kboards; kb; kb = kb->next_kboard)
2577 if (kb->kbd_queue_has_data)
2579 current_kboard = kb;
2580 /* This is going to exit from read_char
2581 so we had better get rid of this frame's stuff. */
2582 UNGCPRO;
2583 longjmp (wrong_kboard_jmpbuf, 1);
2586 #endif
2588 wrong_kboard:
2590 stop_polling ();
2592 /* Finally, we read from the main queue,
2593 and if that gives us something we can't use yet, we put it on the
2594 appropriate side queue and try again. */
2596 if (NILP (c))
2598 KBOARD *kb;
2600 /* Actually read a character, waiting if necessary. */
2601 save_getcjmp (save_jump);
2602 restore_getcjmp (local_getcjmp);
2603 timer_start_idle ();
2604 c = kbd_buffer_get_event (&kb, used_mouse_menu);
2605 restore_getcjmp (save_jump);
2607 #ifdef MULTI_KBOARD
2608 if (! NILP (c) && (kb != current_kboard))
2610 Lisp_Object link = kb->kbd_queue;
2611 if (CONSP (link))
2613 while (CONSP (XCDR (link)))
2614 link = XCDR (link);
2615 if (!NILP (XCDR (link)))
2616 abort ();
2618 if (!CONSP (link))
2619 kb->kbd_queue = Fcons (c, Qnil);
2620 else
2621 XSETCDR (link, Fcons (c, Qnil));
2622 kb->kbd_queue_has_data = 1;
2623 c = Qnil;
2624 if (single_kboard)
2625 goto wrong_kboard;
2626 current_kboard = kb;
2627 /* This is going to exit from read_char
2628 so we had better get rid of this frame's stuff. */
2629 UNGCPRO;
2630 longjmp (wrong_kboard_jmpbuf, 1);
2632 #endif
2635 /* Terminate Emacs in batch mode if at eof. */
2636 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2637 Fkill_emacs (make_number (1));
2639 if (INTEGERP (c))
2641 /* Add in any extra modifiers, where appropriate. */
2642 if ((extra_keyboard_modifiers & CHAR_CTL)
2643 || ((extra_keyboard_modifiers & 0177) < ' '
2644 && (extra_keyboard_modifiers & 0177) != 0))
2645 XSETINT (c, make_ctrl_char (XINT (c)));
2647 /* Transfer any other modifier bits directly from
2648 extra_keyboard_modifiers to c. Ignore the actual character code
2649 in the low 16 bits of extra_keyboard_modifiers. */
2650 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2653 non_reread:
2655 /* Record the last idle start time so that we can reset it
2656 should the next event read be a help-echo. */
2657 last_idle_start = timer_idleness_start_time;
2658 timer_stop_idle ();
2659 start_polling ();
2661 if (NILP (c))
2663 if (commandflag >= 0
2664 && !input_pending && !detect_input_pending_run_timers (0))
2665 redisplay ();
2667 goto wrong_kboard;
2670 non_reread_1:
2672 /* Buffer switch events are only for internal wakeups
2673 so don't show them to the user.
2674 Also, don't record a key if we already did. */
2675 if (BUFFERP (c) || key_already_recorded)
2676 RETURN_UNGCPRO (c);
2678 /* Process special events within read_char
2679 and loop around to read another event. */
2680 save = Vquit_flag;
2681 Vquit_flag = Qnil;
2682 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2683 Vquit_flag = save;
2685 if (!NILP (tem))
2687 int was_locked = single_kboard;
2689 last_input_char = c;
2690 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2692 /* Resume allowing input from any kboard, if that was true before. */
2693 if (!was_locked)
2694 any_kboard_state ();
2696 goto retry;
2699 /* Handle things that only apply to characters. */
2700 if (INTEGERP (c))
2702 /* If kbd_buffer_get_event gave us an EOF, return that. */
2703 if (XINT (c) == -1)
2704 RETURN_UNGCPRO (c);
2706 if ((STRINGP (Vkeyboard_translate_table)
2707 && XSTRING (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2708 || (VECTORP (Vkeyboard_translate_table)
2709 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2710 || (CHAR_TABLE_P (Vkeyboard_translate_table)
2711 && CHAR_TABLE_ORDINARY_SLOTS > (unsigned) XFASTINT (c)))
2713 Lisp_Object d;
2714 d = Faref (Vkeyboard_translate_table, c);
2715 /* nil in keyboard-translate-table means no translation. */
2716 if (!NILP (d))
2717 c = d;
2721 /* If this event is a mouse click in the menu bar,
2722 return just menu-bar for now. Modify the mouse click event
2723 so we won't do this twice, then queue it up. */
2724 if (EVENT_HAS_PARAMETERS (c)
2725 && CONSP (XCDR (c))
2726 && CONSP (EVENT_START (c))
2727 && CONSP (XCDR (EVENT_START (c))))
2729 Lisp_Object posn;
2731 posn = POSN_BUFFER_POSN (EVENT_START (c));
2732 /* Handle menu-bar events:
2733 insert the dummy prefix event `menu-bar'. */
2734 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2736 /* Change menu-bar to (menu-bar) as the event "position". */
2737 POSN_BUFFER_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
2739 also_record = c;
2740 Vunread_command_events = Fcons (c, Vunread_command_events);
2741 c = posn;
2745 /* Store these characters into recent_keys, the dribble file if any,
2746 and the keyboard macro being defined, if any. */
2747 record_char (c);
2748 if (! NILP (also_record))
2749 record_char (also_record);
2751 /* Wipe the echo area.
2752 But first, if we are about to use an input method,
2753 save the echo area contents for it to refer to. */
2754 if (INTEGERP (c)
2755 && ! NILP (Vinput_method_function)
2756 && (unsigned) XINT (c) >= ' '
2757 && (unsigned) XINT (c) != 127
2758 && (unsigned) XINT (c) < 256)
2760 previous_echo_area_message = Fcurrent_message ();
2761 Vinput_method_previous_message = previous_echo_area_message;
2764 /* Now wipe the echo area, except for help events which do their
2765 own stuff with the echo area. */
2766 if (!CONSP (c)
2767 || (!(EQ (Qhelp_echo, XCAR (c)))
2768 && !(EQ (Qswitch_frame, XCAR (c)))))
2770 if (!NILP (echo_area_buffer[0]))
2771 safe_run_hooks (Qecho_area_clear_hook);
2772 clear_message (1, 0);
2775 reread_for_input_method:
2776 from_macro:
2777 /* Pass this to the input method, if appropriate. */
2778 if (INTEGERP (c)
2779 && ! NILP (Vinput_method_function)
2780 /* Don't run the input method within a key sequence,
2781 after the first event of the key sequence. */
2782 && NILP (prev_event)
2783 && (unsigned) XINT (c) >= ' '
2784 && (unsigned) XINT (c) != 127
2785 && (unsigned) XINT (c) < 256)
2787 Lisp_Object keys;
2788 int key_count;
2789 struct gcpro gcpro1;
2790 int count = specpdl_ptr - specpdl;
2792 /* Save the echo status. */
2793 int saved_immediate_echo = current_kboard->immediate_echo;
2794 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
2795 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
2797 if (before_command_restore_flag)
2799 this_command_key_count = before_command_key_count_1;
2800 if (this_command_key_count < this_single_command_key_start)
2801 this_single_command_key_start = this_command_key_count;
2802 echo_truncate (before_command_echo_length_1);
2803 before_command_restore_flag = 0;
2806 /* Save the this_command_keys status. */
2807 key_count = this_command_key_count;
2809 if (key_count > 0)
2810 keys = Fcopy_sequence (this_command_keys);
2811 else
2812 keys = Qnil;
2813 GCPRO1 (keys);
2815 /* Clear out this_command_keys. */
2816 this_command_key_count = 0;
2818 /* Now wipe the echo area. */
2819 if (!NILP (echo_area_buffer[0]))
2820 safe_run_hooks (Qecho_area_clear_hook);
2821 clear_message (1, 0);
2822 echo_truncate (0);
2824 /* If we are not reading a key sequence,
2825 never use the echo area. */
2826 if (maps == 0)
2828 specbind (Qinput_method_use_echo_area, Qt);
2831 /* Call the input method. */
2832 tem = call1 (Vinput_method_function, c);
2834 tem = unbind_to (count, tem);
2836 /* Restore the saved echoing state
2837 and this_command_keys state. */
2838 this_command_key_count = key_count;
2839 if (key_count > 0)
2840 this_command_keys = keys;
2842 cancel_echoing ();
2843 ok_to_echo_at_next_pause = saved_ok_to_echo;
2844 current_kboard->echo_after_prompt = saved_echo_after_prompt;
2845 if (saved_immediate_echo)
2846 echo_now ();
2848 UNGCPRO;
2850 /* The input method can return no events. */
2851 if (! CONSP (tem))
2853 /* Bring back the previous message, if any. */
2854 if (! NILP (previous_echo_area_message))
2855 message_with_string ("%s", previous_echo_area_message, 0);
2856 goto retry;
2858 /* It returned one event or more. */
2859 c = XCAR (tem);
2860 Vunread_post_input_method_events
2861 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
2864 reread_first:
2866 /* Display help if not echoing. */
2867 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
2869 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
2870 Lisp_Object help, object, position, window, tem;
2872 tem = Fcdr (XCDR (c));
2873 help = Fcar (tem);
2874 tem = Fcdr (tem);
2875 window = Fcar (tem);
2876 tem = Fcdr (tem);
2877 object = Fcar (tem);
2878 tem = Fcdr (tem);
2879 position = Fcar (tem);
2881 show_help_echo (help, window, object, position, 0);
2883 /* We stopped being idle for this event; undo that. */
2884 timer_idleness_start_time = last_idle_start;
2885 goto retry;
2888 if (this_command_key_count == 0 || ! reread)
2890 before_command_key_count = this_command_key_count;
2891 before_command_echo_length = echo_length ();
2893 /* Don't echo mouse motion events. */
2894 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2895 && NILP (Fzerop (Vecho_keystrokes))
2896 && ! (EVENT_HAS_PARAMETERS (c)
2897 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
2899 echo_char (c);
2900 if (! NILP (also_record))
2901 echo_char (also_record);
2902 /* Once we reread a character, echoing can happen
2903 the next time we pause to read a new one. */
2904 ok_to_echo_at_next_pause = current_kboard;
2907 /* Record this character as part of the current key. */
2908 add_command_key (c);
2909 if (! NILP (also_record))
2910 add_command_key (also_record);
2913 last_input_char = c;
2914 num_input_events++;
2916 /* Process the help character specially if enabled */
2917 if (!NILP (Vhelp_form) && help_char_p (c))
2919 Lisp_Object tem0;
2920 count = specpdl_ptr - specpdl;
2922 record_unwind_protect (Fset_window_configuration,
2923 Fcurrent_window_configuration (Qnil));
2925 tem0 = Feval (Vhelp_form);
2926 if (STRINGP (tem0))
2927 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
2929 cancel_echoing ();
2931 c = read_char (0, 0, 0, Qnil, 0);
2932 while (BUFFERP (c));
2933 /* Remove the help from the frame */
2934 unbind_to (count, Qnil);
2936 redisplay ();
2937 if (EQ (c, make_number (040)))
2939 cancel_echoing ();
2941 c = read_char (0, 0, 0, Qnil, 0);
2942 while (BUFFERP (c));
2946 RETURN_UNGCPRO (c);
2949 /* Record a key that came from a mouse menu.
2950 Record it for echoing, for this-command-keys, and so on. */
2952 static void
2953 record_menu_key (c)
2954 Lisp_Object c;
2956 /* Wipe the echo area. */
2957 clear_message (1, 0);
2959 record_char (c);
2961 before_command_key_count = this_command_key_count;
2962 before_command_echo_length = echo_length ();
2964 /* Don't echo mouse motion events. */
2965 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2966 && NILP (Fzerop (Vecho_keystrokes)))
2968 echo_char (c);
2970 /* Once we reread a character, echoing can happen
2971 the next time we pause to read a new one. */
2972 ok_to_echo_at_next_pause = 0;
2975 /* Record this character as part of the current key. */
2976 add_command_key (c);
2978 /* Re-reading in the middle of a command */
2979 last_input_char = c;
2980 num_input_events++;
2983 /* Return 1 if should recognize C as "the help character". */
2986 help_char_p (c)
2987 Lisp_Object c;
2989 Lisp_Object tail;
2991 if (EQ (c, Vhelp_char))
2992 return 1;
2993 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
2994 if (EQ (c, XCAR (tail)))
2995 return 1;
2996 return 0;
2999 /* Record the input event C in various ways. */
3001 static void
3002 record_char (c)
3003 Lisp_Object c;
3005 int recorded = 0;
3007 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3009 /* To avoid filling recent_keys with help-echo and mouse-movement
3010 events, we filter out repeated help-echo events, only store the
3011 first and last in a series of mouse-movement events, and don't
3012 store repeated help-echo events which are only separated by
3013 mouse-movement events. */
3015 Lisp_Object ev1, ev2, ev3;
3016 int ix1, ix2, ix3;
3018 if ((ix1 = recent_keys_index - 1) < 0)
3019 ix1 = NUM_RECENT_KEYS - 1;
3020 ev1 = AREF (recent_keys, ix1);
3022 if ((ix2 = ix1 - 1) < 0)
3023 ix2 = NUM_RECENT_KEYS - 1;
3024 ev2 = AREF (recent_keys, ix2);
3026 if ((ix3 = ix2 - 1) < 0)
3027 ix3 = NUM_RECENT_KEYS - 1;
3028 ev3 = AREF (recent_keys, ix3);
3030 if (EQ (XCAR (c), Qhelp_echo))
3032 /* Don't record `help-echo' in recent_keys unless it shows some help
3033 message, and a different help than the previously recorded
3034 event. */
3035 Lisp_Object help, last_help;
3037 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3038 if (!STRINGP (help))
3039 recorded = 1;
3040 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3041 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3042 recorded = 1;
3043 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3044 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3045 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3046 recorded = -1;
3047 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3048 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3049 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3050 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3051 recorded = -2;
3053 else if (EQ (XCAR (c), Qmouse_movement))
3055 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3056 So additional mouse movement events replace the last element. */
3057 Lisp_Object last_window, window;
3059 window = Fcar_safe (Fcar_safe (XCDR (c)));
3060 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3061 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3062 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3063 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3065 ASET (recent_keys, ix1, c);
3066 recorded = 1;
3070 else
3071 store_kbd_macro_char (c);
3073 if (!recorded)
3075 total_keys++;
3076 ASET (recent_keys, recent_keys_index, c);
3077 if (++recent_keys_index >= NUM_RECENT_KEYS)
3078 recent_keys_index = 0;
3080 else if (recorded < 0)
3082 /* We need to remove one or two events from recent_keys.
3083 To do this, we simply put nil at those events and move the
3084 recent_keys_index backwards over those events. Usually,
3085 users will never see those nil events, as they will be
3086 overwritten by the command keys entered to see recent_keys
3087 (e.g. C-h l). */
3089 while (recorded++ < 0 && total_keys > 0)
3091 if (total_keys < NUM_RECENT_KEYS)
3092 total_keys--;
3093 if (--recent_keys_index < 0)
3094 recent_keys_index = NUM_RECENT_KEYS - 1;
3095 ASET (recent_keys, recent_keys_index, Qnil);
3099 num_nonmacro_input_events++;
3101 /* Write c to the dribble file. If c is a lispy event, write
3102 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3103 If you, dear reader, have a better idea, you've got the source. :-) */
3104 if (dribble)
3106 if (INTEGERP (c))
3108 if (XUINT (c) < 0x100)
3109 putc (XINT (c), dribble);
3110 else
3111 fprintf (dribble, " 0x%x", (int) XUINT (c));
3113 else
3115 Lisp_Object dribblee;
3117 /* If it's a structured event, take the event header. */
3118 dribblee = EVENT_HEAD (c);
3120 if (SYMBOLP (dribblee))
3122 putc ('<', dribble);
3123 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
3124 STRING_BYTES (XSYMBOL (dribblee)->name),
3125 dribble);
3126 putc ('>', dribble);
3130 fflush (dribble);
3134 Lisp_Object
3135 print_help (object)
3136 Lisp_Object object;
3138 struct buffer *old = current_buffer;
3139 Fprinc (object, Qnil);
3140 set_buffer_internal (XBUFFER (Vstandard_output));
3141 call0 (intern ("help-mode"));
3142 set_buffer_internal (old);
3143 return Qnil;
3146 /* Copy out or in the info on where C-g should throw to.
3147 This is used when running Lisp code from within get_char,
3148 in case get_char is called recursively.
3149 See read_process_output. */
3151 static void
3152 save_getcjmp (temp)
3153 jmp_buf temp;
3155 bcopy (getcjmp, temp, sizeof getcjmp);
3158 static void
3159 restore_getcjmp (temp)
3160 jmp_buf temp;
3162 bcopy (temp, getcjmp, sizeof getcjmp);
3165 #ifdef HAVE_MOUSE
3167 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3168 of this function. */
3170 static Lisp_Object
3171 tracking_off (old_value)
3172 Lisp_Object old_value;
3174 do_mouse_tracking = old_value;
3175 if (NILP (old_value))
3177 /* Redisplay may have been preempted because there was input
3178 available, and it assumes it will be called again after the
3179 input has been processed. If the only input available was
3180 the sort that we have just disabled, then we need to call
3181 redisplay. */
3182 if (!readable_events (1))
3184 redisplay_preserve_echo_area (6);
3185 get_input_pending (&input_pending, 1);
3188 return Qnil;
3191 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
3192 doc: /* Evaluate BODY with mouse movement events enabled.
3193 Within a `track-mouse' form, mouse motion generates input events that
3194 you can read with `read-event'.
3195 Normally, mouse motion is ignored.
3196 usage: (track-mouse BODY ...) */)
3197 (args)
3198 Lisp_Object args;
3200 int count = specpdl_ptr - specpdl;
3201 Lisp_Object val;
3203 record_unwind_protect (tracking_off, do_mouse_tracking);
3205 do_mouse_tracking = Qt;
3207 val = Fprogn (args);
3208 return unbind_to (count, val);
3211 /* If mouse has moved on some frame, return one of those frames.
3212 Return 0 otherwise. */
3214 static FRAME_PTR
3215 some_mouse_moved ()
3217 Lisp_Object tail, frame;
3219 FOR_EACH_FRAME (tail, frame)
3221 if (XFRAME (frame)->mouse_moved)
3222 return XFRAME (frame);
3225 return 0;
3228 #endif /* HAVE_MOUSE */
3230 /* Low level keyboard/mouse input.
3231 kbd_buffer_store_event places events in kbd_buffer, and
3232 kbd_buffer_get_event retrieves them. */
3234 /* Return true iff there are any events in the queue that read-char
3235 would return. If this returns false, a read-char would block. */
3236 static int
3237 readable_events (do_timers_now)
3238 int do_timers_now;
3240 if (do_timers_now)
3241 timer_check (do_timers_now);
3243 if (kbd_fetch_ptr != kbd_store_ptr)
3244 return 1;
3245 #ifdef HAVE_MOUSE
3246 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3247 return 1;
3248 #endif
3249 if (single_kboard)
3251 if (current_kboard->kbd_queue_has_data)
3252 return 1;
3254 else
3256 KBOARD *kb;
3257 for (kb = all_kboards; kb; kb = kb->next_kboard)
3258 if (kb->kbd_queue_has_data)
3259 return 1;
3261 return 0;
3264 /* Set this for debugging, to have a way to get out */
3265 int stop_character;
3267 #ifdef MULTI_KBOARD
3268 static KBOARD *
3269 event_to_kboard (event)
3270 struct input_event *event;
3272 Lisp_Object frame;
3273 frame = event->frame_or_window;
3274 if (CONSP (frame))
3275 frame = XCAR (frame);
3276 else if (WINDOWP (frame))
3277 frame = WINDOW_FRAME (XWINDOW (frame));
3279 /* There are still some events that don't set this field.
3280 For now, just ignore the problem.
3281 Also ignore dead frames here. */
3282 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3283 return 0;
3284 else
3285 return FRAME_KBOARD (XFRAME (frame));
3287 #endif
3289 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3291 void
3292 kbd_buffer_store_event (event)
3293 register struct input_event *event;
3295 if (event->kind == no_event)
3296 abort ();
3298 if (event->kind == ascii_keystroke)
3300 register int c = event->code & 0377;
3302 if (event->modifiers & ctrl_modifier)
3303 c = make_ctrl_char (c);
3305 c |= (event->modifiers
3306 & (meta_modifier | alt_modifier
3307 | hyper_modifier | super_modifier));
3309 if (c == quit_char)
3311 static SIGTYPE interrupt_signal (int);
3312 #ifdef MULTI_KBOARD
3313 KBOARD *kb;
3314 struct input_event *sp;
3316 if (single_kboard
3317 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3318 kb != current_kboard))
3320 kb->kbd_queue
3321 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3322 Fcons (make_number (c), Qnil));
3323 kb->kbd_queue_has_data = 1;
3324 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3326 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3327 sp = kbd_buffer;
3329 if (event_to_kboard (sp) == kb)
3331 sp->kind = no_event;
3332 sp->frame_or_window = Qnil;
3333 sp->arg = Qnil;
3336 return;
3338 #endif
3340 /* If this results in a quit_char being returned to Emacs as
3341 input, set Vlast_event_frame properly. If this doesn't
3342 get returned to Emacs as an event, the next event read
3343 will set Vlast_event_frame again, so this is safe to do. */
3345 Lisp_Object focus;
3347 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3348 if (NILP (focus))
3349 focus = event->frame_or_window;
3350 internal_last_event_frame = focus;
3351 Vlast_event_frame = focus;
3354 last_event_timestamp = event->timestamp;
3355 interrupt_signal (0 /* dummy */);
3356 return;
3359 if (c && c == stop_character)
3361 sys_suspend ();
3362 return;
3365 /* Don't insert two buffer_switch_event's in a row.
3366 Just ignore the second one. */
3367 else if (event->kind == buffer_switch_event
3368 && kbd_fetch_ptr != kbd_store_ptr
3369 && kbd_store_ptr->kind == buffer_switch_event)
3370 return;
3372 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3373 kbd_store_ptr = kbd_buffer;
3375 /* Don't let the very last slot in the buffer become full,
3376 since that would make the two pointers equal,
3377 and that is indistinguishable from an empty buffer.
3378 Discard the event if it would fill the last slot. */
3379 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3381 int idx;
3383 #if 0 /* The selection_request_event case looks bogus, and it's error
3384 prone to assign individual members for other events, in case
3385 the input_event structure is changed. --2000-07-13, gerd. */
3386 struct input_event *sp = kbd_store_ptr;
3387 sp->kind = event->kind;
3388 if (event->kind == selection_request_event)
3390 /* We must not use the ordinary copying code for this case,
3391 since `part' is an enum and copying it might not copy enough
3392 in this case. */
3393 bcopy (event, (char *) sp, sizeof (*event));
3395 else
3398 sp->code = event->code;
3399 sp->part = event->part;
3400 sp->frame_or_window = event->frame_or_window;
3401 sp->arg = event->arg;
3402 sp->modifiers = event->modifiers;
3403 sp->x = event->x;
3404 sp->y = event->y;
3405 sp->timestamp = event->timestamp;
3407 #else
3408 *kbd_store_ptr = *event;
3409 #endif
3411 idx = 2 * (kbd_store_ptr - kbd_buffer);
3412 ASET (kbd_buffer_gcpro, idx, event->frame_or_window);
3413 ASET (kbd_buffer_gcpro, idx + 1, event->arg);
3414 ++kbd_store_ptr;
3419 /* Generate HELP_EVENT input_events in BUFP which has room for
3420 SIZE events. If there's not enough room in BUFP, ignore this
3421 event.
3423 HELP is the help form.
3425 FRAME is the frame on which the help is generated. OBJECT is the
3426 Lisp object where the help was found (a buffer, a string, an
3427 overlay, or nil if neither from a string nor from a buffer. POS is
3428 the position within OBJECT where the help was found.
3430 Value is the number of input_events generated. */
3433 gen_help_event (bufp, size, help, frame, window, object, pos)
3434 struct input_event *bufp;
3435 int size;
3436 Lisp_Object help, frame, object, window;
3437 int pos;
3439 int nevents_stored = 0;
3441 if (size >= 2)
3443 bufp->kind = HELP_EVENT;
3444 bufp->frame_or_window = frame;
3445 bufp->arg = object;
3446 bufp->x = make_number (pos);
3447 bufp->code = 0;
3449 ++bufp;
3450 bufp->kind = HELP_EVENT;
3451 bufp->frame_or_window = WINDOWP (window) ? window : frame;
3452 bufp->arg = help;
3453 bufp->code = 1;
3454 nevents_stored = 2;
3457 return nevents_stored;
3461 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3463 void
3464 kbd_buffer_store_help_event (frame, help)
3465 Lisp_Object frame, help;
3467 struct input_event event;
3469 event.kind = HELP_EVENT;
3470 event.frame_or_window = frame;
3471 event.arg = Qnil;
3472 event.x = make_number (0);
3473 event.code = 0;
3474 kbd_buffer_store_event (&event);
3476 event.kind = HELP_EVENT;
3477 event.frame_or_window = frame;
3478 event.arg = help;
3479 event.x = make_number (0);
3480 event.code = 1;
3481 kbd_buffer_store_event (&event);
3485 /* Discard any mouse events in the event buffer by setting them to
3486 no_event. */
3487 void
3488 discard_mouse_events ()
3490 struct input_event *sp;
3491 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3493 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3494 sp = kbd_buffer;
3496 if (sp->kind == mouse_click
3497 #ifdef WINDOWSNT
3498 || sp->kind == w32_scroll_bar_click
3499 #endif
3500 || sp->kind == scroll_bar_click)
3502 sp->kind = no_event;
3508 /* Return non-zero if there are any real events waiting in the event
3509 buffer, not counting `no_event's.
3511 If DISCARD is non-zero, discard no_event events at the front of
3512 the input queue, possibly leaving the input queue empty if there
3513 are no real input events. */
3516 kbd_buffer_events_waiting (discard)
3517 int discard;
3519 struct input_event *sp;
3521 for (sp = kbd_fetch_ptr;
3522 sp != kbd_store_ptr && sp->kind == no_event;
3523 ++sp)
3525 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3526 sp = kbd_buffer;
3529 if (discard)
3530 kbd_fetch_ptr = sp;
3532 return sp != kbd_store_ptr && sp->kind != no_event;
3536 /* Clear input event EVENT. */
3538 static INLINE void
3539 clear_event (event)
3540 struct input_event *event;
3542 int idx = 2 * (event - kbd_buffer);
3543 ASET (kbd_buffer_gcpro, idx, Qnil);
3544 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
3545 event->kind = no_event;
3549 /* Read one event from the event buffer, waiting if necessary.
3550 The value is a Lisp object representing the event.
3551 The value is nil for an event that should be ignored,
3552 or that was handled here.
3553 We always read and discard one event. */
3555 static Lisp_Object
3556 kbd_buffer_get_event (kbp, used_mouse_menu)
3557 KBOARD **kbp;
3558 int *used_mouse_menu;
3560 register int c;
3561 Lisp_Object obj;
3563 if (noninteractive)
3565 c = getchar ();
3566 XSETINT (obj, c);
3567 *kbp = current_kboard;
3568 return obj;
3571 /* Wait until there is input available. */
3572 for (;;)
3574 if (kbd_fetch_ptr != kbd_store_ptr)
3575 break;
3576 #ifdef HAVE_MOUSE
3577 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3578 break;
3579 #endif
3581 /* If the quit flag is set, then read_char will return
3582 quit_char, so that counts as "available input." */
3583 if (!NILP (Vquit_flag))
3584 quit_throw_to_read_char ();
3586 /* One way or another, wait until input is available; then, if
3587 interrupt handlers have not read it, read it now. */
3589 #ifdef OLDVMS
3590 wait_for_kbd_input ();
3591 #else
3592 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3593 #ifdef SIGIO
3594 gobble_input (0);
3595 #endif /* SIGIO */
3596 if (kbd_fetch_ptr != kbd_store_ptr)
3597 break;
3598 #ifdef HAVE_MOUSE
3599 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3600 break;
3601 #endif
3603 Lisp_Object minus_one;
3605 XSETINT (minus_one, -1);
3606 wait_reading_process_input (0, 0, minus_one, 1);
3608 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3609 /* Pass 1 for EXPECT since we just waited to have input. */
3610 read_avail_input (1);
3612 #endif /* not VMS */
3615 if (CONSP (Vunread_command_events))
3617 Lisp_Object first;
3618 first = XCAR (Vunread_command_events);
3619 Vunread_command_events = XCDR (Vunread_command_events);
3620 *kbp = current_kboard;
3621 return first;
3624 /* At this point, we know that there is a readable event available
3625 somewhere. If the event queue is empty, then there must be a
3626 mouse movement enabled and available. */
3627 if (kbd_fetch_ptr != kbd_store_ptr)
3629 struct input_event *event;
3631 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3632 ? kbd_fetch_ptr
3633 : kbd_buffer);
3635 last_event_timestamp = event->timestamp;
3637 #ifdef MULTI_KBOARD
3638 *kbp = event_to_kboard (event);
3639 if (*kbp == 0)
3640 *kbp = current_kboard; /* Better than returning null ptr? */
3641 #else
3642 *kbp = &the_only_kboard;
3643 #endif
3645 obj = Qnil;
3647 /* These two kinds of events get special handling
3648 and don't actually appear to the command loop.
3649 We return nil for them. */
3650 if (event->kind == selection_request_event)
3652 #ifdef HAVE_X11
3653 struct input_event copy;
3655 /* Remove it from the buffer before processing it,
3656 since otherwise swallow_events will see it
3657 and process it again. */
3658 copy = *event;
3659 kbd_fetch_ptr = event + 1;
3660 input_pending = readable_events (0);
3661 x_handle_selection_request (&copy);
3662 #else
3663 /* We're getting selection request events, but we don't have
3664 a window system. */
3665 abort ();
3666 #endif
3669 else if (event->kind == selection_clear_event)
3671 #ifdef HAVE_X11
3672 struct input_event copy;
3674 /* Remove it from the buffer before processing it. */
3675 copy = *event;
3676 kbd_fetch_ptr = event + 1;
3677 input_pending = readable_events (0);
3678 x_handle_selection_clear (&copy);
3679 #else
3680 /* We're getting selection request events, but we don't have
3681 a window system. */
3682 abort ();
3683 #endif
3685 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (macintosh)
3686 else if (event->kind == delete_window_event)
3688 /* Make an event (delete-frame (FRAME)). */
3689 obj = Fcons (event->frame_or_window, Qnil);
3690 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
3691 kbd_fetch_ptr = event + 1;
3693 #endif
3694 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
3695 else if (event->kind == iconify_event)
3697 /* Make an event (iconify-frame (FRAME)). */
3698 obj = Fcons (event->frame_or_window, Qnil);
3699 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
3700 kbd_fetch_ptr = event + 1;
3702 else if (event->kind == deiconify_event)
3704 /* Make an event (make-frame-visible (FRAME)). */
3705 obj = Fcons (event->frame_or_window, Qnil);
3706 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
3707 kbd_fetch_ptr = event + 1;
3709 #endif
3710 else if (event->kind == buffer_switch_event)
3712 /* The value doesn't matter here; only the type is tested. */
3713 XSETBUFFER (obj, current_buffer);
3714 kbd_fetch_ptr = event + 1;
3716 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (macintosh)
3717 else if (event->kind == menu_bar_activate_event)
3719 kbd_fetch_ptr = event + 1;
3720 input_pending = readable_events (0);
3721 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
3722 x_activate_menubar (XFRAME (event->frame_or_window));
3724 #endif
3725 #ifdef WINDOWSNT
3726 else if (event->kind == language_change_event)
3728 /* Make an event (language-change (FRAME CHARSET LCID)). */
3729 obj = Fcons (event->modifiers, Qnil);
3730 obj = Fcons (event->code, obj);
3731 obj = Fcons (event->frame_or_window, obj);
3732 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
3733 kbd_fetch_ptr = event + 1;
3735 #endif
3736 else if (event->kind == save_session_event)
3738 obj = Fcons (Qsave_session, Qnil);
3739 kbd_fetch_ptr = event + 1;
3741 /* Just discard these, by returning nil.
3742 With MULTI_KBOARD, these events are used as placeholders
3743 when we need to randomly delete events from the queue.
3744 (They shouldn't otherwise be found in the buffer,
3745 but on some machines it appears they do show up
3746 even without MULTI_KBOARD.) */
3747 /* On Windows NT/9X, no_event is used to delete extraneous
3748 mouse events during a popup-menu call. */
3749 else if (event->kind == no_event)
3750 kbd_fetch_ptr = event + 1;
3751 else if (event->kind == HELP_EVENT)
3753 /* There are always two HELP_EVENTs in the input queue. */
3754 Lisp_Object object, position, help, frame, window;
3756 xassert (event->code == 0);
3757 frame = event->frame_or_window;
3758 object = event->arg;
3759 position = event->x;
3760 clear_event (event);
3762 kbd_fetch_ptr = event + 1;
3763 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3764 ? kbd_fetch_ptr
3765 : kbd_buffer);
3766 xassert (event->code == 1);
3767 help = event->arg;
3768 window = event->frame_or_window;
3769 if (!WINDOWP (window))
3770 window = Qnil;
3771 obj = Fcons (Qhelp_echo,
3772 list5 (frame, help, window, object, position));
3773 clear_event (event);
3774 kbd_fetch_ptr = event + 1;
3776 else if (event->kind == FOCUS_IN_EVENT)
3778 /* Notification of a FocusIn event. The frame receiving the
3779 focus is in event->frame_or_window. Generate a
3780 switch-frame event if necessary. */
3781 Lisp_Object frame, focus;
3783 frame = event->frame_or_window;
3784 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3785 if (FRAMEP (focus))
3786 frame = focus;
3788 if (!EQ (frame, internal_last_event_frame)
3789 && !EQ (frame, selected_frame))
3790 obj = make_lispy_switch_frame (frame);
3791 internal_last_event_frame = frame;
3792 kbd_fetch_ptr = event + 1;
3794 else
3796 /* If this event is on a different frame, return a switch-frame this
3797 time, and leave the event in the queue for next time. */
3798 Lisp_Object frame;
3799 Lisp_Object focus;
3801 frame = event->frame_or_window;
3802 if (CONSP (frame))
3803 frame = XCAR (frame);
3804 else if (WINDOWP (frame))
3805 frame = WINDOW_FRAME (XWINDOW (frame));
3807 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3808 if (! NILP (focus))
3809 frame = focus;
3811 if (! EQ (frame, internal_last_event_frame)
3812 && !EQ (frame, selected_frame))
3813 obj = make_lispy_switch_frame (frame);
3814 internal_last_event_frame = frame;
3816 /* If we didn't decide to make a switch-frame event, go ahead
3817 and build a real event from the queue entry. */
3819 if (NILP (obj))
3821 obj = make_lispy_event (event);
3823 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
3824 /* If this was a menu selection, then set the flag to inhibit
3825 writing to last_nonmenu_event. Don't do this if the event
3826 we're returning is (menu-bar), though; that indicates the
3827 beginning of the menu sequence, and we might as well leave
3828 that as the `event with parameters' for this selection. */
3829 if (used_mouse_menu
3830 && !EQ (event->frame_or_window, event->arg)
3831 && (event->kind == MENU_BAR_EVENT
3832 || event->kind == TOOL_BAR_EVENT))
3833 *used_mouse_menu = 1;
3834 #endif
3836 /* Wipe out this event, to catch bugs. */
3837 clear_event (event);
3838 kbd_fetch_ptr = event + 1;
3842 #ifdef HAVE_MOUSE
3843 /* Try generating a mouse motion event. */
3844 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3846 FRAME_PTR f = some_mouse_moved ();
3847 Lisp_Object bar_window;
3848 enum scroll_bar_part part;
3849 Lisp_Object x, y;
3850 unsigned long time;
3852 *kbp = current_kboard;
3853 /* Note that this uses F to determine which display to look at.
3854 If there is no valid info, it does not store anything
3855 so x remains nil. */
3856 x = Qnil;
3857 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
3859 obj = Qnil;
3861 /* Decide if we should generate a switch-frame event. Don't
3862 generate switch-frame events for motion outside of all Emacs
3863 frames. */
3864 if (!NILP (x) && f)
3866 Lisp_Object frame;
3868 frame = FRAME_FOCUS_FRAME (f);
3869 if (NILP (frame))
3870 XSETFRAME (frame, f);
3872 if (! EQ (frame, internal_last_event_frame)
3873 && !EQ (frame, selected_frame))
3874 obj = make_lispy_switch_frame (frame);
3875 internal_last_event_frame = frame;
3878 /* If we didn't decide to make a switch-frame event, go ahead and
3879 return a mouse-motion event. */
3880 if (!NILP (x) && NILP (obj))
3881 obj = make_lispy_movement (f, bar_window, part, x, y, time);
3883 #endif /* HAVE_MOUSE */
3884 else
3885 /* We were promised by the above while loop that there was
3886 something for us to read! */
3887 abort ();
3889 input_pending = readable_events (0);
3891 Vlast_event_frame = internal_last_event_frame;
3893 return (obj);
3896 /* Process any events that are not user-visible,
3897 then return, without reading any user-visible events. */
3899 void
3900 swallow_events (do_display)
3901 int do_display;
3903 int old_timers_run;
3905 while (kbd_fetch_ptr != kbd_store_ptr)
3907 struct input_event *event;
3909 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3910 ? kbd_fetch_ptr
3911 : kbd_buffer);
3913 last_event_timestamp = event->timestamp;
3915 /* These two kinds of events get special handling
3916 and don't actually appear to the command loop. */
3917 if (event->kind == selection_request_event)
3919 #ifdef HAVE_X11
3920 struct input_event copy;
3922 /* Remove it from the buffer before processing it,
3923 since otherwise swallow_events called recursively could see it
3924 and process it again. */
3925 copy = *event;
3926 kbd_fetch_ptr = event + 1;
3927 input_pending = readable_events (0);
3928 x_handle_selection_request (&copy);
3929 #else
3930 /* We're getting selection request events, but we don't have
3931 a window system. */
3932 abort ();
3933 #endif
3936 else if (event->kind == selection_clear_event)
3938 #ifdef HAVE_X11
3939 struct input_event copy;
3941 /* Remove it from the buffer before processing it, */
3942 copy = *event;
3944 kbd_fetch_ptr = event + 1;
3945 input_pending = readable_events (0);
3946 x_handle_selection_clear (&copy);
3947 #else
3948 /* We're getting selection request events, but we don't have
3949 a window system. */
3950 abort ();
3951 #endif
3953 else
3954 break;
3957 old_timers_run = timers_run;
3958 get_input_pending (&input_pending, 1);
3960 if (timers_run != old_timers_run && do_display)
3961 redisplay_preserve_echo_area (7);
3964 /* Record the start of when Emacs is idle,
3965 for the sake of running idle-time timers. */
3967 void
3968 timer_start_idle ()
3970 Lisp_Object timers;
3972 /* If we are already in the idle state, do nothing. */
3973 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
3974 return;
3976 EMACS_GET_TIME (timer_idleness_start_time);
3978 /* Mark all idle-time timers as once again candidates for running. */
3979 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
3981 Lisp_Object timer;
3983 timer = XCAR (timers);
3985 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
3986 continue;
3987 XVECTOR (timer)->contents[0] = Qnil;
3991 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
3993 void
3994 timer_stop_idle ()
3996 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
3999 /* This is only for debugging. */
4000 struct input_event last_timer_event;
4002 /* Check whether a timer has fired. To prevent larger problems we simply
4003 disregard elements that are not proper timers. Do not make a circular
4004 timer list for the time being.
4006 Returns the number of seconds to wait until the next timer fires. If a
4007 timer is triggering now, return zero seconds.
4008 If no timer is active, return -1 seconds.
4010 If a timer is ripe, we run it, with quitting turned off.
4012 DO_IT_NOW is now ignored. It used to mean that we should
4013 run the timer directly instead of queueing a timer-event.
4014 Now we always run timers directly. */
4016 EMACS_TIME
4017 timer_check (do_it_now)
4018 int do_it_now;
4020 EMACS_TIME nexttime;
4021 EMACS_TIME now, idleness_now;
4022 Lisp_Object timers, idle_timers, chosen_timer;
4023 struct gcpro gcpro1, gcpro2, gcpro3;
4025 EMACS_SET_SECS (nexttime, -1);
4026 EMACS_SET_USECS (nexttime, -1);
4028 /* Always consider the ordinary timers. */
4029 timers = Vtimer_list;
4030 /* Consider the idle timers only if Emacs is idle. */
4031 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4032 idle_timers = Vtimer_idle_list;
4033 else
4034 idle_timers = Qnil;
4035 chosen_timer = Qnil;
4036 GCPRO3 (timers, idle_timers, chosen_timer);
4038 if (CONSP (timers) || CONSP (idle_timers))
4040 EMACS_GET_TIME (now);
4041 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4042 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4045 while (CONSP (timers) || CONSP (idle_timers))
4047 Lisp_Object *vector;
4048 Lisp_Object timer = Qnil, idle_timer = Qnil;
4049 EMACS_TIME timer_time, idle_timer_time;
4050 EMACS_TIME difference, timer_difference, idle_timer_difference;
4052 /* Skip past invalid timers and timers already handled. */
4053 if (!NILP (timers))
4055 timer = XCAR (timers);
4056 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4058 timers = XCDR (timers);
4059 continue;
4061 vector = XVECTOR (timer)->contents;
4063 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4064 || !INTEGERP (vector[3])
4065 || ! NILP (vector[0]))
4067 timers = XCDR (timers);
4068 continue;
4071 if (!NILP (idle_timers))
4073 timer = XCAR (idle_timers);
4074 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4076 idle_timers = XCDR (idle_timers);
4077 continue;
4079 vector = XVECTOR (timer)->contents;
4081 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4082 || !INTEGERP (vector[3])
4083 || ! NILP (vector[0]))
4085 idle_timers = XCDR (idle_timers);
4086 continue;
4090 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4091 based on the next ordinary timer.
4092 TIMER_DIFFERENCE is the distance in time from NOW to when
4093 this timer becomes ripe (negative if it's already ripe). */
4094 if (!NILP (timers))
4096 timer = XCAR (timers);
4097 vector = XVECTOR (timer)->contents;
4098 EMACS_SET_SECS (timer_time,
4099 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4100 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4101 EMACS_SUB_TIME (timer_difference, timer_time, now);
4104 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4105 based on the next idle timer. */
4106 if (!NILP (idle_timers))
4108 idle_timer = XCAR (idle_timers);
4109 vector = XVECTOR (idle_timer)->contents;
4110 EMACS_SET_SECS (idle_timer_time,
4111 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4112 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4113 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4116 /* Decide which timer is the next timer,
4117 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4118 Also step down the list where we found that timer. */
4120 if (! NILP (timers) && ! NILP (idle_timers))
4122 EMACS_TIME temp;
4123 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4124 if (EMACS_TIME_NEG_P (temp))
4126 chosen_timer = timer;
4127 timers = XCDR (timers);
4128 difference = timer_difference;
4130 else
4132 chosen_timer = idle_timer;
4133 idle_timers = XCDR (idle_timers);
4134 difference = idle_timer_difference;
4137 else if (! NILP (timers))
4139 chosen_timer = timer;
4140 timers = XCDR (timers);
4141 difference = timer_difference;
4143 else
4145 chosen_timer = idle_timer;
4146 idle_timers = XCDR (idle_timers);
4147 difference = idle_timer_difference;
4149 vector = XVECTOR (chosen_timer)->contents;
4151 /* If timer is ripe, run it if it hasn't been run. */
4152 if (EMACS_TIME_NEG_P (difference)
4153 || (EMACS_SECS (difference) == 0
4154 && EMACS_USECS (difference) == 0))
4156 if (NILP (vector[0]))
4158 int was_locked = single_kboard;
4159 int count = BINDING_STACK_SIZE ();
4160 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4162 /* Mark the timer as triggered to prevent problems if the lisp
4163 code fails to reschedule it right. */
4164 vector[0] = Qt;
4166 specbind (Qinhibit_quit, Qt);
4168 call1 (Qtimer_event_handler, chosen_timer);
4169 Vdeactivate_mark = old_deactivate_mark;
4170 timers_run++;
4171 unbind_to (count, Qnil);
4173 /* Resume allowing input from any kboard, if that was true before. */
4174 if (!was_locked)
4175 any_kboard_state ();
4177 /* Since we have handled the event,
4178 we don't need to tell the caller to wake up and do it. */
4181 else
4182 /* When we encounter a timer that is still waiting,
4183 return the amount of time to wait before it is ripe. */
4185 UNGCPRO;
4186 return difference;
4190 /* No timers are pending in the future. */
4191 /* Return 0 if we generated an event, and -1 if not. */
4192 UNGCPRO;
4193 return nexttime;
4196 /* Caches for modify_event_symbol. */
4197 static Lisp_Object accent_key_syms;
4198 static Lisp_Object func_key_syms;
4199 static Lisp_Object mouse_syms;
4200 #ifdef WINDOWSNT
4201 static Lisp_Object mouse_wheel_syms;
4202 #endif
4203 static Lisp_Object drag_n_drop_syms;
4205 /* This is a list of keysym codes for special "accent" characters.
4206 It parallels lispy_accent_keys. */
4208 static int lispy_accent_codes[] =
4210 #ifdef XK_dead_circumflex
4211 XK_dead_circumflex,
4212 #else
4214 #endif
4215 #ifdef XK_dead_grave
4216 XK_dead_grave,
4217 #else
4219 #endif
4220 #ifdef XK_dead_tilde
4221 XK_dead_tilde,
4222 #else
4224 #endif
4225 #ifdef XK_dead_diaeresis
4226 XK_dead_diaeresis,
4227 #else
4229 #endif
4230 #ifdef XK_dead_macron
4231 XK_dead_macron,
4232 #else
4234 #endif
4235 #ifdef XK_dead_degree
4236 XK_dead_degree,
4237 #else
4239 #endif
4240 #ifdef XK_dead_acute
4241 XK_dead_acute,
4242 #else
4244 #endif
4245 #ifdef XK_dead_cedilla
4246 XK_dead_cedilla,
4247 #else
4249 #endif
4250 #ifdef XK_dead_breve
4251 XK_dead_breve,
4252 #else
4254 #endif
4255 #ifdef XK_dead_ogonek
4256 XK_dead_ogonek,
4257 #else
4259 #endif
4260 #ifdef XK_dead_caron
4261 XK_dead_caron,
4262 #else
4264 #endif
4265 #ifdef XK_dead_doubleacute
4266 XK_dead_doubleacute,
4267 #else
4269 #endif
4270 #ifdef XK_dead_abovedot
4271 XK_dead_abovedot,
4272 #else
4274 #endif
4277 /* This is a list of Lisp names for special "accent" characters.
4278 It parallels lispy_accent_codes. */
4280 static char *lispy_accent_keys[] =
4282 "dead-circumflex",
4283 "dead-grave",
4284 "dead-tilde",
4285 "dead-diaeresis",
4286 "dead-macron",
4287 "dead-degree",
4288 "dead-acute",
4289 "dead-cedilla",
4290 "dead-breve",
4291 "dead-ogonek",
4292 "dead-caron",
4293 "dead-doubleacute",
4294 "dead-abovedot",
4297 #ifdef HAVE_NTGUI
4298 #define FUNCTION_KEY_OFFSET 0x0
4300 char *lispy_function_keys[] =
4302 0, /* 0 */
4304 0, /* VK_LBUTTON 0x01 */
4305 0, /* VK_RBUTTON 0x02 */
4306 "cancel", /* VK_CANCEL 0x03 */
4307 0, /* VK_MBUTTON 0x04 */
4309 0, 0, 0, /* 0x05 .. 0x07 */
4311 "backspace", /* VK_BACK 0x08 */
4312 "tab", /* VK_TAB 0x09 */
4314 0, 0, /* 0x0A .. 0x0B */
4316 "clear", /* VK_CLEAR 0x0C */
4317 "return", /* VK_RETURN 0x0D */
4319 0, 0, /* 0x0E .. 0x0F */
4321 0, /* VK_SHIFT 0x10 */
4322 0, /* VK_CONTROL 0x11 */
4323 0, /* VK_MENU 0x12 */
4324 "pause", /* VK_PAUSE 0x13 */
4325 "capslock", /* VK_CAPITAL 0x14 */
4327 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4329 "escape", /* VK_ESCAPE 0x1B */
4331 0, 0, 0, 0, /* 0x1C .. 0x1F */
4333 0, /* VK_SPACE 0x20 */
4334 "prior", /* VK_PRIOR 0x21 */
4335 "next", /* VK_NEXT 0x22 */
4336 "end", /* VK_END 0x23 */
4337 "home", /* VK_HOME 0x24 */
4338 "left", /* VK_LEFT 0x25 */
4339 "up", /* VK_UP 0x26 */
4340 "right", /* VK_RIGHT 0x27 */
4341 "down", /* VK_DOWN 0x28 */
4342 "select", /* VK_SELECT 0x29 */
4343 "print", /* VK_PRINT 0x2A */
4344 "execute", /* VK_EXECUTE 0x2B */
4345 "snapshot", /* VK_SNAPSHOT 0x2C */
4346 "insert", /* VK_INSERT 0x2D */
4347 "delete", /* VK_DELETE 0x2E */
4348 "help", /* VK_HELP 0x2F */
4350 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4352 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4354 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4356 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4358 0, 0, 0, 0, 0, 0, 0, 0, 0,
4359 0, 0, 0, 0, 0, 0, 0, 0, 0,
4360 0, 0, 0, 0, 0, 0, 0, 0,
4362 "lwindow", /* VK_LWIN 0x5B */
4363 "rwindow", /* VK_RWIN 0x5C */
4364 "apps", /* VK_APPS 0x5D */
4366 0, 0, /* 0x5E .. 0x5F */
4368 "kp-0", /* VK_NUMPAD0 0x60 */
4369 "kp-1", /* VK_NUMPAD1 0x61 */
4370 "kp-2", /* VK_NUMPAD2 0x62 */
4371 "kp-3", /* VK_NUMPAD3 0x63 */
4372 "kp-4", /* VK_NUMPAD4 0x64 */
4373 "kp-5", /* VK_NUMPAD5 0x65 */
4374 "kp-6", /* VK_NUMPAD6 0x66 */
4375 "kp-7", /* VK_NUMPAD7 0x67 */
4376 "kp-8", /* VK_NUMPAD8 0x68 */
4377 "kp-9", /* VK_NUMPAD9 0x69 */
4378 "kp-multiply", /* VK_MULTIPLY 0x6A */
4379 "kp-add", /* VK_ADD 0x6B */
4380 "kp-separator", /* VK_SEPARATOR 0x6C */
4381 "kp-subtract", /* VK_SUBTRACT 0x6D */
4382 "kp-decimal", /* VK_DECIMAL 0x6E */
4383 "kp-divide", /* VK_DIVIDE 0x6F */
4384 "f1", /* VK_F1 0x70 */
4385 "f2", /* VK_F2 0x71 */
4386 "f3", /* VK_F3 0x72 */
4387 "f4", /* VK_F4 0x73 */
4388 "f5", /* VK_F5 0x74 */
4389 "f6", /* VK_F6 0x75 */
4390 "f7", /* VK_F7 0x76 */
4391 "f8", /* VK_F8 0x77 */
4392 "f9", /* VK_F9 0x78 */
4393 "f10", /* VK_F10 0x79 */
4394 "f11", /* VK_F11 0x7A */
4395 "f12", /* VK_F12 0x7B */
4396 "f13", /* VK_F13 0x7C */
4397 "f14", /* VK_F14 0x7D */
4398 "f15", /* VK_F15 0x7E */
4399 "f16", /* VK_F16 0x7F */
4400 "f17", /* VK_F17 0x80 */
4401 "f18", /* VK_F18 0x81 */
4402 "f19", /* VK_F19 0x82 */
4403 "f20", /* VK_F20 0x83 */
4404 "f21", /* VK_F21 0x84 */
4405 "f22", /* VK_F22 0x85 */
4406 "f23", /* VK_F23 0x86 */
4407 "f24", /* VK_F24 0x87 */
4409 0, 0, 0, 0, /* 0x88 .. 0x8B */
4410 0, 0, 0, 0, /* 0x8C .. 0x8F */
4412 "kp-numlock", /* VK_NUMLOCK 0x90 */
4413 "scroll", /* VK_SCROLL 0x91 */
4415 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4416 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4417 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4418 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4419 "kp-end", /* VK_NUMPAD_END 0x96 */
4420 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4421 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4422 "kp-up", /* VK_NUMPAD_UP 0x99 */
4423 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4424 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4425 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4426 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4428 0, 0, /* 0x9E .. 0x9F */
4431 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4432 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4433 * No other API or message will distinguish left and right keys this way.
4435 /* 0xA0 .. 0xEF */
4437 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4438 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4439 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4440 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4441 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4443 /* 0xF0 .. 0xF5 */
4445 0, 0, 0, 0, 0, 0,
4447 "attn", /* VK_ATTN 0xF6 */
4448 "crsel", /* VK_CRSEL 0xF7 */
4449 "exsel", /* VK_EXSEL 0xF8 */
4450 "ereof", /* VK_EREOF 0xF9 */
4451 "play", /* VK_PLAY 0xFA */
4452 "zoom", /* VK_ZOOM 0xFB */
4453 "noname", /* VK_NONAME 0xFC */
4454 "pa1", /* VK_PA1 0xFD */
4455 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4456 0 /* 0xFF */
4459 #else /* not HAVE_NTGUI */
4461 #ifdef XK_kana_A
4462 static char *lispy_kana_keys[] =
4464 /* X Keysym value */
4465 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4466 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4467 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4468 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4469 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4470 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4471 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4472 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4473 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4474 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4475 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4476 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4477 "kana-i", "kana-u", "kana-e", "kana-o",
4478 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4479 "prolongedsound", "kana-A", "kana-I", "kana-U",
4480 "kana-E", "kana-O", "kana-KA", "kana-KI",
4481 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4482 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4483 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4484 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4485 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4486 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4487 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4488 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4489 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4490 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4491 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4492 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4494 #endif /* XK_kana_A */
4496 #define FUNCTION_KEY_OFFSET 0xff00
4498 /* You'll notice that this table is arranged to be conveniently
4499 indexed by X Windows keysym values. */
4500 static char *lispy_function_keys[] =
4502 /* X Keysym value */
4504 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4505 "backspace", "tab", "linefeed", "clear",
4506 0, "return", 0, 0,
4507 0, 0, 0, "pause", /* 0xff10...1f */
4508 0, 0, 0, 0, 0, 0, 0, "escape",
4509 0, 0, 0, 0,
4510 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4511 "romaji", "hiragana", "katakana", "hiragana-katakana",
4512 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4513 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4514 "eisu-toggle", /* 0xff30...3f */
4515 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4516 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4518 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4519 "down", "prior", "next", "end",
4520 "begin", 0, 0, 0, 0, 0, 0, 0,
4521 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4522 "print",
4523 "execute",
4524 "insert",
4525 0, /* 0xff64 */
4526 "undo",
4527 "redo",
4528 "menu",
4529 "find",
4530 "cancel",
4531 "help",
4532 "break", /* 0xff6b */
4534 0, 0, 0, 0,
4535 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4536 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4537 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4538 0, 0, 0, 0, 0, 0, 0, 0,
4539 "kp-tab", /* 0xff89 */
4540 0, 0, 0,
4541 "kp-enter", /* 0xff8d */
4542 0, 0, 0,
4543 "kp-f1", /* 0xff91 */
4544 "kp-f2",
4545 "kp-f3",
4546 "kp-f4",
4547 "kp-home", /* 0xff95 */
4548 "kp-left",
4549 "kp-up",
4550 "kp-right",
4551 "kp-down",
4552 "kp-prior", /* kp-page-up */
4553 "kp-next", /* kp-page-down */
4554 "kp-end",
4555 "kp-begin",
4556 "kp-insert",
4557 "kp-delete",
4558 0, /* 0xffa0 */
4559 0, 0, 0, 0, 0, 0, 0, 0, 0,
4560 "kp-multiply", /* 0xffaa */
4561 "kp-add",
4562 "kp-separator",
4563 "kp-subtract",
4564 "kp-decimal",
4565 "kp-divide", /* 0xffaf */
4566 "kp-0", /* 0xffb0 */
4567 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4568 0, /* 0xffba */
4569 0, 0,
4570 "kp-equal", /* 0xffbd */
4571 "f1", /* 0xffbe */ /* IsFunctionKey */
4572 "f2",
4573 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4574 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4575 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4576 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4577 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4578 0, 0, 0, 0, 0, 0, 0, 0,
4579 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4580 0, 0, 0, 0, 0, 0, 0, "delete"
4583 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4584 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
4586 static char *iso_lispy_function_keys[] =
4588 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4589 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4590 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4591 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4592 "iso-lefttab", /* 0xfe20 */
4593 "iso-move-line-up", "iso-move-line-down",
4594 "iso-partial-line-up", "iso-partial-line-down",
4595 "iso-partial-space-left", "iso-partial-space-right",
4596 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4597 "iso-release-margin-left", "iso-release-margin-right",
4598 "iso-release-both-margins",
4599 "iso-fast-cursor-left", "iso-fast-cursor-right",
4600 "iso-fast-cursor-up", "iso-fast-cursor-down",
4601 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4602 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4605 #endif /* not HAVE_NTGUI */
4607 Lisp_Object Vlispy_mouse_stem;
4609 #ifdef WINDOWSNT
4610 /* mouse-wheel events are generated by the wheel on devices such as
4611 the MS Intellimouse. The wheel sits in between the left and right
4612 mouse buttons, and is typically used to scroll or zoom the window
4613 underneath the pointer. mouse-wheel events specify the object on
4614 which they operate, and a delta corresponding to the amount and
4615 direction that the wheel is rotated. Clicking the mouse-wheel
4616 generates a mouse-2 event. */
4617 static char *lispy_mouse_wheel_names[] =
4619 "mouse-wheel"
4622 #endif /* WINDOWSNT */
4624 /* drag-n-drop events are generated when a set of selected files are
4625 dragged from another application and dropped onto an Emacs window. */
4626 static char *lispy_drag_n_drop_names[] =
4628 "drag-n-drop"
4631 /* Scroll bar parts. */
4632 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4633 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
4634 Lisp_Object Qtop, Qratio;
4636 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4637 Lisp_Object *scroll_bar_parts[] = {
4638 &Qabove_handle, &Qhandle, &Qbelow_handle,
4639 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4642 /* User signal events. */
4643 Lisp_Object Qusr1_signal, Qusr2_signal;
4645 Lisp_Object *lispy_user_signals[] =
4647 &Qusr1_signal, &Qusr2_signal
4651 /* A vector, indexed by button number, giving the down-going location
4652 of currently depressed buttons, both scroll bar and non-scroll bar.
4654 The elements have the form
4655 (BUTTON-NUMBER MODIFIER-MASK . REST)
4656 where REST is the cdr of a position as it would be reported in the event.
4658 The make_lispy_event function stores positions here to tell the
4659 difference between click and drag events, and to store the starting
4660 location to be included in drag events. */
4662 static Lisp_Object button_down_location;
4664 /* Information about the most recent up-going button event: Which
4665 button, what location, and what time. */
4667 static int last_mouse_button;
4668 static int last_mouse_x;
4669 static int last_mouse_y;
4670 static unsigned long button_down_time;
4672 /* The maximum time between clicks to make a double-click, or Qnil to
4673 disable double-click detection, or Qt for no time limit. */
4675 Lisp_Object Vdouble_click_time;
4677 /* Maximum number of pixels the mouse may be moved between clicks
4678 to make a double-click. */
4680 EMACS_INT double_click_fuzz;
4682 /* The number of clicks in this multiple-click. */
4684 int double_click_count;
4686 /* Given a struct input_event, build the lisp event which represents
4687 it. If EVENT is 0, build a mouse movement event from the mouse
4688 movement buffer, which should have a movement event in it.
4690 Note that events must be passed to this function in the order they
4691 are received; this function stores the location of button presses
4692 in order to build drag events when the button is released. */
4694 static Lisp_Object
4695 make_lispy_event (event)
4696 struct input_event *event;
4698 int i;
4700 switch (SWITCH_ENUM_CAST (event->kind))
4702 /* A simple keystroke. */
4703 case ascii_keystroke:
4705 Lisp_Object lispy_c;
4706 int c = event->code & 0377;
4707 /* Turn ASCII characters into control characters
4708 when proper. */
4709 if (event->modifiers & ctrl_modifier)
4710 c = make_ctrl_char (c);
4712 /* Add in the other modifier bits. We took care of ctrl_modifier
4713 just above, and the shift key was taken care of by the X code,
4714 and applied to control characters by make_ctrl_char. */
4715 c |= (event->modifiers
4716 & (meta_modifier | alt_modifier
4717 | hyper_modifier | super_modifier));
4718 /* Distinguish Shift-SPC from SPC. */
4719 if ((event->code & 0377) == 040
4720 && event->modifiers & shift_modifier)
4721 c |= shift_modifier;
4722 button_down_time = 0;
4723 XSETFASTINT (lispy_c, c);
4724 return lispy_c;
4727 case multibyte_char_keystroke:
4729 Lisp_Object lispy_c;
4731 XSETFASTINT (lispy_c, event->code);
4732 return lispy_c;
4735 /* A function key. The symbol may need to have modifier prefixes
4736 tacked onto it. */
4737 case non_ascii_keystroke:
4738 button_down_time = 0;
4740 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
4741 if (event->code == lispy_accent_codes[i])
4742 return modify_event_symbol (i,
4743 event->modifiers,
4744 Qfunction_key, Qnil,
4745 lispy_accent_keys, &accent_key_syms,
4746 (sizeof (lispy_accent_keys)
4747 / sizeof (lispy_accent_keys[0])));
4749 /* Handle system-specific keysyms. */
4750 if (event->code & (1 << 28))
4752 /* We need to use an alist rather than a vector as the cache
4753 since we can't make a vector long enuf. */
4754 if (NILP (current_kboard->system_key_syms))
4755 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
4756 return modify_event_symbol (event->code,
4757 event->modifiers,
4758 Qfunction_key,
4759 current_kboard->Vsystem_key_alist,
4760 0, &current_kboard->system_key_syms,
4761 (unsigned) -1);
4764 #ifdef XK_kana_A
4765 if (event->code >= 0x400 && event->code < 0x500)
4766 return modify_event_symbol (event->code - 0x400,
4767 event->modifiers & ~shift_modifier,
4768 Qfunction_key, Qnil,
4769 lispy_kana_keys, &func_key_syms,
4770 (sizeof (lispy_kana_keys)
4771 / sizeof (lispy_kana_keys[0])));
4772 #endif /* XK_kana_A */
4774 #ifdef ISO_FUNCTION_KEY_OFFSET
4775 if (event->code < FUNCTION_KEY_OFFSET
4776 && event->code >= ISO_FUNCTION_KEY_OFFSET)
4777 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
4778 event->modifiers,
4779 Qfunction_key, Qnil,
4780 iso_lispy_function_keys, &func_key_syms,
4781 (sizeof (iso_lispy_function_keys)
4782 / sizeof (iso_lispy_function_keys[0])));
4783 else
4784 #endif
4786 #ifdef HAVE_X_WINDOWS
4787 if (event->code - FUNCTION_KEY_OFFSET < 0
4788 || (event->code - FUNCTION_KEY_OFFSET
4789 >= sizeof lispy_function_keys / sizeof *lispy_function_keys))
4791 /* EVENT->code is an unknown keysym, for example someone
4792 assigned `ccaron' to a key in a locale where
4793 XmbLookupString doesn't return a translation for it. */
4794 char *name;
4795 Lisp_Object symbol;
4797 BLOCK_INPUT;
4798 /* This returns a pointer to a static area. Don't free it. */
4799 name = XKeysymToString (event->code);
4800 symbol = name ? intern (name) : Qnil;
4801 UNBLOCK_INPUT;
4803 if (!NILP (symbol))
4804 return apply_modifiers (event->modifiers, symbol);
4806 #endif /* HAVE_X_WINDOWS */
4808 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
4809 event->modifiers,
4810 Qfunction_key, Qnil,
4811 lispy_function_keys, &func_key_syms,
4812 (sizeof (lispy_function_keys)
4813 / sizeof (lispy_function_keys[0])));
4815 #ifdef HAVE_MOUSE
4816 /* A mouse click. Figure out where it is, decide whether it's
4817 a press, click or drag, and build the appropriate structure. */
4818 case mouse_click:
4819 #ifndef USE_TOOLKIT_SCROLL_BARS
4820 case scroll_bar_click:
4821 #endif
4823 int button = event->code;
4824 int is_double;
4825 Lisp_Object position;
4826 Lisp_Object *start_pos_ptr;
4827 Lisp_Object start_pos;
4828 Lisp_Object window;
4830 position = Qnil;
4832 /* Build the position as appropriate for this mouse click. */
4833 if (event->kind == mouse_click)
4835 int part;
4836 struct frame *f = XFRAME (event->frame_or_window);
4837 Lisp_Object posn;
4838 Lisp_Object string_info = Qnil;
4839 int row, column;
4841 /* Ignore mouse events that were made on frame that
4842 have been deleted. */
4843 if (! FRAME_LIVE_P (f))
4844 return Qnil;
4846 /* EVENT->x and EVENT->y are frame-relative pixel
4847 coordinates at this place. Under old redisplay, COLUMN
4848 and ROW are set to frame relative glyph coordinates
4849 which are then used to determine whether this click is
4850 in a menu (non-toolkit version). */
4851 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
4852 &column, &row, NULL, 1);
4854 #ifndef USE_X_TOOLKIT
4855 /* In the non-toolkit version, clicks on the menu bar
4856 are ordinary button events in the event buffer.
4857 Distinguish them, and invoke the menu.
4859 (In the toolkit version, the toolkit handles the menu bar
4860 and Emacs doesn't know about it until after the user
4861 makes a selection.) */
4862 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
4863 && (event->modifiers & down_modifier))
4865 Lisp_Object items, item;
4866 int hpos;
4867 int i;
4869 #if 0
4870 /* Activate the menu bar on the down event. If the
4871 up event comes in before the menu code can deal with it,
4872 just ignore it. */
4873 if (! (event->modifiers & down_modifier))
4874 return Qnil;
4875 #endif
4877 /* Find the menu bar item under `column'. */
4878 item = Qnil;
4879 items = FRAME_MENU_BAR_ITEMS (f);
4880 for (i = 0; i < XVECTOR (items)->size; i += 4)
4882 Lisp_Object pos, string;
4883 string = AREF (items, i + 1);
4884 pos = AREF (items, i + 3);
4885 if (NILP (string))
4886 break;
4887 if (column >= XINT (pos)
4888 && column < XINT (pos) + XSTRING (string)->size)
4890 item = AREF (items, i);
4891 break;
4895 /* ELisp manual 2.4b says (x y) are window relative but
4896 code says they are frame-relative. */
4897 position
4898 = Fcons (event->frame_or_window,
4899 Fcons (Qmenu_bar,
4900 Fcons (Fcons (event->x, event->y),
4901 Fcons (make_number (event->timestamp),
4902 Qnil))));
4904 return Fcons (item, Fcons (position, Qnil));
4906 #endif /* not USE_X_TOOLKIT */
4908 /* Set `window' to the window under frame pixel coordinates
4909 event->x/event->y. */
4910 window = window_from_coordinates (f, XINT (event->x),
4911 XINT (event->y), &part, 0);
4913 if (!WINDOWP (window))
4915 window = event->frame_or_window;
4916 posn = Qnil;
4918 else
4920 /* It's a click in window window at frame coordinates
4921 event->x/ event->y. */
4922 struct window *w = XWINDOW (window);
4924 /* Get window relative coordinates. Original code
4925 `rounded' this to glyph boundaries. */
4926 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
4927 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
4929 /* Set event coordinates to window-relative coordinates
4930 for constructing the Lisp event below. */
4931 XSETINT (event->x, wx);
4932 XSETINT (event->y, wy);
4934 if (part == 1 || part == 3)
4936 /* Mode line or header line. Look for a string under
4937 the mouse that may have a `local-map' property. */
4938 Lisp_Object string;
4939 int charpos;
4941 posn = part == 1 ? Qmode_line : Qheader_line;
4942 string = mode_line_string (w, wx, wy, part == 1, &charpos);
4943 if (STRINGP (string))
4944 string_info = Fcons (string, make_number (charpos));
4946 else if (part == 2)
4947 posn = Qvertical_line;
4948 else
4950 Lisp_Object object;
4951 struct display_pos p;
4952 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
4953 posn = make_number (CHARPOS (p.pos));
4954 if (STRINGP (object))
4955 string_info
4956 = Fcons (object,
4957 make_number (CHARPOS (p.string_pos)));
4961 position
4962 = Fcons (window,
4963 Fcons (posn,
4964 Fcons (Fcons (event->x, event->y),
4965 Fcons (make_number (event->timestamp),
4966 (NILP (string_info)
4967 ? Qnil
4968 : Fcons (string_info, Qnil))))));
4970 #ifndef USE_TOOLKIT_SCROLL_BARS
4971 else
4973 /* It's a scrollbar click. */
4974 Lisp_Object portion_whole;
4975 Lisp_Object part;
4977 window = event->frame_or_window;
4978 portion_whole = Fcons (event->x, event->y);
4979 part = *scroll_bar_parts[(int) event->part];
4981 position
4982 = Fcons (window,
4983 Fcons (Qvertical_scroll_bar,
4984 Fcons (portion_whole,
4985 Fcons (make_number (event->timestamp),
4986 Fcons (part, Qnil)))));
4988 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4990 if (button >= ASIZE (button_down_location))
4992 button_down_location = larger_vector (button_down_location,
4993 button + 1, Qnil);
4994 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
4997 start_pos_ptr = &AREF (button_down_location, button);
4998 start_pos = *start_pos_ptr;
4999 *start_pos_ptr = Qnil;
5002 /* On window-system frames, use the value of
5003 double-click-fuzz as is. On other frames, interpret it
5004 as a multiple of 1/8 characters. */
5005 struct frame *f;
5006 int fuzz;
5008 if (WINDOWP (event->frame_or_window))
5009 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5010 else if (FRAMEP (event->frame_or_window))
5011 f = XFRAME (event->frame_or_window);
5012 else
5013 abort ();
5015 if (FRAME_WINDOW_P (f))
5016 fuzz = double_click_fuzz;
5017 else
5018 fuzz = double_click_fuzz / 8;
5020 is_double = (button == last_mouse_button
5021 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5022 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5023 && button_down_time != 0
5024 && (EQ (Vdouble_click_time, Qt)
5025 || (INTEGERP (Vdouble_click_time)
5026 && ((int)(event->timestamp - button_down_time)
5027 < XINT (Vdouble_click_time)))));
5030 last_mouse_button = button;
5031 last_mouse_x = XINT (event->x);
5032 last_mouse_y = XINT (event->y);
5034 /* If this is a button press, squirrel away the location, so
5035 we can decide later whether it was a click or a drag. */
5036 if (event->modifiers & down_modifier)
5038 if (is_double)
5040 double_click_count++;
5041 event->modifiers |= ((double_click_count > 2)
5042 ? triple_modifier
5043 : double_modifier);
5045 else
5046 double_click_count = 1;
5047 button_down_time = event->timestamp;
5048 *start_pos_ptr = Fcopy_alist (position);
5051 /* Now we're releasing a button - check the co-ordinates to
5052 see if this was a click or a drag. */
5053 else if (event->modifiers & up_modifier)
5055 /* If we did not see a down before this up, ignore the up.
5056 Probably this happened because the down event chose a
5057 menu item. It would be an annoyance to treat the
5058 release of the button that chose the menu item as a
5059 separate event. */
5061 if (!CONSP (start_pos))
5062 return Qnil;
5064 event->modifiers &= ~up_modifier;
5065 #if 0 /* Formerly we treated an up with no down as a click event. */
5066 if (!CONSP (start_pos))
5067 event->modifiers |= click_modifier;
5068 else
5069 #endif
5071 Lisp_Object down;
5072 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5074 /* The third element of every position
5075 should be the (x,y) pair. */
5076 down = Fcar (Fcdr (Fcdr (start_pos)));
5077 if (CONSP (down)
5078 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5080 xdiff = XFASTINT (event->x) - XFASTINT (XCAR (down));
5081 ydiff = XFASTINT (event->y) - XFASTINT (XCDR (down));
5084 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5085 && ydiff < double_click_fuzz
5086 && ydiff > - double_click_fuzz)
5087 /* Mouse hasn't moved (much). */
5088 event->modifiers |= click_modifier;
5089 else
5091 button_down_time = 0;
5092 event->modifiers |= drag_modifier;
5095 /* Don't check is_double; treat this as multiple
5096 if the down-event was multiple. */
5097 if (double_click_count > 1)
5098 event->modifiers |= ((double_click_count > 2)
5099 ? triple_modifier
5100 : double_modifier);
5103 else
5104 /* Every mouse event should either have the down_modifier or
5105 the up_modifier set. */
5106 abort ();
5109 /* Get the symbol we should use for the mouse click. */
5110 Lisp_Object head;
5112 head = modify_event_symbol (button,
5113 event->modifiers,
5114 Qmouse_click, Vlispy_mouse_stem,
5115 NULL,
5116 &mouse_syms,
5117 XVECTOR (mouse_syms)->size);
5118 if (event->modifiers & drag_modifier)
5119 return Fcons (head,
5120 Fcons (start_pos,
5121 Fcons (position,
5122 Qnil)));
5123 else if (event->modifiers & (double_modifier | triple_modifier))
5124 return Fcons (head,
5125 Fcons (position,
5126 Fcons (make_number (double_click_count),
5127 Qnil)));
5128 else
5129 return Fcons (head,
5130 Fcons (position,
5131 Qnil));
5135 #if USE_TOOLKIT_SCROLL_BARS
5137 /* We don't have down and up events if using toolkit scroll bars,
5138 so make this always a click event. Store in the `part' of
5139 the Lisp event a symbol which maps to the following actions:
5141 `above_handle' page up
5142 `below_handle' page down
5143 `up' line up
5144 `down' line down
5145 `top' top of buffer
5146 `bottom' bottom of buffer
5147 `handle' thumb has been dragged.
5148 `end-scroll' end of interaction with scroll bar
5150 The incoming input_event contains in its `part' member an
5151 index of type `enum scroll_bar_part' which we can use as an
5152 index in scroll_bar_parts to get the appropriate symbol. */
5154 case scroll_bar_click:
5156 Lisp_Object position, head, window, portion_whole, part;
5158 window = event->frame_or_window;
5159 portion_whole = Fcons (event->x, event->y);
5160 part = *scroll_bar_parts[(int) event->part];
5162 position
5163 = Fcons (window,
5164 Fcons (Qvertical_scroll_bar,
5165 Fcons (portion_whole,
5166 Fcons (make_number (event->timestamp),
5167 Fcons (part, Qnil)))));
5169 /* Always treat scroll bar events as clicks. */
5170 event->modifiers |= click_modifier;
5172 /* Get the symbol we should use for the mouse click. */
5173 head = modify_event_symbol (event->code,
5174 event->modifiers,
5175 Qmouse_click,
5176 Vlispy_mouse_stem,
5177 NULL, &mouse_syms,
5178 XVECTOR (mouse_syms)->size);
5179 return Fcons (head, Fcons (position, Qnil));
5182 #endif /* USE_TOOLKIT_SCROLL_BARS */
5184 #ifdef WINDOWSNT
5185 case w32_scroll_bar_click:
5187 int button = event->code;
5188 int is_double;
5189 Lisp_Object position;
5190 Lisp_Object *start_pos_ptr;
5191 Lisp_Object start_pos;
5194 Lisp_Object window;
5195 Lisp_Object portion_whole;
5196 Lisp_Object part;
5198 window = event->frame_or_window;
5199 portion_whole = Fcons (event->x, event->y);
5200 part = *scroll_bar_parts[(int) event->part];
5202 position
5203 = Fcons (window,
5204 Fcons (Qvertical_scroll_bar,
5205 Fcons (portion_whole,
5206 Fcons (make_number (event->timestamp),
5207 Fcons (part, Qnil)))));
5210 /* Always treat W32 scroll bar events as clicks. */
5211 event->modifiers |= click_modifier;
5214 /* Get the symbol we should use for the mouse click. */
5215 Lisp_Object head;
5217 head = modify_event_symbol (button,
5218 event->modifiers,
5219 Qmouse_click,
5220 Vlispy_mouse_stem,
5221 NULL, &mouse_syms,
5222 XVECTOR (mouse_syms)->size);
5223 return Fcons (head,
5224 Fcons (position,
5225 Qnil));
5228 case mouse_wheel:
5230 int part;
5231 FRAME_PTR f = XFRAME (event->frame_or_window);
5232 Lisp_Object window;
5233 Lisp_Object posn;
5234 Lisp_Object head, position;
5235 int row, column;
5237 /* Ignore mouse events that were made on frame that
5238 have been deleted. */
5239 if (! FRAME_LIVE_P (f))
5240 return Qnil;
5241 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5242 &column, &row, NULL, 1);
5243 window = window_from_coordinates (f, XINT (event->x),
5244 XINT (event->y), &part, 0);
5246 if (!WINDOWP (window))
5248 window = event->frame_or_window;
5249 posn = Qnil;
5251 else
5253 int pixcolumn, pixrow;
5254 column -= XINT (XWINDOW (window)->left);
5255 row -= XINT (XWINDOW (window)->top);
5256 glyph_to_pixel_coords (XWINDOW(window), column, row,
5257 &pixcolumn, &pixrow);
5258 XSETINT (event->x, pixcolumn);
5259 XSETINT (event->y, pixrow);
5261 if (part == 1)
5262 posn = Qmode_line;
5263 else if (part == 2)
5264 posn = Qvertical_line;
5265 else if (part == 3)
5266 posn = Qheader_line;
5267 else
5269 Lisp_Object object;
5270 struct display_pos p;
5271 buffer_posn_from_coords (XWINDOW (window), &column, &row,
5272 &object, &p);
5273 posn = make_number (CHARPOS (p.pos));
5278 Lisp_Object head, position;
5280 position
5281 = Fcons (window,
5282 Fcons (posn,
5283 Fcons (Fcons (event->x, event->y),
5284 Fcons (make_number (event->timestamp),
5285 Qnil))));
5287 head = modify_event_symbol (0, event->modifiers,
5288 Qmouse_wheel, Qnil,
5289 lispy_mouse_wheel_names,
5290 &mouse_wheel_syms, 1);
5291 return Fcons (head,
5292 Fcons (position,
5293 Fcons (make_number (event->code),
5294 Qnil)));
5297 #endif /* WINDOWSNT */
5299 case drag_n_drop:
5301 int part;
5302 FRAME_PTR f;
5303 Lisp_Object window;
5304 Lisp_Object posn;
5305 Lisp_Object files;
5307 /* The frame_or_window field should be a cons of the frame in
5308 which the event occurred and a list of the filenames
5309 dropped. */
5310 if (! CONSP (event->frame_or_window))
5311 abort ();
5313 f = XFRAME (XCAR (event->frame_or_window));
5314 files = XCDR (event->frame_or_window);
5316 /* Ignore mouse events that were made on frames that
5317 have been deleted. */
5318 if (! FRAME_LIVE_P (f))
5319 return Qnil;
5321 window = window_from_coordinates (f, XINT (event->x),
5322 XINT (event->y), &part, 0);
5324 if (!WINDOWP (window))
5326 window = XCAR (event->frame_or_window);
5327 posn = Qnil;
5329 else
5331 /* It's an event in window `window' at frame coordinates
5332 event->x/ event->y. */
5333 struct window *w = XWINDOW (window);
5335 /* Get window relative coordinates. */
5336 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
5337 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
5339 /* Set event coordinates to window-relative coordinates
5340 for constructing the Lisp event below. */
5341 XSETINT (event->x, wx);
5342 XSETINT (event->y, wy);
5344 if (part == 1)
5345 posn = Qmode_line;
5346 else if (part == 2)
5347 posn = Qvertical_line;
5348 else if (part == 3)
5349 posn = Qheader_line;
5350 else
5352 Lisp_Object object;
5353 struct display_pos p;
5354 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5355 posn = make_number (CHARPOS (p.pos));
5360 Lisp_Object head, position;
5362 position
5363 = Fcons (window,
5364 Fcons (posn,
5365 Fcons (Fcons (event->x, event->y),
5366 Fcons (make_number (event->timestamp),
5367 Qnil))));
5369 head = modify_event_symbol (0, event->modifiers,
5370 Qdrag_n_drop, Qnil,
5371 lispy_drag_n_drop_names,
5372 &drag_n_drop_syms, 1);
5373 return Fcons (head,
5374 Fcons (position,
5375 Fcons (files,
5376 Qnil)));
5379 #endif /* HAVE_MOUSE */
5381 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (macintosh)
5382 case MENU_BAR_EVENT:
5383 if (EQ (event->arg, event->frame_or_window))
5384 /* This is the prefix key. We translate this to
5385 `(menu_bar)' because the code in keyboard.c for menu
5386 events, which we use, relies on this. */
5387 return Fcons (Qmenu_bar, Qnil);
5388 return event->arg;
5389 #endif
5391 case TOOL_BAR_EVENT:
5392 if (EQ (event->arg, event->frame_or_window))
5393 /* This is the prefix key. We translate this to
5394 `(tool_bar)' because the code in keyboard.c for tool bar
5395 events, which we use, relies on this. */
5396 return Fcons (Qtool_bar, Qnil);
5397 else if (SYMBOLP (event->arg))
5398 return apply_modifiers (event->modifiers, event->arg);
5399 return event->arg;
5401 case USER_SIGNAL_EVENT:
5402 /* A user signal. */
5403 return *lispy_user_signals[event->code];
5405 case save_session_event:
5406 return Qsave_session;
5408 /* The 'kind' field of the event is something we don't recognize. */
5409 default:
5410 abort ();
5414 #ifdef HAVE_MOUSE
5416 static Lisp_Object
5417 make_lispy_movement (frame, bar_window, part, x, y, time)
5418 FRAME_PTR frame;
5419 Lisp_Object bar_window;
5420 enum scroll_bar_part part;
5421 Lisp_Object x, y;
5422 unsigned long time;
5424 /* Is it a scroll bar movement? */
5425 if (frame && ! NILP (bar_window))
5427 Lisp_Object part_sym;
5429 part_sym = *scroll_bar_parts[(int) part];
5430 return Fcons (Qscroll_bar_movement,
5431 (Fcons (Fcons (bar_window,
5432 Fcons (Qvertical_scroll_bar,
5433 Fcons (Fcons (x, y),
5434 Fcons (make_number (time),
5435 Fcons (part_sym,
5436 Qnil))))),
5437 Qnil)));
5440 /* Or is it an ordinary mouse movement? */
5441 else
5443 int area;
5444 Lisp_Object window;
5445 Lisp_Object posn;
5447 if (frame)
5448 /* It's in a frame; which window on that frame? */
5449 window = window_from_coordinates (frame, XINT (x), XINT (y), &area, 0);
5450 else
5451 window = Qnil;
5453 if (WINDOWP (window))
5455 struct window *w = XWINDOW (window);
5456 int wx, wy;
5458 /* Get window relative coordinates. */
5459 wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (x));
5460 wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (y));
5461 XSETINT (x, wx);
5462 XSETINT (y, wy);
5464 if (area == 1)
5465 posn = Qmode_line;
5466 else if (area == 2)
5467 posn = Qvertical_line;
5468 else if (area == 3)
5469 posn = Qheader_line;
5470 else
5472 Lisp_Object object;
5473 struct display_pos p;
5474 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5475 posn = make_number (CHARPOS (p.pos));
5478 else if (frame != 0)
5480 XSETFRAME (window, frame);
5481 posn = Qnil;
5483 else
5485 window = Qnil;
5486 posn = Qnil;
5487 XSETFASTINT (x, 0);
5488 XSETFASTINT (y, 0);
5491 return Fcons (Qmouse_movement,
5492 Fcons (Fcons (window,
5493 Fcons (posn,
5494 Fcons (Fcons (x, y),
5495 Fcons (make_number (time),
5496 Qnil)))),
5497 Qnil));
5501 #endif /* HAVE_MOUSE */
5503 /* Construct a switch frame event. */
5504 static Lisp_Object
5505 make_lispy_switch_frame (frame)
5506 Lisp_Object frame;
5508 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5511 /* Manipulating modifiers. */
5513 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
5515 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5516 SYMBOL's name of the end of the modifiers; the string from this
5517 position is the unmodified symbol name.
5519 This doesn't use any caches. */
5521 static int
5522 parse_modifiers_uncached (symbol, modifier_end)
5523 Lisp_Object symbol;
5524 int *modifier_end;
5526 struct Lisp_String *name;
5527 int i;
5528 int modifiers;
5530 CHECK_SYMBOL (symbol);
5532 modifiers = 0;
5533 name = XSYMBOL (symbol)->name;
5535 for (i = 0; i+2 <= STRING_BYTES (name); )
5537 int this_mod_end = 0;
5538 int this_mod = 0;
5540 /* See if the name continues with a modifier word.
5541 Check that the word appears, but don't check what follows it.
5542 Set this_mod and this_mod_end to record what we find. */
5544 switch (name->data[i])
5546 #define SINGLE_LETTER_MOD(BIT) \
5547 (this_mod_end = i + 1, this_mod = BIT)
5549 case 'A':
5550 SINGLE_LETTER_MOD (alt_modifier);
5551 break;
5553 case 'C':
5554 SINGLE_LETTER_MOD (ctrl_modifier);
5555 break;
5557 case 'H':
5558 SINGLE_LETTER_MOD (hyper_modifier);
5559 break;
5561 case 'M':
5562 SINGLE_LETTER_MOD (meta_modifier);
5563 break;
5565 case 'S':
5566 SINGLE_LETTER_MOD (shift_modifier);
5567 break;
5569 case 's':
5570 SINGLE_LETTER_MOD (super_modifier);
5571 break;
5573 #undef SINGLE_LETTER_MOD
5576 /* If we found no modifier, stop looking for them. */
5577 if (this_mod_end == 0)
5578 break;
5580 /* Check there is a dash after the modifier, so that it
5581 really is a modifier. */
5582 if (this_mod_end >= STRING_BYTES (name)
5583 || name->data[this_mod_end] != '-')
5584 break;
5586 /* This modifier is real; look for another. */
5587 modifiers |= this_mod;
5588 i = this_mod_end + 1;
5591 /* Should we include the `click' modifier? */
5592 if (! (modifiers & (down_modifier | drag_modifier
5593 | double_modifier | triple_modifier))
5594 && i + 7 == STRING_BYTES (name)
5595 && strncmp (name->data + i, "mouse-", 6) == 0
5596 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
5597 modifiers |= click_modifier;
5599 if (modifier_end)
5600 *modifier_end = i;
5602 return modifiers;
5605 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
5606 prepended to the string BASE[0..BASE_LEN-1].
5607 This doesn't use any caches. */
5608 static Lisp_Object
5609 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
5610 int modifiers;
5611 char *base;
5612 int base_len, base_len_byte;
5614 /* Since BASE could contain nulls, we can't use intern here; we have
5615 to use Fintern, which expects a genuine Lisp_String, and keeps a
5616 reference to it. */
5617 char *new_mods
5618 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
5619 int mod_len;
5622 char *p = new_mods;
5624 /* Only the event queue may use the `up' modifier; it should always
5625 be turned into a click or drag event before presented to lisp code. */
5626 if (modifiers & up_modifier)
5627 abort ();
5629 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
5630 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
5631 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
5632 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
5633 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
5634 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
5635 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
5636 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
5637 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
5638 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
5639 /* The click modifier is denoted by the absence of other modifiers. */
5641 *p = '\0';
5643 mod_len = p - new_mods;
5647 Lisp_Object new_name;
5649 new_name = make_uninit_multibyte_string (mod_len + base_len,
5650 mod_len + base_len_byte);
5651 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
5652 bcopy (base, XSTRING (new_name)->data + mod_len, base_len_byte);
5654 return Fintern (new_name, Qnil);
5659 static char *modifier_names[] =
5661 "up", "down", "drag", "click", "double", "triple", 0, 0,
5662 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5663 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
5665 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
5667 static Lisp_Object modifier_symbols;
5669 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
5670 static Lisp_Object
5671 lispy_modifier_list (modifiers)
5672 int modifiers;
5674 Lisp_Object modifier_list;
5675 int i;
5677 modifier_list = Qnil;
5678 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
5679 if (modifiers & (1<<i))
5680 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
5681 modifier_list);
5683 return modifier_list;
5687 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
5688 where UNMODIFIED is the unmodified form of SYMBOL,
5689 MASK is the set of modifiers present in SYMBOL's name.
5690 This is similar to parse_modifiers_uncached, but uses the cache in
5691 SYMBOL's Qevent_symbol_element_mask property, and maintains the
5692 Qevent_symbol_elements property. */
5694 Lisp_Object
5695 parse_modifiers (symbol)
5696 Lisp_Object symbol;
5698 Lisp_Object elements;
5700 elements = Fget (symbol, Qevent_symbol_element_mask);
5701 if (CONSP (elements))
5702 return elements;
5703 else
5705 int end;
5706 int modifiers = parse_modifiers_uncached (symbol, &end);
5707 Lisp_Object unmodified;
5708 Lisp_Object mask;
5710 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
5711 STRING_BYTES (XSYMBOL (symbol)->name) - end),
5712 Qnil);
5714 if (modifiers & ~VALMASK)
5715 abort ();
5716 XSETFASTINT (mask, modifiers);
5717 elements = Fcons (unmodified, Fcons (mask, Qnil));
5719 /* Cache the parsing results on SYMBOL. */
5720 Fput (symbol, Qevent_symbol_element_mask,
5721 elements);
5722 Fput (symbol, Qevent_symbol_elements,
5723 Fcons (unmodified, lispy_modifier_list (modifiers)));
5725 /* Since we know that SYMBOL is modifiers applied to unmodified,
5726 it would be nice to put that in unmodified's cache.
5727 But we can't, since we're not sure that parse_modifiers is
5728 canonical. */
5730 return elements;
5734 /* Apply the modifiers MODIFIERS to the symbol BASE.
5735 BASE must be unmodified.
5737 This is like apply_modifiers_uncached, but uses BASE's
5738 Qmodifier_cache property, if present. It also builds
5739 Qevent_symbol_elements properties, since it has that info anyway.
5741 apply_modifiers copies the value of BASE's Qevent_kind property to
5742 the modified symbol. */
5743 static Lisp_Object
5744 apply_modifiers (modifiers, base)
5745 int modifiers;
5746 Lisp_Object base;
5748 Lisp_Object cache, index, entry, new_symbol;
5750 /* Mask out upper bits. We don't know where this value's been. */
5751 modifiers &= VALMASK;
5753 /* The click modifier never figures into cache indices. */
5754 cache = Fget (base, Qmodifier_cache);
5755 XSETFASTINT (index, (modifiers & ~click_modifier));
5756 entry = assq_no_quit (index, cache);
5758 if (CONSP (entry))
5759 new_symbol = XCDR (entry);
5760 else
5762 /* We have to create the symbol ourselves. */
5763 new_symbol = apply_modifiers_uncached (modifiers,
5764 XSYMBOL (base)->name->data,
5765 XSYMBOL (base)->name->size,
5766 STRING_BYTES (XSYMBOL (base)->name));
5768 /* Add the new symbol to the base's cache. */
5769 entry = Fcons (index, new_symbol);
5770 Fput (base, Qmodifier_cache, Fcons (entry, cache));
5772 /* We have the parsing info now for free, so add it to the caches. */
5773 XSETFASTINT (index, modifiers);
5774 Fput (new_symbol, Qevent_symbol_element_mask,
5775 Fcons (base, Fcons (index, Qnil)));
5776 Fput (new_symbol, Qevent_symbol_elements,
5777 Fcons (base, lispy_modifier_list (modifiers)));
5780 /* Make sure this symbol is of the same kind as BASE.
5782 You'd think we could just set this once and for all when we
5783 intern the symbol above, but reorder_modifiers may call us when
5784 BASE's property isn't set right; we can't assume that just
5785 because it has a Qmodifier_cache property it must have its
5786 Qevent_kind set right as well. */
5787 if (NILP (Fget (new_symbol, Qevent_kind)))
5789 Lisp_Object kind;
5791 kind = Fget (base, Qevent_kind);
5792 if (! NILP (kind))
5793 Fput (new_symbol, Qevent_kind, kind);
5796 return new_symbol;
5800 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
5801 return a symbol with the modifiers placed in the canonical order.
5802 Canonical order is alphabetical, except for down and drag, which
5803 always come last. The 'click' modifier is never written out.
5805 Fdefine_key calls this to make sure that (for example) C-M-foo
5806 and M-C-foo end up being equivalent in the keymap. */
5808 Lisp_Object
5809 reorder_modifiers (symbol)
5810 Lisp_Object symbol;
5812 /* It's hopefully okay to write the code this way, since everything
5813 will soon be in caches, and no consing will be done at all. */
5814 Lisp_Object parsed;
5816 parsed = parse_modifiers (symbol);
5817 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
5818 XCAR (parsed));
5822 /* For handling events, we often want to produce a symbol whose name
5823 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
5824 to some base, like the name of a function key or mouse button.
5825 modify_event_symbol produces symbols of this sort.
5827 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
5828 is the name of the i'th symbol. TABLE_SIZE is the number of elements
5829 in the table.
5831 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
5832 into symbol names, or a string specifying a name stem used to
5833 construct a symbol name or the form `STEM-N', where N is the decimal
5834 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
5835 non-nil; otherwise NAME_TABLE is used.
5837 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
5838 persist between calls to modify_event_symbol that it can use to
5839 store a cache of the symbols it's generated for this NAME_TABLE
5840 before. The object stored there may be a vector or an alist.
5842 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
5844 MODIFIERS is a set of modifier bits (as given in struct input_events)
5845 whose prefixes should be applied to the symbol name.
5847 SYMBOL_KIND is the value to be placed in the event_kind property of
5848 the returned symbol.
5850 The symbols we create are supposed to have an
5851 `event-symbol-elements' property, which lists the modifiers present
5852 in the symbol's name. */
5854 static Lisp_Object
5855 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
5856 name_table, symbol_table, table_size)
5857 int symbol_num;
5858 unsigned modifiers;
5859 Lisp_Object symbol_kind;
5860 Lisp_Object name_alist_or_stem;
5861 char **name_table;
5862 Lisp_Object *symbol_table;
5863 unsigned int table_size;
5865 Lisp_Object value;
5866 Lisp_Object symbol_int;
5868 /* Get rid of the "vendor-specific" bit here. */
5869 XSETINT (symbol_int, symbol_num & 0xffffff);
5871 /* Is this a request for a valid symbol? */
5872 if (symbol_num < 0 || symbol_num >= table_size)
5873 return Qnil;
5875 if (CONSP (*symbol_table))
5876 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
5878 /* If *symbol_table doesn't seem to be initialized properly, fix that.
5879 *symbol_table should be a lisp vector TABLE_SIZE elements long,
5880 where the Nth element is the symbol for NAME_TABLE[N], or nil if
5881 we've never used that symbol before. */
5882 else
5884 if (! VECTORP (*symbol_table)
5885 || XVECTOR (*symbol_table)->size != table_size)
5887 Lisp_Object size;
5889 XSETFASTINT (size, table_size);
5890 *symbol_table = Fmake_vector (size, Qnil);
5893 value = XVECTOR (*symbol_table)->contents[symbol_num];
5896 /* Have we already used this symbol before? */
5897 if (NILP (value))
5899 /* No; let's create it. */
5900 if (CONSP (name_alist_or_stem))
5901 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
5902 else if (STRINGP (name_alist_or_stem))
5904 int len = STRING_BYTES (XSTRING (name_alist_or_stem));
5905 char *buf = (char *) alloca (len + 50);
5906 sprintf (buf, "%s-%d", XSTRING (name_alist_or_stem)->data,
5907 XINT (symbol_int) + 1);
5908 value = intern (buf);
5910 else if (name_table != 0 && name_table[symbol_num])
5911 value = intern (name_table[symbol_num]);
5913 #ifdef HAVE_WINDOW_SYSTEM
5914 if (NILP (value))
5916 char *name = x_get_keysym_name (symbol_num);
5917 if (name)
5918 value = intern (name);
5920 #endif
5922 if (NILP (value))
5924 char buf[20];
5925 sprintf (buf, "key-%d", symbol_num);
5926 value = intern (buf);
5929 if (CONSP (*symbol_table))
5930 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
5931 else
5932 XVECTOR (*symbol_table)->contents[symbol_num] = value;
5934 /* Fill in the cache entries for this symbol; this also
5935 builds the Qevent_symbol_elements property, which the user
5936 cares about. */
5937 apply_modifiers (modifiers & click_modifier, value);
5938 Fput (value, Qevent_kind, symbol_kind);
5941 /* Apply modifiers to that symbol. */
5942 return apply_modifiers (modifiers, value);
5945 /* Convert a list that represents an event type,
5946 such as (ctrl meta backspace), into the usual representation of that
5947 event type as a number or a symbol. */
5949 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
5950 doc: /* Convert the event description list EVENT-DESC to an event type.
5951 EVENT-DESC should contain one base event type (a character or symbol)
5952 and zero or more modifier names (control, meta, hyper, super, shift, alt,
5953 drag, down, double or triple). The base must be last.
5954 The return value is an event type (a character or symbol) which
5955 has the same base event type and all the specified modifiers. */)
5956 (event_desc)
5957 Lisp_Object event_desc;
5959 Lisp_Object base;
5960 int modifiers = 0;
5961 Lisp_Object rest;
5963 base = Qnil;
5964 rest = event_desc;
5965 while (CONSP (rest))
5967 Lisp_Object elt;
5968 int this = 0;
5970 elt = XCAR (rest);
5971 rest = XCDR (rest);
5973 /* Given a symbol, see if it is a modifier name. */
5974 if (SYMBOLP (elt) && CONSP (rest))
5975 this = parse_solitary_modifier (elt);
5977 if (this != 0)
5978 modifiers |= this;
5979 else if (!NILP (base))
5980 error ("Two bases given in one event");
5981 else
5982 base = elt;
5986 /* Let the symbol A refer to the character A. */
5987 if (SYMBOLP (base) && XSYMBOL (base)->name->size == 1)
5988 XSETINT (base, XSYMBOL (base)->name->data[0]);
5990 if (INTEGERP (base))
5992 /* Turn (shift a) into A. */
5993 if ((modifiers & shift_modifier) != 0
5994 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
5996 XSETINT (base, XINT (base) - ('a' - 'A'));
5997 modifiers &= ~shift_modifier;
6000 /* Turn (control a) into C-a. */
6001 if (modifiers & ctrl_modifier)
6002 return make_number ((modifiers & ~ctrl_modifier)
6003 | make_ctrl_char (XINT (base)));
6004 else
6005 return make_number (modifiers | XINT (base));
6007 else if (SYMBOLP (base))
6008 return apply_modifiers (modifiers, base);
6009 else
6011 error ("Invalid base event");
6012 return Qnil;
6016 /* Try to recognize SYMBOL as a modifier name.
6017 Return the modifier flag bit, or 0 if not recognized. */
6019 static int
6020 parse_solitary_modifier (symbol)
6021 Lisp_Object symbol;
6023 struct Lisp_String *name = XSYMBOL (symbol)->name;
6025 switch (name->data[0])
6027 #define SINGLE_LETTER_MOD(BIT) \
6028 if (STRING_BYTES (name) == 1) \
6029 return BIT;
6031 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6032 if (LEN == STRING_BYTES (name) \
6033 && ! strncmp (name->data, NAME, LEN)) \
6034 return BIT;
6036 case 'A':
6037 SINGLE_LETTER_MOD (alt_modifier);
6038 break;
6040 case 'a':
6041 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6042 break;
6044 case 'C':
6045 SINGLE_LETTER_MOD (ctrl_modifier);
6046 break;
6048 case 'c':
6049 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6050 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6051 break;
6053 case 'H':
6054 SINGLE_LETTER_MOD (hyper_modifier);
6055 break;
6057 case 'h':
6058 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6059 break;
6061 case 'M':
6062 SINGLE_LETTER_MOD (meta_modifier);
6063 break;
6065 case 'm':
6066 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6067 break;
6069 case 'S':
6070 SINGLE_LETTER_MOD (shift_modifier);
6071 break;
6073 case 's':
6074 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6075 MULTI_LETTER_MOD (super_modifier, "super", 5);
6076 SINGLE_LETTER_MOD (super_modifier);
6077 break;
6079 case 'd':
6080 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6081 MULTI_LETTER_MOD (down_modifier, "down", 4);
6082 MULTI_LETTER_MOD (double_modifier, "double", 6);
6083 break;
6085 case 't':
6086 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6087 break;
6089 #undef SINGLE_LETTER_MOD
6090 #undef MULTI_LETTER_MOD
6093 return 0;
6096 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6097 Such a list is not valid as an event,
6098 but it can be a Lucid-style event type list. */
6101 lucid_event_type_list_p (object)
6102 Lisp_Object object;
6104 Lisp_Object tail;
6106 if (! CONSP (object))
6107 return 0;
6109 if (EQ (XCAR (object), Qhelp_echo)
6110 || EQ (XCAR (object), Qvertical_line)
6111 || EQ (XCAR (object), Qmode_line)
6112 || EQ (XCAR (object), Qheader_line))
6113 return 0;
6115 for (tail = object; CONSP (tail); tail = XCDR (tail))
6117 Lisp_Object elt;
6118 elt = XCAR (tail);
6119 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6120 return 0;
6123 return NILP (tail);
6126 /* Store into *addr a value nonzero if terminal input chars are available.
6127 Serves the purpose of ioctl (0, FIONREAD, addr)
6128 but works even if FIONREAD does not exist.
6129 (In fact, this may actually read some input.)
6131 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
6133 static void
6134 get_input_pending (addr, do_timers_now)
6135 int *addr;
6136 int do_timers_now;
6138 /* First of all, have we already counted some input? */
6139 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
6141 /* If input is being read as it arrives, and we have none, there is none. */
6142 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6143 return;
6145 /* Try to read some input and see how much we get. */
6146 gobble_input (0);
6147 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
6150 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6152 void
6153 gobble_input (expected)
6154 int expected;
6156 #ifndef VMS
6157 #ifdef SIGIO
6158 if (interrupt_input)
6160 SIGMASKTYPE mask;
6161 mask = sigblock (sigmask (SIGIO));
6162 read_avail_input (expected);
6163 sigsetmask (mask);
6165 else
6166 #ifdef POLL_FOR_INPUT
6167 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6169 SIGMASKTYPE mask;
6170 mask = sigblock (sigmask (SIGALRM));
6171 read_avail_input (expected);
6172 sigsetmask (mask);
6174 else
6175 #endif
6176 #endif
6177 read_avail_input (expected);
6178 #endif
6181 /* Put a buffer_switch_event in the buffer
6182 so that read_key_sequence will notice the new current buffer. */
6184 void
6185 record_asynch_buffer_change ()
6187 struct input_event event;
6188 Lisp_Object tem;
6190 event.kind = buffer_switch_event;
6191 event.frame_or_window = Qnil;
6192 event.arg = Qnil;
6194 #ifdef subprocesses
6195 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6196 The purpose of the event is to make read_key_sequence look up the
6197 keymaps again. If we aren't in read_key_sequence, we don't need one,
6198 and the event could cause trouble by messing up (input-pending-p). */
6199 tem = Fwaiting_for_user_input_p ();
6200 if (NILP (tem))
6201 return;
6202 #else
6203 /* We never need these events if we have no asynchronous subprocesses. */
6204 return;
6205 #endif
6207 /* Make sure no interrupt happens while storing the event. */
6208 #ifdef SIGIO
6209 if (interrupt_input)
6211 SIGMASKTYPE mask;
6212 mask = sigblock (sigmask (SIGIO));
6213 kbd_buffer_store_event (&event);
6214 sigsetmask (mask);
6216 else
6217 #endif
6219 stop_polling ();
6220 kbd_buffer_store_event (&event);
6221 start_polling ();
6225 #ifndef VMS
6227 /* Read any terminal input already buffered up by the system
6228 into the kbd_buffer, but do not wait.
6230 EXPECTED should be nonzero if the caller knows there is some input.
6232 Except on VMS, all input is read by this function.
6233 If interrupt_input is nonzero, this function MUST be called
6234 only when SIGIO is blocked.
6236 Returns the number of keyboard chars read, or -1 meaning
6237 this is a bad time to try to read input. */
6239 static int
6240 read_avail_input (expected)
6241 int expected;
6243 struct input_event buf[KBD_BUFFER_SIZE];
6244 register int i;
6245 int nread;
6247 if (read_socket_hook)
6248 /* No need for FIONREAD or fcntl; just say don't wait. */
6249 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE, expected);
6250 else
6252 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6253 the kbd_buffer can really hold. That may prevent loss
6254 of characters on some systems when input is stuffed at us. */
6255 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6256 int n_to_read;
6258 /* Determine how many characters we should *try* to read. */
6259 #ifdef WINDOWSNT
6260 return 0;
6261 #else /* not WINDOWSNT */
6262 #ifdef MSDOS
6263 n_to_read = dos_keysns ();
6264 if (n_to_read == 0)
6265 return 0;
6266 #else /* not MSDOS */
6267 #ifdef FIONREAD
6268 /* Find out how much input is available. */
6269 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6270 /* Formerly simply reported no input, but that sometimes led to
6271 a failure of Emacs to terminate.
6272 SIGHUP seems appropriate if we can't reach the terminal. */
6273 /* ??? Is it really right to send the signal just to this process
6274 rather than to the whole process group?
6275 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6276 kill (getpid (), SIGHUP);
6277 if (n_to_read == 0)
6278 return 0;
6279 if (n_to_read > sizeof cbuf)
6280 n_to_read = sizeof cbuf;
6281 #else /* no FIONREAD */
6282 #if defined (USG) || defined (DGUX)
6283 /* Read some input if available, but don't wait. */
6284 n_to_read = sizeof cbuf;
6285 fcntl (input_fd, F_SETFL, O_NDELAY);
6286 #else
6287 you lose;
6288 #endif
6289 #endif
6290 #endif /* not MSDOS */
6291 #endif /* not WINDOWSNT */
6293 /* Now read; for one reason or another, this will not block.
6294 NREAD is set to the number of chars read. */
6297 #ifdef MSDOS
6298 cbuf[0] = dos_keyread ();
6299 nread = 1;
6300 #else
6301 nread = emacs_read (input_fd, cbuf, n_to_read);
6302 #endif
6303 /* POSIX infers that processes which are not in the session leader's
6304 process group won't get SIGHUP's at logout time. BSDI adheres to
6305 this part standard and returns -1 from read (0) with errno==EIO
6306 when the control tty is taken away.
6307 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6308 if (nread == -1 && errno == EIO)
6309 kill (0, SIGHUP);
6310 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6311 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6312 This looks incorrect, but it isn't, because _BSD causes
6313 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6314 and that causes a value other than 0 when there is no input. */
6315 if (nread == 0)
6316 kill (0, SIGHUP);
6317 #endif
6319 while (
6320 /* We used to retry the read if it was interrupted.
6321 But this does the wrong thing when O_NDELAY causes
6322 an EAGAIN error. Does anybody know of a situation
6323 where a retry is actually needed? */
6324 #if 0
6325 nread < 0 && (errno == EAGAIN
6326 #ifdef EFAULT
6327 || errno == EFAULT
6328 #endif
6329 #ifdef EBADSLT
6330 || errno == EBADSLT
6331 #endif
6333 #else
6335 #endif
6338 #ifndef FIONREAD
6339 #if defined (USG) || defined (DGUX)
6340 fcntl (input_fd, F_SETFL, 0);
6341 #endif /* USG or DGUX */
6342 #endif /* no FIONREAD */
6343 for (i = 0; i < nread; i++)
6345 buf[i].kind = ascii_keystroke;
6346 buf[i].modifiers = 0;
6347 if (meta_key == 1 && (cbuf[i] & 0x80))
6348 buf[i].modifiers = meta_modifier;
6349 if (meta_key != 2)
6350 cbuf[i] &= ~0x80;
6352 buf[i].code = cbuf[i];
6353 buf[i].frame_or_window = selected_frame;
6354 buf[i].arg = Qnil;
6358 /* Scan the chars for C-g and store them in kbd_buffer. */
6359 for (i = 0; i < nread; i++)
6361 kbd_buffer_store_event (&buf[i]);
6362 /* Don't look at input that follows a C-g too closely.
6363 This reduces lossage due to autorepeat on C-g. */
6364 if (buf[i].kind == ascii_keystroke
6365 && buf[i].code == quit_char)
6366 break;
6369 return nread;
6371 #endif /* not VMS */
6373 #ifdef SIGIO /* for entire page */
6374 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6376 SIGTYPE
6377 input_available_signal (signo)
6378 int signo;
6380 /* Must preserve main program's value of errno. */
6381 int old_errno = errno;
6382 #ifdef BSD4_1
6383 extern int select_alarmed;
6384 #endif
6386 #if defined (USG) && !defined (POSIX_SIGNALS)
6387 /* USG systems forget handlers when they are used;
6388 must reestablish each time */
6389 signal (signo, input_available_signal);
6390 #endif /* USG */
6392 #ifdef BSD4_1
6393 sigisheld (SIGIO);
6394 #endif
6396 if (input_available_clear_time)
6397 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6399 while (1)
6401 int nread;
6402 nread = read_avail_input (1);
6403 /* -1 means it's not ok to read the input now.
6404 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6405 0 means there was no keyboard input available. */
6406 if (nread <= 0)
6407 break;
6409 #ifdef BSD4_1
6410 select_alarmed = 1; /* Force the select emulator back to life */
6411 #endif
6414 #ifdef BSD4_1
6415 sigfree ();
6416 #endif
6417 errno = old_errno;
6419 #endif /* SIGIO */
6421 /* Send ourselves a SIGIO.
6423 This function exists so that the UNBLOCK_INPUT macro in
6424 blockinput.h can have some way to take care of input we put off
6425 dealing with, without assuming that every file which uses
6426 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6427 void
6428 reinvoke_input_signal ()
6430 #ifdef SIGIO
6431 kill (getpid (), SIGIO);
6432 #endif
6437 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object));
6438 static void menu_bar_one_keymap P_ ((Lisp_Object));
6440 /* These variables hold the vector under construction within
6441 menu_bar_items and its subroutines, and the current index
6442 for storing into that vector. */
6443 static Lisp_Object menu_bar_items_vector;
6444 static int menu_bar_items_index;
6446 /* Return a vector of menu items for a menu bar, appropriate
6447 to the current buffer. Each item has three elements in the vector:
6448 KEY STRING MAPLIST.
6450 OLD is an old vector we can optionally reuse, or nil. */
6452 Lisp_Object
6453 menu_bar_items (old)
6454 Lisp_Object old;
6456 /* The number of keymaps we're scanning right now, and the number of
6457 keymaps we have allocated space for. */
6458 int nmaps;
6460 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6461 in the current keymaps, or nil where it is not a prefix. */
6462 Lisp_Object *maps;
6464 Lisp_Object def, tail;
6466 Lisp_Object result;
6468 int mapno;
6469 Lisp_Object oquit;
6471 int i;
6473 struct gcpro gcpro1;
6475 /* In order to build the menus, we need to call the keymap
6476 accessors. They all call QUIT. But this function is called
6477 during redisplay, during which a quit is fatal. So inhibit
6478 quitting while building the menus.
6479 We do this instead of specbind because (1) errors will clear it anyway
6480 and (2) this avoids risk of specpdl overflow. */
6481 oquit = Vinhibit_quit;
6482 Vinhibit_quit = Qt;
6484 if (!NILP (old))
6485 menu_bar_items_vector = old;
6486 else
6487 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6488 menu_bar_items_index = 0;
6490 GCPRO1 (menu_bar_items_vector);
6492 /* Build our list of keymaps.
6493 If we recognize a function key and replace its escape sequence in
6494 keybuf with its symbol, or if the sequence starts with a mouse
6495 click and we need to switch buffers, we jump back here to rebuild
6496 the initial keymaps from the current buffer. */
6498 Lisp_Object *tmaps;
6500 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6501 if (!NILP (Voverriding_local_map_menu_flag))
6503 /* Yes, use them (if non-nil) as well as the global map. */
6504 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
6505 nmaps = 0;
6506 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6507 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6508 if (!NILP (Voverriding_local_map))
6509 maps[nmaps++] = Voverriding_local_map;
6511 else
6513 /* No, so use major and minor mode keymaps and keymap property.
6514 Note that menu-bar bindings in the local-map and keymap
6515 properties may not work reliable, as they are only
6516 recognized when the menu-bar (or mode-line) is updated,
6517 which does not normally happen after every command. */
6518 Lisp_Object tem;
6519 int nminor;
6520 nminor = current_minor_maps (NULL, &tmaps);
6521 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
6522 nmaps = 0;
6523 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
6524 maps[nmaps++] = tem;
6525 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
6526 nmaps += nminor;
6527 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
6529 maps[nmaps++] = current_global_map;
6532 /* Look up in each map the dummy prefix key `menu-bar'. */
6534 result = Qnil;
6536 for (mapno = nmaps - 1; mapno >= 0; mapno--)
6537 if (!NILP (maps[mapno]))
6539 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
6540 0, 1);
6541 if (CONSP (def))
6542 menu_bar_one_keymap (def);
6545 /* Move to the end those items that should be at the end. */
6547 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
6549 int i;
6550 int end = menu_bar_items_index;
6552 for (i = 0; i < end; i += 4)
6553 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
6555 Lisp_Object tem0, tem1, tem2, tem3;
6556 /* Move the item at index I to the end,
6557 shifting all the others forward. */
6558 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
6559 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
6560 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6561 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
6562 if (end > i + 4)
6563 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6564 &XVECTOR (menu_bar_items_vector)->contents[i],
6565 (end - i - 4) * sizeof (Lisp_Object));
6566 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
6567 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
6568 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
6569 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
6570 break;
6574 /* Add nil, nil, nil, nil at the end. */
6575 i = menu_bar_items_index;
6576 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6578 Lisp_Object tem;
6579 tem = Fmake_vector (make_number (2 * i), Qnil);
6580 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6581 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6582 menu_bar_items_vector = tem;
6584 /* Add this item. */
6585 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6586 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6587 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6588 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6589 menu_bar_items_index = i;
6591 Vinhibit_quit = oquit;
6592 UNGCPRO;
6593 return menu_bar_items_vector;
6596 /* Scan one map KEYMAP, accumulating any menu items it defines
6597 in menu_bar_items_vector. */
6599 static Lisp_Object menu_bar_one_keymap_changed_items;
6601 static void
6602 menu_bar_one_keymap (keymap)
6603 Lisp_Object keymap;
6605 Lisp_Object tail, item;
6607 menu_bar_one_keymap_changed_items = Qnil;
6609 /* Loop over all keymap entries that have menu strings. */
6610 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
6612 item = XCAR (tail);
6613 if (CONSP (item))
6614 menu_bar_item (XCAR (item), XCDR (item));
6615 else if (VECTORP (item))
6617 /* Loop over the char values represented in the vector. */
6618 int len = XVECTOR (item)->size;
6619 int c;
6620 for (c = 0; c < len; c++)
6622 Lisp_Object character;
6623 XSETFASTINT (character, c);
6624 menu_bar_item (character, XVECTOR (item)->contents[c]);
6630 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
6631 If there's already an item for KEY, add this DEF to it. */
6633 Lisp_Object item_properties;
6635 static void
6636 menu_bar_item (key, item)
6637 Lisp_Object key, item;
6639 struct gcpro gcpro1;
6640 int i;
6641 Lisp_Object tem;
6643 if (EQ (item, Qundefined))
6645 /* If a map has an explicit `undefined' as definition,
6646 discard any previously made menu bar item. */
6648 for (i = 0; i < menu_bar_items_index; i += 4)
6649 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6651 if (menu_bar_items_index > i + 4)
6652 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6653 &XVECTOR (menu_bar_items_vector)->contents[i],
6654 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
6655 menu_bar_items_index -= 4;
6659 /* If this keymap has already contributed to this KEY,
6660 don't contribute to it a second time. */
6661 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
6662 if (!NILP (tem) || NILP (item))
6663 return;
6665 menu_bar_one_keymap_changed_items
6666 = Fcons (key, menu_bar_one_keymap_changed_items);
6668 /* We add to menu_bar_one_keymap_changed_items before doing the
6669 parse_menu_item, so that if it turns out it wasn't a menu item,
6670 it still correctly hides any further menu item. */
6671 GCPRO1 (key);
6672 i = parse_menu_item (item, 0, 1);
6673 UNGCPRO;
6674 if (!i)
6675 return;
6677 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
6679 /* Find any existing item for this KEY. */
6680 for (i = 0; i < menu_bar_items_index; i += 4)
6681 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6682 break;
6684 /* If we did not find this KEY, add it at the end. */
6685 if (i == menu_bar_items_index)
6687 /* If vector is too small, get a bigger one. */
6688 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6690 Lisp_Object tem;
6691 tem = Fmake_vector (make_number (2 * i), Qnil);
6692 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6693 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6694 menu_bar_items_vector = tem;
6697 /* Add this item. */
6698 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
6699 XVECTOR (menu_bar_items_vector)->contents[i++]
6700 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
6701 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
6702 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
6703 menu_bar_items_index = i;
6705 /* We did find an item for this KEY. Add ITEM to its list of maps. */
6706 else
6708 Lisp_Object old;
6709 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6710 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (item, old);
6714 /* This is used as the handler when calling menu_item_eval_property. */
6715 static Lisp_Object
6716 menu_item_eval_property_1 (arg)
6717 Lisp_Object arg;
6719 /* If we got a quit from within the menu computation,
6720 quit all the way out of it. This takes care of C-] in the debugger. */
6721 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
6722 Fsignal (Qquit, Qnil);
6724 return Qnil;
6727 /* Evaluate an expression and return the result (or nil if something
6728 went wrong). Used to evaluate dynamic parts of menu items. */
6729 Lisp_Object
6730 menu_item_eval_property (sexpr)
6731 Lisp_Object sexpr;
6733 int count = specpdl_ptr - specpdl;
6734 Lisp_Object val;
6735 specbind (Qinhibit_redisplay, Qt);
6736 val = internal_condition_case_1 (Feval, sexpr, Qerror,
6737 menu_item_eval_property_1);
6738 return unbind_to (count, val);
6741 /* This function parses a menu item and leaves the result in the
6742 vector item_properties.
6743 ITEM is a key binding, a possible menu item.
6744 If NOTREAL is nonzero, only check for equivalent key bindings, don't
6745 evaluate dynamic expressions in the menu item.
6746 INMENUBAR is > 0 when this is considered for an entry in a menu bar
6747 top level.
6748 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
6749 parse_menu_item returns true if the item is a menu item and false
6750 otherwise. */
6753 parse_menu_item (item, notreal, inmenubar)
6754 Lisp_Object item;
6755 int notreal, inmenubar;
6757 Lisp_Object def, tem, item_string, start;
6758 Lisp_Object cachelist;
6759 Lisp_Object filter;
6760 Lisp_Object keyhint;
6761 int i;
6762 int newcache = 0;
6764 cachelist = Qnil;
6765 filter = Qnil;
6766 keyhint = Qnil;
6768 if (!CONSP (item))
6769 return 0;
6771 /* Create item_properties vector if necessary. */
6772 if (NILP (item_properties))
6773 item_properties
6774 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
6776 /* Initialize optional entries. */
6777 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
6778 AREF (item_properties, i) = Qnil;
6779 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
6781 /* Save the item here to protect it from GC. */
6782 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
6784 item_string = XCAR (item);
6786 start = item;
6787 item = XCDR (item);
6788 if (STRINGP (item_string))
6790 /* Old format menu item. */
6791 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
6793 /* Maybe help string. */
6794 if (CONSP (item) && STRINGP (XCAR (item)))
6796 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
6797 start = item;
6798 item = XCDR (item);
6801 /* Maybe key binding cache. */
6802 if (CONSP (item) && CONSP (XCAR (item))
6803 && (NILP (XCAR (XCAR (item)))
6804 || VECTORP (XCAR (XCAR (item)))))
6806 cachelist = XCAR (item);
6807 item = XCDR (item);
6810 /* This is the real definition--the function to run. */
6811 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
6813 /* Get enable property, if any. */
6814 if (SYMBOLP (item))
6816 tem = Fget (item, Qmenu_enable);
6817 if (!NILP (tem))
6818 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
6821 else if (EQ (item_string, Qmenu_item) && CONSP (item))
6823 /* New format menu item. */
6824 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
6825 start = XCDR (item);
6826 if (CONSP (start))
6828 /* We have a real binding. */
6829 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
6831 item = XCDR (start);
6832 /* Is there a cache list with key equivalences. */
6833 if (CONSP (item) && CONSP (XCAR (item)))
6835 cachelist = XCAR (item);
6836 item = XCDR (item);
6839 /* Parse properties. */
6840 while (CONSP (item) && CONSP (XCDR (item)))
6842 tem = XCAR (item);
6843 item = XCDR (item);
6845 if (EQ (tem, QCenable))
6846 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
6847 else if (EQ (tem, QCvisible) && !notreal)
6849 /* If got a visible property and that evaluates to nil
6850 then ignore this item. */
6851 tem = menu_item_eval_property (XCAR (item));
6852 if (NILP (tem))
6853 return 0;
6855 else if (EQ (tem, QChelp))
6856 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
6857 else if (EQ (tem, QCfilter))
6858 filter = item;
6859 else if (EQ (tem, QCkey_sequence))
6861 tem = XCAR (item);
6862 if (NILP (cachelist)
6863 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
6864 /* Be GC protected. Set keyhint to item instead of tem. */
6865 keyhint = item;
6867 else if (EQ (tem, QCkeys))
6869 tem = XCAR (item);
6870 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
6871 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
6873 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
6875 Lisp_Object type;
6876 tem = XCAR (item);
6877 type = XCAR (tem);
6878 if (EQ (type, QCtoggle) || EQ (type, QCradio))
6880 AREF (item_properties, ITEM_PROPERTY_SELECTED)
6881 = XCDR (tem);
6882 AREF (item_properties, ITEM_PROPERTY_TYPE)
6883 = type;
6886 item = XCDR (item);
6889 else if (inmenubar || !NILP (start))
6890 return 0;
6892 else
6893 return 0; /* not a menu item */
6895 /* If item string is not a string, evaluate it to get string.
6896 If we don't get a string, skip this item. */
6897 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
6898 if (!(STRINGP (item_string) || notreal))
6900 item_string = menu_item_eval_property (item_string);
6901 if (!STRINGP (item_string))
6902 return 0;
6903 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
6906 /* If got a filter apply it on definition. */
6907 def = AREF (item_properties, ITEM_PROPERTY_DEF);
6908 if (!NILP (filter))
6910 def = menu_item_eval_property (list2 (XCAR (filter),
6911 list2 (Qquote, def)));
6913 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
6916 /* Enable or disable selection of item. */
6917 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
6918 if (!EQ (tem, Qt))
6920 if (notreal)
6921 tem = Qt;
6922 else
6923 tem = menu_item_eval_property (tem);
6924 if (inmenubar && NILP (tem))
6925 return 0; /* Ignore disabled items in menu bar. */
6926 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
6929 /* If we got no definition, this item is just unselectable text which
6930 is OK in a submenu but not in the menubar. */
6931 if (NILP (def))
6932 return (inmenubar ? 0 : 1);
6934 /* See if this is a separate pane or a submenu. */
6935 def = AREF (item_properties, ITEM_PROPERTY_DEF);
6936 tem = get_keymap (def, 0, 1);
6937 /* For a subkeymap, just record its details and exit. */
6938 if (CONSP (tem))
6940 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
6941 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
6942 return 1;
6945 /* At the top level in the menu bar, do likewise for commands also.
6946 The menu bar does not display equivalent key bindings anyway.
6947 ITEM_PROPERTY_DEF is already set up properly. */
6948 if (inmenubar > 0)
6949 return 1;
6951 /* This is a command. See if there is an equivalent key binding. */
6952 if (NILP (cachelist))
6954 /* We have to create a cachelist. */
6955 CHECK_IMPURE (start);
6956 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
6957 cachelist = XCAR (XCDR (start));
6958 newcache = 1;
6959 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
6960 if (!NILP (keyhint))
6962 XSETCAR (cachelist, XCAR (keyhint));
6963 newcache = 0;
6965 else if (STRINGP (tem))
6967 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
6968 XSETCAR (cachelist, Qt);
6972 tem = XCAR (cachelist);
6973 if (!EQ (tem, Qt))
6975 int chkcache = 0;
6976 Lisp_Object prefix;
6978 if (!NILP (tem))
6979 tem = Fkey_binding (tem, Qnil, Qnil);
6981 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
6982 if (CONSP (prefix))
6984 def = XCAR (prefix);
6985 prefix = XCDR (prefix);
6987 else
6988 def = AREF (item_properties, ITEM_PROPERTY_DEF);
6990 if (!update_menu_bindings)
6991 chkcache = 0;
6992 else if (NILP (XCAR (cachelist))) /* Have no saved key. */
6994 if (newcache /* Always check first time. */
6995 /* Should we check everything when precomputing key
6996 bindings? */
6997 /* If something had no key binding before, don't recheck it
6998 because that is too slow--except if we have a list of
6999 rebound commands in Vdefine_key_rebound_commands, do
7000 recheck any command that appears in that list. */
7001 || (CONSP (Vdefine_key_rebound_commands)
7002 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7003 chkcache = 1;
7005 /* We had a saved key. Is it still bound to the command? */
7006 else if (NILP (tem)
7007 || (!EQ (tem, def)
7008 /* If the command is an alias for another
7009 (such as lmenu.el set it up), check if the
7010 original command matches the cached command. */
7011 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7012 chkcache = 1; /* Need to recompute key binding. */
7014 if (chkcache)
7016 /* Recompute equivalent key binding. If the command is an alias
7017 for another (such as lmenu.el set it up), see if the original
7018 command name has equivalent keys. Otherwise look up the
7019 specified command itself. We don't try both, because that
7020 makes lmenu menus slow. */
7021 if (SYMBOLP (def)
7022 && SYMBOLP (XSYMBOL (def)->function)
7023 && ! NILP (Fget (def, Qmenu_alias)))
7024 def = XSYMBOL (def)->function;
7025 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7026 XSETCAR (cachelist, tem);
7027 if (NILP (tem))
7029 XSETCDR (cachelist, Qnil);
7030 chkcache = 0;
7033 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7035 tem = XCAR (cachelist);
7036 chkcache = 1;
7039 newcache = chkcache;
7040 if (chkcache)
7042 tem = Fkey_description (tem);
7043 if (CONSP (prefix))
7045 if (STRINGP (XCAR (prefix)))
7046 tem = concat2 (XCAR (prefix), tem);
7047 if (STRINGP (XCDR (prefix)))
7048 tem = concat2 (tem, XCDR (prefix));
7050 XSETCDR (cachelist, tem);
7054 tem = XCDR (cachelist);
7055 if (newcache && !NILP (tem))
7057 tem = concat3 (build_string (" ("), tem, build_string (")"));
7058 XSETCDR (cachelist, tem);
7061 /* If we only want to precompute equivalent key bindings, stop here. */
7062 if (notreal)
7063 return 1;
7065 /* If we have an equivalent key binding, use that. */
7066 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7068 /* Include this when menu help is implemented.
7069 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7070 if (!(NILP (tem) || STRINGP (tem)))
7072 tem = menu_item_eval_property (tem);
7073 if (!STRINGP (tem))
7074 tem = Qnil;
7075 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7079 /* Handle radio buttons or toggle boxes. */
7080 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7081 if (!NILP (tem))
7082 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7083 = menu_item_eval_property (tem);
7085 return 1;
7090 /***********************************************************************
7091 Tool-bars
7092 ***********************************************************************/
7094 /* A vector holding tool bar items while they are parsed in function
7095 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7096 in the vector. */
7098 static Lisp_Object tool_bar_items_vector;
7100 /* A vector holding the result of parse_tool_bar_item. Layout is like
7101 the one for a single item in tool_bar_items_vector. */
7103 static Lisp_Object tool_bar_item_properties;
7105 /* Next free index in tool_bar_items_vector. */
7107 static int ntool_bar_items;
7109 /* The symbols `tool-bar', and `:image'. */
7111 extern Lisp_Object Qtool_bar;
7112 Lisp_Object QCimage;
7114 /* Function prototypes. */
7116 static void init_tool_bar_items P_ ((Lisp_Object));
7117 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7118 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7119 static void append_tool_bar_item P_ ((void));
7122 /* Return a vector of tool bar items for keymaps currently in effect.
7123 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7124 tool bar items found. */
7126 Lisp_Object
7127 tool_bar_items (reuse, nitems)
7128 Lisp_Object reuse;
7129 int *nitems;
7131 Lisp_Object *maps;
7132 int nmaps, i;
7133 Lisp_Object oquit;
7134 Lisp_Object *tmaps;
7135 extern Lisp_Object Voverriding_local_map_menu_flag;
7136 extern Lisp_Object Voverriding_local_map;
7138 *nitems = 0;
7140 /* In order to build the menus, we need to call the keymap
7141 accessors. They all call QUIT. But this function is called
7142 during redisplay, during which a quit is fatal. So inhibit
7143 quitting while building the menus. We do this instead of
7144 specbind because (1) errors will clear it anyway and (2) this
7145 avoids risk of specpdl overflow. */
7146 oquit = Vinhibit_quit;
7147 Vinhibit_quit = Qt;
7149 /* Initialize tool_bar_items_vector and protect it from GC. */
7150 init_tool_bar_items (reuse);
7152 /* Build list of keymaps in maps. Set nmaps to the number of maps
7153 to process. */
7155 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7156 if (!NILP (Voverriding_local_map_menu_flag))
7158 /* Yes, use them (if non-nil) as well as the global map. */
7159 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7160 nmaps = 0;
7161 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7162 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7163 if (!NILP (Voverriding_local_map))
7164 maps[nmaps++] = Voverriding_local_map;
7166 else
7168 /* No, so use major and minor mode keymaps and keymap property.
7169 Note that tool-bar bindings in the local-map and keymap
7170 properties may not work reliable, as they are only
7171 recognized when the tool-bar (or mode-line) is updated,
7172 which does not normally happen after every command. */
7173 Lisp_Object tem;
7174 int nminor;
7175 nminor = current_minor_maps (NULL, &tmaps);
7176 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7177 nmaps = 0;
7178 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7179 maps[nmaps++] = tem;
7180 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7181 nmaps += nminor;
7182 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7185 /* Add global keymap at the end. */
7186 maps[nmaps++] = current_global_map;
7188 /* Process maps in reverse order and look up in each map the prefix
7189 key `tool-bar'. */
7190 for (i = nmaps - 1; i >= 0; --i)
7191 if (!NILP (maps[i]))
7193 Lisp_Object keymap;
7195 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7196 if (CONSP (keymap))
7198 Lisp_Object tail;
7200 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7201 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7203 Lisp_Object keydef = XCAR (tail);
7204 if (CONSP (keydef))
7205 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7210 Vinhibit_quit = oquit;
7211 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7212 return tool_bar_items_vector;
7216 /* Process the definition of KEY which is DEF. */
7218 static void
7219 process_tool_bar_item (key, def)
7220 Lisp_Object key, def;
7222 int i;
7223 extern Lisp_Object Qundefined;
7224 struct gcpro gcpro1, gcpro2;
7226 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7227 eval. */
7228 GCPRO2 (key, def);
7230 if (EQ (def, Qundefined))
7232 /* If a map has an explicit `undefined' as definition,
7233 discard any previously made item. */
7234 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7236 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7238 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7240 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7241 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7242 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7243 * sizeof (Lisp_Object)));
7244 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7245 break;
7249 else if (parse_tool_bar_item (key, def))
7250 /* Append a new tool bar item to tool_bar_items_vector. Accept
7251 more than one definition for the same key. */
7252 append_tool_bar_item ();
7254 UNGCPRO;
7258 /* Parse a tool bar item specification ITEM for key KEY and return the
7259 result in tool_bar_item_properties. Value is zero if ITEM is
7260 invalid.
7262 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7264 CAPTION is the caption of the item, If it's not a string, it is
7265 evaluated to get a string.
7267 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7268 as binding are currently ignored.
7270 The following properties are recognized:
7272 - `:enable FORM'.
7274 FORM is evaluated and specifies whether the tool bar item is
7275 enabled or disabled.
7277 - `:visible FORM'
7279 FORM is evaluated and specifies whether the tool bar item is visible.
7281 - `:filter FUNCTION'
7283 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7284 result is stored as the new binding.
7286 - `:button (TYPE SELECTED)'
7288 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7289 and specifies whether the button is selected (pressed) or not.
7291 - `:image IMAGES'
7293 IMAGES is either a single image specification or a vector of four
7294 image specifications. See enum tool_bar_item_images.
7296 - `:help HELP-STRING'.
7298 Gives a help string to display for the tool bar item. */
7300 static int
7301 parse_tool_bar_item (key, item)
7302 Lisp_Object key, item;
7304 /* Access slot with index IDX of vector tool_bar_item_properties. */
7305 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7307 Lisp_Object filter = Qnil;
7308 Lisp_Object caption;
7309 int i;
7311 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7312 Rule out items that aren't lists, don't start with
7313 `menu-item' or whose rest following `tool-bar-item' is not a
7314 list. */
7315 if (!CONSP (item)
7316 || !EQ (XCAR (item), Qmenu_item)
7317 || (item = XCDR (item),
7318 !CONSP (item)))
7319 return 0;
7321 /* Create tool_bar_item_properties vector if necessary. Reset it to
7322 defaults. */
7323 if (VECTORP (tool_bar_item_properties))
7325 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7326 PROP (i) = Qnil;
7328 else
7329 tool_bar_item_properties
7330 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7332 /* Set defaults. */
7333 PROP (TOOL_BAR_ITEM_KEY) = key;
7334 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7336 /* Get the caption of the item. If the caption is not a string,
7337 evaluate it to get a string. If we don't get a string, skip this
7338 item. */
7339 caption = XCAR (item);
7340 if (!STRINGP (caption))
7342 caption = menu_item_eval_property (caption);
7343 if (!STRINGP (caption))
7344 return 0;
7346 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7348 /* Give up if rest following the caption is not a list. */
7349 item = XCDR (item);
7350 if (!CONSP (item))
7351 return 0;
7353 /* Store the binding. */
7354 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7355 item = XCDR (item);
7357 /* Ignore cached key binding, if any. */
7358 if (CONSP (item) && CONSP (XCAR (item)))
7359 item = XCDR (item);
7361 /* Process the rest of the properties. */
7362 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7364 Lisp_Object key, value;
7366 key = XCAR (item);
7367 value = XCAR (XCDR (item));
7369 if (EQ (key, QCenable))
7370 /* `:enable FORM'. */
7371 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7372 else if (EQ (key, QCvisible))
7374 /* `:visible FORM'. If got a visible property and that
7375 evaluates to nil then ignore this item. */
7376 if (NILP (menu_item_eval_property (value)))
7377 return 0;
7379 else if (EQ (key, QChelp))
7380 /* `:help HELP-STRING'. */
7381 PROP (TOOL_BAR_ITEM_HELP) = value;
7382 else if (EQ (key, QCfilter))
7383 /* ':filter FORM'. */
7384 filter = value;
7385 else if (EQ (key, QCbutton) && CONSP (value))
7387 /* `:button (TYPE . SELECTED)'. */
7388 Lisp_Object type, selected;
7390 type = XCAR (value);
7391 selected = XCDR (value);
7392 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7394 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7395 PROP (TOOL_BAR_ITEM_TYPE) = type;
7398 else if (EQ (key, QCimage)
7399 && (CONSP (value)
7400 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7401 /* Value is either a single image specification or a vector
7402 of 4 such specifications for the different button states. */
7403 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7406 /* If got a filter apply it on binding. */
7407 if (!NILP (filter))
7408 PROP (TOOL_BAR_ITEM_BINDING)
7409 = menu_item_eval_property (list2 (filter,
7410 list2 (Qquote,
7411 PROP (TOOL_BAR_ITEM_BINDING))));
7413 /* See if the binding is a keymap. Give up if it is. */
7414 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7415 return 0;
7417 /* Enable or disable selection of item. */
7418 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7419 PROP (TOOL_BAR_ITEM_ENABLED_P)
7420 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7422 /* Handle radio buttons or toggle boxes. */
7423 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7424 PROP (TOOL_BAR_ITEM_SELECTED_P)
7425 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7427 return 1;
7429 #undef PROP
7433 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7434 that can be reused. */
7436 static void
7437 init_tool_bar_items (reuse)
7438 Lisp_Object reuse;
7440 if (VECTORP (reuse))
7441 tool_bar_items_vector = reuse;
7442 else
7443 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7444 ntool_bar_items = 0;
7448 /* Append parsed tool bar item properties from
7449 tool_bar_item_properties */
7451 static void
7452 append_tool_bar_item ()
7454 Lisp_Object *to, *from;
7456 /* Enlarge tool_bar_items_vector if necessary. */
7457 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7458 >= XVECTOR (tool_bar_items_vector)->size)
7460 Lisp_Object new_vector;
7461 int old_size = XVECTOR (tool_bar_items_vector)->size;
7463 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
7464 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7465 XVECTOR (new_vector)->contents,
7466 old_size * sizeof (Lisp_Object));
7467 tool_bar_items_vector = new_vector;
7470 /* Append entries from tool_bar_item_properties to the end of
7471 tool_bar_items_vector. */
7472 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7473 from = XVECTOR (tool_bar_item_properties)->contents;
7474 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7475 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7482 /* Read a character using menus based on maps in the array MAPS.
7483 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7484 Return t if we displayed a menu but the user rejected it.
7486 PREV_EVENT is the previous input event, or nil if we are reading
7487 the first event of a key sequence.
7489 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7490 if we used a mouse menu to read the input, or zero otherwise. If
7491 USED_MOUSE_MENU is null, we don't dereference it.
7493 The prompting is done based on the prompt-string of the map
7494 and the strings associated with various map elements.
7496 This can be done with X menus or with menus put in the minibuf.
7497 These are done in different ways, depending on how the input will be read.
7498 Menus using X are done after auto-saving in read-char, getting the input
7499 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7500 and do auto-saving in the inner call of read_char. */
7502 static Lisp_Object
7503 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7504 int nmaps;
7505 Lisp_Object *maps;
7506 Lisp_Object prev_event;
7507 int *used_mouse_menu;
7509 int mapno;
7510 register Lisp_Object name;
7512 if (used_mouse_menu)
7513 *used_mouse_menu = 0;
7515 /* Use local over global Menu maps */
7517 if (! menu_prompting)
7518 return Qnil;
7520 /* Optionally disregard all but the global map. */
7521 if (inhibit_local_menu_bar_menus)
7523 maps += (nmaps - 1);
7524 nmaps = 1;
7527 /* Get the menu name from the first map that has one (a prompt string). */
7528 for (mapno = 0; mapno < nmaps; mapno++)
7530 name = Fkeymap_prompt (maps[mapno]);
7531 if (!NILP (name))
7532 break;
7535 /* If we don't have any menus, just read a character normally. */
7536 if (mapno >= nmaps)
7537 return Qnil;
7539 #ifdef HAVE_MENUS
7540 /* If we got to this point via a mouse click,
7541 use a real menu for mouse selection. */
7542 if (EVENT_HAS_PARAMETERS (prev_event)
7543 && !EQ (XCAR (prev_event), Qmenu_bar)
7544 && !EQ (XCAR (prev_event), Qtool_bar))
7546 /* Display the menu and get the selection. */
7547 Lisp_Object *realmaps
7548 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
7549 Lisp_Object value;
7550 int nmaps1 = 0;
7552 /* Use the maps that are not nil. */
7553 for (mapno = 0; mapno < nmaps; mapno++)
7554 if (!NILP (maps[mapno]))
7555 realmaps[nmaps1++] = maps[mapno];
7557 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
7558 if (CONSP (value))
7560 Lisp_Object tem;
7562 record_menu_key (XCAR (value));
7564 /* If we got multiple events, unread all but
7565 the first.
7566 There is no way to prevent those unread events
7567 from showing up later in last_nonmenu_event.
7568 So turn symbol and integer events into lists,
7569 to indicate that they came from a mouse menu,
7570 so that when present in last_nonmenu_event
7571 they won't confuse things. */
7572 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
7574 record_menu_key (XCAR (tem));
7575 if (SYMBOLP (XCAR (tem))
7576 || INTEGERP (XCAR (tem)))
7577 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
7580 /* If we got more than one event, put all but the first
7581 onto this list to be read later.
7582 Return just the first event now. */
7583 Vunread_command_events
7584 = nconc2 (XCDR (value), Vunread_command_events);
7585 value = XCAR (value);
7587 else if (NILP (value))
7588 value = Qt;
7589 if (used_mouse_menu)
7590 *used_mouse_menu = 1;
7591 return value;
7593 #endif /* HAVE_MENUS */
7594 return Qnil ;
7597 /* Buffer in use so far for the minibuf prompts for menu keymaps.
7598 We make this bigger when necessary, and never free it. */
7599 static char *read_char_minibuf_menu_text;
7600 /* Size of that buffer. */
7601 static int read_char_minibuf_menu_width;
7603 static Lisp_Object
7604 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
7605 int commandflag ;
7606 int nmaps;
7607 Lisp_Object *maps;
7609 int mapno;
7610 register Lisp_Object name;
7611 int nlength;
7612 int width = FRAME_WIDTH (SELECTED_FRAME ()) - 4;
7613 int idx = -1;
7614 int nobindings = 1;
7615 Lisp_Object rest, vector;
7616 char *menu;
7618 vector = Qnil;
7619 name = Qnil;
7621 if (! menu_prompting)
7622 return Qnil;
7624 /* Make sure we have a big enough buffer for the menu text. */
7625 if (read_char_minibuf_menu_text == 0)
7627 read_char_minibuf_menu_width = width + 4;
7628 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
7630 else if (width + 4 > read_char_minibuf_menu_width)
7632 read_char_minibuf_menu_width = width + 4;
7633 read_char_minibuf_menu_text
7634 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
7636 menu = read_char_minibuf_menu_text;
7638 /* Get the menu name from the first map that has one (a prompt string). */
7639 for (mapno = 0; mapno < nmaps; mapno++)
7641 name = Fkeymap_prompt (maps[mapno]);
7642 if (!NILP (name))
7643 break;
7646 /* If we don't have any menus, just read a character normally. */
7647 if (!STRINGP (name));
7648 return Qnil;
7650 /* Prompt string always starts with map's prompt, and a space. */
7651 strcpy (menu, XSTRING (name)->data);
7652 nlength = STRING_BYTES (XSTRING (name));
7653 menu[nlength++] = ':';
7654 menu[nlength++] = ' ';
7655 menu[nlength] = 0;
7657 /* Start prompting at start of first map. */
7658 mapno = 0;
7659 rest = maps[mapno];
7661 /* Present the documented bindings, a line at a time. */
7662 while (1)
7664 int notfirst = 0;
7665 int i = nlength;
7666 Lisp_Object obj;
7667 int ch;
7668 Lisp_Object orig_defn_macro;
7670 /* Loop over elements of map. */
7671 while (i < width)
7673 Lisp_Object elt;
7675 /* If reached end of map, start at beginning of next map. */
7676 if (NILP (rest))
7678 mapno++;
7679 /* At end of last map, wrap around to first map if just starting,
7680 or end this line if already have something on it. */
7681 if (mapno == nmaps)
7683 mapno = 0;
7684 if (notfirst || nobindings) break;
7686 rest = maps[mapno];
7689 /* Look at the next element of the map. */
7690 if (idx >= 0)
7691 elt = XVECTOR (vector)->contents[idx];
7692 else
7693 elt = Fcar_safe (rest);
7695 if (idx < 0 && VECTORP (elt))
7697 /* If we found a dense table in the keymap,
7698 advanced past it, but start scanning its contents. */
7699 rest = Fcdr_safe (rest);
7700 vector = elt;
7701 idx = 0;
7703 else
7705 /* An ordinary element. */
7706 Lisp_Object event, tem;
7708 if (idx < 0)
7710 event = Fcar_safe (elt); /* alist */
7711 elt = Fcdr_safe (elt);
7713 else
7715 XSETINT (event, idx); /* vector */
7718 /* Ignore the element if it has no prompt string. */
7719 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
7721 /* 1 if the char to type matches the string. */
7722 int char_matches;
7723 Lisp_Object upcased_event, downcased_event;
7724 Lisp_Object desc = Qnil;
7725 Lisp_Object s
7726 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7728 upcased_event = Fupcase (event);
7729 downcased_event = Fdowncase (event);
7730 char_matches = (XINT (upcased_event) == XSTRING (s)->data[0]
7731 || XINT (downcased_event) == XSTRING (s)->data[0]);
7732 if (! char_matches)
7733 desc = Fsingle_key_description (event, Qnil);
7736 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
7737 if (!NILP (tem))
7738 /* Insert equivalent keybinding. */
7739 s = concat2 (s, tem);
7742 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
7743 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
7745 /* Insert button prefix. */
7746 Lisp_Object selected
7747 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
7748 if (EQ (tem, QCradio))
7749 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
7750 else
7751 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
7752 s = concat2 (tem, s);
7756 /* If we have room for the prompt string, add it to this line.
7757 If this is the first on the line, always add it. */
7758 if ((XSTRING (s)->size + i + 2
7759 + (char_matches ? 0 : XSTRING (desc)->size + 3))
7760 < width
7761 || !notfirst)
7763 int thiswidth;
7765 /* Punctuate between strings. */
7766 if (notfirst)
7768 strcpy (menu + i, ", ");
7769 i += 2;
7771 notfirst = 1;
7772 nobindings = 0 ;
7774 /* If the char to type doesn't match the string's
7775 first char, explicitly show what char to type. */
7776 if (! char_matches)
7778 /* Add as much of string as fits. */
7779 thiswidth = XSTRING (desc)->size;
7780 if (thiswidth + i > width)
7781 thiswidth = width - i;
7782 bcopy (XSTRING (desc)->data, menu + i, thiswidth);
7783 i += thiswidth;
7784 strcpy (menu + i, " = ");
7785 i += 3;
7788 /* Add as much of string as fits. */
7789 thiswidth = XSTRING (s)->size;
7790 if (thiswidth + i > width)
7791 thiswidth = width - i;
7792 bcopy (XSTRING (s)->data, menu + i, thiswidth);
7793 i += thiswidth;
7794 menu[i] = 0;
7796 else
7798 /* If this element does not fit, end the line now,
7799 and save the element for the next line. */
7800 strcpy (menu + i, "...");
7801 break;
7805 /* Move past this element. */
7806 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
7807 /* Handle reaching end of dense table. */
7808 idx = -1;
7809 if (idx >= 0)
7810 idx++;
7811 else
7812 rest = Fcdr_safe (rest);
7816 /* Prompt with that and read response. */
7817 message2_nolog (menu, strlen (menu),
7818 ! NILP (current_buffer->enable_multibyte_characters));
7820 /* Make believe its not a keyboard macro in case the help char
7821 is pressed. Help characters are not recorded because menu prompting
7822 is not used on replay.
7824 orig_defn_macro = current_kboard->defining_kbd_macro;
7825 current_kboard->defining_kbd_macro = Qnil;
7827 obj = read_char (commandflag, 0, 0, Qt, 0);
7828 while (BUFFERP (obj));
7829 current_kboard->defining_kbd_macro = orig_defn_macro;
7831 if (!INTEGERP (obj))
7832 return obj;
7833 else
7834 ch = XINT (obj);
7836 if (! EQ (obj, menu_prompt_more_char)
7837 && (!INTEGERP (menu_prompt_more_char)
7838 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
7840 if (!NILP (current_kboard->defining_kbd_macro))
7841 store_kbd_macro_char (obj);
7842 return obj;
7844 /* Help char - go round again */
7848 /* Reading key sequences. */
7850 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
7851 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
7852 keymap, or nil otherwise. Return the index of the first keymap in
7853 which KEY has any binding, or NMAPS if no map has a binding.
7855 If KEY is a meta ASCII character, treat it like meta-prefix-char
7856 followed by the corresponding non-meta character. Keymaps in
7857 CURRENT with non-prefix bindings for meta-prefix-char become nil in
7858 NEXT.
7860 If KEY has no bindings in any of the CURRENT maps, NEXT is left
7861 unmodified.
7863 NEXT may be the same array as CURRENT. */
7865 static int
7866 follow_key (key, nmaps, current, defs, next)
7867 Lisp_Object key;
7868 Lisp_Object *current, *defs, *next;
7869 int nmaps;
7871 int i, first_binding;
7872 int did_meta = 0;
7874 first_binding = nmaps;
7875 for (i = nmaps - 1; i >= 0; i--)
7877 if (! NILP (current[i]))
7879 Lisp_Object map;
7880 if (did_meta)
7881 map = defs[i];
7882 else
7883 map = current[i];
7885 defs[i] = access_keymap (map, key, 1, 0, 1);
7886 if (! NILP (defs[i]))
7887 first_binding = i;
7889 else
7890 defs[i] = Qnil;
7893 /* Given the set of bindings we've found, produce the next set of maps. */
7894 if (first_binding < nmaps)
7895 for (i = 0; i < nmaps; i++)
7896 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
7898 return first_binding;
7901 /* Read a sequence of keys that ends with a non prefix character,
7902 storing it in KEYBUF, a buffer of size BUFSIZE.
7903 Prompt with PROMPT.
7904 Return the length of the key sequence stored.
7905 Return -1 if the user rejected a command menu.
7907 Echo starting immediately unless `prompt' is 0.
7909 Where a key sequence ends depends on the currently active keymaps.
7910 These include any minor mode keymaps active in the current buffer,
7911 the current buffer's local map, and the global map.
7913 If a key sequence has no other bindings, we check Vfunction_key_map
7914 to see if some trailing subsequence might be the beginning of a
7915 function key's sequence. If so, we try to read the whole function
7916 key, and substitute its symbolic name into the key sequence.
7918 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
7919 `double-' events into similar click events, if that would make them
7920 bound. We try to turn `triple-' events first into `double-' events,
7921 then into clicks.
7923 If we get a mouse click in a mode line, vertical divider, or other
7924 non-text area, we treat the click as if it were prefixed by the
7925 symbol denoting that area - `mode-line', `vertical-line', or
7926 whatever.
7928 If the sequence starts with a mouse click, we read the key sequence
7929 with respect to the buffer clicked on, not the current buffer.
7931 If the user switches frames in the midst of a key sequence, we put
7932 off the switch-frame event until later; the next call to
7933 read_char will return it.
7935 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
7936 from the selected window's buffer. */
7938 static int
7939 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
7940 can_return_switch_frame, fix_current_buffer)
7941 Lisp_Object *keybuf;
7942 int bufsize;
7943 Lisp_Object prompt;
7944 int dont_downcase_last;
7945 int can_return_switch_frame;
7946 int fix_current_buffer;
7948 volatile Lisp_Object from_string;
7949 volatile int count = specpdl_ptr - specpdl;
7951 /* How many keys there are in the current key sequence. */
7952 volatile int t;
7954 /* The length of the echo buffer when we started reading, and
7955 the length of this_command_keys when we started reading. */
7956 volatile int echo_start;
7957 volatile int keys_start;
7959 /* The number of keymaps we're scanning right now, and the number of
7960 keymaps we have allocated space for. */
7961 volatile int nmaps;
7962 volatile int nmaps_allocated = 0;
7964 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
7965 the current keymaps. */
7966 Lisp_Object *volatile defs = NULL;
7968 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7969 in the current keymaps, or nil where it is not a prefix. */
7970 Lisp_Object *volatile submaps = NULL;
7972 /* The local map to start out with at start of key sequence. */
7973 volatile Lisp_Object orig_local_map;
7975 /* The map from the `keymap' property to start out with at start of
7976 key sequence. */
7977 volatile Lisp_Object orig_keymap;
7979 /* 1 if we have already considered switching to the local-map property
7980 of the place where a mouse click occurred. */
7981 volatile int localized_local_map = 0;
7983 /* The index in defs[] of the first keymap that has a binding for
7984 this key sequence. In other words, the lowest i such that
7985 defs[i] is non-nil. */
7986 volatile int first_binding;
7987 /* Index of the first key that has no binding.
7988 It is useless to try fkey_start larger than that. */
7989 volatile int first_unbound;
7991 /* If t < mock_input, then KEYBUF[t] should be read as the next
7992 input key.
7994 We use this to recover after recognizing a function key. Once we
7995 realize that a suffix of the current key sequence is actually a
7996 function key's escape sequence, we replace the suffix with the
7997 function key's binding from Vfunction_key_map. Now keybuf
7998 contains a new and different key sequence, so the echo area,
7999 this_command_keys, and the submaps and defs arrays are wrong. In
8000 this situation, we set mock_input to t, set t to 0, and jump to
8001 restart_sequence; the loop will read keys from keybuf up until
8002 mock_input, thus rebuilding the state; and then it will resume
8003 reading characters from the keyboard. */
8004 volatile int mock_input = 0;
8006 /* If the sequence is unbound in submaps[], then
8007 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
8008 and fkey_map is its binding.
8010 These might be > t, indicating that all function key scanning
8011 should hold off until t reaches them. We do this when we've just
8012 recognized a function key, to avoid searching for the function
8013 key's again in Vfunction_key_map. */
8014 volatile int fkey_start = 0, fkey_end = 0;
8015 volatile Lisp_Object fkey_map;
8017 /* Likewise, for key_translation_map. */
8018 volatile int keytran_start = 0, keytran_end = 0;
8019 volatile Lisp_Object keytran_map;
8021 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
8022 we put it off for later. While we're reading, we keep the event here. */
8023 volatile Lisp_Object delayed_switch_frame;
8025 /* See the comment below... */
8026 #if defined (GOBBLE_FIRST_EVENT)
8027 Lisp_Object first_event;
8028 #endif
8030 volatile Lisp_Object original_uppercase;
8031 volatile int original_uppercase_position = -1;
8033 /* Gets around Microsoft compiler limitations. */
8034 int dummyflag = 0;
8036 struct buffer *starting_buffer;
8038 /* Nonzero if we seem to have got the beginning of a binding
8039 in function_key_map. */
8040 volatile int function_key_possible = 0;
8041 volatile int key_translation_possible = 0;
8043 /* List of events for which a fake prefix key has been generated. */
8044 volatile Lisp_Object fake_prefixed_keys = Qnil;
8046 /* Save the status of key translation before each step,
8047 so that we can restore this after downcasing. */
8048 Lisp_Object prev_fkey_map;
8049 int prev_fkey_start;
8050 int prev_fkey_end;
8052 Lisp_Object prev_keytran_map;
8053 int prev_keytran_start;
8054 int prev_keytran_end;
8056 #if defined (GOBBLE_FIRST_EVENT)
8057 int junk;
8058 #endif
8060 struct gcpro gcpro1;
8062 GCPRO1 (fake_prefixed_keys);
8063 raw_keybuf_count = 0;
8065 last_nonmenu_event = Qnil;
8067 delayed_switch_frame = Qnil;
8068 fkey_map = Vfunction_key_map;
8069 keytran_map = Vkey_translation_map;
8071 /* If there is no function-key-map, turn off function key scanning. */
8072 if (!KEYMAPP (Vfunction_key_map))
8073 fkey_start = fkey_end = bufsize + 1;
8075 /* If there is no key-translation-map, turn off scanning. */
8076 if (!KEYMAPP (Vkey_translation_map))
8077 keytran_start = keytran_end = bufsize + 1;
8079 if (INTERACTIVE)
8081 if (!NILP (prompt))
8082 echo_prompt (prompt);
8083 else if (cursor_in_echo_area
8084 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8085 && NILP (Fzerop (Vecho_keystrokes)))
8086 /* This doesn't put in a dash if the echo buffer is empty, so
8087 you don't always see a dash hanging out in the minibuffer. */
8088 echo_dash ();
8091 /* Record the initial state of the echo area and this_command_keys;
8092 we will need to restore them if we replay a key sequence. */
8093 if (INTERACTIVE)
8094 echo_start = echo_length ();
8095 keys_start = this_command_key_count;
8096 this_single_command_key_start = keys_start;
8098 #if defined (GOBBLE_FIRST_EVENT)
8099 /* This doesn't quite work, because some of the things that read_char
8100 does cannot safely be bypassed. It seems too risky to try to make
8101 this work right. */
8103 /* Read the first char of the sequence specially, before setting
8104 up any keymaps, in case a filter runs and switches buffers on us. */
8105 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8106 &junk);
8107 #endif /* GOBBLE_FIRST_EVENT */
8109 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8110 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8111 from_string = Qnil;
8113 /* We jump here when the key sequence has been thoroughly changed, and
8114 we need to rescan it starting from the beginning. When we jump here,
8115 keybuf[0..mock_input] holds the sequence we should reread. */
8116 replay_sequence:
8118 starting_buffer = current_buffer;
8119 function_key_possible = 0;
8120 key_translation_possible = 0;
8121 first_unbound = bufsize + 1;
8123 /* Build our list of keymaps.
8124 If we recognize a function key and replace its escape sequence in
8125 keybuf with its symbol, or if the sequence starts with a mouse
8126 click and we need to switch buffers, we jump back here to rebuild
8127 the initial keymaps from the current buffer. */
8128 nmaps = 0;
8130 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8131 || !NILP (Voverriding_local_map))
8133 if (3 > nmaps_allocated)
8135 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8136 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8137 nmaps_allocated = 3;
8139 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8140 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8141 if (!NILP (Voverriding_local_map))
8142 submaps[nmaps++] = Voverriding_local_map;
8144 else
8146 int nminor;
8147 int total;
8148 Lisp_Object *maps;
8150 nminor = current_minor_maps (0, &maps);
8151 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8153 if (total > nmaps_allocated)
8155 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8156 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8157 nmaps_allocated = total;
8160 if (!NILP (orig_keymap))
8161 submaps[nmaps++] = orig_keymap;
8163 bcopy (maps, (void *) (submaps + nmaps),
8164 nminor * sizeof (submaps[0]));
8166 nmaps += nminor;
8168 submaps[nmaps++] = orig_local_map;
8170 submaps[nmaps++] = current_global_map;
8172 /* Find an accurate initial value for first_binding. */
8173 for (first_binding = 0; first_binding < nmaps; first_binding++)
8174 if (! NILP (submaps[first_binding]))
8175 break;
8177 /* Start from the beginning in keybuf. */
8178 t = 0;
8180 /* These are no-ops the first time through, but if we restart, they
8181 revert the echo area and this_command_keys to their original state. */
8182 this_command_key_count = keys_start;
8183 if (INTERACTIVE && t < mock_input)
8184 echo_truncate (echo_start);
8186 /* If the best binding for the current key sequence is a keymap, or
8187 we may be looking at a function key's escape sequence, keep on
8188 reading. */
8189 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
8190 || (first_binding >= nmaps
8191 && fkey_start < t)
8192 || (first_binding >= nmaps
8193 && keytran_start < t && key_translation_possible)
8194 /* Don't return in the middle of a possible function key sequence,
8195 if the only bindings we found were via case conversion.
8196 Thus, if ESC O a has a function-key-map translation
8197 and ESC o has a binding, don't return after ESC O,
8198 so that we can translate ESC O plus the next character. */
8201 Lisp_Object key;
8202 int used_mouse_menu = 0;
8204 /* Where the last real key started. If we need to throw away a
8205 key that has expanded into more than one element of keybuf
8206 (say, a mouse click on the mode line which is being treated
8207 as [mode-line (mouse-...)], then we backtrack to this point
8208 of keybuf. */
8209 volatile int last_real_key_start;
8211 /* These variables are analogous to echo_start and keys_start;
8212 while those allow us to restart the entire key sequence,
8213 echo_local_start and keys_local_start allow us to throw away
8214 just one key. */
8215 volatile int echo_local_start, keys_local_start, local_first_binding;
8218 if (first_unbound < fkey_start && first_unbound < keytran_start)
8219 { /* The prefix upto first_unbound has no binding and has
8220 no translation left to do either, so we know it's unbound.
8221 If we don't stop now, we risk staying here indefinitely
8222 (if the user keeps entering fkey or keytran prefixes
8223 like C-c ESC ESC ESC ESC ...) */
8224 int i;
8225 for (i = first_unbound + 1; i < t; i++)
8226 keybuf[i - first_unbound - 1] = keybuf[i];
8227 mock_input = t - first_unbound - 1;
8228 fkey_end = fkey_start -= first_unbound + 1;
8229 fkey_map = Vfunction_key_map;
8230 keytran_end = keytran_start -= first_unbound + 1;
8231 keytran_map = Vkey_translation_map;
8232 goto replay_sequence;
8235 if (t >= bufsize)
8236 error ("Key sequence too long");
8238 if (INTERACTIVE)
8239 echo_local_start = echo_length ();
8240 keys_local_start = this_command_key_count;
8241 local_first_binding = first_binding;
8243 replay_key:
8244 /* These are no-ops, unless we throw away a keystroke below and
8245 jumped back up to replay_key; in that case, these restore the
8246 variables to their original state, allowing us to replay the
8247 loop. */
8248 if (INTERACTIVE && t < mock_input)
8249 echo_truncate (echo_local_start);
8250 this_command_key_count = keys_local_start;
8251 first_binding = local_first_binding;
8253 /* By default, assume each event is "real". */
8254 last_real_key_start = t;
8256 /* Does mock_input indicate that we are re-reading a key sequence? */
8257 if (t < mock_input)
8259 key = keybuf[t];
8260 add_command_key (key);
8261 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8262 && NILP (Fzerop (Vecho_keystrokes)))
8263 echo_char (key);
8266 /* If not, we should actually read a character. */
8267 else
8270 #ifdef MULTI_KBOARD
8271 KBOARD *interrupted_kboard = current_kboard;
8272 struct frame *interrupted_frame = SELECTED_FRAME ();
8273 if (setjmp (wrong_kboard_jmpbuf))
8275 if (!NILP (delayed_switch_frame))
8277 interrupted_kboard->kbd_queue
8278 = Fcons (delayed_switch_frame,
8279 interrupted_kboard->kbd_queue);
8280 delayed_switch_frame = Qnil;
8282 while (t > 0)
8283 interrupted_kboard->kbd_queue
8284 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8286 /* If the side queue is non-empty, ensure it begins with a
8287 switch-frame, so we'll replay it in the right context. */
8288 if (CONSP (interrupted_kboard->kbd_queue)
8289 && (key = XCAR (interrupted_kboard->kbd_queue),
8290 !(EVENT_HAS_PARAMETERS (key)
8291 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8292 Qswitch_frame))))
8294 Lisp_Object frame;
8295 XSETFRAME (frame, interrupted_frame);
8296 interrupted_kboard->kbd_queue
8297 = Fcons (make_lispy_switch_frame (frame),
8298 interrupted_kboard->kbd_queue);
8300 mock_input = 0;
8301 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8302 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8303 goto replay_sequence;
8305 #endif
8306 key = read_char (NILP (prompt), nmaps,
8307 (Lisp_Object *) submaps, last_nonmenu_event,
8308 &used_mouse_menu);
8311 /* read_char returns t when it shows a menu and the user rejects it.
8312 Just return -1. */
8313 if (EQ (key, Qt))
8315 unbind_to (count, Qnil);
8316 UNGCPRO;
8317 return -1;
8320 /* read_char returns -1 at the end of a macro.
8321 Emacs 18 handles this by returning immediately with a
8322 zero, so that's what we'll do. */
8323 if (INTEGERP (key) && XINT (key) == -1)
8325 t = 0;
8326 /* The Microsoft C compiler can't handle the goto that
8327 would go here. */
8328 dummyflag = 1;
8329 break;
8332 /* If the current buffer has been changed from under us, the
8333 keymap may have changed, so replay the sequence. */
8334 if (BUFFERP (key))
8336 mock_input = t;
8337 /* Reset the current buffer from the selected window
8338 in case something changed the former and not the latter.
8339 This is to be more consistent with the behavior
8340 of the command_loop_1. */
8341 if (fix_current_buffer)
8343 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8344 Fkill_emacs (Qnil);
8345 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8346 Fset_buffer (XWINDOW (selected_window)->buffer);
8349 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8350 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8351 goto replay_sequence;
8354 /* If we have a quit that was typed in another frame, and
8355 quit_throw_to_read_char switched buffers,
8356 replay to get the right keymap. */
8357 if (INTEGERP (key)
8358 && XINT (key) == quit_char
8359 && current_buffer != starting_buffer)
8361 GROW_RAW_KEYBUF;
8362 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8363 keybuf[t++] = key;
8364 mock_input = t;
8365 Vquit_flag = Qnil;
8366 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8367 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8368 goto replay_sequence;
8371 Vquit_flag = Qnil;
8373 if (EVENT_HAS_PARAMETERS (key)
8374 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8376 /* If we're at the beginning of a key sequence, and the caller
8377 says it's okay, go ahead and return this event. If we're
8378 in the midst of a key sequence, delay it until the end. */
8379 if (t > 0 || !can_return_switch_frame)
8381 delayed_switch_frame = key;
8382 goto replay_key;
8386 GROW_RAW_KEYBUF;
8387 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8390 /* Clicks in non-text areas get prefixed by the symbol
8391 in their CHAR-ADDRESS field. For example, a click on
8392 the mode line is prefixed by the symbol `mode-line'.
8394 Furthermore, key sequences beginning with mouse clicks
8395 are read using the keymaps of the buffer clicked on, not
8396 the current buffer. So we may have to switch the buffer
8397 here.
8399 When we turn one event into two events, we must make sure
8400 that neither of the two looks like the original--so that,
8401 if we replay the events, they won't be expanded again.
8402 If not for this, such reexpansion could happen either here
8403 or when user programs play with this-command-keys. */
8404 if (EVENT_HAS_PARAMETERS (key))
8406 Lisp_Object kind;
8408 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
8409 if (EQ (kind, Qmouse_click))
8411 Lisp_Object window, posn;
8413 window = POSN_WINDOW (EVENT_START (key));
8414 posn = POSN_BUFFER_POSN (EVENT_START (key));
8416 if (CONSP (posn)
8417 || (!NILP (fake_prefixed_keys)
8418 && !NILP (Fmemq (key, fake_prefixed_keys))))
8420 /* We're looking a second time at an event for which
8421 we generated a fake prefix key. Set
8422 last_real_key_start appropriately. */
8423 if (t > 0)
8424 last_real_key_start = t - 1;
8427 /* Key sequences beginning with mouse clicks are
8428 read using the keymaps in the buffer clicked on,
8429 not the current buffer. If we're at the
8430 beginning of a key sequence, switch buffers. */
8431 if (last_real_key_start == 0
8432 && WINDOWP (window)
8433 && BUFFERP (XWINDOW (window)->buffer)
8434 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
8436 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8437 keybuf[t] = key;
8438 mock_input = t + 1;
8440 /* Arrange to go back to the original buffer once we're
8441 done reading the key sequence. Note that we can't
8442 use save_excursion_{save,restore} here, because they
8443 save point as well as the current buffer; we don't
8444 want to save point, because redisplay may change it,
8445 to accommodate a Fset_window_start or something. We
8446 don't want to do this at the top of the function,
8447 because we may get input from a subprocess which
8448 wants to change the selected window and stuff (say,
8449 emacsclient). */
8450 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
8452 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8453 Fkill_emacs (Qnil);
8454 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
8455 orig_local_map = get_local_map (PT, current_buffer,
8456 Qlocal_map);
8457 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8458 goto replay_sequence;
8461 /* For a mouse click, get the local text-property keymap
8462 of the place clicked on, rather than point. */
8463 if (last_real_key_start == 0
8464 && CONSP (XCDR (key))
8465 && ! localized_local_map)
8467 Lisp_Object map_here, start, pos;
8469 localized_local_map = 1;
8470 start = EVENT_START (key);
8472 if (CONSP (start) && CONSP (XCDR (start)))
8474 pos = POSN_BUFFER_POSN (start);
8475 if (INTEGERP (pos)
8476 && XINT (pos) >= BEG && XINT (pos) <= Z)
8478 map_here = get_local_map (XINT (pos),
8479 current_buffer, Qlocal_map);
8480 if (!EQ (map_here, orig_local_map))
8482 orig_local_map = map_here;
8483 keybuf[t] = key;
8484 mock_input = t + 1;
8486 goto replay_sequence;
8488 map_here = get_local_map (XINT (pos),
8489 current_buffer, Qkeymap);
8490 if (!EQ (map_here, orig_keymap))
8492 orig_keymap = map_here;
8493 keybuf[t] = key;
8494 mock_input = t + 1;
8496 goto replay_sequence;
8502 /* Expand mode-line and scroll-bar events into two events:
8503 use posn as a fake prefix key. */
8504 if (SYMBOLP (posn)
8505 && (NILP (fake_prefixed_keys)
8506 || NILP (Fmemq (key, fake_prefixed_keys))))
8508 if (t + 1 >= bufsize)
8509 error ("Key sequence too long");
8511 keybuf[t] = posn;
8512 keybuf[t + 1] = key;
8513 mock_input = t + 2;
8515 /* Record that a fake prefix key has been generated
8516 for KEY. Don't modify the event; this would
8517 prevent proper action when the event is pushed
8518 back tino unread-command-events. */
8519 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
8521 /* If on a mode line string with a local keymap,
8522 reconsider the key sequence with that keymap. */
8523 if (CONSP (POSN_STRING (EVENT_START (key))))
8525 Lisp_Object string, pos, map, map2;
8527 string = POSN_STRING (EVENT_START (key));
8528 pos = XCDR (string);
8529 string = XCAR (string);
8530 if (XINT (pos) >= 0
8531 && XINT (pos) < XSTRING (string)->size)
8533 map = Fget_text_property (pos, Qlocal_map, string);
8534 if (!NILP (map))
8535 orig_local_map = map;
8536 map2 = Fget_text_property (pos, Qkeymap, string);
8537 if (!NILP (map2))
8538 orig_keymap = map2;
8539 if (!NILP (map) || !NILP (map2))
8540 goto replay_sequence;
8544 goto replay_key;
8546 else if (CONSP (POSN_STRING (EVENT_START (key)))
8547 && NILP (from_string))
8549 /* For a click on a string, i.e. overlay string or a
8550 string displayed via the `display' property,
8551 consider `local-map' and `keymap' properties of
8552 that string. */
8553 Lisp_Object string, pos, map, map2;
8555 string = POSN_STRING (EVENT_START (key));
8556 pos = XCDR (string);
8557 string = XCAR (string);
8558 if (XINT (pos) >= 0
8559 && XINT (pos) < XSTRING (string)->size)
8561 map = Fget_text_property (pos, Qlocal_map, string);
8562 if (!NILP (map))
8563 orig_local_map = map;
8564 map2 = Fget_text_property (pos, Qkeymap, string);
8565 if (!NILP (map2))
8566 orig_keymap = map2;
8568 if (!NILP (map) || !NILP (map2))
8570 from_string = string;
8571 goto replay_sequence;
8576 else if (CONSP (XCDR (key))
8577 && CONSP (EVENT_START (key))
8578 && CONSP (XCDR (EVENT_START (key))))
8580 Lisp_Object posn;
8582 posn = POSN_BUFFER_POSN (EVENT_START (key));
8583 /* Handle menu-bar events:
8584 insert the dummy prefix event `menu-bar'. */
8585 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
8587 if (t + 1 >= bufsize)
8588 error ("Key sequence too long");
8589 keybuf[t] = posn;
8590 keybuf[t+1] = key;
8592 /* Zap the position in key, so we know that we've
8593 expanded it, and don't try to do so again. */
8594 POSN_BUFFER_SET_POSN (EVENT_START (key),
8595 Fcons (posn, Qnil));
8597 mock_input = t + 2;
8598 goto replay_sequence;
8600 else if (CONSP (posn))
8602 /* We're looking at the second event of a
8603 sequence which we expanded before. Set
8604 last_real_key_start appropriately. */
8605 if (last_real_key_start == t && t > 0)
8606 last_real_key_start = t - 1;
8611 /* We have finally decided that KEY is something we might want
8612 to look up. */
8613 first_binding = (follow_key (key,
8614 nmaps - first_binding,
8615 submaps + first_binding,
8616 defs + first_binding,
8617 submaps + first_binding)
8618 + first_binding);
8620 /* If KEY wasn't bound, we'll try some fallbacks. */
8621 if (first_binding >= nmaps)
8623 Lisp_Object head;
8625 /* Remember the position to put an upper bound on fkey_start. */
8626 first_unbound = min (t, first_unbound);
8628 head = EVENT_HEAD (key);
8629 if (help_char_p (head) && t > 0)
8631 read_key_sequence_cmd = Vprefix_help_command;
8632 keybuf[t++] = key;
8633 last_nonmenu_event = key;
8634 /* The Microsoft C compiler can't handle the goto that
8635 would go here. */
8636 dummyflag = 1;
8637 break;
8640 if (SYMBOLP (head))
8642 Lisp_Object breakdown;
8643 int modifiers;
8645 breakdown = parse_modifiers (head);
8646 modifiers = XINT (XCAR (XCDR (breakdown)));
8647 /* Attempt to reduce an unbound mouse event to a simpler
8648 event that is bound:
8649 Drags reduce to clicks.
8650 Double-clicks reduce to clicks.
8651 Triple-clicks reduce to double-clicks, then to clicks.
8652 Down-clicks are eliminated.
8653 Double-downs reduce to downs, then are eliminated.
8654 Triple-downs reduce to double-downs, then to downs,
8655 then are eliminated. */
8656 if (modifiers & (down_modifier | drag_modifier
8657 | double_modifier | triple_modifier))
8659 while (modifiers & (down_modifier | drag_modifier
8660 | double_modifier | triple_modifier))
8662 Lisp_Object new_head, new_click;
8663 if (modifiers & triple_modifier)
8664 modifiers ^= (double_modifier | triple_modifier);
8665 else if (modifiers & double_modifier)
8666 modifiers &= ~double_modifier;
8667 else if (modifiers & drag_modifier)
8668 modifiers &= ~drag_modifier;
8669 else
8671 /* Dispose of this `down' event by simply jumping
8672 back to replay_key, to get another event.
8674 Note that if this event came from mock input,
8675 then just jumping back to replay_key will just
8676 hand it to us again. So we have to wipe out any
8677 mock input.
8679 We could delete keybuf[t] and shift everything
8680 after that to the left by one spot, but we'd also
8681 have to fix up any variable that points into
8682 keybuf, and shifting isn't really necessary
8683 anyway.
8685 Adding prefixes for non-textual mouse clicks
8686 creates two characters of mock input, and both
8687 must be thrown away. If we're only looking at
8688 the prefix now, we can just jump back to
8689 replay_key. On the other hand, if we've already
8690 processed the prefix, and now the actual click
8691 itself is giving us trouble, then we've lost the
8692 state of the keymaps we want to backtrack to, and
8693 we need to replay the whole sequence to rebuild
8696 Beyond that, only function key expansion could
8697 create more than two keys, but that should never
8698 generate mouse events, so it's okay to zero
8699 mock_input in that case too.
8701 Isn't this just the most wonderful code ever? */
8702 if (t == last_real_key_start)
8704 mock_input = 0;
8705 goto replay_key;
8707 else
8709 mock_input = last_real_key_start;
8710 goto replay_sequence;
8714 new_head
8715 = apply_modifiers (modifiers, XCAR (breakdown));
8716 new_click
8717 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
8719 /* Look for a binding for this new key. follow_key
8720 promises that it didn't munge submaps the
8721 last time we called it, since key was unbound. */
8722 first_binding
8723 = (follow_key (new_click,
8724 nmaps - local_first_binding,
8725 submaps + local_first_binding,
8726 defs + local_first_binding,
8727 submaps + local_first_binding)
8728 + local_first_binding);
8730 /* If that click is bound, go for it. */
8731 if (first_binding < nmaps)
8733 key = new_click;
8734 break;
8736 /* Otherwise, we'll leave key set to the drag event. */
8742 keybuf[t++] = key;
8743 /* Normally, last_nonmenu_event gets the previous key we read.
8744 But when a mouse popup menu is being used,
8745 we don't update last_nonmenu_event; it continues to hold the mouse
8746 event that preceded the first level of menu. */
8747 if (!used_mouse_menu)
8748 last_nonmenu_event = key;
8750 /* Record what part of this_command_keys is the current key sequence. */
8751 this_single_command_key_start = this_command_key_count - t;
8753 prev_fkey_map = fkey_map;
8754 prev_fkey_start = fkey_start;
8755 prev_fkey_end = fkey_end;
8757 prev_keytran_map = keytran_map;
8758 prev_keytran_start = keytran_start;
8759 prev_keytran_end = keytran_end;
8761 /* If the sequence is unbound, see if we can hang a function key
8762 off the end of it. We only want to scan real keyboard input
8763 for function key sequences, so if mock_input says that we're
8764 re-reading old events, don't examine it. */
8765 if (first_binding >= nmaps
8766 && t >= mock_input)
8768 Lisp_Object fkey_next;
8770 /* Continue scan from fkey_end until we find a bound suffix.
8771 If we fail, increment fkey_start
8772 and start fkey_end from there. */
8773 while (fkey_end < t)
8775 Lisp_Object key;
8777 key = keybuf[fkey_end++];
8778 fkey_next
8779 = access_keymap (fkey_map, key, 1, 0, 1);
8781 /* Handle symbol with autoload definition. */
8782 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8783 && CONSP (XSYMBOL (fkey_next)->function)
8784 && EQ (XCAR (XSYMBOL (fkey_next)->function), Qautoload))
8785 do_autoload (XSYMBOL (fkey_next)->function,
8786 fkey_next);
8788 /* Handle a symbol whose function definition is a keymap
8789 or an array. */
8790 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8791 && (!NILP (Farrayp (XSYMBOL (fkey_next)->function))
8792 || KEYMAPP (XSYMBOL (fkey_next)->function)))
8793 fkey_next = XSYMBOL (fkey_next)->function;
8795 #if 0 /* I didn't turn this on, because it might cause trouble
8796 for the mapping of return into C-m and tab into C-i. */
8797 /* Optionally don't map function keys into other things.
8798 This enables the user to redefine kp- keys easily. */
8799 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
8800 fkey_next = Qnil;
8801 #endif
8803 /* If the function key map gives a function, not an
8804 array, then call the function with no args and use
8805 its value instead. */
8806 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8807 && fkey_end == t)
8809 struct gcpro gcpro1, gcpro2, gcpro3;
8810 Lisp_Object tem;
8811 tem = fkey_next;
8813 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
8814 fkey_next = call1 (fkey_next, prompt);
8815 UNGCPRO;
8816 /* If the function returned something invalid,
8817 barf--don't ignore it.
8818 (To ignore it safely, we would need to gcpro a bunch of
8819 other variables.) */
8820 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
8821 error ("Function in key-translation-map returns invalid key sequence");
8824 function_key_possible = ! NILP (fkey_next);
8826 /* If keybuf[fkey_start..fkey_end] is bound in the
8827 function key map and it's a suffix of the current
8828 sequence (i.e. fkey_end == t), replace it with
8829 the binding and restart with fkey_start at the end. */
8830 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
8831 && fkey_end == t)
8833 int len = XFASTINT (Flength (fkey_next));
8835 t = fkey_start + len;
8836 if (t >= bufsize)
8837 error ("Key sequence too long");
8839 if (VECTORP (fkey_next))
8840 bcopy (XVECTOR (fkey_next)->contents,
8841 keybuf + fkey_start,
8842 (t - fkey_start) * sizeof (keybuf[0]));
8843 else if (STRINGP (fkey_next))
8845 int i;
8847 for (i = 0; i < len; i++)
8848 XSETFASTINT (keybuf[fkey_start + i],
8849 XSTRING (fkey_next)->data[i]);
8852 mock_input = t;
8853 fkey_start = fkey_end = t;
8854 fkey_map = Vfunction_key_map;
8856 /* Do pass the results through key-translation-map.
8857 But don't retranslate what key-translation-map
8858 has already translated. */
8859 keytran_end = keytran_start;
8860 keytran_map = Vkey_translation_map;
8862 goto replay_sequence;
8865 fkey_map = get_keymap (fkey_next, 0, 1);
8867 /* If we no longer have a bound suffix, try a new positions for
8868 fkey_start. */
8869 if (!CONSP (fkey_map))
8871 fkey_end = ++fkey_start;
8872 fkey_map = Vfunction_key_map;
8873 function_key_possible = 0;
8878 /* Look for this sequence in key-translation-map. */
8880 Lisp_Object keytran_next;
8882 /* Scan from keytran_end until we find a bound suffix. */
8883 while (keytran_end < t)
8885 Lisp_Object key;
8887 key = keybuf[keytran_end++];
8888 keytran_next
8889 = access_keymap (keytran_map, key, 1, 0, 1);
8891 /* Handle symbol with autoload definition. */
8892 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
8893 && CONSP (XSYMBOL (keytran_next)->function)
8894 && EQ (XCAR (XSYMBOL (keytran_next)->function), Qautoload))
8895 do_autoload (XSYMBOL (keytran_next)->function,
8896 keytran_next);
8898 /* Handle a symbol whose function definition is a keymap
8899 or an array. */
8900 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
8901 && (!NILP (Farrayp (XSYMBOL (keytran_next)->function))
8902 || KEYMAPP (XSYMBOL (keytran_next)->function)))
8903 keytran_next = XSYMBOL (keytran_next)->function;
8905 /* If the key translation map gives a function, not an
8906 array, then call the function with one arg and use
8907 its value instead. */
8908 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
8909 && keytran_end == t)
8911 struct gcpro gcpro1, gcpro2, gcpro3;
8912 Lisp_Object tem;
8913 tem = keytran_next;
8915 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
8916 keytran_next = call1 (keytran_next, prompt);
8917 UNGCPRO;
8918 /* If the function returned something invalid,
8919 barf--don't ignore it.
8920 (To ignore it safely, we would need to gcpro a bunch of
8921 other variables.) */
8922 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
8923 error ("Function in key-translation-map returns invalid key sequence");
8926 key_translation_possible = ! NILP (keytran_next);
8928 /* If keybuf[keytran_start..keytran_end] is bound in the
8929 key translation map and it's a suffix of the current
8930 sequence (i.e. keytran_end == t), replace it with
8931 the binding and restart with keytran_start at the end. */
8932 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
8933 && keytran_end == t)
8935 int len = XFASTINT (Flength (keytran_next));
8937 t = keytran_start + len;
8938 if (t >= bufsize)
8939 error ("Key sequence too long");
8941 if (VECTORP (keytran_next))
8942 bcopy (XVECTOR (keytran_next)->contents,
8943 keybuf + keytran_start,
8944 (t - keytran_start) * sizeof (keybuf[0]));
8945 else if (STRINGP (keytran_next))
8947 int i;
8949 for (i = 0; i < len; i++)
8950 XSETFASTINT (keybuf[keytran_start + i],
8951 XSTRING (keytran_next)->data[i]);
8954 mock_input = t;
8955 keytran_start = keytran_end = t;
8956 keytran_map = Vkey_translation_map;
8958 /* Don't pass the results of key-translation-map
8959 through function-key-map. */
8960 fkey_start = fkey_end = t;
8961 fkey_map = Vfunction_key_map;
8963 goto replay_sequence;
8966 keytran_map = get_keymap (keytran_next, 0, 1);
8968 /* If we no longer have a bound suffix, try a new positions for
8969 keytran_start. */
8970 if (!CONSP (keytran_map))
8972 keytran_end = ++keytran_start;
8973 keytran_map = Vkey_translation_map;
8974 key_translation_possible = 0;
8979 /* If KEY is not defined in any of the keymaps,
8980 and cannot be part of a function key or translation,
8981 and is an upper case letter
8982 use the corresponding lower-case letter instead. */
8983 if (first_binding == nmaps && ! function_key_possible
8984 && ! key_translation_possible
8985 && INTEGERP (key)
8986 && ((((XINT (key) & 0x3ffff)
8987 < XCHAR_TABLE (current_buffer->downcase_table)->size)
8988 && UPPERCASEP (XINT (key) & 0x3ffff))
8989 || (XINT (key) & shift_modifier)))
8991 Lisp_Object new_key;
8993 original_uppercase = key;
8994 original_uppercase_position = t - 1;
8996 if (XINT (key) & shift_modifier)
8997 XSETINT (new_key, XINT (key) & ~shift_modifier);
8998 else
8999 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9000 | (XINT (key) & ~0x3ffff)));
9002 /* We have to do this unconditionally, regardless of whether
9003 the lower-case char is defined in the keymaps, because they
9004 might get translated through function-key-map. */
9005 keybuf[t - 1] = new_key;
9006 mock_input = t;
9008 fkey_map = prev_fkey_map;
9009 fkey_start = prev_fkey_start;
9010 fkey_end = prev_fkey_end;
9012 keytran_map = prev_keytran_map;
9013 keytran_start = prev_keytran_start;
9014 keytran_end = prev_keytran_end;
9016 goto replay_sequence;
9018 /* If KEY is not defined in any of the keymaps,
9019 and cannot be part of a function key or translation,
9020 and is a shifted function key,
9021 use the corresponding unshifted function key instead. */
9022 if (first_binding == nmaps && ! function_key_possible
9023 && ! key_translation_possible
9024 && SYMBOLP (key))
9026 Lisp_Object breakdown;
9027 int modifiers;
9029 breakdown = parse_modifiers (key);
9030 modifiers = XINT (XCAR (XCDR (breakdown)));
9031 if (modifiers & shift_modifier)
9033 Lisp_Object new_key;
9035 original_uppercase = key;
9036 original_uppercase_position = t - 1;
9038 modifiers &= ~shift_modifier;
9039 new_key = apply_modifiers (modifiers,
9040 XCAR (breakdown));
9042 keybuf[t - 1] = new_key;
9043 mock_input = t;
9045 fkey_map = prev_fkey_map;
9046 fkey_start = prev_fkey_start;
9047 fkey_end = prev_fkey_end;
9049 keytran_map = prev_keytran_map;
9050 keytran_start = prev_keytran_start;
9051 keytran_end = prev_keytran_end;
9053 goto replay_sequence;
9058 if (!dummyflag)
9059 read_key_sequence_cmd = (first_binding < nmaps
9060 ? defs[first_binding]
9061 : Qnil);
9063 unread_switch_frame = delayed_switch_frame;
9064 unbind_to (count, Qnil);
9066 /* Don't downcase the last character if the caller says don't.
9067 Don't downcase it if the result is undefined, either. */
9068 if ((dont_downcase_last || first_binding >= nmaps)
9069 && t - 1 == original_uppercase_position)
9070 keybuf[t - 1] = original_uppercase;
9072 /* Occasionally we fabricate events, perhaps by expanding something
9073 according to function-key-map, or by adding a prefix symbol to a
9074 mouse click in the scroll bar or modeline. In this cases, return
9075 the entire generated key sequence, even if we hit an unbound
9076 prefix or a definition before the end. This means that you will
9077 be able to push back the event properly, and also means that
9078 read-key-sequence will always return a logical unit.
9080 Better ideas? */
9081 for (; t < mock_input; t++)
9083 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9084 && NILP (Fzerop (Vecho_keystrokes)))
9085 echo_char (keybuf[t]);
9086 add_command_key (keybuf[t]);
9091 UNGCPRO;
9092 return t;
9095 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9096 doc: /* Read a sequence of keystrokes and return as a string or vector.
9097 The sequence is sufficient to specify a non-prefix command in the
9098 current local and global maps.
9100 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9101 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9102 as a continuation of the previous key.
9104 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9105 convert the last event to lower case. (Normally any upper case event
9106 is converted to lower case if the original event is undefined and the lower
9107 case equivalent is defined.) A non-nil value is appropriate for reading
9108 a key sequence to be defined.
9110 A C-g typed while in this function is treated like any other character,
9111 and `quit-flag' is not set.
9113 If the key sequence starts with a mouse click, then the sequence is read
9114 using the keymaps of the buffer of the window clicked in, not the buffer
9115 of the selected window as normal.
9117 `read-key-sequence' drops unbound button-down events, since you normally
9118 only care about the click or drag events which follow them. If a drag
9119 or multi-click event is unbound, but the corresponding click event would
9120 be bound, `read-key-sequence' turns the event into a click event at the
9121 drag's starting position. This means that you don't have to distinguish
9122 between click and drag, double, or triple events unless you want to.
9124 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9125 lines separating windows, and scroll bars with imaginary keys
9126 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9128 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9129 function will process a switch-frame event if the user switches frames
9130 before typing anything. If the user switches frames in the middle of a
9131 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9132 is nil, then the event will be put off until after the current key sequence.
9134 `read-key-sequence' checks `function-key-map' for function key
9135 sequences, where they wouldn't conflict with ordinary bindings. See
9136 `function-key-map' for more details.
9138 The optional fifth argument COMMAND-LOOP, if non-nil, means
9139 that this key sequence is being read by something that will
9140 read commands one after another. It should be nil if the caller
9141 will read just one key sequence. */)
9142 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9143 command_loop)
9144 Lisp_Object prompt, continue_echo, dont_downcase_last;
9145 Lisp_Object can_return_switch_frame, command_loop;
9147 Lisp_Object keybuf[30];
9148 register int i;
9149 struct gcpro gcpro1;
9150 int count = specpdl_ptr - specpdl;
9152 if (!NILP (prompt))
9153 CHECK_STRING (prompt);
9154 QUIT;
9156 specbind (Qinput_method_exit_on_first_char,
9157 (NILP (command_loop) ? Qt : Qnil));
9158 specbind (Qinput_method_use_echo_area,
9159 (NILP (command_loop) ? Qt : Qnil));
9161 bzero (keybuf, sizeof keybuf);
9162 GCPRO1 (keybuf[0]);
9163 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9165 if (NILP (continue_echo))
9167 this_command_key_count = 0;
9168 this_single_command_key_start = 0;
9171 #ifdef HAVE_X_WINDOWS
9172 if (display_hourglass_p)
9173 cancel_hourglass ();
9174 #endif
9176 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9177 prompt, ! NILP (dont_downcase_last),
9178 ! NILP (can_return_switch_frame), 0);
9180 #if 0 /* The following is fine for code reading a key sequence and
9181 then proceeding with a lenghty computation, but it's not good
9182 for code reading keys in a loop, like an input method. */
9183 #ifdef HAVE_X_WINDOWS
9184 if (display_hourglass_p)
9185 start_hourglass ();
9186 #endif
9187 #endif
9189 if (i == -1)
9191 Vquit_flag = Qt;
9192 QUIT;
9194 UNGCPRO;
9195 return unbind_to (count, make_event_array (i, keybuf));
9198 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9199 Sread_key_sequence_vector, 1, 5, 0,
9200 doc: /* Like `read-key-sequence' but always return a vector. */)
9201 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9202 command_loop)
9203 Lisp_Object prompt, continue_echo, dont_downcase_last;
9204 Lisp_Object can_return_switch_frame, command_loop;
9206 Lisp_Object keybuf[30];
9207 register int i;
9208 struct gcpro gcpro1;
9209 int count = specpdl_ptr - specpdl;
9211 if (!NILP (prompt))
9212 CHECK_STRING (prompt);
9213 QUIT;
9215 specbind (Qinput_method_exit_on_first_char,
9216 (NILP (command_loop) ? Qt : Qnil));
9217 specbind (Qinput_method_use_echo_area,
9218 (NILP (command_loop) ? Qt : Qnil));
9220 bzero (keybuf, sizeof keybuf);
9221 GCPRO1 (keybuf[0]);
9222 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9224 if (NILP (continue_echo))
9226 this_command_key_count = 0;
9227 this_single_command_key_start = 0;
9230 #ifdef HAVE_X_WINDOWS
9231 if (display_hourglass_p)
9232 cancel_hourglass ();
9233 #endif
9235 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9236 prompt, ! NILP (dont_downcase_last),
9237 ! NILP (can_return_switch_frame), 0);
9239 #ifdef HAVE_X_WINDOWS
9240 if (display_hourglass_p)
9241 start_hourglass ();
9242 #endif
9244 if (i == -1)
9246 Vquit_flag = Qt;
9247 QUIT;
9249 UNGCPRO;
9250 return unbind_to (count, Fvector (i, keybuf));
9253 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9254 doc: /* Execute CMD as an editor command.
9255 CMD must be a symbol that satisfies the `commandp' predicate.
9256 Optional second arg RECORD-FLAG non-nil
9257 means unconditionally put this command in `command-history'.
9258 Otherwise, that is done only if an arg is read using the minibuffer.
9259 The argument KEYS specifies the value to use instead of (this-command-keys)
9260 when reading the arguments; if it is nil, (this-command-keys) is used.
9261 The argument SPECIAL, if non-nil, means that this command is executing
9262 a special event, so ignore the prefix argument and don't clear it. */)
9263 (cmd, record_flag, keys, special)
9264 Lisp_Object cmd, record_flag, keys, special;
9266 register Lisp_Object final;
9267 register Lisp_Object tem;
9268 Lisp_Object prefixarg;
9269 struct backtrace backtrace;
9270 extern int debug_on_next_call;
9272 debug_on_next_call = 0;
9274 if (NILP (special))
9276 prefixarg = current_kboard->Vprefix_arg;
9277 Vcurrent_prefix_arg = prefixarg;
9278 current_kboard->Vprefix_arg = Qnil;
9280 else
9281 prefixarg = Qnil;
9283 if (SYMBOLP (cmd))
9285 tem = Fget (cmd, Qdisabled);
9286 if (!NILP (tem) && !NILP (Vrun_hooks))
9288 tem = Fsymbol_value (Qdisabled_command_hook);
9289 if (!NILP (tem))
9290 return call1 (Vrun_hooks, Qdisabled_command_hook);
9294 while (1)
9296 final = Findirect_function (cmd);
9298 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9300 struct gcpro gcpro1, gcpro2;
9302 GCPRO2 (cmd, prefixarg);
9303 do_autoload (final, cmd);
9304 UNGCPRO;
9306 else
9307 break;
9310 if (STRINGP (final) || VECTORP (final))
9312 /* If requested, place the macro in the command history. For
9313 other sorts of commands, call-interactively takes care of
9314 this. */
9315 if (!NILP (record_flag))
9317 Vcommand_history
9318 = Fcons (Fcons (Qexecute_kbd_macro,
9319 Fcons (final, Fcons (prefixarg, Qnil))),
9320 Vcommand_history);
9322 /* Don't keep command history around forever. */
9323 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9325 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9326 if (CONSP (tem))
9327 XSETCDR (tem, Qnil);
9331 return Fexecute_kbd_macro (final, prefixarg);
9334 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9336 backtrace.next = backtrace_list;
9337 backtrace_list = &backtrace;
9338 backtrace.function = &Qcall_interactively;
9339 backtrace.args = &cmd;
9340 backtrace.nargs = 1;
9341 backtrace.evalargs = 0;
9343 tem = Fcall_interactively (cmd, record_flag, keys);
9345 backtrace_list = backtrace.next;
9346 return tem;
9348 return Qnil;
9353 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9354 1, 1, "P",
9355 doc: /* Read function name, then read its arguments and call it. */)
9356 (prefixarg)
9357 Lisp_Object prefixarg;
9359 Lisp_Object function;
9360 char buf[40];
9361 Lisp_Object saved_keys;
9362 Lisp_Object bindings, value;
9363 struct gcpro gcpro1, gcpro2;
9365 saved_keys = Fvector (this_command_key_count,
9366 XVECTOR (this_command_keys)->contents);
9367 buf[0] = 0;
9368 GCPRO2 (saved_keys, prefixarg);
9370 if (EQ (prefixarg, Qminus))
9371 strcpy (buf, "- ");
9372 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9373 strcpy (buf, "C-u ");
9374 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9376 if (sizeof (int) == sizeof (EMACS_INT))
9377 sprintf (buf, "%d ", XINT (XCAR (prefixarg)));
9378 else if (sizeof (long) == sizeof (EMACS_INT))
9379 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9380 else
9381 abort ();
9383 else if (INTEGERP (prefixarg))
9385 if (sizeof (int) == sizeof (EMACS_INT))
9386 sprintf (buf, "%d ", XINT (prefixarg));
9387 else if (sizeof (long) == sizeof (EMACS_INT))
9388 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9389 else
9390 abort ();
9393 /* This isn't strictly correct if execute-extended-command
9394 is bound to anything else. Perhaps it should use
9395 this_command_keys? */
9396 strcat (buf, "M-x ");
9398 /* Prompt with buf, and then read a string, completing from and
9399 restricting to the set of all defined commands. Don't provide
9400 any initial input. Save the command read on the extended-command
9401 history list. */
9402 function = Fcompleting_read (build_string (buf),
9403 Vobarray, Qcommandp,
9404 Qt, Qnil, Qextended_command_history, Qnil,
9405 Qnil);
9407 if (STRINGP (function) && XSTRING (function)->size == 0)
9408 error ("No command name given");
9410 /* Set this_command_keys to the concatenation of saved_keys and
9411 function, followed by a RET. */
9413 struct Lisp_String *str;
9414 Lisp_Object *keys;
9415 int i;
9417 this_command_key_count = 0;
9418 this_single_command_key_start = 0;
9420 keys = XVECTOR (saved_keys)->contents;
9421 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9422 add_command_key (keys[i]);
9424 str = XSTRING (function);
9425 for (i = 0; i < str->size; i++)
9426 add_command_key (Faref (function, make_number (i)));
9428 add_command_key (make_number ('\015'));
9431 UNGCPRO;
9433 function = Fintern (function, Qnil);
9434 current_kboard->Vprefix_arg = prefixarg;
9435 Vthis_command = function;
9436 real_this_command = function;
9438 /* If enabled, show which key runs this command. */
9439 if (!NILP (Vsuggest_key_bindings)
9440 && NILP (Vexecuting_macro)
9441 && SYMBOLP (function))
9442 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9443 Qt, Qnil, Qnil);
9444 else
9445 bindings = Qnil;
9447 value = Qnil;
9448 GCPRO2 (bindings, value);
9449 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9451 /* If the command has a key binding, print it now. */
9452 if (!NILP (bindings)
9453 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9454 Qmouse_movement)))
9456 /* But first wait, and skip the message if there is input. */
9457 int delay_time;
9458 if (!NILP (echo_area_buffer[0]))
9459 /* This command displayed something in the echo area;
9460 so wait a few seconds, then display our suggestion message. */
9461 delay_time = (NUMBERP (Vsuggest_key_bindings)
9462 ? XINT (Vsuggest_key_bindings) : 2);
9463 else
9464 /* This command left the echo area empty,
9465 so display our message immediately. */
9466 delay_time = 0;
9468 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
9469 && ! CONSP (Vunread_command_events))
9471 Lisp_Object binding;
9472 char *newmessage;
9473 int message_p = push_message ();
9474 int count = BINDING_STACK_SIZE ();
9476 record_unwind_protect (push_message_unwind, Qnil);
9477 binding = Fkey_description (bindings);
9479 newmessage
9480 = (char *) alloca (XSYMBOL (function)->name->size
9481 + STRING_BYTES (XSTRING (binding))
9482 + 100);
9483 sprintf (newmessage, "You can run the command `%s' with %s",
9484 XSYMBOL (function)->name->data,
9485 XSTRING (binding)->data);
9486 message2_nolog (newmessage,
9487 strlen (newmessage),
9488 STRING_MULTIBYTE (binding));
9489 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9490 ? Vsuggest_key_bindings : make_number (2)),
9491 Qnil, Qnil))
9492 && message_p)
9493 restore_message ();
9495 unbind_to (count, Qnil);
9499 RETURN_UNGCPRO (value);
9503 /* Return nonzero if input events are pending. */
9506 detect_input_pending ()
9508 if (!input_pending)
9509 get_input_pending (&input_pending, 0);
9511 return input_pending;
9514 /* Return nonzero if input events are pending, and run any pending timers. */
9517 detect_input_pending_run_timers (do_display)
9518 int do_display;
9520 int old_timers_run = timers_run;
9522 if (!input_pending)
9523 get_input_pending (&input_pending, 1);
9525 if (old_timers_run != timers_run && do_display)
9527 redisplay_preserve_echo_area (8);
9528 /* The following fixes a bug when using lazy-lock with
9529 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9530 from an idle timer function. The symptom of the bug is that
9531 the cursor sometimes doesn't become visible until the next X
9532 event is processed. --gerd. */
9533 if (rif)
9534 rif->flush_display (NULL);
9537 return input_pending;
9540 /* This is called in some cases before a possible quit.
9541 It cases the next call to detect_input_pending to recompute input_pending.
9542 So calling this function unnecessarily can't do any harm. */
9544 void
9545 clear_input_pending ()
9547 input_pending = 0;
9550 /* Return nonzero if there are pending requeued events.
9551 This isn't used yet. The hope is to make wait_reading_process_input
9552 call it, and return if it runs Lisp code that unreads something.
9553 The problem is, kbd_buffer_get_event needs to be fixed to know what
9554 to do in that case. It isn't trivial. */
9557 requeued_events_pending_p ()
9559 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9563 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9564 doc: /* Return t if command input is currently available with no wait.
9565 Actually, the value is nil only if we can be sure that no input is available;
9566 if there is a doubt, the value is t. */)
9569 if (!NILP (Vunread_command_events) || unread_command_char != -1)
9570 return (Qt);
9572 get_input_pending (&input_pending, 1);
9573 return input_pending > 0 ? Qt : Qnil;
9576 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
9577 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
9580 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
9581 Lisp_Object val;
9583 if (total_keys < NUM_RECENT_KEYS)
9584 return Fvector (total_keys, keys);
9585 else
9587 val = Fvector (NUM_RECENT_KEYS, keys);
9588 bcopy (keys + recent_keys_index,
9589 XVECTOR (val)->contents,
9590 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
9591 bcopy (keys,
9592 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
9593 recent_keys_index * sizeof (Lisp_Object));
9594 return val;
9598 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
9599 doc: /* Return the key sequence that invoked this command.
9600 However, if the command has called `read-key-sequence', it returns
9601 the the last key sequence that has been read.
9602 The value is a string or a vector. */)
9605 return make_event_array (this_command_key_count,
9606 XVECTOR (this_command_keys)->contents);
9609 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
9610 doc: /* Return the key sequence that invoked this command, as a vector.
9611 However, if the command has called `read-key-sequence', it returns
9612 the the last key sequence that has been read. */)
9615 return Fvector (this_command_key_count,
9616 XVECTOR (this_command_keys)->contents);
9619 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
9620 Sthis_single_command_keys, 0, 0, 0,
9621 doc: /* Return the key sequence that invoked this command.
9622 More generally, it returns the last key sequence read, either by
9623 the command loop or by `read-key-sequence'.
9624 Unlike `this-command-keys', this function's value
9625 does not include prefix arguments.
9626 The value is always a vector. */)
9629 return Fvector (this_command_key_count
9630 - this_single_command_key_start,
9631 (XVECTOR (this_command_keys)->contents
9632 + this_single_command_key_start));
9635 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
9636 Sthis_single_command_raw_keys, 0, 0, 0,
9637 doc: /* Return the raw events that were read for this command.
9638 More generally, it returns the last key sequence read, either by
9639 the command loop or by `read-key-sequence'.
9640 Unlike `this-single-command-keys', this function's value
9641 shows the events before all translations (except for input methods).
9642 The value is always a vector. */)
9645 return Fvector (raw_keybuf_count,
9646 (XVECTOR (raw_keybuf)->contents));
9649 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
9650 Sreset_this_command_lengths, 0, 0, 0,
9651 doc: /* Used for complicated reasons in `universal-argument-other-key'.
9653 `universal-argument-other-key' rereads the event just typed.
9654 It then gets translated through `function-key-map'.
9655 The translated event gets included in the echo area and in
9656 the value of `this-command-keys' in addition to the raw original event.
9657 That is not right.
9659 Calling this function directs the translated event to replace
9660 the original event, so that only one version of the event actually
9661 appears in the echo area and in the value of `this-command-keys'. */)
9664 before_command_restore_flag = 1;
9665 before_command_key_count_1 = before_command_key_count;
9666 before_command_echo_length_1 = before_command_echo_length;
9667 return Qnil;
9670 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
9671 Sclear_this_command_keys, 0, 0, 0,
9672 doc: /* Clear out the vector that `this-command-keys' returns.
9673 Also clear the record of the last 100 events. */)
9676 int i;
9678 this_command_key_count = 0;
9680 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
9681 XVECTOR (recent_keys)->contents[i] = Qnil;
9682 total_keys = 0;
9683 recent_keys_index = 0;
9684 return Qnil;
9687 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
9688 doc: /* Return the current depth in recursive edits. */)
9691 Lisp_Object temp;
9692 XSETFASTINT (temp, command_loop_level + minibuf_level);
9693 return temp;
9696 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
9697 "FOpen dribble file: ",
9698 doc: /* Start writing all keyboard characters to a dribble file called FILE.
9699 If FILE is nil, close any open dribble file. */)
9700 (file)
9701 Lisp_Object file;
9703 if (dribble)
9705 fclose (dribble);
9706 dribble = 0;
9708 if (!NILP (file))
9710 file = Fexpand_file_name (file, Qnil);
9711 dribble = fopen (XSTRING (file)->data, "w");
9712 if (dribble == 0)
9713 report_file_error ("Opening dribble", Fcons (file, Qnil));
9715 return Qnil;
9718 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
9719 doc: /* Discard the contents of the terminal input buffer.
9720 Also cancel any kbd macro being defined. */)
9723 current_kboard->defining_kbd_macro = Qnil;
9724 update_mode_lines++;
9726 Vunread_command_events = Qnil;
9727 unread_command_char = -1;
9729 discard_tty_input ();
9731 kbd_fetch_ptr = kbd_store_ptr;
9732 Ffillarray (kbd_buffer_gcpro, Qnil);
9733 input_pending = 0;
9735 return Qnil;
9738 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
9739 doc: /* Stop Emacs and return to superior process. You can resume later.
9740 If `cannot-suspend' is non-nil, or if the system doesn't support job
9741 control, run a subshell instead.
9743 If optional arg STUFFSTRING is non-nil, its characters are stuffed
9744 to be read as terminal input by Emacs's parent, after suspension.
9746 Before suspending, run the normal hook `suspend-hook'.
9747 After resumption run the normal hook `suspend-resume-hook'.
9749 Some operating systems cannot stop the Emacs process and resume it later.
9750 On such systems, Emacs starts a subshell instead of suspending. */)
9751 (stuffstring)
9752 Lisp_Object stuffstring;
9754 int count = specpdl_ptr - specpdl;
9755 int old_height, old_width;
9756 int width, height;
9757 struct gcpro gcpro1;
9759 if (!NILP (stuffstring))
9760 CHECK_STRING (stuffstring);
9762 /* Run the functions in suspend-hook. */
9763 if (!NILP (Vrun_hooks))
9764 call1 (Vrun_hooks, intern ("suspend-hook"));
9766 GCPRO1 (stuffstring);
9767 get_frame_size (&old_width, &old_height);
9768 reset_sys_modes ();
9769 /* sys_suspend can get an error if it tries to fork a subshell
9770 and the system resources aren't available for that. */
9771 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
9772 Qnil);
9773 stuff_buffered_input (stuffstring);
9774 if (cannot_suspend)
9775 sys_subshell ();
9776 else
9777 sys_suspend ();
9778 unbind_to (count, Qnil);
9780 /* Check if terminal/window size has changed.
9781 Note that this is not useful when we are running directly
9782 with a window system; but suspend should be disabled in that case. */
9783 get_frame_size (&width, &height);
9784 if (width != old_width || height != old_height)
9785 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
9787 /* Run suspend-resume-hook. */
9788 if (!NILP (Vrun_hooks))
9789 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
9791 UNGCPRO;
9792 return Qnil;
9795 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
9796 Then in any case stuff anything Emacs has read ahead and not used. */
9798 void
9799 stuff_buffered_input (stuffstring)
9800 Lisp_Object stuffstring;
9802 /* stuff_char works only in BSD, versions 4.2 and up. */
9803 #ifdef BSD_SYSTEM
9804 #ifndef BSD4_1
9805 register unsigned char *p;
9807 if (STRINGP (stuffstring))
9809 register int count;
9811 p = XSTRING (stuffstring)->data;
9812 count = STRING_BYTES (XSTRING (stuffstring));
9813 while (count-- > 0)
9814 stuff_char (*p++);
9815 stuff_char ('\n');
9818 /* Anything we have read ahead, put back for the shell to read. */
9819 /* ?? What should this do when we have multiple keyboards??
9820 Should we ignore anything that was typed in at the "wrong" kboard? */
9821 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
9823 int idx;
9825 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
9826 kbd_fetch_ptr = kbd_buffer;
9827 if (kbd_fetch_ptr->kind == ascii_keystroke)
9828 stuff_char (kbd_fetch_ptr->code);
9830 kbd_fetch_ptr->kind = no_event;
9831 idx = 2 * (kbd_fetch_ptr - kbd_buffer);
9832 ASET (kbd_buffer_gcpro, idx, Qnil);
9833 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
9836 input_pending = 0;
9837 #endif
9838 #endif /* BSD_SYSTEM and not BSD4_1 */
9841 void
9842 set_waiting_for_input (time_to_clear)
9843 EMACS_TIME *time_to_clear;
9845 input_available_clear_time = time_to_clear;
9847 /* Tell interrupt_signal to throw back to read_char, */
9848 waiting_for_input = 1;
9850 /* If interrupt_signal was called before and buffered a C-g,
9851 make it run again now, to avoid timing error. */
9852 if (!NILP (Vquit_flag))
9853 quit_throw_to_read_char ();
9856 void
9857 clear_waiting_for_input ()
9859 /* Tell interrupt_signal not to throw back to read_char, */
9860 waiting_for_input = 0;
9861 input_available_clear_time = 0;
9864 /* This routine is called at interrupt level in response to C-g.
9866 If interrupt_input, this is the handler for SIGINT. Otherwise, it
9867 is called from kbd_buffer_store_event, in handling SIGIO or
9868 SIGTINT.
9870 If `waiting_for_input' is non zero, then unless `echoing' is
9871 nonzero, immediately throw back to read_char.
9873 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
9874 eval to throw, when it gets a chance. If quit-flag is already
9875 non-nil, it stops the job right away. */
9877 SIGTYPE
9878 interrupt_signal (signalnum) /* If we don't have an argument, */
9879 int signalnum; /* some compilers complain in signal calls. */
9881 char c;
9882 /* Must preserve main program's value of errno. */
9883 int old_errno = errno;
9884 struct frame *sf = SELECTED_FRAME ();
9886 #if defined (USG) && !defined (POSIX_SIGNALS)
9887 if (!read_socket_hook && NILP (Vwindow_system))
9889 /* USG systems forget handlers when they are used;
9890 must reestablish each time */
9891 signal (SIGINT, interrupt_signal);
9892 signal (SIGQUIT, interrupt_signal);
9894 #endif /* USG */
9896 cancel_echoing ();
9898 if (!NILP (Vquit_flag)
9899 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
9901 /* If SIGINT isn't blocked, don't let us be interrupted by
9902 another SIGINT, it might be harmful due to non-reentrancy
9903 in I/O functions. */
9904 sigblock (sigmask (SIGINT));
9906 fflush (stdout);
9907 reset_sys_modes ();
9909 #ifdef SIGTSTP /* Support possible in later USG versions */
9911 * On systems which can suspend the current process and return to the original
9912 * shell, this command causes the user to end up back at the shell.
9913 * The "Auto-save" and "Abort" questions are not asked until
9914 * the user elects to return to emacs, at which point he can save the current
9915 * job and either dump core or continue.
9917 sys_suspend ();
9918 #else
9919 #ifdef VMS
9920 if (sys_suspend () == -1)
9922 printf ("Not running as a subprocess;\n");
9923 printf ("you can continue or abort.\n");
9925 #else /* not VMS */
9926 /* Perhaps should really fork an inferior shell?
9927 But that would not provide any way to get back
9928 to the original shell, ever. */
9929 printf ("No support for stopping a process on this operating system;\n");
9930 printf ("you can continue or abort.\n");
9931 #endif /* not VMS */
9932 #endif /* not SIGTSTP */
9933 #ifdef MSDOS
9934 /* We must remain inside the screen area when the internal terminal
9935 is used. Note that [Enter] is not echoed by dos. */
9936 cursor_to (0, 0);
9937 #endif
9938 /* It doesn't work to autosave while GC is in progress;
9939 the code used for auto-saving doesn't cope with the mark bit. */
9940 if (!gc_in_progress)
9942 printf ("Auto-save? (y or n) ");
9943 fflush (stdout);
9944 if (((c = getchar ()) & ~040) == 'Y')
9946 Fdo_auto_save (Qt, Qnil);
9947 #ifdef MSDOS
9948 printf ("\r\nAuto-save done");
9949 #else /* not MSDOS */
9950 printf ("Auto-save done\n");
9951 #endif /* not MSDOS */
9953 while (c != '\n') c = getchar ();
9955 else
9957 /* During GC, it must be safe to reenable quitting again. */
9958 Vinhibit_quit = Qnil;
9959 #ifdef MSDOS
9960 printf ("\r\n");
9961 #endif /* not MSDOS */
9962 printf ("Garbage collection in progress; cannot auto-save now\r\n");
9963 printf ("but will instead do a real quit after garbage collection ends\r\n");
9964 fflush (stdout);
9967 #ifdef MSDOS
9968 printf ("\r\nAbort? (y or n) ");
9969 #else /* not MSDOS */
9970 #ifdef VMS
9971 printf ("Abort (and enter debugger)? (y or n) ");
9972 #else /* not VMS */
9973 printf ("Abort (and dump core)? (y or n) ");
9974 #endif /* not VMS */
9975 #endif /* not MSDOS */
9976 fflush (stdout);
9977 if (((c = getchar ()) & ~040) == 'Y')
9978 abort ();
9979 while (c != '\n') c = getchar ();
9980 #ifdef MSDOS
9981 printf ("\r\nContinuing...\r\n");
9982 #else /* not MSDOS */
9983 printf ("Continuing...\n");
9984 #endif /* not MSDOS */
9985 fflush (stdout);
9986 init_sys_modes ();
9987 sigfree ();
9989 else
9991 /* If executing a function that wants to be interrupted out of
9992 and the user has not deferred quitting by binding `inhibit-quit'
9993 then quit right away. */
9994 if (immediate_quit && NILP (Vinhibit_quit))
9996 struct gl_state_s saved;
9997 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9999 immediate_quit = 0;
10000 sigfree ();
10001 saved = gl_state;
10002 GCPRO4 (saved.object, saved.global_code,
10003 saved.current_syntax_table, saved.old_prop);
10004 Fsignal (Qquit, Qnil);
10005 gl_state = saved;
10006 UNGCPRO;
10008 else
10009 /* Else request quit when it's safe */
10010 Vquit_flag = Qt;
10013 if (waiting_for_input && !echoing)
10014 quit_throw_to_read_char ();
10016 errno = old_errno;
10019 /* Handle a C-g by making read_char return C-g. */
10021 void
10022 quit_throw_to_read_char ()
10024 sigfree ();
10025 /* Prevent another signal from doing this before we finish. */
10026 clear_waiting_for_input ();
10027 input_pending = 0;
10029 Vunread_command_events = Qnil;
10030 unread_command_char = -1;
10032 #if 0 /* Currently, sit_for is called from read_char without turning
10033 off polling. And that can call set_waiting_for_input.
10034 It seems to be harmless. */
10035 #ifdef POLL_FOR_INPUT
10036 /* May be > 1 if in recursive minibuffer. */
10037 if (poll_suppress_count == 0)
10038 abort ();
10039 #endif
10040 #endif
10041 if (FRAMEP (internal_last_event_frame)
10042 && !EQ (internal_last_event_frame, selected_frame))
10043 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10044 0, 0);
10046 _longjmp (getcjmp, 1);
10049 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10050 doc: /* Set mode of reading keyboard input.
10051 First arg INTERRUPT non-nil means use input interrupts;
10052 nil means use CBREAK mode.
10053 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10054 (no effect except in CBREAK mode).
10055 Third arg META t means accept 8-bit input (for a Meta key).
10056 META nil means ignore the top bit, on the assumption it is parity.
10057 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10058 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10059 See also `current-input-mode'. */)
10060 (interrupt, flow, meta, quit)
10061 Lisp_Object interrupt, flow, meta, quit;
10063 if (!NILP (quit)
10064 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10065 error ("set-input-mode: QUIT must be an ASCII character");
10067 #ifdef POLL_FOR_INPUT
10068 stop_polling ();
10069 #endif
10071 #ifndef DOS_NT
10072 /* this causes startup screen to be restored and messes with the mouse */
10073 reset_sys_modes ();
10074 #endif
10076 #ifdef SIGIO
10077 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10078 if (read_socket_hook)
10080 /* When using X, don't give the user a real choice,
10081 because we haven't implemented the mechanisms to support it. */
10082 #ifdef NO_SOCK_SIGIO
10083 interrupt_input = 0;
10084 #else /* not NO_SOCK_SIGIO */
10085 interrupt_input = 1;
10086 #endif /* NO_SOCK_SIGIO */
10088 else
10089 interrupt_input = !NILP (interrupt);
10090 #else /* not SIGIO */
10091 interrupt_input = 0;
10092 #endif /* not SIGIO */
10094 /* Our VMS input only works by interrupts, as of now. */
10095 #ifdef VMS
10096 interrupt_input = 1;
10097 #endif
10099 flow_control = !NILP (flow);
10100 if (NILP (meta))
10101 meta_key = 0;
10102 else if (EQ (meta, Qt))
10103 meta_key = 1;
10104 else
10105 meta_key = 2;
10106 if (!NILP (quit))
10107 /* Don't let this value be out of range. */
10108 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10110 #ifndef DOS_NT
10111 init_sys_modes ();
10112 #endif
10114 #ifdef POLL_FOR_INPUT
10115 poll_suppress_count = 1;
10116 start_polling ();
10117 #endif
10118 return Qnil;
10121 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10122 doc: /* Return information about the way Emacs currently reads keyboard input.
10123 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10124 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10125 nil, Emacs is using CBREAK mode.
10126 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10127 terminal; this does not apply if Emacs uses interrupt-driven input.
10128 META is t if accepting 8-bit input with 8th bit as Meta flag.
10129 META nil means ignoring the top bit, on the assumption it is parity.
10130 META is neither t nor nil if accepting 8-bit input and using
10131 all 8 bits as the character code.
10132 QUIT is the character Emacs currently uses to quit.
10133 The elements of this list correspond to the arguments of
10134 `set-input-mode'. */)
10137 Lisp_Object val[4];
10139 val[0] = interrupt_input ? Qt : Qnil;
10140 val[1] = flow_control ? Qt : Qnil;
10141 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10142 XSETFASTINT (val[3], quit_char);
10144 return Flist (sizeof (val) / sizeof (val[0]), val);
10149 * Set up a new kboard object with reasonable initial values.
10151 void
10152 init_kboard (kb)
10153 KBOARD *kb;
10155 kb->Voverriding_terminal_local_map = Qnil;
10156 kb->Vlast_command = Qnil;
10157 kb->Vreal_last_command = Qnil;
10158 kb->Vprefix_arg = Qnil;
10159 kb->Vlast_prefix_arg = Qnil;
10160 kb->kbd_queue = Qnil;
10161 kb->kbd_queue_has_data = 0;
10162 kb->immediate_echo = 0;
10163 kb->echo_string = Qnil;
10164 kb->echo_after_prompt = -1;
10165 kb->kbd_macro_buffer = 0;
10166 kb->kbd_macro_bufsize = 0;
10167 kb->defining_kbd_macro = Qnil;
10168 kb->Vlast_kbd_macro = Qnil;
10169 kb->reference_count = 0;
10170 kb->Vsystem_key_alist = Qnil;
10171 kb->system_key_syms = Qnil;
10172 kb->Vdefault_minibuffer_frame = Qnil;
10176 * Destroy the contents of a kboard object, but not the object itself.
10177 * We use this just before deleting it, or if we're going to initialize
10178 * it a second time.
10180 static void
10181 wipe_kboard (kb)
10182 KBOARD *kb;
10184 if (kb->kbd_macro_buffer)
10185 xfree (kb->kbd_macro_buffer);
10188 #ifdef MULTI_KBOARD
10190 /* Free KB and memory referenced from it. */
10192 void
10193 delete_kboard (kb)
10194 KBOARD *kb;
10196 KBOARD **kbp;
10198 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10199 if (*kbp == NULL)
10200 abort ();
10201 *kbp = kb->next_kboard;
10203 /* Prevent a dangling reference to KB. */
10204 if (kb == current_kboard
10205 && FRAMEP (selected_frame)
10206 && FRAME_LIVE_P (XFRAME (selected_frame)))
10208 current_kboard = XFRAME (selected_frame)->kboard;
10209 if (current_kboard == kb)
10210 abort ();
10213 wipe_kboard (kb);
10214 xfree (kb);
10217 #endif /* MULTI_KBOARD */
10219 void
10220 init_keyboard ()
10222 /* This is correct before outermost invocation of the editor loop */
10223 command_loop_level = -1;
10224 immediate_quit = 0;
10225 quit_char = Ctl ('g');
10226 Vunread_command_events = Qnil;
10227 unread_command_char = -1;
10228 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10229 total_keys = 0;
10230 recent_keys_index = 0;
10231 kbd_fetch_ptr = kbd_buffer;
10232 kbd_store_ptr = kbd_buffer;
10233 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10234 #ifdef HAVE_MOUSE
10235 do_mouse_tracking = Qnil;
10236 #endif
10237 input_pending = 0;
10239 /* This means that command_loop_1 won't try to select anything the first
10240 time through. */
10241 internal_last_event_frame = Qnil;
10242 Vlast_event_frame = internal_last_event_frame;
10244 #ifdef MULTI_KBOARD
10245 current_kboard = initial_kboard;
10246 #endif
10247 wipe_kboard (current_kboard);
10248 init_kboard (current_kboard);
10250 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
10252 signal (SIGINT, interrupt_signal);
10253 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10254 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10255 SIGQUIT and we can't tell which one it will give us. */
10256 signal (SIGQUIT, interrupt_signal);
10257 #endif /* HAVE_TERMIO */
10259 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10260 #ifdef SIGIO
10261 if (!noninteractive)
10262 signal (SIGIO, input_available_signal);
10263 #endif /* SIGIO */
10265 /* Use interrupt input by default, if it works and noninterrupt input
10266 has deficiencies. */
10268 #ifdef INTERRUPT_INPUT
10269 interrupt_input = 1;
10270 #else
10271 interrupt_input = 0;
10272 #endif
10274 /* Our VMS input only works by interrupts, as of now. */
10275 #ifdef VMS
10276 interrupt_input = 1;
10277 #endif
10279 sigfree ();
10280 dribble = 0;
10282 if (keyboard_init_hook)
10283 (*keyboard_init_hook) ();
10285 #ifdef POLL_FOR_INPUT
10286 poll_suppress_count = 1;
10287 start_polling ();
10288 #endif
10291 /* This type's only use is in syms_of_keyboard, to initialize the
10292 event header symbols and put properties on them. */
10293 struct event_head {
10294 Lisp_Object *var;
10295 char *name;
10296 Lisp_Object *kind;
10299 struct event_head head_table[] = {
10300 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10301 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10302 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10303 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10304 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10305 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible}
10308 void
10309 syms_of_keyboard ()
10311 Vpre_help_message = Qnil;
10312 staticpro (&Vpre_help_message);
10314 Vlispy_mouse_stem = build_string ("mouse");
10315 staticpro (&Vlispy_mouse_stem);
10317 /* Tool-bars. */
10318 QCimage = intern (":image");
10319 staticpro (&QCimage);
10321 staticpro (&Qhelp_echo);
10322 Qhelp_echo = intern ("help-echo");
10324 staticpro (&item_properties);
10325 item_properties = Qnil;
10327 staticpro (&tool_bar_item_properties);
10328 tool_bar_item_properties = Qnil;
10329 staticpro (&tool_bar_items_vector);
10330 tool_bar_items_vector = Qnil;
10332 staticpro (&real_this_command);
10333 real_this_command = Qnil;
10335 Qtimer_event_handler = intern ("timer-event-handler");
10336 staticpro (&Qtimer_event_handler);
10338 Qdisabled_command_hook = intern ("disabled-command-hook");
10339 staticpro (&Qdisabled_command_hook);
10341 Qself_insert_command = intern ("self-insert-command");
10342 staticpro (&Qself_insert_command);
10344 Qforward_char = intern ("forward-char");
10345 staticpro (&Qforward_char);
10347 Qbackward_char = intern ("backward-char");
10348 staticpro (&Qbackward_char);
10350 Qdisabled = intern ("disabled");
10351 staticpro (&Qdisabled);
10353 Qundefined = intern ("undefined");
10354 staticpro (&Qundefined);
10356 Qpre_command_hook = intern ("pre-command-hook");
10357 staticpro (&Qpre_command_hook);
10359 Qpost_command_hook = intern ("post-command-hook");
10360 staticpro (&Qpost_command_hook);
10362 Qpost_command_idle_hook = intern ("post-command-idle-hook");
10363 staticpro (&Qpost_command_idle_hook);
10365 Qdeferred_action_function = intern ("deferred-action-function");
10366 staticpro (&Qdeferred_action_function);
10368 Qcommand_hook_internal = intern ("command-hook-internal");
10369 staticpro (&Qcommand_hook_internal);
10371 Qfunction_key = intern ("function-key");
10372 staticpro (&Qfunction_key);
10373 Qmouse_click = intern ("mouse-click");
10374 staticpro (&Qmouse_click);
10375 #ifdef WINDOWSNT
10376 Qmouse_wheel = intern ("mouse-wheel");
10377 staticpro (&Qmouse_wheel);
10378 Qlanguage_change = intern ("language-change");
10379 staticpro (&Qlanguage_change);
10380 #endif
10381 Qdrag_n_drop = intern ("drag-n-drop");
10382 staticpro (&Qdrag_n_drop);
10384 Qsave_session = intern ("save-session");
10385 staticpro(&Qsave_session);
10387 Qusr1_signal = intern ("usr1-signal");
10388 staticpro (&Qusr1_signal);
10389 Qusr2_signal = intern ("usr2-signal");
10390 staticpro (&Qusr2_signal);
10392 Qmenu_enable = intern ("menu-enable");
10393 staticpro (&Qmenu_enable);
10394 Qmenu_alias = intern ("menu-alias");
10395 staticpro (&Qmenu_alias);
10396 QCenable = intern (":enable");
10397 staticpro (&QCenable);
10398 QCvisible = intern (":visible");
10399 staticpro (&QCvisible);
10400 QChelp = intern (":help");
10401 staticpro (&QChelp);
10402 QCfilter = intern (":filter");
10403 staticpro (&QCfilter);
10404 QCbutton = intern (":button");
10405 staticpro (&QCbutton);
10406 QCkeys = intern (":keys");
10407 staticpro (&QCkeys);
10408 QCkey_sequence = intern (":key-sequence");
10409 staticpro (&QCkey_sequence);
10410 QCtoggle = intern (":toggle");
10411 staticpro (&QCtoggle);
10412 QCradio = intern (":radio");
10413 staticpro (&QCradio);
10415 Qmode_line = intern ("mode-line");
10416 staticpro (&Qmode_line);
10417 Qvertical_line = intern ("vertical-line");
10418 staticpro (&Qvertical_line);
10419 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10420 staticpro (&Qvertical_scroll_bar);
10421 Qmenu_bar = intern ("menu-bar");
10422 staticpro (&Qmenu_bar);
10424 Qabove_handle = intern ("above-handle");
10425 staticpro (&Qabove_handle);
10426 Qhandle = intern ("handle");
10427 staticpro (&Qhandle);
10428 Qbelow_handle = intern ("below-handle");
10429 staticpro (&Qbelow_handle);
10430 Qup = intern ("up");
10431 staticpro (&Qup);
10432 Qdown = intern ("down");
10433 staticpro (&Qdown);
10434 Qtop = intern ("top");
10435 staticpro (&Qtop);
10436 Qbottom = intern ("bottom");
10437 staticpro (&Qbottom);
10438 Qend_scroll = intern ("end-scroll");
10439 staticpro (&Qend_scroll);
10440 Qratio = intern ("ratio");
10441 staticpro (&Qratio);
10443 Qevent_kind = intern ("event-kind");
10444 staticpro (&Qevent_kind);
10445 Qevent_symbol_elements = intern ("event-symbol-elements");
10446 staticpro (&Qevent_symbol_elements);
10447 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
10448 staticpro (&Qevent_symbol_element_mask);
10449 Qmodifier_cache = intern ("modifier-cache");
10450 staticpro (&Qmodifier_cache);
10452 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
10453 staticpro (&Qrecompute_lucid_menubar);
10454 Qactivate_menubar_hook = intern ("activate-menubar-hook");
10455 staticpro (&Qactivate_menubar_hook);
10457 Qpolling_period = intern ("polling-period");
10458 staticpro (&Qpolling_period);
10460 Qinput_method_function = intern ("input-method-function");
10461 staticpro (&Qinput_method_function);
10463 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
10464 staticpro (&Qinput_method_exit_on_first_char);
10465 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
10466 staticpro (&Qinput_method_use_echo_area);
10468 Fset (Qinput_method_exit_on_first_char, Qnil);
10469 Fset (Qinput_method_use_echo_area, Qnil);
10471 last_point_position_buffer = Qnil;
10474 struct event_head *p;
10476 for (p = head_table;
10477 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
10478 p++)
10480 *p->var = intern (p->name);
10481 staticpro (p->var);
10482 Fput (*p->var, Qevent_kind, *p->kind);
10483 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
10487 button_down_location = Fmake_vector (make_number (1), Qnil);
10488 staticpro (&button_down_location);
10489 mouse_syms = Fmake_vector (make_number (1), Qnil);
10490 staticpro (&mouse_syms);
10493 int i;
10494 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
10496 modifier_symbols = Fmake_vector (make_number (len), Qnil);
10497 for (i = 0; i < len; i++)
10498 if (modifier_names[i])
10499 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
10500 staticpro (&modifier_symbols);
10503 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
10504 staticpro (&recent_keys);
10506 this_command_keys = Fmake_vector (make_number (40), Qnil);
10507 staticpro (&this_command_keys);
10509 raw_keybuf = Fmake_vector (make_number (30), Qnil);
10510 staticpro (&raw_keybuf);
10512 Qextended_command_history = intern ("extended-command-history");
10513 Fset (Qextended_command_history, Qnil);
10514 staticpro (&Qextended_command_history);
10516 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10517 staticpro (&kbd_buffer_gcpro);
10519 accent_key_syms = Qnil;
10520 staticpro (&accent_key_syms);
10522 func_key_syms = Qnil;
10523 staticpro (&func_key_syms);
10525 #ifdef WINDOWSNT
10526 mouse_wheel_syms = Qnil;
10527 staticpro (&mouse_wheel_syms);
10529 drag_n_drop_syms = Qnil;
10530 staticpro (&drag_n_drop_syms);
10531 #endif
10533 unread_switch_frame = Qnil;
10534 staticpro (&unread_switch_frame);
10536 internal_last_event_frame = Qnil;
10537 staticpro (&internal_last_event_frame);
10539 read_key_sequence_cmd = Qnil;
10540 staticpro (&read_key_sequence_cmd);
10542 menu_bar_one_keymap_changed_items = Qnil;
10543 staticpro (&menu_bar_one_keymap_changed_items);
10545 defsubr (&Sevent_convert_list);
10546 defsubr (&Sread_key_sequence);
10547 defsubr (&Sread_key_sequence_vector);
10548 defsubr (&Srecursive_edit);
10549 #ifdef HAVE_MOUSE
10550 defsubr (&Strack_mouse);
10551 #endif
10552 defsubr (&Sinput_pending_p);
10553 defsubr (&Scommand_execute);
10554 defsubr (&Srecent_keys);
10555 defsubr (&Sthis_command_keys);
10556 defsubr (&Sthis_command_keys_vector);
10557 defsubr (&Sthis_single_command_keys);
10558 defsubr (&Sthis_single_command_raw_keys);
10559 defsubr (&Sreset_this_command_lengths);
10560 defsubr (&Sclear_this_command_keys);
10561 defsubr (&Ssuspend_emacs);
10562 defsubr (&Sabort_recursive_edit);
10563 defsubr (&Sexit_recursive_edit);
10564 defsubr (&Srecursion_depth);
10565 defsubr (&Stop_level);
10566 defsubr (&Sdiscard_input);
10567 defsubr (&Sopen_dribble_file);
10568 defsubr (&Sset_input_mode);
10569 defsubr (&Scurrent_input_mode);
10570 defsubr (&Sexecute_extended_command);
10572 DEFVAR_LISP ("last-command-char", &last_command_char,
10573 doc: /* Last input event that was part of a command. */);
10575 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
10576 doc: /* Last input event that was part of a command. */);
10578 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
10579 doc: /* Last input event in a command, except for mouse menu events.
10580 Mouse menus give back keys that don't look like mouse events;
10581 this variable holds the actual mouse event that led to the menu,
10582 so that you can determine whether the command was run by mouse or not. */);
10584 DEFVAR_LISP ("last-input-char", &last_input_char,
10585 doc: /* Last input event. */);
10587 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
10588 doc: /* Last input event. */);
10590 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
10591 doc: /* List of events to be read as the command input.
10592 These events are processed first, before actual keyboard input. */);
10593 Vunread_command_events = Qnil;
10595 DEFVAR_INT ("unread-command-char", &unread_command_char,
10596 doc: /* If not -1, an object to be read as next command input event. */);
10598 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
10599 doc: /* List of events to be processed as input by input methods.
10600 These events are processed after `unread-command-events', but
10601 before actual keyboard input. */);
10602 Vunread_post_input_method_events = Qnil;
10604 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
10605 doc: /* List of events to be processed as input by input methods.
10606 These events are processed after `unread-command-events', but
10607 before actual keyboard input. */);
10608 Vunread_input_method_events = Qnil;
10610 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
10611 doc: /* Meta-prefix character code.
10612 Meta-foo as command input turns into this character followed by foo. */);
10613 XSETINT (meta_prefix_char, 033);
10615 DEFVAR_KBOARD ("last-command", Vlast_command,
10616 doc: /* The last command executed.
10617 Normally a symbol with a function definition, but can be whatever was found
10618 in the keymap, or whatever the variable `this-command' was set to by that
10619 command.
10621 The value `mode-exit' is special; it means that the previous command
10622 read an event that told it to exit, and it did so and unread that event.
10623 In other words, the present command is the event that made the previous
10624 command exit.
10626 The value `kill-region' is special; it means that the previous command
10627 was a kill command. */);
10629 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
10630 doc: /* Same as `last-command', but never altered by Lisp code. */);
10632 DEFVAR_LISP ("this-command", &Vthis_command,
10633 doc: /* The command now being executed.
10634 The command can set this variable; whatever is put here
10635 will be in `last-command' during the following command. */);
10636 Vthis_command = Qnil;
10638 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
10639 doc: /* If non-nil, the original command bound to the current key sequence.
10640 The value of `this-command' is the result of looking up the original
10641 command in the active keymaps. */);
10642 Vthis_original_command = Qnil;
10644 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
10645 doc: /* *Number of input events between auto-saves.
10646 Zero means disable autosaving due to number of characters typed. */);
10647 auto_save_interval = 300;
10649 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
10650 doc: /* *Number of seconds idle time before auto-save.
10651 Zero or nil means disable auto-saving due to idleness.
10652 After auto-saving due to this many seconds of idle time,
10653 Emacs also does a garbage collection if that seems to be warranted. */);
10654 XSETFASTINT (Vauto_save_timeout, 30);
10656 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
10657 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
10658 The value may be integer or floating point. */);
10659 Vecho_keystrokes = make_number (1);
10661 DEFVAR_INT ("polling-period", &polling_period,
10662 doc: /* *Interval between polling for input during Lisp execution.
10663 The reason for polling is to make C-g work to stop a running program.
10664 Polling is needed only when using X windows and SIGIO does not work.
10665 Polling is automatically disabled in all other cases. */);
10666 polling_period = 2;
10668 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
10669 doc: /* *Maximum time between mouse clicks to make a double-click.
10670 Measured in milliseconds. nil means disable double-click recognition;
10671 t means double-clicks have no time limit and are detected
10672 by position only. */);
10673 Vdouble_click_time = make_number (500);
10675 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
10676 doc: /* *Maximum mouse movement between clicks to make a double-click.
10677 On window-system frames, value is the number of pixels the mouse may have
10678 moved horizontally or vertically between two clicks to make a double-click.
10679 On non window-system frames, value is interpreted in units of 1/8 characters
10680 instead of pixels.
10682 This variable is also the threshold for motion of the mouse
10683 to count as a drag. */);
10684 double_click_fuzz = 3;
10686 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
10687 doc: /* *Non-nil means inhibit local map menu bar menus. */);
10688 inhibit_local_menu_bar_menus = 0;
10690 DEFVAR_INT ("num-input-keys", &num_input_keys,
10691 doc: /* Number of complete key sequences read as input so far.
10692 This includes key sequences read from keyboard macros.
10693 The number is effectively the number of interactive command invocations. */);
10694 num_input_keys = 0;
10696 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
10697 doc: /* Number of input events read from the keyboard so far.
10698 This does not include events generated by keyboard macros. */);
10699 num_nonmacro_input_events = 0;
10701 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
10702 doc: /* The frame in which the most recently read event occurred.
10703 If the last event came from a keyboard macro, this is set to `macro'. */);
10704 Vlast_event_frame = Qnil;
10706 /* This variable is set up in sysdep.c. */
10707 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
10708 doc: /* The ERASE character as set by the user with stty. */);
10710 DEFVAR_LISP ("help-char", &Vhelp_char,
10711 doc: /* Character to recognize as meaning Help.
10712 When it is read, do `(eval help-form)', and display result if it's a string.
10713 If the value of `help-form' is nil, this char can be read normally. */);
10714 XSETINT (Vhelp_char, Ctl ('H'));
10716 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
10717 doc: /* List of input events to recognize as meaning Help.
10718 These work just like the value of `help-char' (see that). */);
10719 Vhelp_event_list = Qnil;
10721 DEFVAR_LISP ("help-form", &Vhelp_form,
10722 doc: /* Form to execute when character `help-char' is read.
10723 If the form returns a string, that string is displayed.
10724 If `help-form' is nil, the help char is not recognized. */);
10725 Vhelp_form = Qnil;
10727 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
10728 doc: /* Command to run when `help-char' character follows a prefix key.
10729 This command is used only when there is no actual binding
10730 for that character after that prefix key. */);
10731 Vprefix_help_command = Qnil;
10733 DEFVAR_LISP ("top-level", &Vtop_level,
10734 doc: /* Form to evaluate when Emacs starts up.
10735 Useful to set before you dump a modified Emacs. */);
10736 Vtop_level = Qnil;
10738 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
10739 doc: /* Translate table for keyboard input, or nil.
10740 Each character is looked up in this string and the contents used instead.
10741 The value may be a string, a vector, or a char-table.
10742 If it is a string or vector of length N,
10743 character codes N and up are untranslated.
10744 In a vector or a char-table, an element which is nil means "no translation". */);
10745 Vkeyboard_translate_table = Qnil;
10747 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
10748 doc: /* Non-nil means to always spawn a subshell instead of suspending.
10749 \(Even if the operating system has support for stopping a process.\) */);
10750 cannot_suspend = 0;
10752 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
10753 doc: /* Non-nil means prompt with menus when appropriate.
10754 This is done when reading from a keymap that has a prompt string,
10755 for elements that have prompt strings.
10756 The menu is displayed on the screen
10757 if X menus were enabled at configuration
10758 time and the previous event was a mouse click prefix key.
10759 Otherwise, menu prompting uses the echo area. */);
10760 menu_prompting = 1;
10762 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
10763 doc: /* Character to see next line of menu prompt.
10764 Type this character while in a menu prompt to rotate around the lines of it. */);
10765 XSETINT (menu_prompt_more_char, ' ');
10767 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
10768 doc: /* A mask of additional modifier keys to use with every keyboard character.
10769 Emacs applies the modifiers of the character stored here to each keyboard
10770 character it reads. For example, after evaluating the expression
10771 (setq extra-keyboard-modifiers ?\\C-x)
10772 all input characters will have the control modifier applied to them.
10774 Note that the character ?\\C-@, equivalent to the integer zero, does
10775 not count as a control character; rather, it counts as a character
10776 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
10777 cancels any modification. */);
10778 extra_keyboard_modifiers = 0;
10780 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
10781 doc: /* If an editing command sets this to t, deactivate the mark afterward.
10782 The command loop sets this to nil before each command,
10783 and tests the value when the command returns.
10784 Buffer modification stores t in this variable. */);
10785 Vdeactivate_mark = Qnil;
10787 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
10788 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
10789 Vcommand_hook_internal = Qnil;
10791 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
10792 doc: /* Normal hook run before each command is executed.
10793 If an unhandled error happens in running this hook,
10794 the hook value is set to nil, since otherwise the error
10795 might happen repeatedly and make Emacs nonfunctional. */);
10796 Vpre_command_hook = Qnil;
10798 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
10799 doc: /* Normal hook run after each command is executed.
10800 If an unhandled error happens in running this hook,
10801 the hook value is set to nil, since otherwise the error
10802 might happen repeatedly and make Emacs nonfunctional. */);
10803 Vpost_command_hook = Qnil;
10805 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
10806 doc: /* Normal hook run after each command is executed, if idle.
10807 Errors running the hook are caught and ignored.
10808 This feature is obsolete; use idle timers instead. See `etc/NEWS'. */);
10809 Vpost_command_idle_hook = Qnil;
10811 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
10812 doc: /* Delay time before running `post-command-idle-hook'.
10813 This is measured in microseconds. */);
10814 post_command_idle_delay = 100000;
10816 #if 0
10817 DEFVAR_LISP ("echo-area-clear-hook", ...,
10818 doc: /* Normal hook run when clearing the echo area. */);
10819 #endif
10820 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
10821 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
10823 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
10824 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
10825 Vlucid_menu_bar_dirty_flag = Qnil;
10827 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
10828 doc: /* List of menu bar items to move to the end of the menu bar.
10829 The elements of the list are event types that may have menu bar bindings. */);
10830 Vmenu_bar_final_items = Qnil;
10832 DEFVAR_KBOARD ("overriding-terminal-local-map",
10833 Voverriding_terminal_local_map,
10834 doc: /* Per-terminal keymap that overrides all other local keymaps.
10835 If this variable is non-nil, it is used as a keymap instead of the
10836 buffer's local map, and the minor mode keymaps and text property keymaps.
10837 This variable is intended to let commands such as `universal-argument'
10838 set up a different keymap for reading the next command. */);
10840 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
10841 doc: /* Keymap that overrides all other local keymaps.
10842 If this variable is non-nil, it is used as a keymap instead of the
10843 buffer's local map, and the minor mode keymaps and text property keymaps. */);
10844 Voverriding_local_map = Qnil;
10846 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
10847 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
10848 Otherwise, the menu bar continues to reflect the buffer's local map
10849 and the minor mode maps regardless of `overriding-local-map'. */);
10850 Voverriding_local_map_menu_flag = Qnil;
10852 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
10853 doc: /* Keymap defining bindings for special events to execute at low level. */);
10854 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
10856 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
10857 doc: /* *Non-nil means generate motion events for mouse motion. */);
10859 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
10860 doc: /* Alist of system-specific X windows key symbols.
10861 Each element should have the form (N . SYMBOL) where N is the
10862 numeric keysym code (sans the \"system-specific\" bit 1<<28)
10863 and SYMBOL is its name. */);
10865 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
10866 doc: /* List of deferred actions to be performed at a later time.
10867 The precise format isn't relevant here; we just check whether it is nil. */);
10868 Vdeferred_action_list = Qnil;
10870 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
10871 doc: /* Function to call to handle deferred actions, after each command.
10872 This function is called with no arguments after each command
10873 whenever `deferred-action-list' is non-nil. */);
10874 Vdeferred_action_function = Qnil;
10876 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
10877 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
10878 The value can be a length of time to show the message for.
10879 If the value is non-nil and not a number, we wait 2 seconds. */);
10880 Vsuggest_key_bindings = Qt;
10882 DEFVAR_LISP ("timer-list", &Vtimer_list,
10883 doc: /* List of active absolute time timers in order of increasing time. */);
10884 Vtimer_list = Qnil;
10886 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
10887 doc: /* List of active idle-time timers in order of increasing time. */);
10888 Vtimer_idle_list = Qnil;
10890 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
10891 doc: /* If non-nil, the function that implements the current input method.
10892 It's called with one argument, a printing character that was just read.
10893 \(That means a character with code 040...0176.)
10894 Typically this function uses `read-event' to read additional events.
10895 When it does so, it should first bind `input-method-function' to nil
10896 so it will not be called recursively.
10898 The function should return a list of zero or more events
10899 to be used as input. If it wants to put back some events
10900 to be reconsidered, separately, by the input method,
10901 it can add them to the beginning of `unread-command-events'.
10903 The input method function can find in `input-method-previous-method'
10904 the previous echo area message.
10906 The input method function should refer to the variables
10907 `input-method-use-echo-area' and `input-method-exit-on-first-char'
10908 for guidance on what to do. */);
10909 Vinput_method_function = Qnil;
10911 DEFVAR_LISP ("input-method-previous-message",
10912 &Vinput_method_previous_message,
10913 doc: /* When `input-method-function' is called, hold the previous echo area message.
10914 This variable exists because `read-event' clears the echo area
10915 before running the input method. It is nil if there was no message. */);
10916 Vinput_method_previous_message = Qnil;
10918 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
10919 doc: /* If non-nil, the function that implements the display of help.
10920 It's called with one argument, the help string to display. */);
10921 Vshow_help_function = Qnil;
10923 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
10924 doc: /* If non-nil, suppress point adjustment after executing a command.
10926 After a command is executed, if point is moved into a region that has
10927 special properties (e.g. composition, display), we adjust point to
10928 the boundary of the region. But, several special commands sets this
10929 variable to non-nil, then we suppress the point adjustment.
10931 This variable is set to nil before reading a command, and is checked
10932 just after executing the command. */);
10933 Vdisable_point_adjustment = Qnil;
10935 DEFVAR_LISP ("global-disable-point-adjustment",
10936 &Vglobal_disable_point_adjustment,
10937 doc: /* *If non-nil, always suppress point adjustment.
10939 The default value is nil, in which case, point adjustment are
10940 suppressed only after special commands that set
10941 `disable-point-adjustment' (which see) to non-nil. */);
10942 Vglobal_disable_point_adjustment = Qnil;
10944 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings,
10945 doc: /* Non-nil means updating menu bindings is allowed.
10946 A value of nil means menu bindings should not be updated.
10947 Used during Emacs' startup. */);
10948 update_menu_bindings = 1;
10950 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
10951 doc: /* *How long to display an echo-area message when the minibuffer is active.
10952 If the value is not a number, such messages don't time out. */);
10953 Vminibuffer_message_timeout = make_number (2);
10956 void
10957 keys_of_keyboard ()
10959 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
10960 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
10961 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
10962 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
10963 initial_define_key (meta_map, 'x', "execute-extended-command");
10965 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
10966 "handle-delete-frame");
10967 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
10968 "ignore-event");
10969 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
10970 "ignore-event");
10971 initial_define_lispy_key (Vspecial_event_map, "save-session",
10972 "handle-save-session");