*** empty log message ***
[emacs.git] / src / keyboard.c
blobef4a5028ae3d9cc8b527ebf46174746ca7206783
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 MAC_OS
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 MAC_OS8
98 /* But not too big (local data > 32K error) if on Mac OS Classic. */
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 Qselect_window;
548 Lisp_Object Qhelp_echo;
550 /* Symbols to denote kinds of events. */
551 Lisp_Object Qfunction_key;
552 Lisp_Object Qmouse_click;
553 #ifdef WINDOWSNT
554 Lisp_Object Qmouse_wheel;
555 Lisp_Object Qlanguage_change;
556 #endif
557 Lisp_Object Qdrag_n_drop;
558 Lisp_Object Qsave_session;
560 /* Lisp_Object Qmouse_movement; - also an event header */
562 /* Properties of event headers. */
563 Lisp_Object Qevent_kind;
564 Lisp_Object Qevent_symbol_elements;
566 /* menu item parts */
567 Lisp_Object Qmenu_alias;
568 Lisp_Object Qmenu_enable;
569 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
570 Lisp_Object QCbutton, QCtoggle, QCradio;
571 extern Lisp_Object Vdefine_key_rebound_commands;
572 extern Lisp_Object Qmenu_item;
574 /* An event header symbol HEAD may have a property named
575 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
576 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
577 mask of modifiers applied to it. If present, this is used to help
578 speed up parse_modifiers. */
579 Lisp_Object Qevent_symbol_element_mask;
581 /* An unmodified event header BASE may have a property named
582 Qmodifier_cache, which is an alist mapping modifier masks onto
583 modified versions of BASE. If present, this helps speed up
584 apply_modifiers. */
585 Lisp_Object Qmodifier_cache;
587 /* Symbols to use for parts of windows. */
588 Lisp_Object Qmode_line;
589 Lisp_Object Qvertical_line;
590 Lisp_Object Qvertical_scroll_bar;
591 Lisp_Object Qmenu_bar;
592 extern Lisp_Object Qleft_margin, Qright_margin;
594 Lisp_Object recursive_edit_unwind (), command_loop ();
595 Lisp_Object Fthis_command_keys ();
596 Lisp_Object Qextended_command_history;
597 EMACS_TIME timer_check ();
599 extern Lisp_Object Vhistory_length;
601 extern char *x_get_keysym_name ();
603 static void record_menu_key ();
605 Lisp_Object Qpolling_period;
607 /* List of absolute timers. Appears in order of next scheduled event. */
608 Lisp_Object Vtimer_list;
610 /* List of idle time timers. Appears in order of next scheduled event. */
611 Lisp_Object Vtimer_idle_list;
613 /* Incremented whenever a timer is run. */
614 int timers_run;
616 extern Lisp_Object Vprint_level, Vprint_length;
618 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
619 happens. */
620 EMACS_TIME *input_available_clear_time;
622 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
623 Default is 1 if INTERRUPT_INPUT is defined. */
624 int interrupt_input;
626 /* Nonzero while interrupts are temporarily deferred during redisplay. */
627 int interrupts_deferred;
629 /* Nonzero means use ^S/^Q for flow control. */
630 int flow_control;
632 /* Allow m- file to inhibit use of FIONREAD. */
633 #ifdef BROKEN_FIONREAD
634 #undef FIONREAD
635 #endif
637 /* We are unable to use interrupts if FIONREAD is not available,
638 so flush SIGIO so we won't try. */
639 #ifndef FIONREAD
640 #ifdef SIGIO
641 #undef SIGIO
642 #endif
643 #endif
645 /* If we support a window system, turn on the code to poll periodically
646 to detect C-g. It isn't actually used when doing interrupt input. */
647 #ifdef HAVE_WINDOW_SYSTEM
648 #define POLL_FOR_INPUT
649 #endif
651 /* After a command is executed, if point is moved into a region that
652 has specific properties (e.g. composition, display), we adjust
653 point to the boundary of the region. But, if a command sets this
654 variable to non-nil, we suppress this point adjustment. This
655 variable is set to nil before reading a command. */
657 Lisp_Object Vdisable_point_adjustment;
659 /* If non-nil, always disable point adjustment. */
661 Lisp_Object Vglobal_disable_point_adjustment;
663 /* The time when Emacs started being idle. */
665 static EMACS_TIME timer_idleness_start_time;
668 /* Global variable declarations. */
670 /* Function for init_keyboard to call with no args (if nonzero). */
671 void (*keyboard_init_hook) ();
673 static int read_avail_input P_ ((int));
674 static void get_input_pending P_ ((int *, int));
675 static int readable_events P_ ((int));
676 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
677 Lisp_Object, int *));
678 static Lisp_Object read_char_x_menu_prompt ();
679 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
680 Lisp_Object *));
681 static Lisp_Object make_lispy_event P_ ((struct input_event *));
682 #ifdef HAVE_MOUSE
683 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
684 enum scroll_bar_part,
685 Lisp_Object, Lisp_Object,
686 unsigned long));
687 #endif
688 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
689 Lisp_Object, char **,
690 Lisp_Object *, unsigned));
691 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
692 static int parse_solitary_modifier P_ ((Lisp_Object));
693 static int parse_solitary_modifier ();
694 static void save_getcjmp P_ ((jmp_buf));
695 static void save_getcjmp ();
696 static void restore_getcjmp P_ ((jmp_buf));
697 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
698 static void clear_event P_ ((struct input_event *));
699 static void any_kboard_state P_ ((void));
701 /* Nonzero means don't try to suspend even if the operating system seems
702 to support it. */
703 static int cannot_suspend;
705 /* Install the string STR as the beginning of the string of echoing,
706 so that it serves as a prompt for the next character.
707 Also start echoing. */
709 void
710 echo_prompt (str)
711 Lisp_Object str;
713 current_kboard->echo_string = str;
714 current_kboard->echo_after_prompt = SCHARS (str);
715 echo_now ();
718 /* Add C to the echo string, if echoing is going on.
719 C can be a character, which is printed prettily ("M-C-x" and all that
720 jazz), or a symbol, whose name is printed. */
722 void
723 echo_char (c)
724 Lisp_Object c;
726 if (current_kboard->immediate_echo)
728 int size = KEY_DESCRIPTION_SIZE + 100;
729 char *buffer = (char *) alloca (size);
730 char *ptr = buffer;
731 Lisp_Object echo_string;
733 echo_string = current_kboard->echo_string;
735 /* If someone has passed us a composite event, use its head symbol. */
736 c = EVENT_HEAD (c);
738 if (INTEGERP (c))
740 ptr = push_key_description (XINT (c), ptr, 1);
742 else if (SYMBOLP (c))
744 struct Lisp_String *name = XSTRING (SYMBOL_NAME (c));
745 int nbytes = STRING_BYTES (name);
747 if (size - (ptr - buffer) < nbytes)
749 int offset = ptr - buffer;
750 size = max (2 * size, size + nbytes);
751 buffer = (char *) alloca (size);
752 ptr = buffer + offset;
755 ptr += copy_text (name->data, ptr, nbytes,
756 name->size_byte >= 0, 1);
759 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
760 && help_char_p (c))
762 const char *text = " (Type ? for further options)";
763 int len = strlen (text);
765 if (size - (ptr - buffer) < len)
767 int offset = ptr - buffer;
768 size += len;
769 buffer = (char *) alloca (size);
770 ptr = buffer + offset;
773 bcopy (text, ptr, len);
774 ptr += len;
777 /* Replace a dash from echo_dash with a space, otherwise
778 add a space at the end as a separator between keys. */
779 if (STRINGP (echo_string)
780 && SCHARS (echo_string) > 0)
782 Lisp_Object last_char, idx;
784 idx = make_number (SCHARS (echo_string) - 1);
785 last_char = Faref (echo_string, idx);
787 if (XINT (last_char) == '-')
788 Faset (echo_string, idx, make_number (' '));
789 else
790 echo_string = concat2 (echo_string, build_string (" "));
793 current_kboard->echo_string
794 = concat2 (echo_string, make_string (buffer, ptr - buffer));
796 echo_now ();
800 /* Temporarily add a dash to the end of the echo string if it's not
801 empty, so that it serves as a mini-prompt for the very next character. */
803 void
804 echo_dash ()
806 /* Do nothing if not echoing at all. */
807 if (NILP (current_kboard->echo_string))
808 return;
810 if (!current_kboard->immediate_echo
811 && SCHARS (current_kboard->echo_string) == 0)
812 return;
814 /* Do nothing if we just printed a prompt. */
815 if (current_kboard->echo_after_prompt
816 == SCHARS (current_kboard->echo_string))
817 return;
819 /* Put a dash at the end of the buffer temporarily,
820 but make it go away when the next character is added. */
821 current_kboard->echo_string = concat2 (current_kboard->echo_string,
822 build_string ("-"));
823 echo_now ();
826 /* Display the current echo string, and begin echoing if not already
827 doing so. */
829 void
830 echo_now ()
832 if (!current_kboard->immediate_echo)
834 int i;
835 current_kboard->immediate_echo = 1;
837 for (i = 0; i < this_command_key_count; i++)
839 Lisp_Object c;
840 c = XVECTOR (this_command_keys)->contents[i];
841 if (! (EVENT_HAS_PARAMETERS (c)
842 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
843 echo_char (c);
845 echo_dash ();
848 echoing = 1;
849 message3_nolog (current_kboard->echo_string,
850 SBYTES (current_kboard->echo_string),
851 SMBP (current_kboard->echo_string));
852 echoing = 0;
854 /* Record in what buffer we echoed, and from which kboard. */
855 echo_message_buffer = echo_area_buffer[0];
856 echo_kboard = current_kboard;
858 if (waiting_for_input && !NILP (Vquit_flag))
859 quit_throw_to_read_char ();
862 /* Turn off echoing, for the start of a new command. */
864 void
865 cancel_echoing ()
867 current_kboard->immediate_echo = 0;
868 current_kboard->echo_after_prompt = -1;
869 current_kboard->echo_string = Qnil;
870 ok_to_echo_at_next_pause = NULL;
871 echo_kboard = NULL;
872 echo_message_buffer = Qnil;
875 /* Return the length of the current echo string. */
877 static int
878 echo_length ()
880 return (STRINGP (current_kboard->echo_string)
881 ? SCHARS (current_kboard->echo_string)
882 : 0);
885 /* Truncate the current echo message to its first LEN chars.
886 This and echo_char get used by read_key_sequence when the user
887 switches frames while entering a key sequence. */
889 static void
890 echo_truncate (nchars)
891 int nchars;
893 if (STRINGP (current_kboard->echo_string))
894 current_kboard->echo_string
895 = Fsubstring (current_kboard->echo_string,
896 make_number (0), make_number (nchars));
897 truncate_echo_area (nchars);
901 /* Functions for manipulating this_command_keys. */
902 static void
903 add_command_key (key)
904 Lisp_Object key;
906 /* If reset-this-command-length was called recently, obey it now.
907 See the doc string of that function for an explanation of why. */
908 if (before_command_restore_flag)
910 this_command_key_count = before_command_key_count_1;
911 if (this_command_key_count < this_single_command_key_start)
912 this_single_command_key_start = this_command_key_count;
913 echo_truncate (before_command_echo_length_1);
914 before_command_restore_flag = 0;
917 if (this_command_key_count >= ASIZE (this_command_keys))
918 this_command_keys = larger_vector (this_command_keys,
919 2 * ASIZE (this_command_keys),
920 Qnil);
922 AREF (this_command_keys, this_command_key_count) = key;
923 ++this_command_key_count;
927 Lisp_Object
928 recursive_edit_1 ()
930 int count = specpdl_ptr - specpdl;
931 Lisp_Object val;
933 if (command_loop_level > 0)
935 specbind (Qstandard_output, Qt);
936 specbind (Qstandard_input, Qt);
939 #ifdef HAVE_X_WINDOWS
940 /* The command loop has started an hourglass timer, so we have to
941 cancel it here, otherwise it will fire because the recursive edit
942 can take some time. Do not check for display_hourglass_p here,
943 because it could already be nil. */
944 cancel_hourglass ();
945 #endif
947 /* This function may have been called from a debugger called from
948 within redisplay, for instance by Edebugging a function called
949 from fontification-functions. We want to allow redisplay in
950 the debugging session.
952 The recursive edit is left with a `(throw exit ...)'. The `exit'
953 tag is not caught anywhere in redisplay, i.e. when we leave the
954 recursive edit, the original redisplay leading to the recursive
955 edit will be unwound. The outcome should therefore be safe. */
956 specbind (Qinhibit_redisplay, Qnil);
957 redisplaying_p = 0;
959 val = command_loop ();
960 if (EQ (val, Qt))
961 Fsignal (Qquit, Qnil);
962 /* Handle throw from read_minibuf when using minibuffer
963 while it's active but we're in another window. */
964 if (STRINGP (val))
965 Fsignal (Qerror, Fcons (val, Qnil));
967 return unbind_to (count, Qnil);
970 /* When an auto-save happens, record the "time", and don't do again soon. */
972 void
973 record_auto_save ()
975 last_auto_save = num_nonmacro_input_events;
978 /* Make an auto save happen as soon as possible at command level. */
980 void
981 force_auto_save_soon ()
983 last_auto_save = - auto_save_interval - 1;
985 record_asynch_buffer_change ();
988 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
989 doc: /* Invoke the editor command loop recursively.
990 To get out of the recursive edit, a command can do `(throw 'exit nil)';
991 that tells this function to return.
992 Alternately, `(throw 'exit t)' makes this function signal an error.
993 This function is called by the editor initialization to begin editing. */)
996 int count = specpdl_ptr - specpdl;
997 Lisp_Object buffer;
999 command_loop_level++;
1000 update_mode_lines = 1;
1002 if (command_loop_level
1003 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1004 buffer = Fcurrent_buffer ();
1005 else
1006 buffer = Qnil;
1008 /* If we leave recursive_edit_1 below with a `throw' for instance,
1009 like it is done in the splash screen display, we have to
1010 make sure that we restore single_kboard as command_loop_1
1011 would have done if it were left normally. */
1012 record_unwind_protect (recursive_edit_unwind,
1013 Fcons (buffer, single_kboard ? Qt : Qnil));
1015 recursive_edit_1 ();
1016 return unbind_to (count, Qnil);
1019 Lisp_Object
1020 recursive_edit_unwind (info)
1021 Lisp_Object info;
1023 if (BUFFERP (XCAR (info)))
1024 Fset_buffer (XCAR (info));
1026 if (NILP (XCDR (info)))
1027 any_kboard_state ();
1028 else
1029 single_kboard_state ();
1031 command_loop_level--;
1032 update_mode_lines = 1;
1033 return Qnil;
1037 static void
1038 any_kboard_state ()
1040 #ifdef MULTI_KBOARD
1041 #if 0 /* Theory: if there's anything in Vunread_command_events,
1042 it will right away be read by read_key_sequence,
1043 and then if we do switch KBOARDS, it will go into the side
1044 queue then. So we don't need to do anything special here -- rms. */
1045 if (CONSP (Vunread_command_events))
1047 current_kboard->kbd_queue
1048 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1049 current_kboard->kbd_queue_has_data = 1;
1051 Vunread_command_events = Qnil;
1052 #endif
1053 single_kboard = 0;
1054 #endif
1057 /* Switch to the single-kboard state, making current_kboard
1058 the only KBOARD from which further input is accepted. */
1060 void
1061 single_kboard_state ()
1063 #ifdef MULTI_KBOARD
1064 single_kboard = 1;
1065 #endif
1068 /* Maintain a stack of kboards, so other parts of Emacs
1069 can switch temporarily to the kboard of a given frame
1070 and then revert to the previous status. */
1072 struct kboard_stack
1074 KBOARD *kboard;
1075 struct kboard_stack *next;
1078 static struct kboard_stack *kboard_stack;
1080 void
1081 push_frame_kboard (f)
1082 FRAME_PTR f;
1084 #ifdef MULTI_KBOARD
1085 struct kboard_stack *p
1086 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1088 p->next = kboard_stack;
1089 p->kboard = current_kboard;
1090 kboard_stack = p;
1092 current_kboard = FRAME_KBOARD (f);
1093 #endif
1096 void
1097 pop_frame_kboard ()
1099 #ifdef MULTI_KBOARD
1100 struct kboard_stack *p = kboard_stack;
1101 current_kboard = p->kboard;
1102 kboard_stack = p->next;
1103 xfree (p);
1104 #endif
1107 /* Handle errors that are not handled at inner levels
1108 by printing an error message and returning to the editor command loop. */
1110 Lisp_Object
1111 cmd_error (data)
1112 Lisp_Object data;
1114 Lisp_Object old_level, old_length;
1115 char macroerror[50];
1117 if (!NILP (executing_macro))
1119 if (executing_macro_iterations == 1)
1120 sprintf (macroerror, "After 1 kbd macro iteration: ");
1121 else
1122 sprintf (macroerror, "After %d kbd macro iterations: ",
1123 executing_macro_iterations);
1125 else
1126 *macroerror = 0;
1128 Vstandard_output = Qt;
1129 Vstandard_input = Qt;
1130 Vexecuting_macro = Qnil;
1131 executing_macro = Qnil;
1132 current_kboard->Vprefix_arg = Qnil;
1133 current_kboard->Vlast_prefix_arg = Qnil;
1134 cancel_echoing ();
1136 /* Avoid unquittable loop if data contains a circular list. */
1137 old_level = Vprint_level;
1138 old_length = Vprint_length;
1139 XSETFASTINT (Vprint_level, 10);
1140 XSETFASTINT (Vprint_length, 10);
1141 cmd_error_internal (data, macroerror);
1142 Vprint_level = old_level;
1143 Vprint_length = old_length;
1145 Vquit_flag = Qnil;
1147 Vinhibit_quit = Qnil;
1148 #ifdef MULTI_KBOARD
1149 any_kboard_state ();
1150 #endif
1152 return make_number (0);
1155 /* Take actions on handling an error. DATA is the data that describes
1156 the error.
1158 CONTEXT is a C-string containing ASCII characters only which
1159 describes the context in which the error happened. If we need to
1160 generalize CONTEXT to allow multibyte characters, make it a Lisp
1161 string. */
1163 void
1164 cmd_error_internal (data, context)
1165 Lisp_Object data;
1166 char *context;
1168 Lisp_Object stream;
1169 int kill_emacs_p = 0;
1170 struct frame *sf = SELECTED_FRAME ();
1172 Vquit_flag = Qnil;
1173 Vinhibit_quit = Qt;
1174 clear_message (1, 0);
1176 /* If the window system or terminal frame hasn't been initialized
1177 yet, or we're not interactive, it's best to dump this message out
1178 to stderr and exit. */
1179 if (!sf->glyphs_initialized_p
1180 /* This is the case of the frame dumped with Emacs, when we're
1181 running under a window system. */
1182 || (!NILP (Vwindow_system)
1183 && !inhibit_window_system
1184 && FRAME_TERMCAP_P (sf))
1185 || noninteractive)
1187 stream = Qexternal_debugging_output;
1188 kill_emacs_p = 1;
1190 else
1192 Fdiscard_input ();
1193 bitch_at_user ();
1194 stream = Qt;
1197 if (context != 0)
1198 write_string_1 (context, -1, stream);
1200 print_error_message (data, stream);
1202 /* If the window system or terminal frame hasn't been initialized
1203 yet, or we're in -batch mode, this error should cause Emacs to exit. */
1204 if (kill_emacs_p)
1206 Fterpri (stream);
1207 Fkill_emacs (make_number (-1));
1211 Lisp_Object command_loop_1 ();
1212 Lisp_Object command_loop_2 ();
1213 Lisp_Object top_level_1 ();
1215 /* Entry to editor-command-loop.
1216 This level has the catches for exiting/returning to editor command loop.
1217 It returns nil to exit recursive edit, t to abort it. */
1219 Lisp_Object
1220 command_loop ()
1222 if (command_loop_level > 0 || minibuf_level > 0)
1224 Lisp_Object val;
1225 val = internal_catch (Qexit, command_loop_2, Qnil);
1226 executing_macro = Qnil;
1227 return val;
1229 else
1230 while (1)
1232 internal_catch (Qtop_level, top_level_1, Qnil);
1233 internal_catch (Qtop_level, command_loop_2, Qnil);
1234 executing_macro = Qnil;
1236 /* End of file in -batch run causes exit here. */
1237 if (noninteractive)
1238 Fkill_emacs (Qt);
1242 /* Here we catch errors in execution of commands within the
1243 editing loop, and reenter the editing loop.
1244 When there is an error, cmd_error runs and returns a non-nil
1245 value to us. A value of nil means that command_loop_1 itself
1246 returned due to end of file (or end of kbd macro). */
1248 Lisp_Object
1249 command_loop_2 ()
1251 register Lisp_Object val;
1254 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1255 while (!NILP (val));
1257 return Qnil;
1260 Lisp_Object
1261 top_level_2 ()
1263 return Feval (Vtop_level);
1266 Lisp_Object
1267 top_level_1 ()
1269 /* On entry to the outer level, run the startup file */
1270 if (!NILP (Vtop_level))
1271 internal_condition_case (top_level_2, Qerror, cmd_error);
1272 else if (!NILP (Vpurify_flag))
1273 message ("Bare impure Emacs (standard Lisp code not loaded)");
1274 else
1275 message ("Bare Emacs (standard Lisp code not loaded)");
1276 return Qnil;
1279 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1280 doc: /* Exit all recursive editing levels. */)
1283 #ifdef HAVE_X_WINDOWS
1284 if (display_hourglass_p)
1285 cancel_hourglass ();
1286 #endif
1287 return Fthrow (Qtop_level, Qnil);
1290 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1291 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1294 if (command_loop_level > 0 || minibuf_level > 0)
1295 Fthrow (Qexit, Qnil);
1297 error ("No recursive edit is in progress");
1298 return Qnil;
1301 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1302 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1305 if (command_loop_level > 0 || minibuf_level > 0)
1306 Fthrow (Qexit, Qt);
1308 error ("No recursive edit is in progress");
1309 return Qnil;
1312 /* This is the actual command reading loop,
1313 sans error-handling encapsulation. */
1315 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1316 int, int, int));
1317 void safe_run_hooks P_ ((Lisp_Object));
1318 static void adjust_point_for_property P_ ((int));
1320 Lisp_Object
1321 command_loop_1 ()
1323 Lisp_Object cmd;
1324 int lose;
1325 int nonundocount;
1326 Lisp_Object keybuf[30];
1327 int i;
1328 int no_direct;
1329 int prev_modiff;
1330 struct buffer *prev_buffer = NULL;
1331 #ifdef MULTI_KBOARD
1332 int was_locked = single_kboard;
1333 #endif
1335 current_kboard->Vprefix_arg = Qnil;
1336 current_kboard->Vlast_prefix_arg = Qnil;
1337 Vdeactivate_mark = Qnil;
1338 waiting_for_input = 0;
1339 cancel_echoing ();
1341 nonundocount = 0;
1342 this_command_key_count = 0;
1343 this_single_command_key_start = 0;
1345 /* Make sure this hook runs after commands that get errors and
1346 throw to top level. */
1347 /* Note that the value cell will never directly contain nil
1348 if the symbol is a local variable. */
1349 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1350 safe_run_hooks (Qpost_command_hook);
1352 /* If displaying a message, resize the echo area window to fit
1353 that message's size exactly. */
1354 if (!NILP (echo_area_buffer[0]))
1355 resize_echo_area_exactly ();
1357 if (!NILP (Vdeferred_action_list))
1358 call0 (Vdeferred_action_function);
1360 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1362 if (NILP (Vunread_command_events)
1363 && NILP (Vunread_input_method_events)
1364 && NILP (Vunread_post_input_method_events)
1365 && NILP (Vexecuting_macro)
1366 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1367 safe_run_hooks (Qpost_command_idle_hook);
1370 /* Do this after running Vpost_command_hook, for consistency. */
1371 current_kboard->Vlast_command = Vthis_command;
1372 current_kboard->Vreal_last_command = real_this_command;
1374 while (1)
1376 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1377 Fkill_emacs (Qnil);
1379 /* Make sure the current window's buffer is selected. */
1380 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1381 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1383 /* Display any malloc warning that just came out. Use while because
1384 displaying one warning can cause another. */
1386 while (pending_malloc_warning)
1387 display_malloc_warning ();
1389 no_direct = 0;
1391 Vdeactivate_mark = Qnil;
1393 /* If minibuffer on and echo area in use,
1394 wait a short time and redraw minibuffer. */
1396 if (minibuf_level
1397 && !NILP (echo_area_buffer[0])
1398 && EQ (minibuf_window, echo_area_window)
1399 && NUMBERP (Vminibuffer_message_timeout))
1401 /* Bind inhibit-quit to t so that C-g gets read in
1402 rather than quitting back to the minibuffer. */
1403 int count = specpdl_ptr - specpdl;
1404 specbind (Qinhibit_quit, Qt);
1406 Fsit_for (Vminibuffer_message_timeout, Qnil, Qnil);
1407 /* Clear the echo area. */
1408 message2 (0, 0, 0);
1409 safe_run_hooks (Qecho_area_clear_hook);
1411 unbind_to (count, Qnil);
1413 /* If a C-g came in before, treat it as input now. */
1414 if (!NILP (Vquit_flag))
1416 Vquit_flag = Qnil;
1417 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1421 #ifdef C_ALLOCA
1422 alloca (0); /* Cause a garbage collection now */
1423 /* Since we can free the most stuff here. */
1424 #endif /* C_ALLOCA */
1426 #if 0
1427 /* Select the frame that the last event came from. Usually,
1428 switch-frame events will take care of this, but if some lisp
1429 code swallows a switch-frame event, we'll fix things up here.
1430 Is this a good idea? */
1431 if (FRAMEP (internal_last_event_frame)
1432 && !EQ (internal_last_event_frame, selected_frame))
1433 Fselect_frame (internal_last_event_frame, Qnil);
1434 #endif
1435 /* If it has changed current-menubar from previous value,
1436 really recompute the menubar from the value. */
1437 if (! NILP (Vlucid_menu_bar_dirty_flag)
1438 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1439 call0 (Qrecompute_lucid_menubar);
1441 before_command_key_count = this_command_key_count;
1442 before_command_echo_length = echo_length ();
1444 Vthis_command = Qnil;
1445 real_this_command = Qnil;
1447 /* Read next key sequence; i gets its length. */
1448 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1449 Qnil, 0, 1, 1);
1451 /* A filter may have run while we were reading the input. */
1452 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1453 Fkill_emacs (Qnil);
1454 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1455 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1457 ++num_input_keys;
1459 /* Now we have read a key sequence of length I,
1460 or else I is 0 and we found end of file. */
1462 if (i == 0) /* End of file -- happens only in */
1463 return Qnil; /* a kbd macro, at the end. */
1464 /* -1 means read_key_sequence got a menu that was rejected.
1465 Just loop around and read another command. */
1466 if (i == -1)
1468 cancel_echoing ();
1469 this_command_key_count = 0;
1470 this_single_command_key_start = 0;
1471 goto finalize;
1474 last_command_char = keybuf[i - 1];
1476 /* If the previous command tried to force a specific window-start,
1477 forget about that, in case this command moves point far away
1478 from that position. But also throw away beg_unchanged and
1479 end_unchanged information in that case, so that redisplay will
1480 update the whole window properly. */
1481 if (!NILP (XWINDOW (selected_window)->force_start))
1483 struct buffer *b;
1484 XWINDOW (selected_window)->force_start = Qnil;
1485 b = XBUFFER (XWINDOW (selected_window)->buffer);
1486 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1489 cmd = read_key_sequence_cmd;
1490 if (!NILP (Vexecuting_macro))
1492 if (!NILP (Vquit_flag))
1494 Vexecuting_macro = Qt;
1495 QUIT; /* Make some noise. */
1496 /* Will return since macro now empty. */
1500 /* Do redisplay processing after this command except in special
1501 cases identified below. */
1502 prev_buffer = current_buffer;
1503 prev_modiff = MODIFF;
1504 last_point_position = PT;
1505 XSETBUFFER (last_point_position_buffer, prev_buffer);
1507 /* By default, we adjust point to a boundary of a region that
1508 has such a property that should be treated intangible
1509 (e.g. composition, display). But, some commands will set
1510 this variable differently. */
1511 Vdisable_point_adjustment = Qnil;
1513 /* Process filters and timers may have messed with deactivate-mark.
1514 reset it before we execute the command. */
1515 Vdeactivate_mark = Qnil;
1517 /* Remap command through active keymaps */
1518 Vthis_original_command = cmd;
1519 if (SYMBOLP (cmd))
1521 Lisp_Object cmd1;
1522 if (cmd1 = Fremap_command (cmd), !NILP (cmd1))
1523 cmd = cmd1;
1526 /* Execute the command. */
1528 Vthis_command = cmd;
1529 real_this_command = cmd;
1530 /* Note that the value cell will never directly contain nil
1531 if the symbol is a local variable. */
1532 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1533 safe_run_hooks (Qpre_command_hook);
1535 if (NILP (Vthis_command))
1537 /* nil means key is undefined. */
1538 bitch_at_user ();
1539 current_kboard->defining_kbd_macro = Qnil;
1540 update_mode_lines = 1;
1541 current_kboard->Vprefix_arg = Qnil;
1543 else
1545 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1547 /* In case we jump to directly_done. */
1548 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1550 /* Recognize some common commands in common situations and
1551 do them directly. */
1552 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1554 struct Lisp_Char_Table *dp
1555 = window_display_table (XWINDOW (selected_window));
1556 lose = FETCH_CHAR (PT_BYTE);
1557 SET_PT (PT + 1);
1558 if ((dp
1559 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1560 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1561 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1562 && (lose >= 0x20 && lose < 0x7f)))
1563 : (lose >= 0x20 && lose < 0x7f))
1564 /* To extract the case of continuation on
1565 wide-column characters. */
1566 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1567 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1568 >= MODIFF)
1569 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1570 >= OVERLAY_MODIFF)
1571 && (XFASTINT (XWINDOW (selected_window)->last_point)
1572 == PT - 1)
1573 && !windows_or_buffers_changed
1574 && EQ (current_buffer->selective_display, Qnil)
1575 && !detect_input_pending ()
1576 && NILP (XWINDOW (selected_window)->column_number_displayed)
1577 && NILP (Vexecuting_macro))
1578 direct_output_forward_char (1);
1579 goto directly_done;
1581 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1583 struct Lisp_Char_Table *dp
1584 = window_display_table (XWINDOW (selected_window));
1585 SET_PT (PT - 1);
1586 lose = FETCH_CHAR (PT_BYTE);
1587 if ((dp
1588 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1589 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1590 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1591 && (lose >= 0x20 && lose < 0x7f)))
1592 : (lose >= 0x20 && lose < 0x7f))
1593 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1594 >= MODIFF)
1595 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1596 >= OVERLAY_MODIFF)
1597 && (XFASTINT (XWINDOW (selected_window)->last_point)
1598 == PT + 1)
1599 && !windows_or_buffers_changed
1600 && EQ (current_buffer->selective_display, Qnil)
1601 && !detect_input_pending ()
1602 && NILP (XWINDOW (selected_window)->column_number_displayed)
1603 && NILP (Vexecuting_macro))
1604 direct_output_forward_char (-1);
1605 goto directly_done;
1607 else if (EQ (Vthis_command, Qself_insert_command)
1608 /* Try this optimization only on ascii keystrokes. */
1609 && INTEGERP (last_command_char))
1611 unsigned int c = XINT (last_command_char);
1612 int value;
1613 if (NILP (Vexecuting_macro)
1614 && !EQ (minibuf_window, selected_window))
1616 if (!nonundocount || nonundocount >= 20)
1618 Fundo_boundary ();
1619 nonundocount = 0;
1621 nonundocount++;
1624 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1625 < MODIFF)
1626 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1627 < OVERLAY_MODIFF)
1628 || (XFASTINT (XWINDOW (selected_window)->last_point)
1629 != PT)
1630 || MODIFF <= SAVE_MODIFF
1631 || windows_or_buffers_changed
1632 || !EQ (current_buffer->selective_display, Qnil)
1633 || detect_input_pending ()
1634 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1635 || !NILP (Vexecuting_macro));
1637 value = internal_self_insert (c, 0);
1639 if (value == 2)
1640 nonundocount = 0;
1642 /* VALUE == 1 when AFTER-CHANGE functions are
1643 installed which is the case most of the time
1644 because FONT-LOCK installs one. */
1645 if (!lose && !value)
1646 direct_output_for_insert (c);
1647 goto directly_done;
1651 /* Here for a command that isn't executed directly */
1653 #ifdef HAVE_X_WINDOWS
1654 if (display_hourglass_p
1655 && NILP (Vexecuting_macro))
1656 start_hourglass ();
1657 #endif
1659 nonundocount = 0;
1660 if (NILP (current_kboard->Vprefix_arg))
1661 Fundo_boundary ();
1662 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1664 #ifdef HAVE_X_WINDOWS
1665 /* Do not check display_hourglass_p here, because
1666 Fcommand_execute could change it, but we should cancel
1667 hourglass cursor anyway.
1668 But don't cancel the hourglass within a macro
1669 just because a command in the macro finishes. */
1670 if (NILP (Vexecuting_macro))
1671 cancel_hourglass ();
1672 #endif
1674 directly_done: ;
1675 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1677 /* Note that the value cell will never directly contain nil
1678 if the symbol is a local variable. */
1679 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1680 safe_run_hooks (Qpost_command_hook);
1682 /* If displaying a message, resize the echo area window to fit
1683 that message's size exactly. */
1684 if (!NILP (echo_area_buffer[0]))
1685 resize_echo_area_exactly ();
1687 if (!NILP (Vdeferred_action_list))
1688 safe_run_hooks (Qdeferred_action_function);
1690 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1692 if (NILP (Vunread_command_events)
1693 && NILP (Vunread_input_method_events)
1694 && NILP (Vunread_post_input_method_events)
1695 && NILP (Vexecuting_macro)
1696 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1697 safe_run_hooks (Qpost_command_idle_hook);
1700 /* If there is a prefix argument,
1701 1) We don't want Vlast_command to be ``universal-argument''
1702 (that would be dumb), so don't set Vlast_command,
1703 2) we want to leave echoing on so that the prefix will be
1704 echoed as part of this key sequence, so don't call
1705 cancel_echoing, and
1706 3) we want to leave this_command_key_count non-zero, so that
1707 read_char will realize that it is re-reading a character, and
1708 not echo it a second time.
1710 If the command didn't actually create a prefix arg,
1711 but is merely a frame event that is transparent to prefix args,
1712 then the above doesn't apply. */
1713 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1715 current_kboard->Vlast_command = Vthis_command;
1716 current_kboard->Vreal_last_command = real_this_command;
1717 cancel_echoing ();
1718 this_command_key_count = 0;
1719 this_single_command_key_start = 0;
1722 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1724 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1726 /* We could also call `deactivate'mark'. */
1727 if (EQ (Vtransient_mark_mode, Qlambda))
1728 Vtransient_mark_mode = Qnil;
1729 else
1731 current_buffer->mark_active = Qnil;
1732 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1735 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1736 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1739 finalize:
1741 if (current_buffer == prev_buffer
1742 && last_point_position != PT
1743 && NILP (Vdisable_point_adjustment)
1744 && NILP (Vglobal_disable_point_adjustment))
1745 adjust_point_for_property (last_point_position);
1747 /* Install chars successfully executed in kbd macro. */
1749 if (!NILP (current_kboard->defining_kbd_macro)
1750 && NILP (current_kboard->Vprefix_arg))
1751 finalize_kbd_macro_chars ();
1753 #ifdef MULTI_KBOARD
1754 if (!was_locked)
1755 any_kboard_state ();
1756 #endif
1760 extern Lisp_Object Qcomposition, Qdisplay;
1762 /* Adjust point to a boundary of a region that has such a property
1763 that should be treated intangible. For the moment, we check
1764 `composition' and `display' property. LAST_PT is the last position
1765 of point. */
1767 static void
1768 adjust_point_for_property (last_pt)
1769 int last_pt;
1771 int start, end;
1772 Lisp_Object val;
1773 int check_composition = 1, check_display = 1;
1775 while (check_composition || check_display)
1777 if (check_composition
1778 && PT > BEGV && PT < ZV
1779 && get_property_and_range (PT, Qcomposition, &val, &start, &end, Qnil)
1780 && COMPOSITION_VALID_P (start, end, val)
1781 && start < PT && end > PT
1782 && (last_pt <= start || last_pt >= end))
1784 if (PT < last_pt)
1785 SET_PT (start);
1786 else
1787 SET_PT (end);
1788 check_display = 1;
1790 check_composition = 0;
1791 if (check_display
1792 && PT > BEGV && PT < ZV
1793 && get_property_and_range (PT, Qdisplay, &val, &start, &end, Qnil)
1794 && display_prop_intangible_p (val)
1795 && start < PT && end > PT
1796 && (last_pt <= start || last_pt >= end))
1798 if (PT < last_pt)
1799 SET_PT (start);
1800 else
1801 SET_PT (end);
1802 check_composition = 1;
1804 check_display = 0;
1808 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1810 static Lisp_Object
1811 safe_run_hooks_1 (hook)
1812 Lisp_Object hook;
1814 return call1 (Vrun_hooks, Vinhibit_quit);
1817 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1819 static Lisp_Object
1820 safe_run_hooks_error (data)
1821 Lisp_Object data;
1823 return Fset (Vinhibit_quit, Qnil);
1826 /* If we get an error while running the hook, cause the hook variable
1827 to be nil. Also inhibit quits, so that C-g won't cause the hook
1828 to mysteriously evaporate. */
1830 void
1831 safe_run_hooks (hook)
1832 Lisp_Object hook;
1834 int count = specpdl_ptr - specpdl;
1835 specbind (Qinhibit_quit, hook);
1837 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1839 unbind_to (count, Qnil);
1843 /* Number of seconds between polling for input. This is a Lisp
1844 variable that can be bound. */
1846 EMACS_INT polling_period;
1848 /* Nonzero means polling for input is temporarily suppressed. */
1850 int poll_suppress_count;
1852 /* Asynchronous timer for polling. */
1854 struct atimer *poll_timer;
1857 #ifdef POLL_FOR_INPUT
1859 /* Poll for input, so what we catch a C-g if it comes in. This
1860 function is called from x_make_frame_visible, see comment
1861 there. */
1863 void
1864 poll_for_input_1 ()
1866 if (interrupt_input_blocked == 0
1867 && !waiting_for_input)
1868 read_avail_input (0);
1871 /* Timer callback function for poll_timer. TIMER is equal to
1872 poll_timer. */
1874 void
1875 poll_for_input (timer)
1876 struct atimer *timer;
1878 if (poll_suppress_count == 0)
1879 poll_for_input_1 ();
1882 #endif /* POLL_FOR_INPUT */
1884 /* Begin signals to poll for input, if they are appropriate.
1885 This function is called unconditionally from various places. */
1887 void
1888 start_polling ()
1890 #ifdef POLL_FOR_INPUT
1891 if (read_socket_hook && !interrupt_input)
1893 /* Turn alarm handling on unconditionally. It might have
1894 been turned off in process.c. */
1895 turn_on_atimers (1);
1897 /* If poll timer doesn't exist, are we need one with
1898 a different interval, start a new one. */
1899 if (poll_timer == NULL
1900 || EMACS_SECS (poll_timer->interval) != polling_period)
1902 EMACS_TIME interval;
1904 if (poll_timer)
1905 cancel_atimer (poll_timer);
1907 EMACS_SET_SECS_USECS (interval, polling_period, 0);
1908 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
1909 poll_for_input, NULL);
1912 /* Let the timer's callback function poll for input
1913 if this becomes zero. */
1914 --poll_suppress_count;
1916 #endif
1919 /* Nonzero if we are using polling to handle input asynchronously. */
1922 input_polling_used ()
1924 #ifdef POLL_FOR_INPUT
1925 return read_socket_hook && !interrupt_input;
1926 #else
1927 return 0;
1928 #endif
1931 /* Turn off polling. */
1933 void
1934 stop_polling ()
1936 #ifdef POLL_FOR_INPUT
1937 if (read_socket_hook && !interrupt_input)
1938 ++poll_suppress_count;
1939 #endif
1942 /* Set the value of poll_suppress_count to COUNT
1943 and start or stop polling accordingly. */
1945 void
1946 set_poll_suppress_count (count)
1947 int count;
1949 #ifdef POLL_FOR_INPUT
1950 if (count == 0 && poll_suppress_count != 0)
1952 poll_suppress_count = 1;
1953 start_polling ();
1955 else if (count != 0 && poll_suppress_count == 0)
1957 stop_polling ();
1959 poll_suppress_count = count;
1960 #endif
1963 /* Bind polling_period to a value at least N.
1964 But don't decrease it. */
1966 void
1967 bind_polling_period (n)
1968 int n;
1970 #ifdef POLL_FOR_INPUT
1971 int new = polling_period;
1973 if (n > new)
1974 new = n;
1976 stop_other_atimers (poll_timer);
1977 stop_polling ();
1978 specbind (Qpolling_period, make_number (new));
1979 /* Start a new alarm with the new period. */
1980 start_polling ();
1981 #endif
1984 /* Apply the control modifier to CHARACTER. */
1987 make_ctrl_char (c)
1988 int c;
1990 /* Save the upper bits here. */
1991 int upper = c & ~0177;
1993 c &= 0177;
1995 /* Everything in the columns containing the upper-case letters
1996 denotes a control character. */
1997 if (c >= 0100 && c < 0140)
1999 int oc = c;
2000 c &= ~0140;
2001 /* Set the shift modifier for a control char
2002 made from a shifted letter. But only for letters! */
2003 if (oc >= 'A' && oc <= 'Z')
2004 c |= shift_modifier;
2007 /* The lower-case letters denote control characters too. */
2008 else if (c >= 'a' && c <= 'z')
2009 c &= ~0140;
2011 /* Include the bits for control and shift
2012 only if the basic ASCII code can't indicate them. */
2013 else if (c >= ' ')
2014 c |= ctrl_modifier;
2016 /* Replace the high bits. */
2017 c |= (upper & ~ctrl_modifier);
2019 return c;
2022 /* Display help echo in the echo area.
2024 HELP a string means display that string, HELP nil means clear the
2025 help echo. If HELP is a function, call it with OBJECT and POS as
2026 arguments; the function should return a help string or nil for
2027 none. For all other types of HELP evaluate it to obtain a string.
2029 WINDOW is the window in which the help was generated, if any.
2030 It is nil if not in a window.
2032 If OBJECT is a buffer, POS is the position in the buffer where the
2033 `help-echo' text property was found.
2035 If OBJECT is an overlay, that overlay has a `help-echo' property,
2036 and POS is the position in the overlay's buffer under the mouse.
2038 If OBJECT is a string (an overlay string or a string displayed with
2039 the `display' property). POS is the position in that string under
2040 the mouse.
2042 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2043 echo overwrites a keystroke echo currently displayed in the echo
2044 area.
2046 Note: this function may only be called with HELP nil or a string
2047 from X code running asynchronously. */
2049 void
2050 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2051 Lisp_Object help, window, object, pos;
2052 int ok_to_overwrite_keystroke_echo;
2054 if (!NILP (help) && !STRINGP (help))
2056 if (FUNCTIONP (help))
2058 Lisp_Object args[4];
2059 args[0] = help;
2060 args[1] = window;
2061 args[2] = object;
2062 args[3] = pos;
2063 help = safe_call (4, args);
2065 else
2066 help = safe_eval (help);
2068 if (!STRINGP (help))
2069 return;
2072 if (STRINGP (help) || NILP (help))
2074 if (!NILP (Vshow_help_function))
2075 call1 (Vshow_help_function, help);
2076 else if (/* Don't overwrite minibuffer contents. */
2077 !MINI_WINDOW_P (XWINDOW (selected_window))
2078 /* Don't overwrite a keystroke echo. */
2079 && (NILP (echo_message_buffer)
2080 || ok_to_overwrite_keystroke_echo)
2081 /* Don't overwrite a prompt. */
2082 && !cursor_in_echo_area)
2084 if (STRINGP (help))
2086 int count = BINDING_STACK_SIZE ();
2088 if (!help_echo_showing_p)
2089 Vpre_help_message = current_message ();
2091 specbind (Qmessage_truncate_lines, Qt);
2092 message3_nolog (help, STRING_BYTES (XSTRING (help)),
2093 STRING_MULTIBYTE (help));
2094 unbind_to (count, Qnil);
2096 else if (STRINGP (Vpre_help_message))
2098 message3_nolog (Vpre_help_message,
2099 STRING_BYTES (XSTRING (Vpre_help_message)),
2100 STRING_MULTIBYTE (Vpre_help_message));
2101 Vpre_help_message = Qnil;
2103 else
2104 message (0);
2107 help_echo_showing_p = STRINGP (help);
2113 /* Input of single characters from keyboard */
2115 Lisp_Object print_help ();
2116 static Lisp_Object kbd_buffer_get_event ();
2117 static void record_char ();
2119 #ifdef MULTI_KBOARD
2120 static jmp_buf wrong_kboard_jmpbuf;
2121 #endif
2123 /* read a character from the keyboard; call the redisplay if needed */
2124 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2125 -1 means do not do redisplay, but do do autosaving.
2126 1 means do both. */
2128 /* The arguments MAPS and NMAPS are for menu prompting.
2129 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2131 PREV_EVENT is the previous input event, or nil if we are reading
2132 the first event of a key sequence (or not reading a key sequence).
2133 If PREV_EVENT is t, that is a "magic" value that says
2134 not to run input methods, but in other respects to act as if
2135 not reading a key sequence.
2137 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2138 if we used a mouse menu to read the input, or zero otherwise. If
2139 USED_MOUSE_MENU is null, we don't dereference it.
2141 Value is t if we showed a menu and the user rejected it. */
2143 Lisp_Object
2144 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
2145 int commandflag;
2146 int nmaps;
2147 Lisp_Object *maps;
2148 Lisp_Object prev_event;
2149 int *used_mouse_menu;
2151 volatile Lisp_Object c;
2152 int count;
2153 jmp_buf local_getcjmp;
2154 jmp_buf save_jump;
2155 volatile int key_already_recorded = 0;
2156 Lisp_Object tem, save;
2157 volatile Lisp_Object previous_echo_area_message;
2158 volatile Lisp_Object also_record;
2159 volatile int reread;
2160 struct gcpro gcpro1, gcpro2;
2161 EMACS_TIME last_idle_start;
2163 also_record = Qnil;
2165 before_command_key_count = this_command_key_count;
2166 before_command_echo_length = echo_length ();
2167 c = Qnil;
2168 previous_echo_area_message = Qnil;
2170 GCPRO2 (c, previous_echo_area_message);
2172 retry:
2174 reread = 0;
2175 if (CONSP (Vunread_post_input_method_events))
2177 c = XCAR (Vunread_post_input_method_events);
2178 Vunread_post_input_method_events
2179 = XCDR (Vunread_post_input_method_events);
2181 /* Undo what read_char_x_menu_prompt did when it unread
2182 additional keys returned by Fx_popup_menu. */
2183 if (CONSP (c)
2184 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2185 && NILP (XCDR (c)))
2186 c = XCAR (c);
2188 reread = 1;
2189 goto reread_first;
2192 if (unread_command_char != -1)
2194 XSETINT (c, unread_command_char);
2195 unread_command_char = -1;
2197 reread = 1;
2198 goto reread_first;
2201 if (CONSP (Vunread_command_events))
2203 c = XCAR (Vunread_command_events);
2204 Vunread_command_events = XCDR (Vunread_command_events);
2206 /* Undo what read_char_x_menu_prompt did when it unread
2207 additional keys returned by Fx_popup_menu. */
2208 if (CONSP (c)
2209 && EQ (XCDR (c), Qdisabled)
2210 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2211 c = XCAR (c);
2213 /* If the queued event is something that used the mouse,
2214 set used_mouse_menu accordingly. */
2215 if (used_mouse_menu
2216 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2217 *used_mouse_menu = 1;
2219 reread = 1;
2220 goto reread_for_input_method;
2223 if (CONSP (Vunread_input_method_events))
2225 c = XCAR (Vunread_input_method_events);
2226 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2228 /* Undo what read_char_x_menu_prompt did when it unread
2229 additional keys returned by Fx_popup_menu. */
2230 if (CONSP (c)
2231 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2232 && NILP (XCDR (c)))
2233 c = XCAR (c);
2234 reread = 1;
2235 goto reread_for_input_method;
2238 /* If there is no function key translated before
2239 reset-this-command-lengths takes effect, forget about it. */
2240 before_command_restore_flag = 0;
2242 if (!NILP (Vexecuting_macro))
2244 /* We set this to Qmacro; since that's not a frame, nobody will
2245 try to switch frames on us, and the selected window will
2246 remain unchanged.
2248 Since this event came from a macro, it would be misleading to
2249 leave internal_last_event_frame set to wherever the last
2250 real event came from. Normally, a switch-frame event selects
2251 internal_last_event_frame after each command is read, but
2252 events read from a macro should never cause a new frame to be
2253 selected. */
2254 Vlast_event_frame = internal_last_event_frame = Qmacro;
2256 /* Exit the macro if we are at the end.
2257 Also, some things replace the macro with t
2258 to force an early exit. */
2259 if (EQ (Vexecuting_macro, Qt)
2260 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
2262 XSETINT (c, -1);
2263 RETURN_UNGCPRO (c);
2266 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
2267 if (STRINGP (Vexecuting_macro)
2268 && (XINT (c) & 0x80))
2269 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2271 executing_macro_index++;
2273 goto from_macro;
2276 if (!NILP (unread_switch_frame))
2278 c = unread_switch_frame;
2279 unread_switch_frame = Qnil;
2281 /* This event should make it into this_command_keys, and get echoed
2282 again, so we do not set `reread'. */
2283 goto reread_first;
2286 /* if redisplay was requested */
2287 if (commandflag >= 0)
2289 /* If there is pending input, process any events which are not
2290 user-visible, such as X selection_request events. */
2291 if (input_pending
2292 || detect_input_pending_run_timers (0))
2293 swallow_events (0); /* may clear input_pending */
2295 /* Redisplay if no pending input. */
2296 while (!input_pending)
2298 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2299 redisplay_preserve_echo_area (5);
2300 else
2301 redisplay ();
2303 if (!input_pending)
2304 /* Normal case: no input arrived during redisplay. */
2305 break;
2307 /* Input arrived and pre-empted redisplay.
2308 Process any events which are not user-visible. */
2309 swallow_events (0);
2310 /* If that cleared input_pending, try again to redisplay. */
2314 /* Message turns off echoing unless more keystrokes turn it on again.
2316 The code in 20.x for the condition was
2318 1. echo_area_glyphs && *echo_area_glyphs
2319 2. && echo_area_glyphs != current_kboard->echobuf
2320 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2322 (1) means there's a current message displayed
2324 (2) means it's not the message from echoing from the current
2325 kboard.
2327 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2328 is set to a non-null value. This is done in read_char and it is
2329 set to echo_area_glyphs after a call to echo_char. That means
2330 ok_to_echo_at_next_pause is either null or
2331 current_kboard->echobuf with the appropriate current_kboard at
2332 that time.
2334 So, condition (3) means in clear text ok_to_echo_at_next_pause
2335 must be either null, or the current message isn't from echoing at
2336 all, or it's from echoing from a different kboard than the
2337 current one. */
2339 if (/* There currently is something in the echo area. */
2340 !NILP (echo_area_buffer[0])
2341 && (/* And it's either not from echoing. */
2342 !EQ (echo_area_buffer[0], echo_message_buffer)
2343 /* Or it's an echo from a different kboard. */
2344 || echo_kboard != current_kboard
2345 /* Or we explicitly allow overwriting whatever there is. */
2346 || ok_to_echo_at_next_pause == NULL))
2347 cancel_echoing ();
2348 else
2349 echo_dash ();
2351 /* Try reading a character via menu prompting in the minibuf.
2352 Try this before the sit-for, because the sit-for
2353 would do the wrong thing if we are supposed to do
2354 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2355 after a mouse event so don't try a minibuf menu. */
2356 c = Qnil;
2357 if (nmaps > 0 && INTERACTIVE
2358 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2359 /* Don't bring up a menu if we already have another event. */
2360 && NILP (Vunread_command_events)
2361 && unread_command_char < 0
2362 && !detect_input_pending_run_timers (0))
2364 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2365 if (! NILP (c))
2367 key_already_recorded = 1;
2368 goto non_reread_1;
2372 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2373 We will do that below, temporarily for short sections of code,
2374 when appropriate. local_getcjmp must be in effect
2375 around any call to sit_for or kbd_buffer_get_event;
2376 it *must not* be in effect when we call redisplay. */
2378 if (_setjmp (local_getcjmp))
2380 XSETINT (c, quit_char);
2381 internal_last_event_frame = selected_frame;
2382 Vlast_event_frame = internal_last_event_frame;
2383 /* If we report the quit char as an event,
2384 don't do so more than once. */
2385 if (!NILP (Vinhibit_quit))
2386 Vquit_flag = Qnil;
2388 #ifdef MULTI_KBOARD
2390 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2391 if (kb != current_kboard)
2393 Lisp_Object link = kb->kbd_queue;
2394 /* We shouldn't get here if we were in single-kboard mode! */
2395 if (single_kboard)
2396 abort ();
2397 if (CONSP (link))
2399 while (CONSP (XCDR (link)))
2400 link = XCDR (link);
2401 if (!NILP (XCDR (link)))
2402 abort ();
2404 if (!CONSP (link))
2405 kb->kbd_queue = Fcons (c, Qnil);
2406 else
2407 XSETCDR (link, Fcons (c, Qnil));
2408 kb->kbd_queue_has_data = 1;
2409 current_kboard = kb;
2410 /* This is going to exit from read_char
2411 so we had better get rid of this frame's stuff. */
2412 UNGCPRO;
2413 longjmp (wrong_kboard_jmpbuf, 1);
2416 #endif
2417 goto non_reread;
2420 timer_start_idle ();
2422 /* If in middle of key sequence and minibuffer not active,
2423 start echoing if enough time elapses. */
2425 if (minibuf_level == 0
2426 && !current_kboard->immediate_echo
2427 && this_command_key_count > 0
2428 && ! noninteractive
2429 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2430 && NILP (Fzerop (Vecho_keystrokes))
2431 && (/* No message. */
2432 NILP (echo_area_buffer[0])
2433 /* Or empty message. */
2434 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2435 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2436 /* Or already echoing from same kboard. */
2437 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2438 /* Or not echoing before and echoing allowed. */
2439 || (!echo_kboard && ok_to_echo_at_next_pause)))
2441 Lisp_Object tem0;
2443 /* After a mouse event, start echoing right away.
2444 This is because we are probably about to display a menu,
2445 and we don't want to delay before doing so. */
2446 if (EVENT_HAS_PARAMETERS (prev_event))
2447 echo_now ();
2448 else
2450 int sec, usec;
2451 double duration = extract_float (Vecho_keystrokes);
2452 sec = (int) duration;
2453 usec = (duration - sec) * 1000000;
2454 save_getcjmp (save_jump);
2455 restore_getcjmp (local_getcjmp);
2456 tem0 = sit_for (sec, usec, 1, 1, 0);
2457 restore_getcjmp (save_jump);
2458 if (EQ (tem0, Qt)
2459 && ! CONSP (Vunread_command_events))
2460 echo_now ();
2464 /* Maybe auto save due to number of keystrokes. */
2466 if (commandflag != 0
2467 && auto_save_interval > 0
2468 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2469 && !detect_input_pending_run_timers (0))
2471 Fdo_auto_save (Qnil, Qnil);
2472 /* Hooks can actually change some buffers in auto save. */
2473 redisplay ();
2476 /* Try reading using an X menu.
2477 This is never confused with reading using the minibuf
2478 because the recursive call of read_char in read_char_minibuf_menu_prompt
2479 does not pass on any keymaps. */
2481 if (nmaps > 0 && INTERACTIVE
2482 && !NILP (prev_event)
2483 && EVENT_HAS_PARAMETERS (prev_event)
2484 && !EQ (XCAR (prev_event), Qmenu_bar)
2485 && !EQ (XCAR (prev_event), Qtool_bar)
2486 /* Don't bring up a menu if we already have another event. */
2487 && NILP (Vunread_command_events)
2488 && unread_command_char < 0)
2490 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2492 /* Now that we have read an event, Emacs is not idle. */
2493 timer_stop_idle ();
2495 RETURN_UNGCPRO (c);
2498 /* Maybe autosave and/or garbage collect due to idleness. */
2500 if (INTERACTIVE && NILP (c))
2502 int delay_level, buffer_size;
2504 /* Slow down auto saves logarithmically in size of current buffer,
2505 and garbage collect while we're at it. */
2506 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2507 last_non_minibuf_size = Z - BEG;
2508 buffer_size = (last_non_minibuf_size >> 8) + 1;
2509 delay_level = 0;
2510 while (buffer_size > 64)
2511 delay_level++, buffer_size -= buffer_size >> 2;
2512 if (delay_level < 4) delay_level = 4;
2513 /* delay_level is 4 for files under around 50k, 7 at 100k,
2514 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2516 /* Auto save if enough time goes by without input. */
2517 if (commandflag != 0
2518 && num_nonmacro_input_events > last_auto_save
2519 && INTEGERP (Vauto_save_timeout)
2520 && XINT (Vauto_save_timeout) > 0)
2522 Lisp_Object tem0;
2524 save_getcjmp (save_jump);
2525 restore_getcjmp (local_getcjmp);
2526 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
2527 0, 1, 1, 0);
2528 restore_getcjmp (save_jump);
2530 if (EQ (tem0, Qt)
2531 && ! CONSP (Vunread_command_events))
2533 Fdo_auto_save (Qnil, Qnil);
2535 /* If we have auto-saved and there is still no input
2536 available, garbage collect if there has been enough
2537 consing going on to make it worthwhile. */
2538 if (!detect_input_pending_run_timers (0)
2539 && consing_since_gc > gc_cons_threshold / 2)
2540 Fgarbage_collect ();
2542 redisplay ();
2547 /* If this has become non-nil here, it has been set by a timer
2548 or sentinel or filter. */
2549 if (CONSP (Vunread_command_events))
2551 c = XCAR (Vunread_command_events);
2552 Vunread_command_events = XCDR (Vunread_command_events);
2555 /* Read something from current KBOARD's side queue, if possible. */
2557 if (NILP (c))
2559 if (current_kboard->kbd_queue_has_data)
2561 if (!CONSP (current_kboard->kbd_queue))
2562 abort ();
2563 c = XCAR (current_kboard->kbd_queue);
2564 current_kboard->kbd_queue
2565 = XCDR (current_kboard->kbd_queue);
2566 if (NILP (current_kboard->kbd_queue))
2567 current_kboard->kbd_queue_has_data = 0;
2568 input_pending = readable_events (0);
2569 if (EVENT_HAS_PARAMETERS (c)
2570 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2571 internal_last_event_frame = XCAR (XCDR (c));
2572 Vlast_event_frame = internal_last_event_frame;
2576 #ifdef MULTI_KBOARD
2577 /* If current_kboard's side queue is empty check the other kboards.
2578 If one of them has data that we have not yet seen here,
2579 switch to it and process the data waiting for it.
2581 Note: if the events queued up for another kboard
2582 have already been seen here, and therefore are not a complete command,
2583 the kbd_queue_has_data field is 0, so we skip that kboard here.
2584 That's to avoid an infinite loop switching between kboards here. */
2585 if (NILP (c) && !single_kboard)
2587 KBOARD *kb;
2588 for (kb = all_kboards; kb; kb = kb->next_kboard)
2589 if (kb->kbd_queue_has_data)
2591 current_kboard = kb;
2592 /* This is going to exit from read_char
2593 so we had better get rid of this frame's stuff. */
2594 UNGCPRO;
2595 longjmp (wrong_kboard_jmpbuf, 1);
2598 #endif
2600 wrong_kboard:
2602 stop_polling ();
2604 /* Finally, we read from the main queue,
2605 and if that gives us something we can't use yet, we put it on the
2606 appropriate side queue and try again. */
2608 if (NILP (c))
2610 KBOARD *kb;
2612 /* Actually read a character, waiting if necessary. */
2613 save_getcjmp (save_jump);
2614 restore_getcjmp (local_getcjmp);
2615 timer_start_idle ();
2616 c = kbd_buffer_get_event (&kb, used_mouse_menu);
2617 restore_getcjmp (save_jump);
2619 #ifdef MULTI_KBOARD
2620 if (! NILP (c) && (kb != current_kboard))
2622 Lisp_Object link = kb->kbd_queue;
2623 if (CONSP (link))
2625 while (CONSP (XCDR (link)))
2626 link = XCDR (link);
2627 if (!NILP (XCDR (link)))
2628 abort ();
2630 if (!CONSP (link))
2631 kb->kbd_queue = Fcons (c, Qnil);
2632 else
2633 XSETCDR (link, Fcons (c, Qnil));
2634 kb->kbd_queue_has_data = 1;
2635 c = Qnil;
2636 if (single_kboard)
2637 goto wrong_kboard;
2638 current_kboard = kb;
2639 /* This is going to exit from read_char
2640 so we had better get rid of this frame's stuff. */
2641 UNGCPRO;
2642 longjmp (wrong_kboard_jmpbuf, 1);
2644 #endif
2647 /* Terminate Emacs in batch mode if at eof. */
2648 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2649 Fkill_emacs (make_number (1));
2651 if (INTEGERP (c))
2653 /* Add in any extra modifiers, where appropriate. */
2654 if ((extra_keyboard_modifiers & CHAR_CTL)
2655 || ((extra_keyboard_modifiers & 0177) < ' '
2656 && (extra_keyboard_modifiers & 0177) != 0))
2657 XSETINT (c, make_ctrl_char (XINT (c)));
2659 /* Transfer any other modifier bits directly from
2660 extra_keyboard_modifiers to c. Ignore the actual character code
2661 in the low 16 bits of extra_keyboard_modifiers. */
2662 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2665 non_reread:
2667 /* Record the last idle start time so that we can reset it
2668 should the next event read be a help-echo. */
2669 last_idle_start = timer_idleness_start_time;
2670 timer_stop_idle ();
2671 start_polling ();
2673 if (NILP (c))
2675 if (commandflag >= 0
2676 && !input_pending && !detect_input_pending_run_timers (0))
2677 redisplay ();
2679 goto wrong_kboard;
2682 non_reread_1:
2684 /* Buffer switch events are only for internal wakeups
2685 so don't show them to the user.
2686 Also, don't record a key if we already did. */
2687 if (BUFFERP (c) || key_already_recorded)
2688 RETURN_UNGCPRO (c);
2690 /* Process special events within read_char
2691 and loop around to read another event. */
2692 save = Vquit_flag;
2693 Vquit_flag = Qnil;
2694 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2695 Vquit_flag = save;
2697 if (!NILP (tem))
2699 int was_locked = single_kboard;
2701 last_input_char = c;
2702 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2704 if (CONSP (c) && EQ (XCAR (c), Qselect_window))
2705 /* We stopped being idle for this event; undo that. This
2706 prevents automatic window selection (under
2707 mouse_autoselect_window from acting as a real input event, for
2708 example banishing the mouse under mouse-avoidance-mode. */
2709 timer_idleness_start_time = last_idle_start;
2711 /* Resume allowing input from any kboard, if that was true before. */
2712 if (!was_locked)
2713 any_kboard_state ();
2715 goto retry;
2718 /* Handle things that only apply to characters. */
2719 if (INTEGERP (c))
2721 /* If kbd_buffer_get_event gave us an EOF, return that. */
2722 if (XINT (c) == -1)
2723 RETURN_UNGCPRO (c);
2725 if ((STRINGP (Vkeyboard_translate_table)
2726 && XSTRING (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2727 || (VECTORP (Vkeyboard_translate_table)
2728 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2729 || (CHAR_TABLE_P (Vkeyboard_translate_table)
2730 && CHAR_TABLE_ORDINARY_SLOTS > (unsigned) XFASTINT (c)))
2732 Lisp_Object d;
2733 d = Faref (Vkeyboard_translate_table, c);
2734 /* nil in keyboard-translate-table means no translation. */
2735 if (!NILP (d))
2736 c = d;
2740 /* If this event is a mouse click in the menu bar,
2741 return just menu-bar for now. Modify the mouse click event
2742 so we won't do this twice, then queue it up. */
2743 if (EVENT_HAS_PARAMETERS (c)
2744 && CONSP (XCDR (c))
2745 && CONSP (EVENT_START (c))
2746 && CONSP (XCDR (EVENT_START (c))))
2748 Lisp_Object posn;
2750 posn = POSN_BUFFER_POSN (EVENT_START (c));
2751 /* Handle menu-bar events:
2752 insert the dummy prefix event `menu-bar'. */
2753 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2755 /* Change menu-bar to (menu-bar) as the event "position". */
2756 POSN_BUFFER_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
2758 also_record = c;
2759 Vunread_command_events = Fcons (c, Vunread_command_events);
2760 c = posn;
2764 /* Store these characters into recent_keys, the dribble file if any,
2765 and the keyboard macro being defined, if any. */
2766 record_char (c);
2767 if (! NILP (also_record))
2768 record_char (also_record);
2770 /* Wipe the echo area.
2771 But first, if we are about to use an input method,
2772 save the echo area contents for it to refer to. */
2773 if (INTEGERP (c)
2774 && ! NILP (Vinput_method_function)
2775 && (unsigned) XINT (c) >= ' '
2776 && (unsigned) XINT (c) != 127
2777 && (unsigned) XINT (c) < 256)
2779 previous_echo_area_message = Fcurrent_message ();
2780 Vinput_method_previous_message = previous_echo_area_message;
2783 /* Now wipe the echo area, except for help events which do their
2784 own stuff with the echo area. */
2785 if (!CONSP (c)
2786 || (!(EQ (Qhelp_echo, XCAR (c)))
2787 && !(EQ (Qswitch_frame, XCAR (c)))))
2789 if (!NILP (echo_area_buffer[0]))
2790 safe_run_hooks (Qecho_area_clear_hook);
2791 clear_message (1, 0);
2794 reread_for_input_method:
2795 from_macro:
2796 /* Pass this to the input method, if appropriate. */
2797 if (INTEGERP (c)
2798 && ! NILP (Vinput_method_function)
2799 /* Don't run the input method within a key sequence,
2800 after the first event of the key sequence. */
2801 && NILP (prev_event)
2802 && (unsigned) XINT (c) >= ' '
2803 && (unsigned) XINT (c) != 127
2804 && (unsigned) XINT (c) < 256)
2806 Lisp_Object keys;
2807 int key_count;
2808 struct gcpro gcpro1;
2809 int count = specpdl_ptr - specpdl;
2811 /* Save the echo status. */
2812 int saved_immediate_echo = current_kboard->immediate_echo;
2813 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
2814 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
2816 if (before_command_restore_flag)
2818 this_command_key_count = before_command_key_count_1;
2819 if (this_command_key_count < this_single_command_key_start)
2820 this_single_command_key_start = this_command_key_count;
2821 echo_truncate (before_command_echo_length_1);
2822 before_command_restore_flag = 0;
2825 /* Save the this_command_keys status. */
2826 key_count = this_command_key_count;
2828 if (key_count > 0)
2829 keys = Fcopy_sequence (this_command_keys);
2830 else
2831 keys = Qnil;
2832 GCPRO1 (keys);
2834 /* Clear out this_command_keys. */
2835 this_command_key_count = 0;
2837 /* Now wipe the echo area. */
2838 if (!NILP (echo_area_buffer[0]))
2839 safe_run_hooks (Qecho_area_clear_hook);
2840 clear_message (1, 0);
2841 echo_truncate (0);
2843 /* If we are not reading a key sequence,
2844 never use the echo area. */
2845 if (maps == 0)
2847 specbind (Qinput_method_use_echo_area, Qt);
2850 /* Call the input method. */
2851 tem = call1 (Vinput_method_function, c);
2853 tem = unbind_to (count, tem);
2855 /* Restore the saved echoing state
2856 and this_command_keys state. */
2857 this_command_key_count = key_count;
2858 if (key_count > 0)
2859 this_command_keys = keys;
2861 cancel_echoing ();
2862 ok_to_echo_at_next_pause = saved_ok_to_echo;
2863 current_kboard->echo_after_prompt = saved_echo_after_prompt;
2864 if (saved_immediate_echo)
2865 echo_now ();
2867 UNGCPRO;
2869 /* The input method can return no events. */
2870 if (! CONSP (tem))
2872 /* Bring back the previous message, if any. */
2873 if (! NILP (previous_echo_area_message))
2874 message_with_string ("%s", previous_echo_area_message, 0);
2875 goto retry;
2877 /* It returned one event or more. */
2878 c = XCAR (tem);
2879 Vunread_post_input_method_events
2880 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
2883 reread_first:
2885 /* Display help if not echoing. */
2886 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
2888 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
2889 Lisp_Object help, object, position, window, tem;
2891 tem = Fcdr (XCDR (c));
2892 help = Fcar (tem);
2893 tem = Fcdr (tem);
2894 window = Fcar (tem);
2895 tem = Fcdr (tem);
2896 object = Fcar (tem);
2897 tem = Fcdr (tem);
2898 position = Fcar (tem);
2900 show_help_echo (help, window, object, position, 0);
2902 /* We stopped being idle for this event; undo that. */
2903 timer_idleness_start_time = last_idle_start;
2904 goto retry;
2907 if (this_command_key_count == 0 || ! reread)
2909 before_command_key_count = this_command_key_count;
2910 before_command_echo_length = echo_length ();
2912 /* Don't echo mouse motion events. */
2913 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2914 && NILP (Fzerop (Vecho_keystrokes))
2915 && ! (EVENT_HAS_PARAMETERS (c)
2916 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
2918 echo_char (c);
2919 if (! NILP (also_record))
2920 echo_char (also_record);
2921 /* Once we reread a character, echoing can happen
2922 the next time we pause to read a new one. */
2923 ok_to_echo_at_next_pause = current_kboard;
2926 /* Record this character as part of the current key. */
2927 add_command_key (c);
2928 if (! NILP (also_record))
2929 add_command_key (also_record);
2932 last_input_char = c;
2933 num_input_events++;
2935 /* Process the help character specially if enabled */
2936 if (!NILP (Vhelp_form) && help_char_p (c))
2938 Lisp_Object tem0;
2939 count = specpdl_ptr - specpdl;
2941 record_unwind_protect (Fset_window_configuration,
2942 Fcurrent_window_configuration (Qnil));
2944 tem0 = Feval (Vhelp_form);
2945 if (STRINGP (tem0))
2946 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
2948 cancel_echoing ();
2950 c = read_char (0, 0, 0, Qnil, 0);
2951 while (BUFFERP (c));
2952 /* Remove the help from the frame */
2953 unbind_to (count, Qnil);
2955 redisplay ();
2956 if (EQ (c, make_number (040)))
2958 cancel_echoing ();
2960 c = read_char (0, 0, 0, Qnil, 0);
2961 while (BUFFERP (c));
2965 RETURN_UNGCPRO (c);
2968 /* Record a key that came from a mouse menu.
2969 Record it for echoing, for this-command-keys, and so on. */
2971 static void
2972 record_menu_key (c)
2973 Lisp_Object c;
2975 /* Wipe the echo area. */
2976 clear_message (1, 0);
2978 record_char (c);
2980 before_command_key_count = this_command_key_count;
2981 before_command_echo_length = echo_length ();
2983 /* Don't echo mouse motion events. */
2984 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2985 && NILP (Fzerop (Vecho_keystrokes)))
2987 echo_char (c);
2989 /* Once we reread a character, echoing can happen
2990 the next time we pause to read a new one. */
2991 ok_to_echo_at_next_pause = 0;
2994 /* Record this character as part of the current key. */
2995 add_command_key (c);
2997 /* Re-reading in the middle of a command */
2998 last_input_char = c;
2999 num_input_events++;
3002 /* Return 1 if should recognize C as "the help character". */
3005 help_char_p (c)
3006 Lisp_Object c;
3008 Lisp_Object tail;
3010 if (EQ (c, Vhelp_char))
3011 return 1;
3012 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3013 if (EQ (c, XCAR (tail)))
3014 return 1;
3015 return 0;
3018 /* Record the input event C in various ways. */
3020 static void
3021 record_char (c)
3022 Lisp_Object c;
3024 int recorded = 0;
3026 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3028 /* To avoid filling recent_keys with help-echo and mouse-movement
3029 events, we filter out repeated help-echo events, only store the
3030 first and last in a series of mouse-movement events, and don't
3031 store repeated help-echo events which are only separated by
3032 mouse-movement events. */
3034 Lisp_Object ev1, ev2, ev3;
3035 int ix1, ix2, ix3;
3037 if ((ix1 = recent_keys_index - 1) < 0)
3038 ix1 = NUM_RECENT_KEYS - 1;
3039 ev1 = AREF (recent_keys, ix1);
3041 if ((ix2 = ix1 - 1) < 0)
3042 ix2 = NUM_RECENT_KEYS - 1;
3043 ev2 = AREF (recent_keys, ix2);
3045 if ((ix3 = ix2 - 1) < 0)
3046 ix3 = NUM_RECENT_KEYS - 1;
3047 ev3 = AREF (recent_keys, ix3);
3049 if (EQ (XCAR (c), Qhelp_echo))
3051 /* Don't record `help-echo' in recent_keys unless it shows some help
3052 message, and a different help than the previously recorded
3053 event. */
3054 Lisp_Object help, last_help;
3056 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3057 if (!STRINGP (help))
3058 recorded = 1;
3059 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3060 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3061 recorded = 1;
3062 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3063 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3064 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3065 recorded = -1;
3066 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3067 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3068 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3069 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3070 recorded = -2;
3072 else if (EQ (XCAR (c), Qmouse_movement))
3074 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3075 So additional mouse movement events replace the last element. */
3076 Lisp_Object last_window, window;
3078 window = Fcar_safe (Fcar_safe (XCDR (c)));
3079 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3080 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3081 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3082 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3084 ASET (recent_keys, ix1, c);
3085 recorded = 1;
3089 else
3090 store_kbd_macro_char (c);
3092 if (!recorded)
3094 total_keys++;
3095 ASET (recent_keys, recent_keys_index, c);
3096 if (++recent_keys_index >= NUM_RECENT_KEYS)
3097 recent_keys_index = 0;
3099 else if (recorded < 0)
3101 /* We need to remove one or two events from recent_keys.
3102 To do this, we simply put nil at those events and move the
3103 recent_keys_index backwards over those events. Usually,
3104 users will never see those nil events, as they will be
3105 overwritten by the command keys entered to see recent_keys
3106 (e.g. C-h l). */
3108 while (recorded++ < 0 && total_keys > 0)
3110 if (total_keys < NUM_RECENT_KEYS)
3111 total_keys--;
3112 if (--recent_keys_index < 0)
3113 recent_keys_index = NUM_RECENT_KEYS - 1;
3114 ASET (recent_keys, recent_keys_index, Qnil);
3118 num_nonmacro_input_events++;
3120 /* Write c to the dribble file. If c is a lispy event, write
3121 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3122 If you, dear reader, have a better idea, you've got the source. :-) */
3123 if (dribble)
3125 if (INTEGERP (c))
3127 if (XUINT (c) < 0x100)
3128 putc (XINT (c), dribble);
3129 else
3130 fprintf (dribble, " 0x%x", (int) XUINT (c));
3132 else
3134 Lisp_Object dribblee;
3136 /* If it's a structured event, take the event header. */
3137 dribblee = EVENT_HEAD (c);
3139 if (SYMBOLP (dribblee))
3141 putc ('<', dribble);
3142 fwrite (XSTRING (SYMBOL_NAME (dribblee))->data, sizeof (char),
3143 STRING_BYTES (XSTRING (SYMBOL_NAME (dribblee))),
3144 dribble);
3145 putc ('>', dribble);
3149 fflush (dribble);
3153 Lisp_Object
3154 print_help (object)
3155 Lisp_Object object;
3157 struct buffer *old = current_buffer;
3158 Fprinc (object, Qnil);
3159 set_buffer_internal (XBUFFER (Vstandard_output));
3160 call0 (intern ("help-mode"));
3161 set_buffer_internal (old);
3162 return Qnil;
3165 /* Copy out or in the info on where C-g should throw to.
3166 This is used when running Lisp code from within get_char,
3167 in case get_char is called recursively.
3168 See read_process_output. */
3170 static void
3171 save_getcjmp (temp)
3172 jmp_buf temp;
3174 bcopy (getcjmp, temp, sizeof getcjmp);
3177 static void
3178 restore_getcjmp (temp)
3179 jmp_buf temp;
3181 bcopy (temp, getcjmp, sizeof getcjmp);
3184 #ifdef HAVE_MOUSE
3186 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3187 of this function. */
3189 static Lisp_Object
3190 tracking_off (old_value)
3191 Lisp_Object old_value;
3193 do_mouse_tracking = old_value;
3194 if (NILP (old_value))
3196 /* Redisplay may have been preempted because there was input
3197 available, and it assumes it will be called again after the
3198 input has been processed. If the only input available was
3199 the sort that we have just disabled, then we need to call
3200 redisplay. */
3201 if (!readable_events (1))
3203 redisplay_preserve_echo_area (6);
3204 get_input_pending (&input_pending, 1);
3207 return Qnil;
3210 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
3211 doc: /* Evaluate BODY with mouse movement events enabled.
3212 Within a `track-mouse' form, mouse motion generates input events that
3213 you can read with `read-event'.
3214 Normally, mouse motion is ignored.
3215 usage: (track-mouse BODY ...) */)
3216 (args)
3217 Lisp_Object args;
3219 int count = specpdl_ptr - specpdl;
3220 Lisp_Object val;
3222 record_unwind_protect (tracking_off, do_mouse_tracking);
3224 do_mouse_tracking = Qt;
3226 val = Fprogn (args);
3227 return unbind_to (count, val);
3230 /* If mouse has moved on some frame, return one of those frames.
3231 Return 0 otherwise. */
3233 static FRAME_PTR
3234 some_mouse_moved ()
3236 Lisp_Object tail, frame;
3238 FOR_EACH_FRAME (tail, frame)
3240 if (XFRAME (frame)->mouse_moved)
3241 return XFRAME (frame);
3244 return 0;
3247 #endif /* HAVE_MOUSE */
3249 /* Low level keyboard/mouse input.
3250 kbd_buffer_store_event places events in kbd_buffer, and
3251 kbd_buffer_get_event retrieves them. */
3253 /* Return true iff there are any events in the queue that read-char
3254 would return. If this returns false, a read-char would block. */
3255 static int
3256 readable_events (do_timers_now)
3257 int do_timers_now;
3259 if (do_timers_now)
3260 timer_check (do_timers_now);
3262 /* If the buffer contains only FOCUS_IN_EVENT events,
3263 report it as empty. */
3264 if (kbd_fetch_ptr != kbd_store_ptr)
3266 struct input_event *event;
3268 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3269 ? kbd_fetch_ptr
3270 : kbd_buffer);
3272 while (event->kind == FOCUS_IN_EVENT)
3274 event++;
3275 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3276 event = kbd_buffer;
3277 if (event == kbd_store_ptr)
3278 return 0;
3280 return 1;
3283 #ifdef HAVE_MOUSE
3284 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3285 return 1;
3286 #endif
3287 if (single_kboard)
3289 if (current_kboard->kbd_queue_has_data)
3290 return 1;
3292 else
3294 KBOARD *kb;
3295 for (kb = all_kboards; kb; kb = kb->next_kboard)
3296 if (kb->kbd_queue_has_data)
3297 return 1;
3299 return 0;
3302 /* Set this for debugging, to have a way to get out */
3303 int stop_character;
3305 #ifdef MULTI_KBOARD
3306 static KBOARD *
3307 event_to_kboard (event)
3308 struct input_event *event;
3310 Lisp_Object frame;
3311 frame = event->frame_or_window;
3312 if (CONSP (frame))
3313 frame = XCAR (frame);
3314 else if (WINDOWP (frame))
3315 frame = WINDOW_FRAME (XWINDOW (frame));
3317 /* There are still some events that don't set this field.
3318 For now, just ignore the problem.
3319 Also ignore dead frames here. */
3320 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3321 return 0;
3322 else
3323 return FRAME_KBOARD (XFRAME (frame));
3325 #endif
3327 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3329 void
3330 kbd_buffer_store_event (event)
3331 register struct input_event *event;
3333 if (event->kind == NO_EVENT)
3334 abort ();
3336 if (event->kind == ASCII_KEYSTROKE_EVENT)
3338 register int c = event->code & 0377;
3340 if (event->modifiers & ctrl_modifier)
3341 c = make_ctrl_char (c);
3343 c |= (event->modifiers
3344 & (meta_modifier | alt_modifier
3345 | hyper_modifier | super_modifier));
3347 if (c == quit_char)
3349 static SIGTYPE interrupt_signal (int);
3350 #ifdef MULTI_KBOARD
3351 KBOARD *kb;
3352 struct input_event *sp;
3354 if (single_kboard
3355 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3356 kb != current_kboard))
3358 kb->kbd_queue
3359 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3360 Fcons (make_number (c), Qnil));
3361 kb->kbd_queue_has_data = 1;
3362 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3364 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3365 sp = kbd_buffer;
3367 if (event_to_kboard (sp) == kb)
3369 sp->kind = NO_EVENT;
3370 sp->frame_or_window = Qnil;
3371 sp->arg = Qnil;
3374 return;
3376 #endif
3378 /* If this results in a quit_char being returned to Emacs as
3379 input, set Vlast_event_frame properly. If this doesn't
3380 get returned to Emacs as an event, the next event read
3381 will set Vlast_event_frame again, so this is safe to do. */
3383 Lisp_Object focus;
3385 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3386 if (NILP (focus))
3387 focus = event->frame_or_window;
3388 internal_last_event_frame = focus;
3389 Vlast_event_frame = focus;
3392 last_event_timestamp = event->timestamp;
3393 interrupt_signal (0 /* dummy */);
3394 return;
3397 if (c && c == stop_character)
3399 sys_suspend ();
3400 return;
3403 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3404 Just ignore the second one. */
3405 else if (event->kind == BUFFER_SWITCH_EVENT
3406 && kbd_fetch_ptr != kbd_store_ptr
3407 && kbd_store_ptr->kind == BUFFER_SWITCH_EVENT)
3408 return;
3410 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3411 kbd_store_ptr = kbd_buffer;
3413 /* Don't let the very last slot in the buffer become full,
3414 since that would make the two pointers equal,
3415 and that is indistinguishable from an empty buffer.
3416 Discard the event if it would fill the last slot. */
3417 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3419 int idx;
3421 #if 0 /* The SELECTION_REQUEST_EVENT case looks bogus, and it's error
3422 prone to assign individual members for other events, in case
3423 the input_event structure is changed. --2000-07-13, gerd. */
3424 struct input_event *sp = kbd_store_ptr;
3425 sp->kind = event->kind;
3426 if (event->kind == SELECTION_REQUEST_EVENT)
3428 /* We must not use the ordinary copying code for this case,
3429 since `part' is an enum and copying it might not copy enough
3430 in this case. */
3431 bcopy (event, (char *) sp, sizeof (*event));
3433 else
3436 sp->code = event->code;
3437 sp->part = event->part;
3438 sp->frame_or_window = event->frame_or_window;
3439 sp->arg = event->arg;
3440 sp->modifiers = event->modifiers;
3441 sp->x = event->x;
3442 sp->y = event->y;
3443 sp->timestamp = event->timestamp;
3445 #else
3446 *kbd_store_ptr = *event;
3447 #endif
3449 idx = 2 * (kbd_store_ptr - kbd_buffer);
3450 ASET (kbd_buffer_gcpro, idx, event->frame_or_window);
3451 ASET (kbd_buffer_gcpro, idx + 1, event->arg);
3452 ++kbd_store_ptr;
3457 /* Generate HELP_EVENT input_events in BUFP which has room for
3458 SIZE events. If there's not enough room in BUFP, ignore this
3459 event.
3461 HELP is the help form.
3463 FRAME is the frame on which the help is generated. OBJECT is the
3464 Lisp object where the help was found (a buffer, a string, an
3465 overlay, or nil if neither from a string nor from a buffer. POS is
3466 the position within OBJECT where the help was found.
3468 Value is the number of input_events generated. */
3471 gen_help_event (bufp, size, help, frame, window, object, pos)
3472 struct input_event *bufp;
3473 int size;
3474 Lisp_Object help, frame, object, window;
3475 int pos;
3477 if (size >= 1)
3479 bufp->kind = HELP_EVENT;
3480 bufp->frame_or_window = frame;
3481 bufp->arg = object;
3482 bufp->x = WINDOWP (window) ? window : frame;
3483 bufp->y = help;
3484 bufp->code = pos;
3485 return 1;
3487 return 0;
3491 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3493 void
3494 kbd_buffer_store_help_event (frame, help)
3495 Lisp_Object frame, help;
3497 struct input_event event;
3499 event.kind = HELP_EVENT;
3500 event.frame_or_window = frame;
3501 event.arg = Qnil;
3502 event.x = Qnil;
3503 event.y = help;
3504 event.code = 0;
3505 kbd_buffer_store_event (&event);
3509 /* Discard any mouse events in the event buffer by setting them to
3510 NO_EVENT. */
3511 void
3512 discard_mouse_events ()
3514 struct input_event *sp;
3515 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3517 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3518 sp = kbd_buffer;
3520 if (sp->kind == MOUSE_CLICK_EVENT
3521 #ifdef WINDOWSNT
3522 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
3523 #endif
3524 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3526 sp->kind = NO_EVENT;
3532 /* Return non-zero if there are any real events waiting in the event
3533 buffer, not counting `NO_EVENT's.
3535 If DISCARD is non-zero, discard NO_EVENT events at the front of
3536 the input queue, possibly leaving the input queue empty if there
3537 are no real input events. */
3540 kbd_buffer_events_waiting (discard)
3541 int discard;
3543 struct input_event *sp;
3545 for (sp = kbd_fetch_ptr;
3546 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3547 ++sp)
3549 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3550 sp = kbd_buffer;
3553 if (discard)
3554 kbd_fetch_ptr = sp;
3556 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3560 /* Clear input event EVENT. */
3562 static INLINE void
3563 clear_event (event)
3564 struct input_event *event;
3566 int idx = 2 * (event - kbd_buffer);
3567 ASET (kbd_buffer_gcpro, idx, Qnil);
3568 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
3569 event->kind = NO_EVENT;
3573 /* Read one event from the event buffer, waiting if necessary.
3574 The value is a Lisp object representing the event.
3575 The value is nil for an event that should be ignored,
3576 or that was handled here.
3577 We always read and discard one event. */
3579 static Lisp_Object
3580 kbd_buffer_get_event (kbp, used_mouse_menu)
3581 KBOARD **kbp;
3582 int *used_mouse_menu;
3584 register int c;
3585 Lisp_Object obj;
3587 if (noninteractive)
3589 c = getchar ();
3590 XSETINT (obj, c);
3591 *kbp = current_kboard;
3592 return obj;
3595 /* Wait until there is input available. */
3596 for (;;)
3598 if (kbd_fetch_ptr != kbd_store_ptr)
3599 break;
3600 #ifdef HAVE_MOUSE
3601 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3602 break;
3603 #endif
3605 /* If the quit flag is set, then read_char will return
3606 quit_char, so that counts as "available input." */
3607 if (!NILP (Vquit_flag))
3608 quit_throw_to_read_char ();
3610 /* One way or another, wait until input is available; then, if
3611 interrupt handlers have not read it, read it now. */
3613 #ifdef OLDVMS
3614 wait_for_kbd_input ();
3615 #else
3616 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3617 #ifdef SIGIO
3618 gobble_input (0);
3619 #endif /* SIGIO */
3620 if (kbd_fetch_ptr != kbd_store_ptr)
3621 break;
3622 #ifdef HAVE_MOUSE
3623 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3624 break;
3625 #endif
3627 Lisp_Object minus_one;
3629 XSETINT (minus_one, -1);
3630 wait_reading_process_input (0, 0, minus_one, 1);
3632 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3633 /* Pass 1 for EXPECT since we just waited to have input. */
3634 read_avail_input (1);
3636 #endif /* not VMS */
3639 if (CONSP (Vunread_command_events))
3641 Lisp_Object first;
3642 first = XCAR (Vunread_command_events);
3643 Vunread_command_events = XCDR (Vunread_command_events);
3644 *kbp = current_kboard;
3645 return first;
3648 /* At this point, we know that there is a readable event available
3649 somewhere. If the event queue is empty, then there must be a
3650 mouse movement enabled and available. */
3651 if (kbd_fetch_ptr != kbd_store_ptr)
3653 struct input_event *event;
3655 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3656 ? kbd_fetch_ptr
3657 : kbd_buffer);
3659 last_event_timestamp = event->timestamp;
3661 #ifdef MULTI_KBOARD
3662 *kbp = event_to_kboard (event);
3663 if (*kbp == 0)
3664 *kbp = current_kboard; /* Better than returning null ptr? */
3665 #else
3666 *kbp = &the_only_kboard;
3667 #endif
3669 obj = Qnil;
3671 /* These two kinds of events get special handling
3672 and don't actually appear to the command loop.
3673 We return nil for them. */
3674 if (event->kind == SELECTION_REQUEST_EVENT)
3676 #ifdef HAVE_X11
3677 struct input_event copy;
3679 /* Remove it from the buffer before processing it,
3680 since otherwise swallow_events will see it
3681 and process it again. */
3682 copy = *event;
3683 kbd_fetch_ptr = event + 1;
3684 input_pending = readable_events (0);
3685 x_handle_selection_request (&copy);
3686 #else
3687 /* We're getting selection request events, but we don't have
3688 a window system. */
3689 abort ();
3690 #endif
3693 else if (event->kind == SELECTION_CLEAR_EVENT)
3695 #ifdef HAVE_X11
3696 struct input_event copy;
3698 /* Remove it from the buffer before processing it. */
3699 copy = *event;
3700 kbd_fetch_ptr = event + 1;
3701 input_pending = readable_events (0);
3702 x_handle_selection_clear (&copy);
3703 #else
3704 /* We're getting selection request events, but we don't have
3705 a window system. */
3706 abort ();
3707 #endif
3709 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
3710 else if (event->kind == DELETE_WINDOW_EVENT)
3712 /* Make an event (delete-frame (FRAME)). */
3713 obj = Fcons (event->frame_or_window, Qnil);
3714 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
3715 kbd_fetch_ptr = event + 1;
3717 #endif
3718 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
3719 else if (event->kind == ICONIFY_EVENT)
3721 /* Make an event (iconify-frame (FRAME)). */
3722 obj = Fcons (event->frame_or_window, Qnil);
3723 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
3724 kbd_fetch_ptr = event + 1;
3726 else if (event->kind == DEICONIFY_EVENT)
3728 /* Make an event (make-frame-visible (FRAME)). */
3729 obj = Fcons (event->frame_or_window, Qnil);
3730 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
3731 kbd_fetch_ptr = event + 1;
3733 #endif
3734 else if (event->kind == BUFFER_SWITCH_EVENT)
3736 /* The value doesn't matter here; only the type is tested. */
3737 XSETBUFFER (obj, current_buffer);
3738 kbd_fetch_ptr = event + 1;
3740 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS)
3741 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
3743 kbd_fetch_ptr = event + 1;
3744 input_pending = readable_events (0);
3745 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
3746 x_activate_menubar (XFRAME (event->frame_or_window));
3748 #endif
3749 #ifdef WINDOWSNT
3750 else if (event->kind == LANGUAGE_CHANGE_EVENT)
3752 /* Make an event (language-change (FRAME CHARSET LCID)). */
3753 obj = Fcons (event->modifiers, Qnil);
3754 obj = Fcons (event->code, obj);
3755 obj = Fcons (event->frame_or_window, obj);
3756 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
3757 kbd_fetch_ptr = event + 1;
3759 #endif
3760 else if (event->kind == SAVE_SESSION_EVENT)
3762 obj = Fcons (Qsave_session, Qnil);
3763 kbd_fetch_ptr = event + 1;
3765 /* Just discard these, by returning nil.
3766 With MULTI_KBOARD, these events are used as placeholders
3767 when we need to randomly delete events from the queue.
3768 (They shouldn't otherwise be found in the buffer,
3769 but on some machines it appears they do show up
3770 even without MULTI_KBOARD.) */
3771 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
3772 mouse events during a popup-menu call. */
3773 else if (event->kind == NO_EVENT)
3774 kbd_fetch_ptr = event + 1;
3775 else if (event->kind == HELP_EVENT)
3777 Lisp_Object object, position, help, frame, window;
3779 frame = event->frame_or_window;
3780 object = event->arg;
3781 position = make_number (event->code);
3782 window = event->x;
3783 help = event->y;
3784 clear_event (event);
3786 kbd_fetch_ptr = event + 1;
3787 if (!WINDOWP (window))
3788 window = Qnil;
3789 obj = Fcons (Qhelp_echo,
3790 list5 (frame, help, window, object, position));
3792 else if (event->kind == FOCUS_IN_EVENT)
3794 /* Notification of a FocusIn event. The frame receiving the
3795 focus is in event->frame_or_window. Generate a
3796 switch-frame event if necessary. */
3797 Lisp_Object frame, focus;
3799 frame = event->frame_or_window;
3800 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3801 if (FRAMEP (focus))
3802 frame = focus;
3804 if (!EQ (frame, internal_last_event_frame)
3805 && !EQ (frame, selected_frame))
3806 obj = make_lispy_switch_frame (frame);
3807 internal_last_event_frame = frame;
3808 kbd_fetch_ptr = event + 1;
3810 else if (event->kind == SELECT_WINDOW_EVENT)
3812 /* Make an event (select-window (WINDOW)). */
3813 obj = Fcons (event->frame_or_window, Qnil);
3814 obj = Fcons (Qselect_window, Fcons (obj, Qnil));
3816 kbd_fetch_ptr = event + 1;
3818 else
3820 /* If this event is on a different frame, return a switch-frame this
3821 time, and leave the event in the queue for next time. */
3822 Lisp_Object frame;
3823 Lisp_Object focus;
3825 frame = event->frame_or_window;
3826 if (CONSP (frame))
3827 frame = XCAR (frame);
3828 else if (WINDOWP (frame))
3829 frame = WINDOW_FRAME (XWINDOW (frame));
3831 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3832 if (! NILP (focus))
3833 frame = focus;
3835 if (! EQ (frame, internal_last_event_frame)
3836 && !EQ (frame, selected_frame))
3837 obj = make_lispy_switch_frame (frame);
3838 internal_last_event_frame = frame;
3840 /* If we didn't decide to make a switch-frame event, go ahead
3841 and build a real event from the queue entry. */
3843 if (NILP (obj))
3845 obj = make_lispy_event (event);
3847 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
3848 /* If this was a menu selection, then set the flag to inhibit
3849 writing to last_nonmenu_event. Don't do this if the event
3850 we're returning is (menu-bar), though; that indicates the
3851 beginning of the menu sequence, and we might as well leave
3852 that as the `event with parameters' for this selection. */
3853 if (used_mouse_menu
3854 && !EQ (event->frame_or_window, event->arg)
3855 && (event->kind == MENU_BAR_EVENT
3856 || event->kind == TOOL_BAR_EVENT))
3857 *used_mouse_menu = 1;
3858 #endif
3860 /* Wipe out this event, to catch bugs. */
3861 clear_event (event);
3862 kbd_fetch_ptr = event + 1;
3866 #ifdef HAVE_MOUSE
3867 /* Try generating a mouse motion event. */
3868 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3870 FRAME_PTR f = some_mouse_moved ();
3871 Lisp_Object bar_window;
3872 enum scroll_bar_part part;
3873 Lisp_Object x, y;
3874 unsigned long time;
3876 *kbp = current_kboard;
3877 /* Note that this uses F to determine which display to look at.
3878 If there is no valid info, it does not store anything
3879 so x remains nil. */
3880 x = Qnil;
3881 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
3883 obj = Qnil;
3885 /* Decide if we should generate a switch-frame event. Don't
3886 generate switch-frame events for motion outside of all Emacs
3887 frames. */
3888 if (!NILP (x) && f)
3890 Lisp_Object frame;
3892 frame = FRAME_FOCUS_FRAME (f);
3893 if (NILP (frame))
3894 XSETFRAME (frame, f);
3896 if (! EQ (frame, internal_last_event_frame)
3897 && !EQ (frame, selected_frame))
3898 obj = make_lispy_switch_frame (frame);
3899 internal_last_event_frame = frame;
3902 /* If we didn't decide to make a switch-frame event, go ahead and
3903 return a mouse-motion event. */
3904 if (!NILP (x) && NILP (obj))
3905 obj = make_lispy_movement (f, bar_window, part, x, y, time);
3907 #endif /* HAVE_MOUSE */
3908 else
3909 /* We were promised by the above while loop that there was
3910 something for us to read! */
3911 abort ();
3913 input_pending = readable_events (0);
3915 Vlast_event_frame = internal_last_event_frame;
3917 return (obj);
3920 /* Process any events that are not user-visible,
3921 then return, without reading any user-visible events. */
3923 void
3924 swallow_events (do_display)
3925 int do_display;
3927 int old_timers_run;
3929 while (kbd_fetch_ptr != kbd_store_ptr)
3931 struct input_event *event;
3933 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3934 ? kbd_fetch_ptr
3935 : kbd_buffer);
3937 last_event_timestamp = event->timestamp;
3939 /* These two kinds of events get special handling
3940 and don't actually appear to the command loop. */
3941 if (event->kind == SELECTION_REQUEST_EVENT)
3943 #ifdef HAVE_X11
3944 struct input_event copy;
3946 /* Remove it from the buffer before processing it,
3947 since otherwise swallow_events called recursively could see it
3948 and process it again. */
3949 copy = *event;
3950 kbd_fetch_ptr = event + 1;
3951 input_pending = readable_events (0);
3952 x_handle_selection_request (&copy);
3953 #else
3954 /* We're getting selection request events, but we don't have
3955 a window system. */
3956 abort ();
3957 #endif
3960 else if (event->kind == SELECTION_CLEAR_EVENT)
3962 #ifdef HAVE_X11
3963 struct input_event copy;
3965 /* Remove it from the buffer before processing it, */
3966 copy = *event;
3968 kbd_fetch_ptr = event + 1;
3969 input_pending = readable_events (0);
3970 x_handle_selection_clear (&copy);
3971 #else
3972 /* We're getting selection request events, but we don't have
3973 a window system. */
3974 abort ();
3975 #endif
3977 else
3978 break;
3981 old_timers_run = timers_run;
3982 get_input_pending (&input_pending, 1);
3984 if (timers_run != old_timers_run && do_display)
3985 redisplay_preserve_echo_area (7);
3988 /* Record the start of when Emacs is idle,
3989 for the sake of running idle-time timers. */
3991 void
3992 timer_start_idle ()
3994 Lisp_Object timers;
3996 /* If we are already in the idle state, do nothing. */
3997 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
3998 return;
4000 EMACS_GET_TIME (timer_idleness_start_time);
4002 /* Mark all idle-time timers as once again candidates for running. */
4003 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4005 Lisp_Object timer;
4007 timer = XCAR (timers);
4009 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4010 continue;
4011 XVECTOR (timer)->contents[0] = Qnil;
4015 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4017 void
4018 timer_stop_idle ()
4020 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4023 /* This is only for debugging. */
4024 struct input_event last_timer_event;
4026 /* Check whether a timer has fired. To prevent larger problems we simply
4027 disregard elements that are not proper timers. Do not make a circular
4028 timer list for the time being.
4030 Returns the number of seconds to wait until the next timer fires. If a
4031 timer is triggering now, return zero seconds.
4032 If no timer is active, return -1 seconds.
4034 If a timer is ripe, we run it, with quitting turned off.
4036 DO_IT_NOW is now ignored. It used to mean that we should
4037 run the timer directly instead of queueing a timer-event.
4038 Now we always run timers directly. */
4040 EMACS_TIME
4041 timer_check (do_it_now)
4042 int do_it_now;
4044 EMACS_TIME nexttime;
4045 EMACS_TIME now, idleness_now;
4046 Lisp_Object timers, idle_timers, chosen_timer;
4047 struct gcpro gcpro1, gcpro2, gcpro3;
4049 EMACS_SET_SECS (nexttime, -1);
4050 EMACS_SET_USECS (nexttime, -1);
4052 /* Always consider the ordinary timers. */
4053 timers = Vtimer_list;
4054 /* Consider the idle timers only if Emacs is idle. */
4055 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4056 idle_timers = Vtimer_idle_list;
4057 else
4058 idle_timers = Qnil;
4059 chosen_timer = Qnil;
4060 GCPRO3 (timers, idle_timers, chosen_timer);
4062 if (CONSP (timers) || CONSP (idle_timers))
4064 EMACS_GET_TIME (now);
4065 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4066 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4069 while (CONSP (timers) || CONSP (idle_timers))
4071 Lisp_Object *vector;
4072 Lisp_Object timer = Qnil, idle_timer = Qnil;
4073 EMACS_TIME timer_time, idle_timer_time;
4074 EMACS_TIME difference, timer_difference, idle_timer_difference;
4076 /* Skip past invalid timers and timers already handled. */
4077 if (!NILP (timers))
4079 timer = XCAR (timers);
4080 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4082 timers = XCDR (timers);
4083 continue;
4085 vector = XVECTOR (timer)->contents;
4087 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4088 || !INTEGERP (vector[3])
4089 || ! NILP (vector[0]))
4091 timers = XCDR (timers);
4092 continue;
4095 if (!NILP (idle_timers))
4097 timer = XCAR (idle_timers);
4098 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4100 idle_timers = XCDR (idle_timers);
4101 continue;
4103 vector = XVECTOR (timer)->contents;
4105 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4106 || !INTEGERP (vector[3])
4107 || ! NILP (vector[0]))
4109 idle_timers = XCDR (idle_timers);
4110 continue;
4114 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4115 based on the next ordinary timer.
4116 TIMER_DIFFERENCE is the distance in time from NOW to when
4117 this timer becomes ripe (negative if it's already ripe). */
4118 if (!NILP (timers))
4120 timer = XCAR (timers);
4121 vector = XVECTOR (timer)->contents;
4122 EMACS_SET_SECS (timer_time,
4123 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4124 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4125 EMACS_SUB_TIME (timer_difference, timer_time, now);
4128 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4129 based on the next idle timer. */
4130 if (!NILP (idle_timers))
4132 idle_timer = XCAR (idle_timers);
4133 vector = XVECTOR (idle_timer)->contents;
4134 EMACS_SET_SECS (idle_timer_time,
4135 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4136 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4137 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4140 /* Decide which timer is the next timer,
4141 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4142 Also step down the list where we found that timer. */
4144 if (! NILP (timers) && ! NILP (idle_timers))
4146 EMACS_TIME temp;
4147 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4148 if (EMACS_TIME_NEG_P (temp))
4150 chosen_timer = timer;
4151 timers = XCDR (timers);
4152 difference = timer_difference;
4154 else
4156 chosen_timer = idle_timer;
4157 idle_timers = XCDR (idle_timers);
4158 difference = idle_timer_difference;
4161 else if (! NILP (timers))
4163 chosen_timer = timer;
4164 timers = XCDR (timers);
4165 difference = timer_difference;
4167 else
4169 chosen_timer = idle_timer;
4170 idle_timers = XCDR (idle_timers);
4171 difference = idle_timer_difference;
4173 vector = XVECTOR (chosen_timer)->contents;
4175 /* If timer is ripe, run it if it hasn't been run. */
4176 if (EMACS_TIME_NEG_P (difference)
4177 || (EMACS_SECS (difference) == 0
4178 && EMACS_USECS (difference) == 0))
4180 if (NILP (vector[0]))
4182 int was_locked = single_kboard;
4183 int count = BINDING_STACK_SIZE ();
4184 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4186 /* Mark the timer as triggered to prevent problems if the lisp
4187 code fails to reschedule it right. */
4188 vector[0] = Qt;
4190 specbind (Qinhibit_quit, Qt);
4192 call1 (Qtimer_event_handler, chosen_timer);
4193 Vdeactivate_mark = old_deactivate_mark;
4194 timers_run++;
4195 unbind_to (count, Qnil);
4197 /* Resume allowing input from any kboard, if that was true before. */
4198 if (!was_locked)
4199 any_kboard_state ();
4201 /* Since we have handled the event,
4202 we don't need to tell the caller to wake up and do it. */
4205 else
4206 /* When we encounter a timer that is still waiting,
4207 return the amount of time to wait before it is ripe. */
4209 UNGCPRO;
4210 return difference;
4214 /* No timers are pending in the future. */
4215 /* Return 0 if we generated an event, and -1 if not. */
4216 UNGCPRO;
4217 return nexttime;
4220 /* Caches for modify_event_symbol. */
4221 static Lisp_Object accent_key_syms;
4222 static Lisp_Object func_key_syms;
4223 static Lisp_Object mouse_syms;
4224 #ifdef WINDOWSNT
4225 static Lisp_Object mouse_wheel_syms;
4226 #endif
4227 static Lisp_Object drag_n_drop_syms;
4229 /* This is a list of keysym codes for special "accent" characters.
4230 It parallels lispy_accent_keys. */
4232 static int lispy_accent_codes[] =
4234 #ifdef XK_dead_circumflex
4235 XK_dead_circumflex,
4236 #else
4238 #endif
4239 #ifdef XK_dead_grave
4240 XK_dead_grave,
4241 #else
4243 #endif
4244 #ifdef XK_dead_tilde
4245 XK_dead_tilde,
4246 #else
4248 #endif
4249 #ifdef XK_dead_diaeresis
4250 XK_dead_diaeresis,
4251 #else
4253 #endif
4254 #ifdef XK_dead_macron
4255 XK_dead_macron,
4256 #else
4258 #endif
4259 #ifdef XK_dead_degree
4260 XK_dead_degree,
4261 #else
4263 #endif
4264 #ifdef XK_dead_acute
4265 XK_dead_acute,
4266 #else
4268 #endif
4269 #ifdef XK_dead_cedilla
4270 XK_dead_cedilla,
4271 #else
4273 #endif
4274 #ifdef XK_dead_breve
4275 XK_dead_breve,
4276 #else
4278 #endif
4279 #ifdef XK_dead_ogonek
4280 XK_dead_ogonek,
4281 #else
4283 #endif
4284 #ifdef XK_dead_caron
4285 XK_dead_caron,
4286 #else
4288 #endif
4289 #ifdef XK_dead_doubleacute
4290 XK_dead_doubleacute,
4291 #else
4293 #endif
4294 #ifdef XK_dead_abovedot
4295 XK_dead_abovedot,
4296 #else
4298 #endif
4301 /* This is a list of Lisp names for special "accent" characters.
4302 It parallels lispy_accent_codes. */
4304 static char *lispy_accent_keys[] =
4306 "dead-circumflex",
4307 "dead-grave",
4308 "dead-tilde",
4309 "dead-diaeresis",
4310 "dead-macron",
4311 "dead-degree",
4312 "dead-acute",
4313 "dead-cedilla",
4314 "dead-breve",
4315 "dead-ogonek",
4316 "dead-caron",
4317 "dead-doubleacute",
4318 "dead-abovedot",
4321 #ifdef HAVE_NTGUI
4322 #define FUNCTION_KEY_OFFSET 0x0
4324 char *lispy_function_keys[] =
4326 0, /* 0 */
4328 0, /* VK_LBUTTON 0x01 */
4329 0, /* VK_RBUTTON 0x02 */
4330 "cancel", /* VK_CANCEL 0x03 */
4331 0, /* VK_MBUTTON 0x04 */
4333 0, 0, 0, /* 0x05 .. 0x07 */
4335 "backspace", /* VK_BACK 0x08 */
4336 "tab", /* VK_TAB 0x09 */
4338 0, 0, /* 0x0A .. 0x0B */
4340 "clear", /* VK_CLEAR 0x0C */
4341 "return", /* VK_RETURN 0x0D */
4343 0, 0, /* 0x0E .. 0x0F */
4345 0, /* VK_SHIFT 0x10 */
4346 0, /* VK_CONTROL 0x11 */
4347 0, /* VK_MENU 0x12 */
4348 "pause", /* VK_PAUSE 0x13 */
4349 "capslock", /* VK_CAPITAL 0x14 */
4351 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4353 "escape", /* VK_ESCAPE 0x1B */
4355 0, 0, 0, 0, /* 0x1C .. 0x1F */
4357 0, /* VK_SPACE 0x20 */
4358 "prior", /* VK_PRIOR 0x21 */
4359 "next", /* VK_NEXT 0x22 */
4360 "end", /* VK_END 0x23 */
4361 "home", /* VK_HOME 0x24 */
4362 "left", /* VK_LEFT 0x25 */
4363 "up", /* VK_UP 0x26 */
4364 "right", /* VK_RIGHT 0x27 */
4365 "down", /* VK_DOWN 0x28 */
4366 "select", /* VK_SELECT 0x29 */
4367 "print", /* VK_PRINT 0x2A */
4368 "execute", /* VK_EXECUTE 0x2B */
4369 "snapshot", /* VK_SNAPSHOT 0x2C */
4370 "insert", /* VK_INSERT 0x2D */
4371 "delete", /* VK_DELETE 0x2E */
4372 "help", /* VK_HELP 0x2F */
4374 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4376 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4378 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4380 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4382 0, 0, 0, 0, 0, 0, 0, 0, 0,
4383 0, 0, 0, 0, 0, 0, 0, 0, 0,
4384 0, 0, 0, 0, 0, 0, 0, 0,
4386 "lwindow", /* VK_LWIN 0x5B */
4387 "rwindow", /* VK_RWIN 0x5C */
4388 "apps", /* VK_APPS 0x5D */
4390 0, 0, /* 0x5E .. 0x5F */
4392 "kp-0", /* VK_NUMPAD0 0x60 */
4393 "kp-1", /* VK_NUMPAD1 0x61 */
4394 "kp-2", /* VK_NUMPAD2 0x62 */
4395 "kp-3", /* VK_NUMPAD3 0x63 */
4396 "kp-4", /* VK_NUMPAD4 0x64 */
4397 "kp-5", /* VK_NUMPAD5 0x65 */
4398 "kp-6", /* VK_NUMPAD6 0x66 */
4399 "kp-7", /* VK_NUMPAD7 0x67 */
4400 "kp-8", /* VK_NUMPAD8 0x68 */
4401 "kp-9", /* VK_NUMPAD9 0x69 */
4402 "kp-multiply", /* VK_MULTIPLY 0x6A */
4403 "kp-add", /* VK_ADD 0x6B */
4404 "kp-separator", /* VK_SEPARATOR 0x6C */
4405 "kp-subtract", /* VK_SUBTRACT 0x6D */
4406 "kp-decimal", /* VK_DECIMAL 0x6E */
4407 "kp-divide", /* VK_DIVIDE 0x6F */
4408 "f1", /* VK_F1 0x70 */
4409 "f2", /* VK_F2 0x71 */
4410 "f3", /* VK_F3 0x72 */
4411 "f4", /* VK_F4 0x73 */
4412 "f5", /* VK_F5 0x74 */
4413 "f6", /* VK_F6 0x75 */
4414 "f7", /* VK_F7 0x76 */
4415 "f8", /* VK_F8 0x77 */
4416 "f9", /* VK_F9 0x78 */
4417 "f10", /* VK_F10 0x79 */
4418 "f11", /* VK_F11 0x7A */
4419 "f12", /* VK_F12 0x7B */
4420 "f13", /* VK_F13 0x7C */
4421 "f14", /* VK_F14 0x7D */
4422 "f15", /* VK_F15 0x7E */
4423 "f16", /* VK_F16 0x7F */
4424 "f17", /* VK_F17 0x80 */
4425 "f18", /* VK_F18 0x81 */
4426 "f19", /* VK_F19 0x82 */
4427 "f20", /* VK_F20 0x83 */
4428 "f21", /* VK_F21 0x84 */
4429 "f22", /* VK_F22 0x85 */
4430 "f23", /* VK_F23 0x86 */
4431 "f24", /* VK_F24 0x87 */
4433 0, 0, 0, 0, /* 0x88 .. 0x8B */
4434 0, 0, 0, 0, /* 0x8C .. 0x8F */
4436 "kp-numlock", /* VK_NUMLOCK 0x90 */
4437 "scroll", /* VK_SCROLL 0x91 */
4439 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4440 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4441 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4442 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4443 "kp-end", /* VK_NUMPAD_END 0x96 */
4444 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4445 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4446 "kp-up", /* VK_NUMPAD_UP 0x99 */
4447 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4448 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4449 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4450 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4452 0, 0, /* 0x9E .. 0x9F */
4455 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4456 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4457 * No other API or message will distinguish left and right keys this way.
4459 /* 0xA0 .. 0xEF */
4461 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4462 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4463 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4464 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4465 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4467 /* 0xF0 .. 0xF5 */
4469 0, 0, 0, 0, 0, 0,
4471 "attn", /* VK_ATTN 0xF6 */
4472 "crsel", /* VK_CRSEL 0xF7 */
4473 "exsel", /* VK_EXSEL 0xF8 */
4474 "ereof", /* VK_EREOF 0xF9 */
4475 "play", /* VK_PLAY 0xFA */
4476 "zoom", /* VK_ZOOM 0xFB */
4477 "noname", /* VK_NONAME 0xFC */
4478 "pa1", /* VK_PA1 0xFD */
4479 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4480 0 /* 0xFF */
4483 #else /* not HAVE_NTGUI */
4485 #ifdef XK_kana_A
4486 static char *lispy_kana_keys[] =
4488 /* X Keysym value */
4489 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4490 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4491 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4492 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4493 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4494 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4495 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4496 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4497 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4498 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4499 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4500 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4501 "kana-i", "kana-u", "kana-e", "kana-o",
4502 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4503 "prolongedsound", "kana-A", "kana-I", "kana-U",
4504 "kana-E", "kana-O", "kana-KA", "kana-KI",
4505 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4506 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4507 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4508 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4509 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4510 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4511 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4512 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4513 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4514 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4515 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4516 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4518 #endif /* XK_kana_A */
4520 #define FUNCTION_KEY_OFFSET 0xff00
4522 /* You'll notice that this table is arranged to be conveniently
4523 indexed by X Windows keysym values. */
4524 static char *lispy_function_keys[] =
4526 /* X Keysym value */
4528 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4529 "backspace", "tab", "linefeed", "clear",
4530 0, "return", 0, 0,
4531 0, 0, 0, "pause", /* 0xff10...1f */
4532 0, 0, 0, 0, 0, 0, 0, "escape",
4533 0, 0, 0, 0,
4534 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4535 "romaji", "hiragana", "katakana", "hiragana-katakana",
4536 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4537 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4538 "eisu-toggle", /* 0xff30...3f */
4539 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4540 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4542 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4543 "down", "prior", "next", "end",
4544 "begin", 0, 0, 0, 0, 0, 0, 0,
4545 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4546 "print",
4547 "execute",
4548 "insert",
4549 0, /* 0xff64 */
4550 "undo",
4551 "redo",
4552 "menu",
4553 "find",
4554 "cancel",
4555 "help",
4556 "break", /* 0xff6b */
4558 0, 0, 0, 0,
4559 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4560 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4561 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4562 0, 0, 0, 0, 0, 0, 0, 0,
4563 "kp-tab", /* 0xff89 */
4564 0, 0, 0,
4565 "kp-enter", /* 0xff8d */
4566 0, 0, 0,
4567 "kp-f1", /* 0xff91 */
4568 "kp-f2",
4569 "kp-f3",
4570 "kp-f4",
4571 "kp-home", /* 0xff95 */
4572 "kp-left",
4573 "kp-up",
4574 "kp-right",
4575 "kp-down",
4576 "kp-prior", /* kp-page-up */
4577 "kp-next", /* kp-page-down */
4578 "kp-end",
4579 "kp-begin",
4580 "kp-insert",
4581 "kp-delete",
4582 0, /* 0xffa0 */
4583 0, 0, 0, 0, 0, 0, 0, 0, 0,
4584 "kp-multiply", /* 0xffaa */
4585 "kp-add",
4586 "kp-separator",
4587 "kp-subtract",
4588 "kp-decimal",
4589 "kp-divide", /* 0xffaf */
4590 "kp-0", /* 0xffb0 */
4591 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4592 0, /* 0xffba */
4593 0, 0,
4594 "kp-equal", /* 0xffbd */
4595 "f1", /* 0xffbe */ /* IsFunctionKey */
4596 "f2",
4597 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4598 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4599 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4600 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4601 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4602 0, 0, 0, 0, 0, 0, 0, 0,
4603 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4604 0, 0, 0, 0, 0, 0, 0, "delete"
4607 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4608 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
4610 static char *iso_lispy_function_keys[] =
4612 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4613 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4614 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4615 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4616 "iso-lefttab", /* 0xfe20 */
4617 "iso-move-line-up", "iso-move-line-down",
4618 "iso-partial-line-up", "iso-partial-line-down",
4619 "iso-partial-space-left", "iso-partial-space-right",
4620 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4621 "iso-release-margin-left", "iso-release-margin-right",
4622 "iso-release-both-margins",
4623 "iso-fast-cursor-left", "iso-fast-cursor-right",
4624 "iso-fast-cursor-up", "iso-fast-cursor-down",
4625 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4626 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4629 #endif /* not HAVE_NTGUI */
4631 Lisp_Object Vlispy_mouse_stem;
4633 #ifdef WINDOWSNT
4634 /* mouse-wheel events are generated by the wheel on devices such as
4635 the MS Intellimouse. The wheel sits in between the left and right
4636 mouse buttons, and is typically used to scroll or zoom the window
4637 underneath the pointer. mouse-wheel events specify the object on
4638 which they operate, and a delta corresponding to the amount and
4639 direction that the wheel is rotated. Clicking the mouse-wheel
4640 generates a mouse-2 event. */
4641 static char *lispy_mouse_wheel_names[] =
4643 "mouse-wheel"
4646 #endif /* WINDOWSNT */
4648 /* drag-n-drop events are generated when a set of selected files are
4649 dragged from another application and dropped onto an Emacs window. */
4650 static char *lispy_drag_n_drop_names[] =
4652 "drag-n-drop"
4655 /* Scroll bar parts. */
4656 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4657 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
4658 Lisp_Object Qtop, Qratio;
4660 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4661 Lisp_Object *scroll_bar_parts[] = {
4662 &Qabove_handle, &Qhandle, &Qbelow_handle,
4663 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4666 /* User signal events. */
4667 Lisp_Object Qusr1_signal, Qusr2_signal;
4669 Lisp_Object *lispy_user_signals[] =
4671 &Qusr1_signal, &Qusr2_signal
4675 /* A vector, indexed by button number, giving the down-going location
4676 of currently depressed buttons, both scroll bar and non-scroll bar.
4678 The elements have the form
4679 (BUTTON-NUMBER MODIFIER-MASK . REST)
4680 where REST is the cdr of a position as it would be reported in the event.
4682 The make_lispy_event function stores positions here to tell the
4683 difference between click and drag events, and to store the starting
4684 location to be included in drag events. */
4686 static Lisp_Object button_down_location;
4688 /* Information about the most recent up-going button event: Which
4689 button, what location, and what time. */
4691 static int last_mouse_button;
4692 static int last_mouse_x;
4693 static int last_mouse_y;
4694 static unsigned long button_down_time;
4696 /* The maximum time between clicks to make a double-click, or Qnil to
4697 disable double-click detection, or Qt for no time limit. */
4699 Lisp_Object Vdouble_click_time;
4701 /* Maximum number of pixels the mouse may be moved between clicks
4702 to make a double-click. */
4704 EMACS_INT double_click_fuzz;
4706 /* The number of clicks in this multiple-click. */
4708 int double_click_count;
4710 /* Given a struct input_event, build the lisp event which represents
4711 it. If EVENT is 0, build a mouse movement event from the mouse
4712 movement buffer, which should have a movement event in it.
4714 Note that events must be passed to this function in the order they
4715 are received; this function stores the location of button presses
4716 in order to build drag events when the button is released. */
4718 static Lisp_Object
4719 make_lispy_event (event)
4720 struct input_event *event;
4722 int i;
4724 switch (SWITCH_ENUM_CAST (event->kind))
4726 /* A simple keystroke. */
4727 case ASCII_KEYSTROKE_EVENT:
4729 Lisp_Object lispy_c;
4730 int c = event->code & 0377;
4731 /* Turn ASCII characters into control characters
4732 when proper. */
4733 if (event->modifiers & ctrl_modifier)
4734 c = make_ctrl_char (c);
4736 /* Add in the other modifier bits. We took care of ctrl_modifier
4737 just above, and the shift key was taken care of by the X code,
4738 and applied to control characters by make_ctrl_char. */
4739 c |= (event->modifiers
4740 & (meta_modifier | alt_modifier
4741 | hyper_modifier | super_modifier));
4742 /* Distinguish Shift-SPC from SPC. */
4743 if ((event->code & 0377) == 040
4744 && event->modifiers & shift_modifier)
4745 c |= shift_modifier;
4746 button_down_time = 0;
4747 XSETFASTINT (lispy_c, c);
4748 return lispy_c;
4751 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
4753 Lisp_Object lispy_c;
4755 XSETFASTINT (lispy_c, event->code);
4756 return lispy_c;
4759 /* A function key. The symbol may need to have modifier prefixes
4760 tacked onto it. */
4761 case NON_ASCII_KEYSTROKE_EVENT:
4762 button_down_time = 0;
4764 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
4765 if (event->code == lispy_accent_codes[i])
4766 return modify_event_symbol (i,
4767 event->modifiers,
4768 Qfunction_key, Qnil,
4769 lispy_accent_keys, &accent_key_syms,
4770 (sizeof (lispy_accent_keys)
4771 / sizeof (lispy_accent_keys[0])));
4773 #ifdef XK_kana_A
4774 if (event->code >= 0x400 && event->code < 0x500)
4775 return modify_event_symbol (event->code - 0x400,
4776 event->modifiers & ~shift_modifier,
4777 Qfunction_key, Qnil,
4778 lispy_kana_keys, &func_key_syms,
4779 (sizeof (lispy_kana_keys)
4780 / sizeof (lispy_kana_keys[0])));
4781 #endif /* XK_kana_A */
4783 #ifdef ISO_FUNCTION_KEY_OFFSET
4784 if (event->code < FUNCTION_KEY_OFFSET
4785 && event->code >= ISO_FUNCTION_KEY_OFFSET)
4786 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
4787 event->modifiers,
4788 Qfunction_key, Qnil,
4789 iso_lispy_function_keys, &func_key_syms,
4790 (sizeof (iso_lispy_function_keys)
4791 / sizeof (iso_lispy_function_keys[0])));
4792 #endif
4794 /* Handle system-specific or unknown keysyms. */
4795 if (event->code & (1 << 28)
4796 || event->code - FUNCTION_KEY_OFFSET < 0
4797 || (event->code - FUNCTION_KEY_OFFSET
4798 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
4799 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
4801 /* We need to use an alist rather than a vector as the cache
4802 since we can't make a vector long enuf. */
4803 if (NILP (current_kboard->system_key_syms))
4804 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
4805 return modify_event_symbol (event->code,
4806 event->modifiers,
4807 Qfunction_key,
4808 current_kboard->Vsystem_key_alist,
4809 0, &current_kboard->system_key_syms,
4810 (unsigned) -1);
4813 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
4814 event->modifiers,
4815 Qfunction_key, Qnil,
4816 lispy_function_keys, &func_key_syms,
4817 (sizeof (lispy_function_keys)
4818 / sizeof (lispy_function_keys[0])));
4820 #ifdef HAVE_MOUSE
4821 /* A mouse click. Figure out where it is, decide whether it's
4822 a press, click or drag, and build the appropriate structure. */
4823 case MOUSE_CLICK_EVENT:
4824 #ifndef USE_TOOLKIT_SCROLL_BARS
4825 case SCROLL_BAR_CLICK_EVENT:
4826 #endif
4828 int button = event->code;
4829 int is_double;
4830 Lisp_Object position;
4831 Lisp_Object *start_pos_ptr;
4832 Lisp_Object start_pos;
4833 Lisp_Object window;
4835 position = Qnil;
4837 /* Build the position as appropriate for this mouse click. */
4838 if (event->kind == MOUSE_CLICK_EVENT)
4840 int part;
4841 struct frame *f = XFRAME (event->frame_or_window);
4842 Lisp_Object posn;
4843 Lisp_Object string_info = Qnil;
4844 int row, column;
4846 /* Ignore mouse events that were made on frame that
4847 have been deleted. */
4848 if (! FRAME_LIVE_P (f))
4849 return Qnil;
4851 /* EVENT->x and EVENT->y are frame-relative pixel
4852 coordinates at this place. Under old redisplay, COLUMN
4853 and ROW are set to frame relative glyph coordinates
4854 which are then used to determine whether this click is
4855 in a menu (non-toolkit version). */
4856 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
4857 &column, &row, NULL, 1);
4859 #ifndef USE_X_TOOLKIT
4860 /* In the non-toolkit version, clicks on the menu bar
4861 are ordinary button events in the event buffer.
4862 Distinguish them, and invoke the menu.
4864 (In the toolkit version, the toolkit handles the menu bar
4865 and Emacs doesn't know about it until after the user
4866 makes a selection.) */
4867 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
4868 && (event->modifiers & down_modifier))
4870 Lisp_Object items, item;
4871 int hpos;
4872 int i;
4874 #if 0
4875 /* Activate the menu bar on the down event. If the
4876 up event comes in before the menu code can deal with it,
4877 just ignore it. */
4878 if (! (event->modifiers & down_modifier))
4879 return Qnil;
4880 #endif
4882 /* Find the menu bar item under `column'. */
4883 item = Qnil;
4884 items = FRAME_MENU_BAR_ITEMS (f);
4885 for (i = 0; i < XVECTOR (items)->size; i += 4)
4887 Lisp_Object pos, string;
4888 string = AREF (items, i + 1);
4889 pos = AREF (items, i + 3);
4890 if (NILP (string))
4891 break;
4892 if (column >= XINT (pos)
4893 && column < XINT (pos) + XSTRING (string)->size)
4895 item = AREF (items, i);
4896 break;
4900 /* ELisp manual 2.4b says (x y) are window relative but
4901 code says they are frame-relative. */
4902 position
4903 = Fcons (event->frame_or_window,
4904 Fcons (Qmenu_bar,
4905 Fcons (Fcons (event->x, event->y),
4906 Fcons (make_number (event->timestamp),
4907 Qnil))));
4909 return Fcons (item, Fcons (position, Qnil));
4911 #endif /* not USE_X_TOOLKIT */
4913 /* Set `window' to the window under frame pixel coordinates
4914 event->x/event->y. */
4915 window = window_from_coordinates (f, XINT (event->x),
4916 XINT (event->y), &part, 0);
4918 if (!WINDOWP (window))
4920 window = event->frame_or_window;
4921 posn = Qnil;
4923 else
4925 /* It's a click in window window at frame coordinates
4926 event->x/ event->y. */
4927 struct window *w = XWINDOW (window);
4929 /* Get window relative coordinates. Original code
4930 `rounded' this to glyph boundaries. */
4931 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
4932 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
4934 /* Set event coordinates to window-relative coordinates
4935 for constructing the Lisp event below. */
4936 XSETINT (event->x, wx);
4937 XSETINT (event->y, wy);
4939 if (part == 1 || part == 3)
4941 /* Mode line or header line. Look for a string under
4942 the mouse that may have a `local-map' property. */
4943 Lisp_Object string;
4944 int charpos;
4946 posn = part == 1 ? Qmode_line : Qheader_line;
4947 string = mode_line_string (w, wx, wy, part == 1, &charpos);
4948 if (STRINGP (string))
4949 string_info = Fcons (string, make_number (charpos));
4951 else if (part == 2)
4952 posn = Qvertical_line;
4953 else if (part == 6 || part == 7)
4955 int charpos;
4956 Lisp_Object object = marginal_area_string (w, wx, wy, part,
4957 &charpos);
4958 posn = (part == 6) ? Qleft_margin : Qright_margin;
4959 if (STRINGP (object))
4960 string_info = Fcons (object, make_number (charpos));
4962 else
4964 Lisp_Object object;
4965 struct display_pos p;
4966 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
4967 posn = make_number (CHARPOS (p.pos));
4968 if (STRINGP (object))
4969 string_info
4970 = Fcons (object,
4971 make_number (CHARPOS (p.string_pos)));
4975 position
4976 = Fcons (window,
4977 Fcons (posn,
4978 Fcons (Fcons (event->x, event->y),
4979 Fcons (make_number (event->timestamp),
4980 (NILP (string_info)
4981 ? Qnil
4982 : Fcons (string_info, Qnil))))));
4984 #ifndef USE_TOOLKIT_SCROLL_BARS
4985 else
4987 /* It's a scrollbar click. */
4988 Lisp_Object portion_whole;
4989 Lisp_Object part;
4991 window = event->frame_or_window;
4992 portion_whole = Fcons (event->x, event->y);
4993 part = *scroll_bar_parts[(int) event->part];
4995 position
4996 = Fcons (window,
4997 Fcons (Qvertical_scroll_bar,
4998 Fcons (portion_whole,
4999 Fcons (make_number (event->timestamp),
5000 Fcons (part, Qnil)))));
5002 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5004 if (button >= ASIZE (button_down_location))
5006 button_down_location = larger_vector (button_down_location,
5007 button + 1, Qnil);
5008 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5011 start_pos_ptr = &AREF (button_down_location, button);
5012 start_pos = *start_pos_ptr;
5013 *start_pos_ptr = Qnil;
5016 /* On window-system frames, use the value of
5017 double-click-fuzz as is. On other frames, interpret it
5018 as a multiple of 1/8 characters. */
5019 struct frame *f;
5020 int fuzz;
5022 if (WINDOWP (event->frame_or_window))
5023 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5024 else if (FRAMEP (event->frame_or_window))
5025 f = XFRAME (event->frame_or_window);
5026 else
5027 abort ();
5029 if (FRAME_WINDOW_P (f))
5030 fuzz = double_click_fuzz;
5031 else
5032 fuzz = double_click_fuzz / 8;
5034 is_double = (button == last_mouse_button
5035 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5036 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5037 && button_down_time != 0
5038 && (EQ (Vdouble_click_time, Qt)
5039 || (INTEGERP (Vdouble_click_time)
5040 && ((int)(event->timestamp - button_down_time)
5041 < XINT (Vdouble_click_time)))));
5044 last_mouse_button = button;
5045 last_mouse_x = XINT (event->x);
5046 last_mouse_y = XINT (event->y);
5048 /* If this is a button press, squirrel away the location, so
5049 we can decide later whether it was a click or a drag. */
5050 if (event->modifiers & down_modifier)
5052 if (is_double)
5054 double_click_count++;
5055 event->modifiers |= ((double_click_count > 2)
5056 ? triple_modifier
5057 : double_modifier);
5059 else
5060 double_click_count = 1;
5061 button_down_time = event->timestamp;
5062 *start_pos_ptr = Fcopy_alist (position);
5065 /* Now we're releasing a button - check the co-ordinates to
5066 see if this was a click or a drag. */
5067 else if (event->modifiers & up_modifier)
5069 /* If we did not see a down before this up, ignore the up.
5070 Probably this happened because the down event chose a
5071 menu item. It would be an annoyance to treat the
5072 release of the button that chose the menu item as a
5073 separate event. */
5075 if (!CONSP (start_pos))
5076 return Qnil;
5078 event->modifiers &= ~up_modifier;
5079 #if 0 /* Formerly we treated an up with no down as a click event. */
5080 if (!CONSP (start_pos))
5081 event->modifiers |= click_modifier;
5082 else
5083 #endif
5085 Lisp_Object down;
5086 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5088 /* The third element of every position
5089 should be the (x,y) pair. */
5090 down = Fcar (Fcdr (Fcdr (start_pos)));
5091 if (CONSP (down)
5092 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5094 xdiff = XFASTINT (event->x) - XFASTINT (XCAR (down));
5095 ydiff = XFASTINT (event->y) - XFASTINT (XCDR (down));
5098 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5099 && ydiff < double_click_fuzz
5100 && ydiff > - double_click_fuzz)
5101 /* Mouse hasn't moved (much). */
5102 event->modifiers |= click_modifier;
5103 else
5105 button_down_time = 0;
5106 event->modifiers |= drag_modifier;
5109 /* Don't check is_double; treat this as multiple
5110 if the down-event was multiple. */
5111 if (double_click_count > 1)
5112 event->modifiers |= ((double_click_count > 2)
5113 ? triple_modifier
5114 : double_modifier);
5117 else
5118 /* Every mouse event should either have the down_modifier or
5119 the up_modifier set. */
5120 abort ();
5123 /* Get the symbol we should use for the mouse click. */
5124 Lisp_Object head;
5126 head = modify_event_symbol (button,
5127 event->modifiers,
5128 Qmouse_click, Vlispy_mouse_stem,
5129 NULL,
5130 &mouse_syms,
5131 XVECTOR (mouse_syms)->size);
5132 if (event->modifiers & drag_modifier)
5133 return Fcons (head,
5134 Fcons (start_pos,
5135 Fcons (position,
5136 Qnil)));
5137 else if (event->modifiers & (double_modifier | triple_modifier))
5138 return Fcons (head,
5139 Fcons (position,
5140 Fcons (make_number (double_click_count),
5141 Qnil)));
5142 else
5143 return Fcons (head,
5144 Fcons (position,
5145 Qnil));
5149 #if USE_TOOLKIT_SCROLL_BARS
5151 /* We don't have down and up events if using toolkit scroll bars,
5152 so make this always a click event. Store in the `part' of
5153 the Lisp event a symbol which maps to the following actions:
5155 `above_handle' page up
5156 `below_handle' page down
5157 `up' line up
5158 `down' line down
5159 `top' top of buffer
5160 `bottom' bottom of buffer
5161 `handle' thumb has been dragged.
5162 `end-scroll' end of interaction with scroll bar
5164 The incoming input_event contains in its `part' member an
5165 index of type `enum scroll_bar_part' which we can use as an
5166 index in scroll_bar_parts to get the appropriate symbol. */
5168 case SCROLL_BAR_CLICK_EVENT:
5170 Lisp_Object position, head, window, portion_whole, part;
5172 window = event->frame_or_window;
5173 portion_whole = Fcons (event->x, event->y);
5174 part = *scroll_bar_parts[(int) event->part];
5176 position
5177 = Fcons (window,
5178 Fcons (Qvertical_scroll_bar,
5179 Fcons (portion_whole,
5180 Fcons (make_number (event->timestamp),
5181 Fcons (part, Qnil)))));
5183 /* Always treat scroll bar events as clicks. */
5184 event->modifiers |= click_modifier;
5186 /* Get the symbol we should use for the mouse click. */
5187 head = modify_event_symbol (event->code,
5188 event->modifiers,
5189 Qmouse_click,
5190 Vlispy_mouse_stem,
5191 NULL, &mouse_syms,
5192 XVECTOR (mouse_syms)->size);
5193 return Fcons (head, Fcons (position, Qnil));
5196 #endif /* USE_TOOLKIT_SCROLL_BARS */
5198 #ifdef WINDOWSNT
5199 case W32_SCROLL_BAR_CLICK_EVENT:
5201 int button = event->code;
5202 int is_double;
5203 Lisp_Object position;
5204 Lisp_Object *start_pos_ptr;
5205 Lisp_Object start_pos;
5208 Lisp_Object window;
5209 Lisp_Object portion_whole;
5210 Lisp_Object part;
5212 window = event->frame_or_window;
5213 portion_whole = Fcons (event->x, event->y);
5214 part = *scroll_bar_parts[(int) event->part];
5216 position
5217 = Fcons (window,
5218 Fcons (Qvertical_scroll_bar,
5219 Fcons (portion_whole,
5220 Fcons (make_number (event->timestamp),
5221 Fcons (part, Qnil)))));
5224 /* Always treat W32 scroll bar events as clicks. */
5225 event->modifiers |= click_modifier;
5228 /* Get the symbol we should use for the mouse click. */
5229 Lisp_Object head;
5231 head = modify_event_symbol (button,
5232 event->modifiers,
5233 Qmouse_click,
5234 Vlispy_mouse_stem,
5235 NULL, &mouse_syms,
5236 XVECTOR (mouse_syms)->size);
5237 return Fcons (head,
5238 Fcons (position,
5239 Qnil));
5242 case MOUSE_WHEEL_EVENT:
5244 int part;
5245 FRAME_PTR f = XFRAME (event->frame_or_window);
5246 Lisp_Object window;
5247 Lisp_Object posn;
5248 Lisp_Object head, position;
5249 int row, column;
5251 /* Ignore mouse events that were made on frame that
5252 have been deleted. */
5253 if (! FRAME_LIVE_P (f))
5254 return Qnil;
5255 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5256 &column, &row, NULL, 1);
5257 window = window_from_coordinates (f, XINT (event->x),
5258 XINT (event->y), &part, 0);
5260 if (!WINDOWP (window))
5262 window = event->frame_or_window;
5263 posn = Qnil;
5265 else
5267 int pixcolumn, pixrow;
5268 column -= XINT (XWINDOW (window)->left);
5269 row -= XINT (XWINDOW (window)->top);
5270 glyph_to_pixel_coords (XWINDOW(window), column, row,
5271 &pixcolumn, &pixrow);
5272 XSETINT (event->x, pixcolumn);
5273 XSETINT (event->y, pixrow);
5275 if (part == 1)
5276 posn = Qmode_line;
5277 else if (part == 2)
5278 posn = Qvertical_line;
5279 else if (part == 3)
5280 posn = Qheader_line;
5281 else
5283 Lisp_Object object;
5284 struct display_pos p;
5285 buffer_posn_from_coords (XWINDOW (window), &column, &row,
5286 &object, &p);
5287 posn = make_number (CHARPOS (p.pos));
5292 Lisp_Object head, position;
5294 position
5295 = Fcons (window,
5296 Fcons (posn,
5297 Fcons (Fcons (event->x, event->y),
5298 Fcons (make_number (event->timestamp),
5299 Qnil))));
5301 head = modify_event_symbol (0, event->modifiers,
5302 Qmouse_wheel, Qnil,
5303 lispy_mouse_wheel_names,
5304 &mouse_wheel_syms, 1);
5305 return Fcons (head,
5306 Fcons (position,
5307 /* Insert 1 here so event-click-count works. */
5308 Fcons (make_number (1),
5309 Fcons (make_number (event->code),
5310 Qnil))));
5313 #endif /* WINDOWSNT */
5315 case DRAG_N_DROP_EVENT:
5317 int part;
5318 FRAME_PTR f;
5319 Lisp_Object window;
5320 Lisp_Object posn;
5321 Lisp_Object files;
5323 /* The frame_or_window field should be a cons of the frame in
5324 which the event occurred and a list of the filenames
5325 dropped. */
5326 if (! CONSP (event->frame_or_window))
5327 abort ();
5329 f = XFRAME (XCAR (event->frame_or_window));
5330 files = XCDR (event->frame_or_window);
5332 /* Ignore mouse events that were made on frames that
5333 have been deleted. */
5334 if (! FRAME_LIVE_P (f))
5335 return Qnil;
5337 window = window_from_coordinates (f, XINT (event->x),
5338 XINT (event->y), &part, 0);
5340 if (!WINDOWP (window))
5342 window = XCAR (event->frame_or_window);
5343 posn = Qnil;
5345 else
5347 /* It's an event in window `window' at frame coordinates
5348 event->x/ event->y. */
5349 struct window *w = XWINDOW (window);
5351 /* Get window relative coordinates. */
5352 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
5353 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
5355 /* Set event coordinates to window-relative coordinates
5356 for constructing the Lisp event below. */
5357 XSETINT (event->x, wx);
5358 XSETINT (event->y, wy);
5360 if (part == 1)
5361 posn = Qmode_line;
5362 else if (part == 2)
5363 posn = Qvertical_line;
5364 else if (part == 3)
5365 posn = Qheader_line;
5366 else
5368 Lisp_Object object;
5369 struct display_pos p;
5370 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5371 posn = make_number (CHARPOS (p.pos));
5376 Lisp_Object head, position;
5378 position
5379 = Fcons (window,
5380 Fcons (posn,
5381 Fcons (Fcons (event->x, event->y),
5382 Fcons (make_number (event->timestamp),
5383 Qnil))));
5385 head = modify_event_symbol (0, event->modifiers,
5386 Qdrag_n_drop, Qnil,
5387 lispy_drag_n_drop_names,
5388 &drag_n_drop_syms, 1);
5389 return Fcons (head,
5390 Fcons (position,
5391 Fcons (files,
5392 Qnil)));
5395 #endif /* HAVE_MOUSE */
5397 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS)
5398 case MENU_BAR_EVENT:
5399 if (EQ (event->arg, event->frame_or_window))
5400 /* This is the prefix key. We translate this to
5401 `(menu_bar)' because the code in keyboard.c for menu
5402 events, which we use, relies on this. */
5403 return Fcons (Qmenu_bar, Qnil);
5404 return event->arg;
5405 #endif
5407 case TOOL_BAR_EVENT:
5408 if (EQ (event->arg, event->frame_or_window))
5409 /* This is the prefix key. We translate this to
5410 `(tool_bar)' because the code in keyboard.c for tool bar
5411 events, which we use, relies on this. */
5412 return Fcons (Qtool_bar, Qnil);
5413 else if (SYMBOLP (event->arg))
5414 return apply_modifiers (event->modifiers, event->arg);
5415 return event->arg;
5417 case USER_SIGNAL_EVENT:
5418 /* A user signal. */
5419 return *lispy_user_signals[event->code];
5421 case SAVE_SESSION_EVENT:
5422 return Qsave_session;
5424 /* The 'kind' field of the event is something we don't recognize. */
5425 default:
5426 abort ();
5430 #ifdef HAVE_MOUSE
5432 static Lisp_Object
5433 make_lispy_movement (frame, bar_window, part, x, y, time)
5434 FRAME_PTR frame;
5435 Lisp_Object bar_window;
5436 enum scroll_bar_part part;
5437 Lisp_Object x, y;
5438 unsigned long time;
5440 /* Is it a scroll bar movement? */
5441 if (frame && ! NILP (bar_window))
5443 Lisp_Object part_sym;
5445 part_sym = *scroll_bar_parts[(int) part];
5446 return Fcons (Qscroll_bar_movement,
5447 (Fcons (Fcons (bar_window,
5448 Fcons (Qvertical_scroll_bar,
5449 Fcons (Fcons (x, y),
5450 Fcons (make_number (time),
5451 Fcons (part_sym,
5452 Qnil))))),
5453 Qnil)));
5456 /* Or is it an ordinary mouse movement? */
5457 else
5459 int area;
5460 Lisp_Object window;
5461 Lisp_Object posn;
5463 if (frame)
5464 /* It's in a frame; which window on that frame? */
5465 window = window_from_coordinates (frame, XINT (x), XINT (y), &area, 0);
5466 else
5467 window = Qnil;
5469 if (WINDOWP (window))
5471 struct window *w = XWINDOW (window);
5472 int wx, wy;
5474 /* Get window relative coordinates. */
5475 wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (x));
5476 wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (y));
5477 XSETINT (x, wx);
5478 XSETINT (y, wy);
5480 if (area == 1)
5481 posn = Qmode_line;
5482 else if (area == 2)
5483 posn = Qvertical_line;
5484 else if (area == 3)
5485 posn = Qheader_line;
5486 else
5488 Lisp_Object object;
5489 struct display_pos p;
5490 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5491 posn = make_number (CHARPOS (p.pos));
5494 else if (frame != 0)
5496 XSETFRAME (window, frame);
5497 posn = Qnil;
5499 else
5501 window = Qnil;
5502 posn = Qnil;
5503 XSETFASTINT (x, 0);
5504 XSETFASTINT (y, 0);
5507 return Fcons (Qmouse_movement,
5508 Fcons (Fcons (window,
5509 Fcons (posn,
5510 Fcons (Fcons (x, y),
5511 Fcons (make_number (time),
5512 Qnil)))),
5513 Qnil));
5517 #endif /* HAVE_MOUSE */
5519 /* Construct a switch frame event. */
5520 static Lisp_Object
5521 make_lispy_switch_frame (frame)
5522 Lisp_Object frame;
5524 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5527 /* Manipulating modifiers. */
5529 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
5531 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5532 SYMBOL's name of the end of the modifiers; the string from this
5533 position is the unmodified symbol name.
5535 This doesn't use any caches. */
5537 static int
5538 parse_modifiers_uncached (symbol, modifier_end)
5539 Lisp_Object symbol;
5540 int *modifier_end;
5542 struct Lisp_String *name;
5543 int i;
5544 int modifiers;
5546 CHECK_SYMBOL (symbol);
5548 modifiers = 0;
5549 name = XSTRING (SYMBOL_NAME (symbol));
5551 for (i = 0; i+2 <= STRING_BYTES (name); )
5553 int this_mod_end = 0;
5554 int this_mod = 0;
5556 /* See if the name continues with a modifier word.
5557 Check that the word appears, but don't check what follows it.
5558 Set this_mod and this_mod_end to record what we find. */
5560 switch (name->data[i])
5562 #define SINGLE_LETTER_MOD(BIT) \
5563 (this_mod_end = i + 1, this_mod = BIT)
5565 case 'A':
5566 SINGLE_LETTER_MOD (alt_modifier);
5567 break;
5569 case 'C':
5570 SINGLE_LETTER_MOD (ctrl_modifier);
5571 break;
5573 case 'H':
5574 SINGLE_LETTER_MOD (hyper_modifier);
5575 break;
5577 case 'M':
5578 SINGLE_LETTER_MOD (meta_modifier);
5579 break;
5581 case 'S':
5582 SINGLE_LETTER_MOD (shift_modifier);
5583 break;
5585 case 's':
5586 SINGLE_LETTER_MOD (super_modifier);
5587 break;
5589 #undef SINGLE_LETTER_MOD
5592 /* If we found no modifier, stop looking for them. */
5593 if (this_mod_end == 0)
5594 break;
5596 /* Check there is a dash after the modifier, so that it
5597 really is a modifier. */
5598 if (this_mod_end >= STRING_BYTES (name)
5599 || name->data[this_mod_end] != '-')
5600 break;
5602 /* This modifier is real; look for another. */
5603 modifiers |= this_mod;
5604 i = this_mod_end + 1;
5607 /* Should we include the `click' modifier? */
5608 if (! (modifiers & (down_modifier | drag_modifier
5609 | double_modifier | triple_modifier))
5610 && i + 7 == STRING_BYTES (name)
5611 && strncmp (name->data + i, "mouse-", 6) == 0
5612 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
5613 modifiers |= click_modifier;
5615 if (modifier_end)
5616 *modifier_end = i;
5618 return modifiers;
5621 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
5622 prepended to the string BASE[0..BASE_LEN-1].
5623 This doesn't use any caches. */
5624 static Lisp_Object
5625 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
5626 int modifiers;
5627 char *base;
5628 int base_len, base_len_byte;
5630 /* Since BASE could contain nulls, we can't use intern here; we have
5631 to use Fintern, which expects a genuine Lisp_String, and keeps a
5632 reference to it. */
5633 char *new_mods
5634 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
5635 int mod_len;
5638 char *p = new_mods;
5640 /* Only the event queue may use the `up' modifier; it should always
5641 be turned into a click or drag event before presented to lisp code. */
5642 if (modifiers & up_modifier)
5643 abort ();
5645 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
5646 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
5647 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
5648 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
5649 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
5650 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
5651 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
5652 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
5653 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
5654 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
5655 /* The click modifier is denoted by the absence of other modifiers. */
5657 *p = '\0';
5659 mod_len = p - new_mods;
5663 Lisp_Object new_name;
5665 new_name = make_uninit_multibyte_string (mod_len + base_len,
5666 mod_len + base_len_byte);
5667 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
5668 bcopy (base, XSTRING (new_name)->data + mod_len, base_len_byte);
5670 return Fintern (new_name, Qnil);
5675 static char *modifier_names[] =
5677 "up", "down", "drag", "click", "double", "triple", 0, 0,
5678 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5679 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
5681 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
5683 static Lisp_Object modifier_symbols;
5685 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
5686 static Lisp_Object
5687 lispy_modifier_list (modifiers)
5688 int modifiers;
5690 Lisp_Object modifier_list;
5691 int i;
5693 modifier_list = Qnil;
5694 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
5695 if (modifiers & (1<<i))
5696 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
5697 modifier_list);
5699 return modifier_list;
5703 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
5704 where UNMODIFIED is the unmodified form of SYMBOL,
5705 MASK is the set of modifiers present in SYMBOL's name.
5706 This is similar to parse_modifiers_uncached, but uses the cache in
5707 SYMBOL's Qevent_symbol_element_mask property, and maintains the
5708 Qevent_symbol_elements property. */
5710 Lisp_Object
5711 parse_modifiers (symbol)
5712 Lisp_Object symbol;
5714 Lisp_Object elements;
5716 elements = Fget (symbol, Qevent_symbol_element_mask);
5717 if (CONSP (elements))
5718 return elements;
5719 else
5721 int end;
5722 int modifiers = parse_modifiers_uncached (symbol, &end);
5723 Lisp_Object unmodified;
5724 Lisp_Object mask;
5726 unmodified = Fintern (make_string (XSTRING (SYMBOL_NAME (symbol))->data + end,
5727 STRING_BYTES (XSTRING (SYMBOL_NAME (symbol))) - end),
5728 Qnil);
5730 if (modifiers & ~VALMASK)
5731 abort ();
5732 XSETFASTINT (mask, modifiers);
5733 elements = Fcons (unmodified, Fcons (mask, Qnil));
5735 /* Cache the parsing results on SYMBOL. */
5736 Fput (symbol, Qevent_symbol_element_mask,
5737 elements);
5738 Fput (symbol, Qevent_symbol_elements,
5739 Fcons (unmodified, lispy_modifier_list (modifiers)));
5741 /* Since we know that SYMBOL is modifiers applied to unmodified,
5742 it would be nice to put that in unmodified's cache.
5743 But we can't, since we're not sure that parse_modifiers is
5744 canonical. */
5746 return elements;
5750 /* Apply the modifiers MODIFIERS to the symbol BASE.
5751 BASE must be unmodified.
5753 This is like apply_modifiers_uncached, but uses BASE's
5754 Qmodifier_cache property, if present. It also builds
5755 Qevent_symbol_elements properties, since it has that info anyway.
5757 apply_modifiers copies the value of BASE's Qevent_kind property to
5758 the modified symbol. */
5759 static Lisp_Object
5760 apply_modifiers (modifiers, base)
5761 int modifiers;
5762 Lisp_Object base;
5764 Lisp_Object cache, index, entry, new_symbol;
5766 /* Mask out upper bits. We don't know where this value's been. */
5767 modifiers &= VALMASK;
5769 /* The click modifier never figures into cache indices. */
5770 cache = Fget (base, Qmodifier_cache);
5771 XSETFASTINT (index, (modifiers & ~click_modifier));
5772 entry = assq_no_quit (index, cache);
5774 if (CONSP (entry))
5775 new_symbol = XCDR (entry);
5776 else
5778 /* We have to create the symbol ourselves. */
5779 new_symbol = apply_modifiers_uncached (modifiers,
5780 XSTRING (SYMBOL_NAME (base))->data,
5781 XSTRING (SYMBOL_NAME (base))->size,
5782 STRING_BYTES (XSTRING (SYMBOL_NAME (base))));
5784 /* Add the new symbol to the base's cache. */
5785 entry = Fcons (index, new_symbol);
5786 Fput (base, Qmodifier_cache, Fcons (entry, cache));
5788 /* We have the parsing info now for free, so add it to the caches. */
5789 XSETFASTINT (index, modifiers);
5790 Fput (new_symbol, Qevent_symbol_element_mask,
5791 Fcons (base, Fcons (index, Qnil)));
5792 Fput (new_symbol, Qevent_symbol_elements,
5793 Fcons (base, lispy_modifier_list (modifiers)));
5796 /* Make sure this symbol is of the same kind as BASE.
5798 You'd think we could just set this once and for all when we
5799 intern the symbol above, but reorder_modifiers may call us when
5800 BASE's property isn't set right; we can't assume that just
5801 because it has a Qmodifier_cache property it must have its
5802 Qevent_kind set right as well. */
5803 if (NILP (Fget (new_symbol, Qevent_kind)))
5805 Lisp_Object kind;
5807 kind = Fget (base, Qevent_kind);
5808 if (! NILP (kind))
5809 Fput (new_symbol, Qevent_kind, kind);
5812 return new_symbol;
5816 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
5817 return a symbol with the modifiers placed in the canonical order.
5818 Canonical order is alphabetical, except for down and drag, which
5819 always come last. The 'click' modifier is never written out.
5821 Fdefine_key calls this to make sure that (for example) C-M-foo
5822 and M-C-foo end up being equivalent in the keymap. */
5824 Lisp_Object
5825 reorder_modifiers (symbol)
5826 Lisp_Object symbol;
5828 /* It's hopefully okay to write the code this way, since everything
5829 will soon be in caches, and no consing will be done at all. */
5830 Lisp_Object parsed;
5832 parsed = parse_modifiers (symbol);
5833 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
5834 XCAR (parsed));
5838 /* For handling events, we often want to produce a symbol whose name
5839 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
5840 to some base, like the name of a function key or mouse button.
5841 modify_event_symbol produces symbols of this sort.
5843 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
5844 is the name of the i'th symbol. TABLE_SIZE is the number of elements
5845 in the table.
5847 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
5848 into symbol names, or a string specifying a name stem used to
5849 construct a symbol name or the form `STEM-N', where N is the decimal
5850 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
5851 non-nil; otherwise NAME_TABLE is used.
5853 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
5854 persist between calls to modify_event_symbol that it can use to
5855 store a cache of the symbols it's generated for this NAME_TABLE
5856 before. The object stored there may be a vector or an alist.
5858 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
5860 MODIFIERS is a set of modifier bits (as given in struct input_events)
5861 whose prefixes should be applied to the symbol name.
5863 SYMBOL_KIND is the value to be placed in the event_kind property of
5864 the returned symbol.
5866 The symbols we create are supposed to have an
5867 `event-symbol-elements' property, which lists the modifiers present
5868 in the symbol's name. */
5870 static Lisp_Object
5871 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
5872 name_table, symbol_table, table_size)
5873 int symbol_num;
5874 unsigned modifiers;
5875 Lisp_Object symbol_kind;
5876 Lisp_Object name_alist_or_stem;
5877 char **name_table;
5878 Lisp_Object *symbol_table;
5879 unsigned int table_size;
5881 Lisp_Object value;
5882 Lisp_Object symbol_int;
5884 /* Get rid of the "vendor-specific" bit here. */
5885 XSETINT (symbol_int, symbol_num & 0xffffff);
5887 /* Is this a request for a valid symbol? */
5888 if (symbol_num < 0 || symbol_num >= table_size)
5889 return Qnil;
5891 if (CONSP (*symbol_table))
5892 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
5894 /* If *symbol_table doesn't seem to be initialized properly, fix that.
5895 *symbol_table should be a lisp vector TABLE_SIZE elements long,
5896 where the Nth element is the symbol for NAME_TABLE[N], or nil if
5897 we've never used that symbol before. */
5898 else
5900 if (! VECTORP (*symbol_table)
5901 || XVECTOR (*symbol_table)->size != table_size)
5903 Lisp_Object size;
5905 XSETFASTINT (size, table_size);
5906 *symbol_table = Fmake_vector (size, Qnil);
5909 value = XVECTOR (*symbol_table)->contents[symbol_num];
5912 /* Have we already used this symbol before? */
5913 if (NILP (value))
5915 /* No; let's create it. */
5916 if (CONSP (name_alist_or_stem))
5917 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
5918 else if (STRINGP (name_alist_or_stem))
5920 int len = STRING_BYTES (XSTRING (name_alist_or_stem));
5921 char *buf = (char *) alloca (len + 50);
5922 sprintf (buf, "%s-%d", XSTRING (name_alist_or_stem)->data,
5923 XINT (symbol_int) + 1);
5924 value = intern (buf);
5926 else if (name_table != 0 && name_table[symbol_num])
5927 value = intern (name_table[symbol_num]);
5929 #ifdef HAVE_WINDOW_SYSTEM
5930 if (NILP (value))
5932 char *name = x_get_keysym_name (symbol_num);
5933 if (name)
5934 value = intern (name);
5936 #endif
5938 if (NILP (value))
5940 char buf[20];
5941 sprintf (buf, "key-%d", symbol_num);
5942 value = intern (buf);
5945 if (CONSP (*symbol_table))
5946 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
5947 else
5948 XVECTOR (*symbol_table)->contents[symbol_num] = value;
5950 /* Fill in the cache entries for this symbol; this also
5951 builds the Qevent_symbol_elements property, which the user
5952 cares about. */
5953 apply_modifiers (modifiers & click_modifier, value);
5954 Fput (value, Qevent_kind, symbol_kind);
5957 /* Apply modifiers to that symbol. */
5958 return apply_modifiers (modifiers, value);
5961 /* Convert a list that represents an event type,
5962 such as (ctrl meta backspace), into the usual representation of that
5963 event type as a number or a symbol. */
5965 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
5966 doc: /* Convert the event description list EVENT-DESC to an event type.
5967 EVENT-DESC should contain one base event type (a character or symbol)
5968 and zero or more modifier names (control, meta, hyper, super, shift, alt,
5969 drag, down, double or triple). The base must be last.
5970 The return value is an event type (a character or symbol) which
5971 has the same base event type and all the specified modifiers. */)
5972 (event_desc)
5973 Lisp_Object event_desc;
5975 Lisp_Object base;
5976 int modifiers = 0;
5977 Lisp_Object rest;
5979 base = Qnil;
5980 rest = event_desc;
5981 while (CONSP (rest))
5983 Lisp_Object elt;
5984 int this = 0;
5986 elt = XCAR (rest);
5987 rest = XCDR (rest);
5989 /* Given a symbol, see if it is a modifier name. */
5990 if (SYMBOLP (elt) && CONSP (rest))
5991 this = parse_solitary_modifier (elt);
5993 if (this != 0)
5994 modifiers |= this;
5995 else if (!NILP (base))
5996 error ("Two bases given in one event");
5997 else
5998 base = elt;
6002 /* Let the symbol A refer to the character A. */
6003 if (SYMBOLP (base) && XSTRING (SYMBOL_NAME (base))->size == 1)
6004 XSETINT (base, XSTRING (SYMBOL_NAME (base))->data[0]);
6006 if (INTEGERP (base))
6008 /* Turn (shift a) into A. */
6009 if ((modifiers & shift_modifier) != 0
6010 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6012 XSETINT (base, XINT (base) - ('a' - 'A'));
6013 modifiers &= ~shift_modifier;
6016 /* Turn (control a) into C-a. */
6017 if (modifiers & ctrl_modifier)
6018 return make_number ((modifiers & ~ctrl_modifier)
6019 | make_ctrl_char (XINT (base)));
6020 else
6021 return make_number (modifiers | XINT (base));
6023 else if (SYMBOLP (base))
6024 return apply_modifiers (modifiers, base);
6025 else
6027 error ("Invalid base event");
6028 return Qnil;
6032 /* Try to recognize SYMBOL as a modifier name.
6033 Return the modifier flag bit, or 0 if not recognized. */
6035 static int
6036 parse_solitary_modifier (symbol)
6037 Lisp_Object symbol;
6039 struct Lisp_String *name = XSTRING (SYMBOL_NAME (symbol));
6041 switch (name->data[0])
6043 #define SINGLE_LETTER_MOD(BIT) \
6044 if (STRING_BYTES (name) == 1) \
6045 return BIT;
6047 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6048 if (LEN == STRING_BYTES (name) \
6049 && ! strncmp (name->data, NAME, LEN)) \
6050 return BIT;
6052 case 'A':
6053 SINGLE_LETTER_MOD (alt_modifier);
6054 break;
6056 case 'a':
6057 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6058 break;
6060 case 'C':
6061 SINGLE_LETTER_MOD (ctrl_modifier);
6062 break;
6064 case 'c':
6065 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6066 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6067 break;
6069 case 'H':
6070 SINGLE_LETTER_MOD (hyper_modifier);
6071 break;
6073 case 'h':
6074 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6075 break;
6077 case 'M':
6078 SINGLE_LETTER_MOD (meta_modifier);
6079 break;
6081 case 'm':
6082 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6083 break;
6085 case 'S':
6086 SINGLE_LETTER_MOD (shift_modifier);
6087 break;
6089 case 's':
6090 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6091 MULTI_LETTER_MOD (super_modifier, "super", 5);
6092 SINGLE_LETTER_MOD (super_modifier);
6093 break;
6095 case 'd':
6096 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6097 MULTI_LETTER_MOD (down_modifier, "down", 4);
6098 MULTI_LETTER_MOD (double_modifier, "double", 6);
6099 break;
6101 case 't':
6102 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6103 break;
6105 #undef SINGLE_LETTER_MOD
6106 #undef MULTI_LETTER_MOD
6109 return 0;
6112 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6113 Such a list is not valid as an event,
6114 but it can be a Lucid-style event type list. */
6117 lucid_event_type_list_p (object)
6118 Lisp_Object object;
6120 Lisp_Object tail;
6122 if (! CONSP (object))
6123 return 0;
6125 if (EQ (XCAR (object), Qhelp_echo)
6126 || EQ (XCAR (object), Qvertical_line)
6127 || EQ (XCAR (object), Qmode_line)
6128 || EQ (XCAR (object), Qheader_line))
6129 return 0;
6131 for (tail = object; CONSP (tail); tail = XCDR (tail))
6133 Lisp_Object elt;
6134 elt = XCAR (tail);
6135 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6136 return 0;
6139 return NILP (tail);
6142 /* Store into *addr a value nonzero if terminal input chars are available.
6143 Serves the purpose of ioctl (0, FIONREAD, addr)
6144 but works even if FIONREAD does not exist.
6145 (In fact, this may actually read some input.)
6147 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
6149 static void
6150 get_input_pending (addr, do_timers_now)
6151 int *addr;
6152 int do_timers_now;
6154 /* First of all, have we already counted some input? */
6155 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
6157 /* If input is being read as it arrives, and we have none, there is none. */
6158 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6159 return;
6161 /* Try to read some input and see how much we get. */
6162 gobble_input (0);
6163 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
6166 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6168 void
6169 gobble_input (expected)
6170 int expected;
6172 #ifndef VMS
6173 #ifdef SIGIO
6174 if (interrupt_input)
6176 SIGMASKTYPE mask;
6177 mask = sigblock (sigmask (SIGIO));
6178 read_avail_input (expected);
6179 sigsetmask (mask);
6181 else
6182 #ifdef POLL_FOR_INPUT
6183 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6185 SIGMASKTYPE mask;
6186 mask = sigblock (sigmask (SIGALRM));
6187 read_avail_input (expected);
6188 sigsetmask (mask);
6190 else
6191 #endif
6192 #endif
6193 read_avail_input (expected);
6194 #endif
6197 /* Put a BUFFER_SWITCH_EVENT in the buffer
6198 so that read_key_sequence will notice the new current buffer. */
6200 void
6201 record_asynch_buffer_change ()
6203 struct input_event event;
6204 Lisp_Object tem;
6206 event.kind = BUFFER_SWITCH_EVENT;
6207 event.frame_or_window = Qnil;
6208 event.arg = Qnil;
6210 #ifdef subprocesses
6211 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6212 The purpose of the event is to make read_key_sequence look up the
6213 keymaps again. If we aren't in read_key_sequence, we don't need one,
6214 and the event could cause trouble by messing up (input-pending-p). */
6215 tem = Fwaiting_for_user_input_p ();
6216 if (NILP (tem))
6217 return;
6218 #else
6219 /* We never need these events if we have no asynchronous subprocesses. */
6220 return;
6221 #endif
6223 /* Make sure no interrupt happens while storing the event. */
6224 #ifdef SIGIO
6225 if (interrupt_input)
6227 SIGMASKTYPE mask;
6228 mask = sigblock (sigmask (SIGIO));
6229 kbd_buffer_store_event (&event);
6230 sigsetmask (mask);
6232 else
6233 #endif
6235 stop_polling ();
6236 kbd_buffer_store_event (&event);
6237 start_polling ();
6241 #ifndef VMS
6243 /* Read any terminal input already buffered up by the system
6244 into the kbd_buffer, but do not wait.
6246 EXPECTED should be nonzero if the caller knows there is some input.
6248 Except on VMS, all input is read by this function.
6249 If interrupt_input is nonzero, this function MUST be called
6250 only when SIGIO is blocked.
6252 Returns the number of keyboard chars read, or -1 meaning
6253 this is a bad time to try to read input. */
6255 static int
6256 read_avail_input (expected)
6257 int expected;
6259 struct input_event buf[KBD_BUFFER_SIZE];
6260 register int i;
6261 int nread;
6263 if (read_socket_hook)
6264 /* No need for FIONREAD or fcntl; just say don't wait. */
6265 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE, expected);
6266 else
6268 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6269 the kbd_buffer can really hold. That may prevent loss
6270 of characters on some systems when input is stuffed at us. */
6271 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6272 int n_to_read;
6274 /* Determine how many characters we should *try* to read. */
6275 #ifdef WINDOWSNT
6276 return 0;
6277 #else /* not WINDOWSNT */
6278 #ifdef MSDOS
6279 n_to_read = dos_keysns ();
6280 if (n_to_read == 0)
6281 return 0;
6282 #else /* not MSDOS */
6283 #ifdef FIONREAD
6284 /* Find out how much input is available. */
6285 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6286 /* Formerly simply reported no input, but that sometimes led to
6287 a failure of Emacs to terminate.
6288 SIGHUP seems appropriate if we can't reach the terminal. */
6289 /* ??? Is it really right to send the signal just to this process
6290 rather than to the whole process group?
6291 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6292 kill (getpid (), SIGHUP);
6293 if (n_to_read == 0)
6294 return 0;
6295 if (n_to_read > sizeof cbuf)
6296 n_to_read = sizeof cbuf;
6297 #else /* no FIONREAD */
6298 #if defined (USG) || defined (DGUX)
6299 /* Read some input if available, but don't wait. */
6300 n_to_read = sizeof cbuf;
6301 fcntl (input_fd, F_SETFL, O_NDELAY);
6302 #else
6303 you lose;
6304 #endif
6305 #endif
6306 #endif /* not MSDOS */
6307 #endif /* not WINDOWSNT */
6309 /* Now read; for one reason or another, this will not block.
6310 NREAD is set to the number of chars read. */
6313 #ifdef MSDOS
6314 cbuf[0] = dos_keyread ();
6315 nread = 1;
6316 #else
6317 nread = emacs_read (input_fd, cbuf, n_to_read);
6318 #endif
6319 /* POSIX infers that processes which are not in the session leader's
6320 process group won't get SIGHUP's at logout time. BSDI adheres to
6321 this part standard and returns -1 from read (0) with errno==EIO
6322 when the control tty is taken away.
6323 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6324 if (nread == -1 && errno == EIO)
6325 kill (0, SIGHUP);
6326 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6327 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6328 This looks incorrect, but it isn't, because _BSD causes
6329 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6330 and that causes a value other than 0 when there is no input. */
6331 if (nread == 0)
6332 kill (0, SIGHUP);
6333 #endif
6335 while (
6336 /* We used to retry the read if it was interrupted.
6337 But this does the wrong thing when O_NDELAY causes
6338 an EAGAIN error. Does anybody know of a situation
6339 where a retry is actually needed? */
6340 #if 0
6341 nread < 0 && (errno == EAGAIN
6342 #ifdef EFAULT
6343 || errno == EFAULT
6344 #endif
6345 #ifdef EBADSLT
6346 || errno == EBADSLT
6347 #endif
6349 #else
6351 #endif
6354 #ifndef FIONREAD
6355 #if defined (USG) || defined (DGUX)
6356 fcntl (input_fd, F_SETFL, 0);
6357 #endif /* USG or DGUX */
6358 #endif /* no FIONREAD */
6359 for (i = 0; i < nread; i++)
6361 buf[i].kind = ASCII_KEYSTROKE_EVENT;
6362 buf[i].modifiers = 0;
6363 if (meta_key == 1 && (cbuf[i] & 0x80))
6364 buf[i].modifiers = meta_modifier;
6365 if (meta_key != 2)
6366 cbuf[i] &= ~0x80;
6368 buf[i].code = cbuf[i];
6369 buf[i].frame_or_window = selected_frame;
6370 buf[i].arg = Qnil;
6374 /* Scan the chars for C-g and store them in kbd_buffer. */
6375 for (i = 0; i < nread; i++)
6377 kbd_buffer_store_event (&buf[i]);
6378 /* Don't look at input that follows a C-g too closely.
6379 This reduces lossage due to autorepeat on C-g. */
6380 if (buf[i].kind == ASCII_KEYSTROKE_EVENT
6381 && buf[i].code == quit_char)
6382 break;
6385 return nread;
6387 #endif /* not VMS */
6389 #ifdef SIGIO /* for entire page */
6390 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6392 SIGTYPE
6393 input_available_signal (signo)
6394 int signo;
6396 /* Must preserve main program's value of errno. */
6397 int old_errno = errno;
6398 #ifdef BSD4_1
6399 extern int select_alarmed;
6400 #endif
6402 #if defined (USG) && !defined (POSIX_SIGNALS)
6403 /* USG systems forget handlers when they are used;
6404 must reestablish each time */
6405 signal (signo, input_available_signal);
6406 #endif /* USG */
6408 #ifdef BSD4_1
6409 sigisheld (SIGIO);
6410 #endif
6412 if (input_available_clear_time)
6413 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6415 while (1)
6417 int nread;
6418 nread = read_avail_input (1);
6419 /* -1 means it's not ok to read the input now.
6420 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6421 0 means there was no keyboard input available. */
6422 if (nread <= 0)
6423 break;
6425 #ifdef BSD4_1
6426 select_alarmed = 1; /* Force the select emulator back to life */
6427 #endif
6430 #ifdef BSD4_1
6431 sigfree ();
6432 #endif
6433 errno = old_errno;
6435 #endif /* SIGIO */
6437 /* Send ourselves a SIGIO.
6439 This function exists so that the UNBLOCK_INPUT macro in
6440 blockinput.h can have some way to take care of input we put off
6441 dealing with, without assuming that every file which uses
6442 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6443 void
6444 reinvoke_input_signal ()
6446 #ifdef SIGIO
6447 kill (getpid (), SIGIO);
6448 #endif
6453 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object));
6454 static void menu_bar_one_keymap P_ ((Lisp_Object));
6456 /* These variables hold the vector under construction within
6457 menu_bar_items and its subroutines, and the current index
6458 for storing into that vector. */
6459 static Lisp_Object menu_bar_items_vector;
6460 static int menu_bar_items_index;
6462 /* Return a vector of menu items for a menu bar, appropriate
6463 to the current buffer. Each item has three elements in the vector:
6464 KEY STRING MAPLIST.
6466 OLD is an old vector we can optionally reuse, or nil. */
6468 Lisp_Object
6469 menu_bar_items (old)
6470 Lisp_Object old;
6472 /* The number of keymaps we're scanning right now, and the number of
6473 keymaps we have allocated space for. */
6474 int nmaps;
6476 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6477 in the current keymaps, or nil where it is not a prefix. */
6478 Lisp_Object *maps;
6480 Lisp_Object def, tail;
6482 Lisp_Object result;
6484 int mapno;
6485 Lisp_Object oquit;
6487 int i;
6489 struct gcpro gcpro1;
6491 /* In order to build the menus, we need to call the keymap
6492 accessors. They all call QUIT. But this function is called
6493 during redisplay, during which a quit is fatal. So inhibit
6494 quitting while building the menus.
6495 We do this instead of specbind because (1) errors will clear it anyway
6496 and (2) this avoids risk of specpdl overflow. */
6497 oquit = Vinhibit_quit;
6498 Vinhibit_quit = Qt;
6500 if (!NILP (old))
6501 menu_bar_items_vector = old;
6502 else
6503 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6504 menu_bar_items_index = 0;
6506 GCPRO1 (menu_bar_items_vector);
6508 /* Build our list of keymaps.
6509 If we recognize a function key and replace its escape sequence in
6510 keybuf with its symbol, or if the sequence starts with a mouse
6511 click and we need to switch buffers, we jump back here to rebuild
6512 the initial keymaps from the current buffer. */
6514 Lisp_Object *tmaps;
6516 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6517 if (!NILP (Voverriding_local_map_menu_flag))
6519 /* Yes, use them (if non-nil) as well as the global map. */
6520 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
6521 nmaps = 0;
6522 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6523 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6524 if (!NILP (Voverriding_local_map))
6525 maps[nmaps++] = Voverriding_local_map;
6527 else
6529 /* No, so use major and minor mode keymaps and keymap property.
6530 Note that menu-bar bindings in the local-map and keymap
6531 properties may not work reliable, as they are only
6532 recognized when the menu-bar (or mode-line) is updated,
6533 which does not normally happen after every command. */
6534 Lisp_Object tem;
6535 int nminor;
6536 nminor = current_minor_maps (NULL, &tmaps);
6537 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
6538 nmaps = 0;
6539 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
6540 maps[nmaps++] = tem;
6541 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
6542 nmaps += nminor;
6543 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
6545 maps[nmaps++] = current_global_map;
6548 /* Look up in each map the dummy prefix key `menu-bar'. */
6550 result = Qnil;
6552 for (mapno = nmaps - 1; mapno >= 0; mapno--)
6553 if (!NILP (maps[mapno]))
6555 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
6556 0, 1);
6557 if (CONSP (def))
6558 menu_bar_one_keymap (def);
6561 /* Move to the end those items that should be at the end. */
6563 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
6565 int i;
6566 int end = menu_bar_items_index;
6568 for (i = 0; i < end; i += 4)
6569 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
6571 Lisp_Object tem0, tem1, tem2, tem3;
6572 /* Move the item at index I to the end,
6573 shifting all the others forward. */
6574 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
6575 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
6576 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6577 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
6578 if (end > i + 4)
6579 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6580 &XVECTOR (menu_bar_items_vector)->contents[i],
6581 (end - i - 4) * sizeof (Lisp_Object));
6582 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
6583 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
6584 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
6585 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
6586 break;
6590 /* Add nil, nil, nil, nil at the end. */
6591 i = menu_bar_items_index;
6592 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6594 Lisp_Object tem;
6595 tem = Fmake_vector (make_number (2 * i), Qnil);
6596 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6597 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6598 menu_bar_items_vector = tem;
6600 /* Add this item. */
6601 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6602 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6603 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6604 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6605 menu_bar_items_index = i;
6607 Vinhibit_quit = oquit;
6608 UNGCPRO;
6609 return menu_bar_items_vector;
6612 /* Scan one map KEYMAP, accumulating any menu items it defines
6613 in menu_bar_items_vector. */
6615 static Lisp_Object menu_bar_one_keymap_changed_items;
6617 static void
6618 menu_bar_one_keymap (keymap)
6619 Lisp_Object keymap;
6621 Lisp_Object tail, item;
6623 menu_bar_one_keymap_changed_items = Qnil;
6625 /* Loop over all keymap entries that have menu strings. */
6626 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
6628 item = XCAR (tail);
6629 if (CONSP (item))
6630 menu_bar_item (XCAR (item), XCDR (item));
6631 else if (VECTORP (item))
6633 /* Loop over the char values represented in the vector. */
6634 int len = XVECTOR (item)->size;
6635 int c;
6636 for (c = 0; c < len; c++)
6638 Lisp_Object character;
6639 XSETFASTINT (character, c);
6640 menu_bar_item (character, XVECTOR (item)->contents[c]);
6646 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
6647 If there's already an item for KEY, add this DEF to it. */
6649 Lisp_Object item_properties;
6651 static void
6652 menu_bar_item (key, item)
6653 Lisp_Object key, item;
6655 struct gcpro gcpro1;
6656 int i;
6657 Lisp_Object tem;
6659 if (EQ (item, Qundefined))
6661 /* If a map has an explicit `undefined' as definition,
6662 discard any previously made menu bar item. */
6664 for (i = 0; i < menu_bar_items_index; i += 4)
6665 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6667 if (menu_bar_items_index > i + 4)
6668 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6669 &XVECTOR (menu_bar_items_vector)->contents[i],
6670 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
6671 menu_bar_items_index -= 4;
6675 /* If this keymap has already contributed to this KEY,
6676 don't contribute to it a second time. */
6677 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
6678 if (!NILP (tem) || NILP (item))
6679 return;
6681 menu_bar_one_keymap_changed_items
6682 = Fcons (key, menu_bar_one_keymap_changed_items);
6684 /* We add to menu_bar_one_keymap_changed_items before doing the
6685 parse_menu_item, so that if it turns out it wasn't a menu item,
6686 it still correctly hides any further menu item. */
6687 GCPRO1 (key);
6688 i = parse_menu_item (item, 0, 1);
6689 UNGCPRO;
6690 if (!i)
6691 return;
6693 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
6695 /* Find any existing item for this KEY. */
6696 for (i = 0; i < menu_bar_items_index; i += 4)
6697 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6698 break;
6700 /* If we did not find this KEY, add it at the end. */
6701 if (i == menu_bar_items_index)
6703 /* If vector is too small, get a bigger one. */
6704 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6706 Lisp_Object tem;
6707 tem = Fmake_vector (make_number (2 * i), Qnil);
6708 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6709 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6710 menu_bar_items_vector = tem;
6713 /* Add this item. */
6714 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
6715 XVECTOR (menu_bar_items_vector)->contents[i++]
6716 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
6717 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
6718 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
6719 menu_bar_items_index = i;
6721 /* We did find an item for this KEY. Add ITEM to its list of maps. */
6722 else
6724 Lisp_Object old;
6725 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6726 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (item, old);
6730 /* This is used as the handler when calling menu_item_eval_property. */
6731 static Lisp_Object
6732 menu_item_eval_property_1 (arg)
6733 Lisp_Object arg;
6735 /* If we got a quit from within the menu computation,
6736 quit all the way out of it. This takes care of C-] in the debugger. */
6737 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
6738 Fsignal (Qquit, Qnil);
6740 return Qnil;
6743 /* Evaluate an expression and return the result (or nil if something
6744 went wrong). Used to evaluate dynamic parts of menu items. */
6745 Lisp_Object
6746 menu_item_eval_property (sexpr)
6747 Lisp_Object sexpr;
6749 int count = specpdl_ptr - specpdl;
6750 Lisp_Object val;
6751 specbind (Qinhibit_redisplay, Qt);
6752 val = internal_condition_case_1 (Feval, sexpr, Qerror,
6753 menu_item_eval_property_1);
6754 return unbind_to (count, val);
6757 /* This function parses a menu item and leaves the result in the
6758 vector item_properties.
6759 ITEM is a key binding, a possible menu item.
6760 If NOTREAL is nonzero, only check for equivalent key bindings, don't
6761 evaluate dynamic expressions in the menu item.
6762 INMENUBAR is > 0 when this is considered for an entry in a menu bar
6763 top level.
6764 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
6765 parse_menu_item returns true if the item is a menu item and false
6766 otherwise. */
6769 parse_menu_item (item, notreal, inmenubar)
6770 Lisp_Object item;
6771 int notreal, inmenubar;
6773 Lisp_Object def, tem, item_string, start;
6774 Lisp_Object cachelist;
6775 Lisp_Object filter;
6776 Lisp_Object keyhint;
6777 int i;
6778 int newcache = 0;
6780 cachelist = Qnil;
6781 filter = Qnil;
6782 keyhint = Qnil;
6784 if (!CONSP (item))
6785 return 0;
6787 /* Create item_properties vector if necessary. */
6788 if (NILP (item_properties))
6789 item_properties
6790 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
6792 /* Initialize optional entries. */
6793 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
6794 AREF (item_properties, i) = Qnil;
6795 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
6797 /* Save the item here to protect it from GC. */
6798 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
6800 item_string = XCAR (item);
6802 start = item;
6803 item = XCDR (item);
6804 if (STRINGP (item_string))
6806 /* Old format menu item. */
6807 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
6809 /* Maybe help string. */
6810 if (CONSP (item) && STRINGP (XCAR (item)))
6812 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
6813 start = item;
6814 item = XCDR (item);
6817 /* Maybe key binding cache. */
6818 if (CONSP (item) && CONSP (XCAR (item))
6819 && (NILP (XCAR (XCAR (item)))
6820 || VECTORP (XCAR (XCAR (item)))))
6822 cachelist = XCAR (item);
6823 item = XCDR (item);
6826 /* This is the real definition--the function to run. */
6827 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
6829 /* Get enable property, if any. */
6830 if (SYMBOLP (item))
6832 tem = Fget (item, Qmenu_enable);
6833 if (!NILP (tem))
6834 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
6837 else if (EQ (item_string, Qmenu_item) && CONSP (item))
6839 /* New format menu item. */
6840 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
6841 start = XCDR (item);
6842 if (CONSP (start))
6844 /* We have a real binding. */
6845 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
6847 item = XCDR (start);
6848 /* Is there a cache list with key equivalences. */
6849 if (CONSP (item) && CONSP (XCAR (item)))
6851 cachelist = XCAR (item);
6852 item = XCDR (item);
6855 /* Parse properties. */
6856 while (CONSP (item) && CONSP (XCDR (item)))
6858 tem = XCAR (item);
6859 item = XCDR (item);
6861 if (EQ (tem, QCenable))
6862 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
6863 else if (EQ (tem, QCvisible) && !notreal)
6865 /* If got a visible property and that evaluates to nil
6866 then ignore this item. */
6867 tem = menu_item_eval_property (XCAR (item));
6868 if (NILP (tem))
6869 return 0;
6871 else if (EQ (tem, QChelp))
6872 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
6873 else if (EQ (tem, QCfilter))
6874 filter = item;
6875 else if (EQ (tem, QCkey_sequence))
6877 tem = XCAR (item);
6878 if (NILP (cachelist)
6879 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
6880 /* Be GC protected. Set keyhint to item instead of tem. */
6881 keyhint = item;
6883 else if (EQ (tem, QCkeys))
6885 tem = XCAR (item);
6886 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
6887 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
6889 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
6891 Lisp_Object type;
6892 tem = XCAR (item);
6893 type = XCAR (tem);
6894 if (EQ (type, QCtoggle) || EQ (type, QCradio))
6896 AREF (item_properties, ITEM_PROPERTY_SELECTED)
6897 = XCDR (tem);
6898 AREF (item_properties, ITEM_PROPERTY_TYPE)
6899 = type;
6902 item = XCDR (item);
6905 else if (inmenubar || !NILP (start))
6906 return 0;
6908 else
6909 return 0; /* not a menu item */
6911 /* If item string is not a string, evaluate it to get string.
6912 If we don't get a string, skip this item. */
6913 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
6914 if (!(STRINGP (item_string) || notreal))
6916 item_string = menu_item_eval_property (item_string);
6917 if (!STRINGP (item_string))
6918 return 0;
6919 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
6922 /* If got a filter apply it on definition. */
6923 def = AREF (item_properties, ITEM_PROPERTY_DEF);
6924 if (!NILP (filter))
6926 def = menu_item_eval_property (list2 (XCAR (filter),
6927 list2 (Qquote, def)));
6929 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
6932 /* Enable or disable selection of item. */
6933 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
6934 if (!EQ (tem, Qt))
6936 if (notreal)
6937 tem = Qt;
6938 else
6939 tem = menu_item_eval_property (tem);
6940 if (inmenubar && NILP (tem))
6941 return 0; /* Ignore disabled items in menu bar. */
6942 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
6945 /* If we got no definition, this item is just unselectable text which
6946 is OK in a submenu but not in the menubar. */
6947 if (NILP (def))
6948 return (inmenubar ? 0 : 1);
6950 /* See if this is a separate pane or a submenu. */
6951 def = AREF (item_properties, ITEM_PROPERTY_DEF);
6952 tem = get_keymap (def, 0, 1);
6953 /* For a subkeymap, just record its details and exit. */
6954 if (CONSP (tem))
6956 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
6957 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
6958 return 1;
6961 /* At the top level in the menu bar, do likewise for commands also.
6962 The menu bar does not display equivalent key bindings anyway.
6963 ITEM_PROPERTY_DEF is already set up properly. */
6964 if (inmenubar > 0)
6965 return 1;
6967 /* This is a command. See if there is an equivalent key binding. */
6968 if (NILP (cachelist))
6970 /* We have to create a cachelist. */
6971 CHECK_IMPURE (start);
6972 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
6973 cachelist = XCAR (XCDR (start));
6974 newcache = 1;
6975 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
6976 if (!NILP (keyhint))
6978 XSETCAR (cachelist, XCAR (keyhint));
6979 newcache = 0;
6981 else if (STRINGP (tem))
6983 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
6984 XSETCAR (cachelist, Qt);
6988 tem = XCAR (cachelist);
6989 if (!EQ (tem, Qt))
6991 int chkcache = 0;
6992 Lisp_Object prefix;
6994 if (!NILP (tem))
6995 tem = Fkey_binding (tem, Qnil, Qnil);
6997 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
6998 if (CONSP (prefix))
7000 def = XCAR (prefix);
7001 prefix = XCDR (prefix);
7003 else
7004 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7006 if (!update_menu_bindings)
7007 chkcache = 0;
7008 else if (NILP (XCAR (cachelist))) /* Have no saved key. */
7010 if (newcache /* Always check first time. */
7011 /* Should we check everything when precomputing key
7012 bindings? */
7013 /* If something had no key binding before, don't recheck it
7014 because that is too slow--except if we have a list of
7015 rebound commands in Vdefine_key_rebound_commands, do
7016 recheck any command that appears in that list. */
7017 || (CONSP (Vdefine_key_rebound_commands)
7018 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7019 chkcache = 1;
7021 /* We had a saved key. Is it still bound to the command? */
7022 else if (NILP (tem)
7023 || (!EQ (tem, def)
7024 /* If the command is an alias for another
7025 (such as lmenu.el set it up), check if the
7026 original command matches the cached command. */
7027 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7028 chkcache = 1; /* Need to recompute key binding. */
7030 if (chkcache)
7032 /* Recompute equivalent key binding. If the command is an alias
7033 for another (such as lmenu.el set it up), see if the original
7034 command name has equivalent keys. Otherwise look up the
7035 specified command itself. We don't try both, because that
7036 makes lmenu menus slow. */
7037 if (SYMBOLP (def)
7038 && SYMBOLP (XSYMBOL (def)->function)
7039 && ! NILP (Fget (def, Qmenu_alias)))
7040 def = XSYMBOL (def)->function;
7041 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7042 XSETCAR (cachelist, tem);
7043 if (NILP (tem))
7045 XSETCDR (cachelist, Qnil);
7046 chkcache = 0;
7049 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7051 tem = XCAR (cachelist);
7052 chkcache = 1;
7055 newcache = chkcache;
7056 if (chkcache)
7058 tem = Fkey_description (tem);
7059 if (CONSP (prefix))
7061 if (STRINGP (XCAR (prefix)))
7062 tem = concat2 (XCAR (prefix), tem);
7063 if (STRINGP (XCDR (prefix)))
7064 tem = concat2 (tem, XCDR (prefix));
7066 XSETCDR (cachelist, tem);
7070 tem = XCDR (cachelist);
7071 if (newcache && !NILP (tem))
7073 tem = concat3 (build_string (" ("), tem, build_string (")"));
7074 XSETCDR (cachelist, tem);
7077 /* If we only want to precompute equivalent key bindings, stop here. */
7078 if (notreal)
7079 return 1;
7081 /* If we have an equivalent key binding, use that. */
7082 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7084 /* Include this when menu help is implemented.
7085 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7086 if (!(NILP (tem) || STRINGP (tem)))
7088 tem = menu_item_eval_property (tem);
7089 if (!STRINGP (tem))
7090 tem = Qnil;
7091 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7095 /* Handle radio buttons or toggle boxes. */
7096 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7097 if (!NILP (tem))
7098 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7099 = menu_item_eval_property (tem);
7101 return 1;
7106 /***********************************************************************
7107 Tool-bars
7108 ***********************************************************************/
7110 /* A vector holding tool bar items while they are parsed in function
7111 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7112 in the vector. */
7114 static Lisp_Object tool_bar_items_vector;
7116 /* A vector holding the result of parse_tool_bar_item. Layout is like
7117 the one for a single item in tool_bar_items_vector. */
7119 static Lisp_Object tool_bar_item_properties;
7121 /* Next free index in tool_bar_items_vector. */
7123 static int ntool_bar_items;
7125 /* The symbols `tool-bar', and `:image'. */
7127 extern Lisp_Object Qtool_bar;
7128 Lisp_Object QCimage;
7130 /* Function prototypes. */
7132 static void init_tool_bar_items P_ ((Lisp_Object));
7133 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7134 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7135 static void append_tool_bar_item P_ ((void));
7138 /* Return a vector of tool bar items for keymaps currently in effect.
7139 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7140 tool bar items found. */
7142 Lisp_Object
7143 tool_bar_items (reuse, nitems)
7144 Lisp_Object reuse;
7145 int *nitems;
7147 Lisp_Object *maps;
7148 int nmaps, i;
7149 Lisp_Object oquit;
7150 Lisp_Object *tmaps;
7152 *nitems = 0;
7154 /* In order to build the menus, we need to call the keymap
7155 accessors. They all call QUIT. But this function is called
7156 during redisplay, during which a quit is fatal. So inhibit
7157 quitting while building the menus. We do this instead of
7158 specbind because (1) errors will clear it anyway and (2) this
7159 avoids risk of specpdl overflow. */
7160 oquit = Vinhibit_quit;
7161 Vinhibit_quit = Qt;
7163 /* Initialize tool_bar_items_vector and protect it from GC. */
7164 init_tool_bar_items (reuse);
7166 /* Build list of keymaps in maps. Set nmaps to the number of maps
7167 to process. */
7169 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7170 if (!NILP (Voverriding_local_map_menu_flag))
7172 /* Yes, use them (if non-nil) as well as the global map. */
7173 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7174 nmaps = 0;
7175 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7176 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7177 if (!NILP (Voverriding_local_map))
7178 maps[nmaps++] = Voverriding_local_map;
7180 else
7182 /* No, so use major and minor mode keymaps and keymap property.
7183 Note that tool-bar bindings in the local-map and keymap
7184 properties may not work reliable, as they are only
7185 recognized when the tool-bar (or mode-line) is updated,
7186 which does not normally happen after every command. */
7187 Lisp_Object tem;
7188 int nminor;
7189 nminor = current_minor_maps (NULL, &tmaps);
7190 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7191 nmaps = 0;
7192 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7193 maps[nmaps++] = tem;
7194 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7195 nmaps += nminor;
7196 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7199 /* Add global keymap at the end. */
7200 maps[nmaps++] = current_global_map;
7202 /* Process maps in reverse order and look up in each map the prefix
7203 key `tool-bar'. */
7204 for (i = nmaps - 1; i >= 0; --i)
7205 if (!NILP (maps[i]))
7207 Lisp_Object keymap;
7209 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7210 if (CONSP (keymap))
7212 Lisp_Object tail;
7214 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7215 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7217 Lisp_Object keydef = XCAR (tail);
7218 if (CONSP (keydef))
7219 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7224 Vinhibit_quit = oquit;
7225 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7226 return tool_bar_items_vector;
7230 /* Process the definition of KEY which is DEF. */
7232 static void
7233 process_tool_bar_item (key, def)
7234 Lisp_Object key, def;
7236 int i;
7237 extern Lisp_Object Qundefined;
7238 struct gcpro gcpro1, gcpro2;
7240 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7241 eval. */
7242 GCPRO2 (key, def);
7244 if (EQ (def, Qundefined))
7246 /* If a map has an explicit `undefined' as definition,
7247 discard any previously made item. */
7248 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7250 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7252 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7254 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7255 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7256 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7257 * sizeof (Lisp_Object)));
7258 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7259 break;
7263 else if (parse_tool_bar_item (key, def))
7264 /* Append a new tool bar item to tool_bar_items_vector. Accept
7265 more than one definition for the same key. */
7266 append_tool_bar_item ();
7268 UNGCPRO;
7272 /* Parse a tool bar item specification ITEM for key KEY and return the
7273 result in tool_bar_item_properties. Value is zero if ITEM is
7274 invalid.
7276 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7278 CAPTION is the caption of the item, If it's not a string, it is
7279 evaluated to get a string.
7281 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7282 as binding are currently ignored.
7284 The following properties are recognized:
7286 - `:enable FORM'.
7288 FORM is evaluated and specifies whether the tool bar item is
7289 enabled or disabled.
7291 - `:visible FORM'
7293 FORM is evaluated and specifies whether the tool bar item is visible.
7295 - `:filter FUNCTION'
7297 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7298 result is stored as the new binding.
7300 - `:button (TYPE SELECTED)'
7302 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7303 and specifies whether the button is selected (pressed) or not.
7305 - `:image IMAGES'
7307 IMAGES is either a single image specification or a vector of four
7308 image specifications. See enum tool_bar_item_images.
7310 - `:help HELP-STRING'.
7312 Gives a help string to display for the tool bar item. */
7314 static int
7315 parse_tool_bar_item (key, item)
7316 Lisp_Object key, item;
7318 /* Access slot with index IDX of vector tool_bar_item_properties. */
7319 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7321 Lisp_Object filter = Qnil;
7322 Lisp_Object caption;
7323 int i;
7325 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7326 Rule out items that aren't lists, don't start with
7327 `menu-item' or whose rest following `tool-bar-item' is not a
7328 list. */
7329 if (!CONSP (item)
7330 || !EQ (XCAR (item), Qmenu_item)
7331 || (item = XCDR (item),
7332 !CONSP (item)))
7333 return 0;
7335 /* Create tool_bar_item_properties vector if necessary. Reset it to
7336 defaults. */
7337 if (VECTORP (tool_bar_item_properties))
7339 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7340 PROP (i) = Qnil;
7342 else
7343 tool_bar_item_properties
7344 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7346 /* Set defaults. */
7347 PROP (TOOL_BAR_ITEM_KEY) = key;
7348 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7350 /* Get the caption of the item. If the caption is not a string,
7351 evaluate it to get a string. If we don't get a string, skip this
7352 item. */
7353 caption = XCAR (item);
7354 if (!STRINGP (caption))
7356 caption = menu_item_eval_property (caption);
7357 if (!STRINGP (caption))
7358 return 0;
7360 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7362 /* Give up if rest following the caption is not a list. */
7363 item = XCDR (item);
7364 if (!CONSP (item))
7365 return 0;
7367 /* Store the binding. */
7368 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7369 item = XCDR (item);
7371 /* Ignore cached key binding, if any. */
7372 if (CONSP (item) && CONSP (XCAR (item)))
7373 item = XCDR (item);
7375 /* Process the rest of the properties. */
7376 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7378 Lisp_Object key, value;
7380 key = XCAR (item);
7381 value = XCAR (XCDR (item));
7383 if (EQ (key, QCenable))
7384 /* `:enable FORM'. */
7385 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7386 else if (EQ (key, QCvisible))
7388 /* `:visible FORM'. If got a visible property and that
7389 evaluates to nil then ignore this item. */
7390 if (NILP (menu_item_eval_property (value)))
7391 return 0;
7393 else if (EQ (key, QChelp))
7394 /* `:help HELP-STRING'. */
7395 PROP (TOOL_BAR_ITEM_HELP) = value;
7396 else if (EQ (key, QCfilter))
7397 /* ':filter FORM'. */
7398 filter = value;
7399 else if (EQ (key, QCbutton) && CONSP (value))
7401 /* `:button (TYPE . SELECTED)'. */
7402 Lisp_Object type, selected;
7404 type = XCAR (value);
7405 selected = XCDR (value);
7406 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7408 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7409 PROP (TOOL_BAR_ITEM_TYPE) = type;
7412 else if (EQ (key, QCimage)
7413 && (CONSP (value)
7414 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7415 /* Value is either a single image specification or a vector
7416 of 4 such specifications for the different button states. */
7417 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7420 /* If got a filter apply it on binding. */
7421 if (!NILP (filter))
7422 PROP (TOOL_BAR_ITEM_BINDING)
7423 = menu_item_eval_property (list2 (filter,
7424 list2 (Qquote,
7425 PROP (TOOL_BAR_ITEM_BINDING))));
7427 /* See if the binding is a keymap. Give up if it is. */
7428 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7429 return 0;
7431 /* Enable or disable selection of item. */
7432 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7433 PROP (TOOL_BAR_ITEM_ENABLED_P)
7434 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7436 /* Handle radio buttons or toggle boxes. */
7437 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7438 PROP (TOOL_BAR_ITEM_SELECTED_P)
7439 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7441 return 1;
7443 #undef PROP
7447 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7448 that can be reused. */
7450 static void
7451 init_tool_bar_items (reuse)
7452 Lisp_Object reuse;
7454 if (VECTORP (reuse))
7455 tool_bar_items_vector = reuse;
7456 else
7457 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7458 ntool_bar_items = 0;
7462 /* Append parsed tool bar item properties from
7463 tool_bar_item_properties */
7465 static void
7466 append_tool_bar_item ()
7468 Lisp_Object *to, *from;
7470 /* Enlarge tool_bar_items_vector if necessary. */
7471 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7472 >= XVECTOR (tool_bar_items_vector)->size)
7474 Lisp_Object new_vector;
7475 int old_size = XVECTOR (tool_bar_items_vector)->size;
7477 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
7478 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7479 XVECTOR (new_vector)->contents,
7480 old_size * sizeof (Lisp_Object));
7481 tool_bar_items_vector = new_vector;
7484 /* Append entries from tool_bar_item_properties to the end of
7485 tool_bar_items_vector. */
7486 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7487 from = XVECTOR (tool_bar_item_properties)->contents;
7488 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7489 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7496 /* Read a character using menus based on maps in the array MAPS.
7497 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7498 Return t if we displayed a menu but the user rejected it.
7500 PREV_EVENT is the previous input event, or nil if we are reading
7501 the first event of a key sequence.
7503 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7504 if we used a mouse menu to read the input, or zero otherwise. If
7505 USED_MOUSE_MENU is null, we don't dereference it.
7507 The prompting is done based on the prompt-string of the map
7508 and the strings associated with various map elements.
7510 This can be done with X menus or with menus put in the minibuf.
7511 These are done in different ways, depending on how the input will be read.
7512 Menus using X are done after auto-saving in read-char, getting the input
7513 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7514 and do auto-saving in the inner call of read_char. */
7516 static Lisp_Object
7517 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7518 int nmaps;
7519 Lisp_Object *maps;
7520 Lisp_Object prev_event;
7521 int *used_mouse_menu;
7523 int mapno;
7524 register Lisp_Object name;
7526 if (used_mouse_menu)
7527 *used_mouse_menu = 0;
7529 /* Use local over global Menu maps */
7531 if (! menu_prompting)
7532 return Qnil;
7534 /* Optionally disregard all but the global map. */
7535 if (inhibit_local_menu_bar_menus)
7537 maps += (nmaps - 1);
7538 nmaps = 1;
7541 /* Get the menu name from the first map that has one (a prompt string). */
7542 for (mapno = 0; mapno < nmaps; mapno++)
7544 name = Fkeymap_prompt (maps[mapno]);
7545 if (!NILP (name))
7546 break;
7549 /* If we don't have any menus, just read a character normally. */
7550 if (!STRINGP (name))
7551 return Qnil;
7553 #ifdef HAVE_MENUS
7554 /* If we got to this point via a mouse click,
7555 use a real menu for mouse selection. */
7556 if (EVENT_HAS_PARAMETERS (prev_event)
7557 && !EQ (XCAR (prev_event), Qmenu_bar)
7558 && !EQ (XCAR (prev_event), Qtool_bar))
7560 /* Display the menu and get the selection. */
7561 Lisp_Object *realmaps
7562 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
7563 Lisp_Object value;
7564 int nmaps1 = 0;
7566 /* Use the maps that are not nil. */
7567 for (mapno = 0; mapno < nmaps; mapno++)
7568 if (!NILP (maps[mapno]))
7569 realmaps[nmaps1++] = maps[mapno];
7571 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
7572 if (CONSP (value))
7574 Lisp_Object tem;
7576 record_menu_key (XCAR (value));
7578 /* If we got multiple events, unread all but
7579 the first.
7580 There is no way to prevent those unread events
7581 from showing up later in last_nonmenu_event.
7582 So turn symbol and integer events into lists,
7583 to indicate that they came from a mouse menu,
7584 so that when present in last_nonmenu_event
7585 they won't confuse things. */
7586 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
7588 record_menu_key (XCAR (tem));
7589 if (SYMBOLP (XCAR (tem))
7590 || INTEGERP (XCAR (tem)))
7591 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
7594 /* If we got more than one event, put all but the first
7595 onto this list to be read later.
7596 Return just the first event now. */
7597 Vunread_command_events
7598 = nconc2 (XCDR (value), Vunread_command_events);
7599 value = XCAR (value);
7601 else if (NILP (value))
7602 value = Qt;
7603 if (used_mouse_menu)
7604 *used_mouse_menu = 1;
7605 return value;
7607 #endif /* HAVE_MENUS */
7608 return Qnil ;
7611 /* Buffer in use so far for the minibuf prompts for menu keymaps.
7612 We make this bigger when necessary, and never free it. */
7613 static char *read_char_minibuf_menu_text;
7614 /* Size of that buffer. */
7615 static int read_char_minibuf_menu_width;
7617 static Lisp_Object
7618 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
7619 int commandflag ;
7620 int nmaps;
7621 Lisp_Object *maps;
7623 int mapno;
7624 register Lisp_Object name;
7625 int nlength;
7626 int width = FRAME_WIDTH (SELECTED_FRAME ()) - 4;
7627 int idx = -1;
7628 int nobindings = 1;
7629 Lisp_Object rest, vector;
7630 char *menu;
7632 vector = Qnil;
7633 name = Qnil;
7635 if (! menu_prompting)
7636 return Qnil;
7638 /* Make sure we have a big enough buffer for the menu text. */
7639 if (read_char_minibuf_menu_text == 0)
7641 read_char_minibuf_menu_width = width + 4;
7642 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
7644 else if (width + 4 > read_char_minibuf_menu_width)
7646 read_char_minibuf_menu_width = width + 4;
7647 read_char_minibuf_menu_text
7648 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
7650 menu = read_char_minibuf_menu_text;
7652 /* Get the menu name from the first map that has one (a prompt string). */
7653 for (mapno = 0; mapno < nmaps; mapno++)
7655 name = Fkeymap_prompt (maps[mapno]);
7656 if (!NILP (name))
7657 break;
7660 /* If we don't have any menus, just read a character normally. */
7661 if (!STRINGP (name))
7662 return Qnil;
7664 /* Prompt string always starts with map's prompt, and a space. */
7665 strcpy (menu, XSTRING (name)->data);
7666 nlength = STRING_BYTES (XSTRING (name));
7667 menu[nlength++] = ':';
7668 menu[nlength++] = ' ';
7669 menu[nlength] = 0;
7671 /* Start prompting at start of first map. */
7672 mapno = 0;
7673 rest = maps[mapno];
7675 /* Present the documented bindings, a line at a time. */
7676 while (1)
7678 int notfirst = 0;
7679 int i = nlength;
7680 Lisp_Object obj;
7681 int ch;
7682 Lisp_Object orig_defn_macro;
7684 /* Loop over elements of map. */
7685 while (i < width)
7687 Lisp_Object elt;
7689 /* If reached end of map, start at beginning of next map. */
7690 if (NILP (rest))
7692 mapno++;
7693 /* At end of last map, wrap around to first map if just starting,
7694 or end this line if already have something on it. */
7695 if (mapno == nmaps)
7697 mapno = 0;
7698 if (notfirst || nobindings) break;
7700 rest = maps[mapno];
7703 /* Look at the next element of the map. */
7704 if (idx >= 0)
7705 elt = XVECTOR (vector)->contents[idx];
7706 else
7707 elt = Fcar_safe (rest);
7709 if (idx < 0 && VECTORP (elt))
7711 /* If we found a dense table in the keymap,
7712 advanced past it, but start scanning its contents. */
7713 rest = Fcdr_safe (rest);
7714 vector = elt;
7715 idx = 0;
7717 else
7719 /* An ordinary element. */
7720 Lisp_Object event, tem;
7722 if (idx < 0)
7724 event = Fcar_safe (elt); /* alist */
7725 elt = Fcdr_safe (elt);
7727 else
7729 XSETINT (event, idx); /* vector */
7732 /* Ignore the element if it has no prompt string. */
7733 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
7735 /* 1 if the char to type matches the string. */
7736 int char_matches;
7737 Lisp_Object upcased_event, downcased_event;
7738 Lisp_Object desc = Qnil;
7739 Lisp_Object s
7740 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7742 upcased_event = Fupcase (event);
7743 downcased_event = Fdowncase (event);
7744 char_matches = (XINT (upcased_event) == XSTRING (s)->data[0]
7745 || XINT (downcased_event) == XSTRING (s)->data[0]);
7746 if (! char_matches)
7747 desc = Fsingle_key_description (event, Qnil);
7749 #if 0 /* It is redundant to list the equivalent key bindings because
7750 the prefix is what the user has already typed. */
7752 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
7753 if (!NILP (tem))
7754 /* Insert equivalent keybinding. */
7755 s = concat2 (s, tem);
7756 #endif
7758 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
7759 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
7761 /* Insert button prefix. */
7762 Lisp_Object selected
7763 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
7764 if (EQ (tem, QCradio))
7765 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
7766 else
7767 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
7768 s = concat2 (tem, s);
7772 /* If we have room for the prompt string, add it to this line.
7773 If this is the first on the line, always add it. */
7774 if ((XSTRING (s)->size + i + 2
7775 + (char_matches ? 0 : XSTRING (desc)->size + 3))
7776 < width
7777 || !notfirst)
7779 int thiswidth;
7781 /* Punctuate between strings. */
7782 if (notfirst)
7784 strcpy (menu + i, ", ");
7785 i += 2;
7787 notfirst = 1;
7788 nobindings = 0 ;
7790 /* If the char to type doesn't match the string's
7791 first char, explicitly show what char to type. */
7792 if (! char_matches)
7794 /* Add as much of string as fits. */
7795 thiswidth = XSTRING (desc)->size;
7796 if (thiswidth + i > width)
7797 thiswidth = width - i;
7798 bcopy (XSTRING (desc)->data, menu + i, thiswidth);
7799 i += thiswidth;
7800 strcpy (menu + i, " = ");
7801 i += 3;
7804 /* Add as much of string as fits. */
7805 thiswidth = XSTRING (s)->size;
7806 if (thiswidth + i > width)
7807 thiswidth = width - i;
7808 bcopy (XSTRING (s)->data, menu + i, thiswidth);
7809 i += thiswidth;
7810 menu[i] = 0;
7812 else
7814 /* If this element does not fit, end the line now,
7815 and save the element for the next line. */
7816 strcpy (menu + i, "...");
7817 break;
7821 /* Move past this element. */
7822 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
7823 /* Handle reaching end of dense table. */
7824 idx = -1;
7825 if (idx >= 0)
7826 idx++;
7827 else
7828 rest = Fcdr_safe (rest);
7832 /* Prompt with that and read response. */
7833 message2_nolog (menu, strlen (menu),
7834 ! NILP (current_buffer->enable_multibyte_characters));
7836 /* Make believe its not a keyboard macro in case the help char
7837 is pressed. Help characters are not recorded because menu prompting
7838 is not used on replay.
7840 orig_defn_macro = current_kboard->defining_kbd_macro;
7841 current_kboard->defining_kbd_macro = Qnil;
7843 obj = read_char (commandflag, 0, 0, Qt, 0);
7844 while (BUFFERP (obj));
7845 current_kboard->defining_kbd_macro = orig_defn_macro;
7847 if (!INTEGERP (obj))
7848 return obj;
7849 else
7850 ch = XINT (obj);
7852 if (! EQ (obj, menu_prompt_more_char)
7853 && (!INTEGERP (menu_prompt_more_char)
7854 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
7856 if (!NILP (current_kboard->defining_kbd_macro))
7857 store_kbd_macro_char (obj);
7858 return obj;
7860 /* Help char - go round again */
7864 /* Reading key sequences. */
7866 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
7867 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
7868 keymap, or nil otherwise. Return the index of the first keymap in
7869 which KEY has any binding, or NMAPS if no map has a binding.
7871 If KEY is a meta ASCII character, treat it like meta-prefix-char
7872 followed by the corresponding non-meta character. Keymaps in
7873 CURRENT with non-prefix bindings for meta-prefix-char become nil in
7874 NEXT.
7876 If KEY has no bindings in any of the CURRENT maps, NEXT is left
7877 unmodified.
7879 NEXT may be the same array as CURRENT. */
7881 static int
7882 follow_key (key, nmaps, current, defs, next)
7883 Lisp_Object key;
7884 Lisp_Object *current, *defs, *next;
7885 int nmaps;
7887 int i, first_binding;
7888 int did_meta = 0;
7890 first_binding = nmaps;
7891 for (i = nmaps - 1; i >= 0; i--)
7893 if (! NILP (current[i]))
7895 Lisp_Object map;
7896 if (did_meta)
7897 map = defs[i];
7898 else
7899 map = current[i];
7901 defs[i] = access_keymap (map, key, 1, 0, 1);
7902 if (! NILP (defs[i]))
7903 first_binding = i;
7905 else
7906 defs[i] = Qnil;
7909 /* Given the set of bindings we've found, produce the next set of maps. */
7910 if (first_binding < nmaps)
7911 for (i = 0; i < nmaps; i++)
7912 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
7914 return first_binding;
7917 /* Read a sequence of keys that ends with a non prefix character,
7918 storing it in KEYBUF, a buffer of size BUFSIZE.
7919 Prompt with PROMPT.
7920 Return the length of the key sequence stored.
7921 Return -1 if the user rejected a command menu.
7923 Echo starting immediately unless `prompt' is 0.
7925 Where a key sequence ends depends on the currently active keymaps.
7926 These include any minor mode keymaps active in the current buffer,
7927 the current buffer's local map, and the global map.
7929 If a key sequence has no other bindings, we check Vfunction_key_map
7930 to see if some trailing subsequence might be the beginning of a
7931 function key's sequence. If so, we try to read the whole function
7932 key, and substitute its symbolic name into the key sequence.
7934 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
7935 `double-' events into similar click events, if that would make them
7936 bound. We try to turn `triple-' events first into `double-' events,
7937 then into clicks.
7939 If we get a mouse click in a mode line, vertical divider, or other
7940 non-text area, we treat the click as if it were prefixed by the
7941 symbol denoting that area - `mode-line', `vertical-line', or
7942 whatever.
7944 If the sequence starts with a mouse click, we read the key sequence
7945 with respect to the buffer clicked on, not the current buffer.
7947 If the user switches frames in the midst of a key sequence, we put
7948 off the switch-frame event until later; the next call to
7949 read_char will return it.
7951 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
7952 from the selected window's buffer. */
7954 static int
7955 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
7956 can_return_switch_frame, fix_current_buffer)
7957 Lisp_Object *keybuf;
7958 int bufsize;
7959 Lisp_Object prompt;
7960 int dont_downcase_last;
7961 int can_return_switch_frame;
7962 int fix_current_buffer;
7964 volatile Lisp_Object from_string;
7965 volatile int count = specpdl_ptr - specpdl;
7967 /* How many keys there are in the current key sequence. */
7968 volatile int t;
7970 /* The length of the echo buffer when we started reading, and
7971 the length of this_command_keys when we started reading. */
7972 volatile int echo_start;
7973 volatile int keys_start;
7975 /* The number of keymaps we're scanning right now, and the number of
7976 keymaps we have allocated space for. */
7977 volatile int nmaps;
7978 volatile int nmaps_allocated = 0;
7980 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
7981 the current keymaps. */
7982 Lisp_Object *volatile defs = NULL;
7984 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7985 in the current keymaps, or nil where it is not a prefix. */
7986 Lisp_Object *volatile submaps = NULL;
7988 /* The local map to start out with at start of key sequence. */
7989 volatile Lisp_Object orig_local_map;
7991 /* The map from the `keymap' property to start out with at start of
7992 key sequence. */
7993 volatile Lisp_Object orig_keymap;
7995 /* 1 if we have already considered switching to the local-map property
7996 of the place where a mouse click occurred. */
7997 volatile int localized_local_map = 0;
7999 /* The index in defs[] of the first keymap that has a binding for
8000 this key sequence. In other words, the lowest i such that
8001 defs[i] is non-nil. */
8002 volatile int first_binding;
8003 /* Index of the first key that has no binding.
8004 It is useless to try fkey_start larger than that. */
8005 volatile int first_unbound;
8007 /* If t < mock_input, then KEYBUF[t] should be read as the next
8008 input key.
8010 We use this to recover after recognizing a function key. Once we
8011 realize that a suffix of the current key sequence is actually a
8012 function key's escape sequence, we replace the suffix with the
8013 function key's binding from Vfunction_key_map. Now keybuf
8014 contains a new and different key sequence, so the echo area,
8015 this_command_keys, and the submaps and defs arrays are wrong. In
8016 this situation, we set mock_input to t, set t to 0, and jump to
8017 restart_sequence; the loop will read keys from keybuf up until
8018 mock_input, thus rebuilding the state; and then it will resume
8019 reading characters from the keyboard. */
8020 volatile int mock_input = 0;
8022 /* If the sequence is unbound in submaps[], then
8023 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
8024 and fkey_map is its binding.
8026 These might be > t, indicating that all function key scanning
8027 should hold off until t reaches them. We do this when we've just
8028 recognized a function key, to avoid searching for the function
8029 key's again in Vfunction_key_map. */
8030 volatile int fkey_start = 0, fkey_end = 0;
8031 volatile Lisp_Object fkey_map;
8033 /* Likewise, for key_translation_map. */
8034 volatile int keytran_start = 0, keytran_end = 0;
8035 volatile Lisp_Object keytran_map;
8037 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
8038 we put it off for later. While we're reading, we keep the event here. */
8039 volatile Lisp_Object delayed_switch_frame;
8041 /* See the comment below... */
8042 #if defined (GOBBLE_FIRST_EVENT)
8043 Lisp_Object first_event;
8044 #endif
8046 volatile Lisp_Object original_uppercase;
8047 volatile int original_uppercase_position = -1;
8049 /* Gets around Microsoft compiler limitations. */
8050 int dummyflag = 0;
8052 struct buffer *starting_buffer;
8054 /* List of events for which a fake prefix key has been generated. */
8055 volatile Lisp_Object fake_prefixed_keys = Qnil;
8057 #if defined (GOBBLE_FIRST_EVENT)
8058 int junk;
8059 #endif
8061 struct gcpro gcpro1;
8063 GCPRO1 (fake_prefixed_keys);
8064 raw_keybuf_count = 0;
8066 last_nonmenu_event = Qnil;
8068 delayed_switch_frame = Qnil;
8069 fkey_map = Vfunction_key_map;
8070 keytran_map = Vkey_translation_map;
8072 /* If there is no function-key-map, turn off function key scanning. */
8073 if (!KEYMAPP (Vfunction_key_map))
8074 fkey_start = fkey_end = bufsize + 1;
8076 /* If there is no key-translation-map, turn off scanning. */
8077 if (!KEYMAPP (Vkey_translation_map))
8078 keytran_start = keytran_end = bufsize + 1;
8080 if (INTERACTIVE)
8082 if (!NILP (prompt))
8083 echo_prompt (prompt);
8084 else if (cursor_in_echo_area
8085 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8086 && NILP (Fzerop (Vecho_keystrokes)))
8087 /* This doesn't put in a dash if the echo buffer is empty, so
8088 you don't always see a dash hanging out in the minibuffer. */
8089 echo_dash ();
8092 /* Record the initial state of the echo area and this_command_keys;
8093 we will need to restore them if we replay a key sequence. */
8094 if (INTERACTIVE)
8095 echo_start = echo_length ();
8096 keys_start = this_command_key_count;
8097 this_single_command_key_start = keys_start;
8099 #if defined (GOBBLE_FIRST_EVENT)
8100 /* This doesn't quite work, because some of the things that read_char
8101 does cannot safely be bypassed. It seems too risky to try to make
8102 this work right. */
8104 /* Read the first char of the sequence specially, before setting
8105 up any keymaps, in case a filter runs and switches buffers on us. */
8106 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8107 &junk);
8108 #endif /* GOBBLE_FIRST_EVENT */
8110 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8111 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8112 from_string = Qnil;
8114 /* We jump here when the key sequence has been thoroughly changed, and
8115 we need to rescan it starting from the beginning. When we jump here,
8116 keybuf[0..mock_input] holds the sequence we should reread. */
8117 replay_sequence:
8119 starting_buffer = current_buffer;
8120 first_unbound = bufsize + 1;
8122 /* Build our list of keymaps.
8123 If we recognize a function key and replace its escape sequence in
8124 keybuf with its symbol, or if the sequence starts with a mouse
8125 click and we need to switch buffers, we jump back here to rebuild
8126 the initial keymaps from the current buffer. */
8127 nmaps = 0;
8129 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8130 || !NILP (Voverriding_local_map))
8132 if (3 > nmaps_allocated)
8134 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8135 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8136 nmaps_allocated = 3;
8138 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8139 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8140 if (!NILP (Voverriding_local_map))
8141 submaps[nmaps++] = Voverriding_local_map;
8143 else
8145 int nminor;
8146 int total;
8147 Lisp_Object *maps;
8149 nminor = current_minor_maps (0, &maps);
8150 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8152 if (total > nmaps_allocated)
8154 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8155 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8156 nmaps_allocated = total;
8159 if (!NILP (orig_keymap))
8160 submaps[nmaps++] = orig_keymap;
8162 bcopy (maps, (void *) (submaps + nmaps),
8163 nminor * sizeof (submaps[0]));
8165 nmaps += nminor;
8167 submaps[nmaps++] = orig_local_map;
8169 submaps[nmaps++] = current_global_map;
8171 /* Find an accurate initial value for first_binding. */
8172 for (first_binding = 0; first_binding < nmaps; first_binding++)
8173 if (! NILP (submaps[first_binding]))
8174 break;
8176 /* Start from the beginning in keybuf. */
8177 t = 0;
8179 /* These are no-ops the first time through, but if we restart, they
8180 revert the echo area and this_command_keys to their original state. */
8181 this_command_key_count = keys_start;
8182 if (INTERACTIVE && t < mock_input)
8183 echo_truncate (echo_start);
8185 /* If the best binding for the current key sequence is a keymap, or
8186 we may be looking at a function key's escape sequence, keep on
8187 reading. */
8188 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
8189 || (first_binding >= nmaps && fkey_start < t)
8190 || (first_binding >= nmaps && keytran_start < t)
8191 /* Don't return in the middle of a possible function key sequence,
8192 if the only bindings we found were via case conversion.
8193 Thus, if ESC O a has a function-key-map translation
8194 and ESC o has a binding, don't return after ESC O,
8195 so that we can translate ESC O plus the next character. */
8198 Lisp_Object key;
8199 int used_mouse_menu = 0;
8201 /* Where the last real key started. If we need to throw away a
8202 key that has expanded into more than one element of keybuf
8203 (say, a mouse click on the mode line which is being treated
8204 as [mode-line (mouse-...)], then we backtrack to this point
8205 of keybuf. */
8206 volatile int last_real_key_start;
8208 /* These variables are analogous to echo_start and keys_start;
8209 while those allow us to restart the entire key sequence,
8210 echo_local_start and keys_local_start allow us to throw away
8211 just one key. */
8212 volatile int echo_local_start, keys_local_start, local_first_binding;
8214 /* key-translation-map is applied *after* function-key-map. */
8215 eassert (keytran_end <= fkey_start);
8217 if (first_unbound < fkey_start && first_unbound < keytran_start)
8218 { /* The prefix upto first_unbound has no binding and has
8219 no translation left to do either, so we know it's unbound.
8220 If we don't stop now, we risk staying here indefinitely
8221 (if the user keeps entering fkey or keytran prefixes
8222 like C-c ESC ESC ESC ESC ...) */
8223 int i;
8224 for (i = first_unbound + 1; i < t; i++)
8225 keybuf[i - first_unbound - 1] = keybuf[i];
8226 mock_input = t - first_unbound - 1;
8227 fkey_end = fkey_start -= first_unbound + 1;
8228 fkey_map = Vfunction_key_map;
8229 keytran_end = keytran_start -= first_unbound + 1;
8230 keytran_map = Vkey_translation_map;
8231 goto replay_sequence;
8234 if (t >= bufsize)
8235 error ("Key sequence too long");
8237 if (INTERACTIVE)
8238 echo_local_start = echo_length ();
8239 keys_local_start = this_command_key_count;
8240 local_first_binding = first_binding;
8242 replay_key:
8243 /* These are no-ops, unless we throw away a keystroke below and
8244 jumped back up to replay_key; in that case, these restore the
8245 variables to their original state, allowing us to replay the
8246 loop. */
8247 if (INTERACTIVE && t < mock_input)
8248 echo_truncate (echo_local_start);
8249 this_command_key_count = keys_local_start;
8250 first_binding = local_first_binding;
8252 /* By default, assume each event is "real". */
8253 last_real_key_start = t;
8255 /* Does mock_input indicate that we are re-reading a key sequence? */
8256 if (t < mock_input)
8258 key = keybuf[t];
8259 add_command_key (key);
8260 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8261 && NILP (Fzerop (Vecho_keystrokes)))
8262 echo_char (key);
8265 /* If not, we should actually read a character. */
8266 else
8269 #ifdef MULTI_KBOARD
8270 KBOARD *interrupted_kboard = current_kboard;
8271 struct frame *interrupted_frame = SELECTED_FRAME ();
8272 if (setjmp (wrong_kboard_jmpbuf))
8274 if (!NILP (delayed_switch_frame))
8276 interrupted_kboard->kbd_queue
8277 = Fcons (delayed_switch_frame,
8278 interrupted_kboard->kbd_queue);
8279 delayed_switch_frame = Qnil;
8281 while (t > 0)
8282 interrupted_kboard->kbd_queue
8283 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8285 /* If the side queue is non-empty, ensure it begins with a
8286 switch-frame, so we'll replay it in the right context. */
8287 if (CONSP (interrupted_kboard->kbd_queue)
8288 && (key = XCAR (interrupted_kboard->kbd_queue),
8289 !(EVENT_HAS_PARAMETERS (key)
8290 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8291 Qswitch_frame))))
8293 Lisp_Object frame;
8294 XSETFRAME (frame, interrupted_frame);
8295 interrupted_kboard->kbd_queue
8296 = Fcons (make_lispy_switch_frame (frame),
8297 interrupted_kboard->kbd_queue);
8299 mock_input = 0;
8300 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8301 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8302 goto replay_sequence;
8304 #endif
8305 key = read_char (NILP (prompt), nmaps,
8306 (Lisp_Object *) submaps, last_nonmenu_event,
8307 &used_mouse_menu);
8310 /* read_char returns t when it shows a menu and the user rejects it.
8311 Just return -1. */
8312 if (EQ (key, Qt))
8314 unbind_to (count, Qnil);
8315 UNGCPRO;
8316 return -1;
8319 /* read_char returns -1 at the end of a macro.
8320 Emacs 18 handles this by returning immediately with a
8321 zero, so that's what we'll do. */
8322 if (INTEGERP (key) && XINT (key) == -1)
8324 t = 0;
8325 /* The Microsoft C compiler can't handle the goto that
8326 would go here. */
8327 dummyflag = 1;
8328 break;
8331 /* If the current buffer has been changed from under us, the
8332 keymap may have changed, so replay the sequence. */
8333 if (BUFFERP (key))
8335 mock_input = t;
8336 /* Reset the current buffer from the selected window
8337 in case something changed the former and not the latter.
8338 This is to be more consistent with the behavior
8339 of the command_loop_1. */
8340 if (fix_current_buffer)
8342 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8343 Fkill_emacs (Qnil);
8344 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8345 Fset_buffer (XWINDOW (selected_window)->buffer);
8348 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8349 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8350 goto replay_sequence;
8353 /* If we have a quit that was typed in another frame, and
8354 quit_throw_to_read_char switched buffers,
8355 replay to get the right keymap. */
8356 if (INTEGERP (key)
8357 && XINT (key) == quit_char
8358 && current_buffer != starting_buffer)
8360 GROW_RAW_KEYBUF;
8361 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8362 keybuf[t++] = key;
8363 mock_input = t;
8364 Vquit_flag = Qnil;
8365 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8366 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8367 goto replay_sequence;
8370 Vquit_flag = Qnil;
8372 if (EVENT_HAS_PARAMETERS (key)
8373 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8375 /* If we're at the beginning of a key sequence, and the caller
8376 says it's okay, go ahead and return this event. If we're
8377 in the midst of a key sequence, delay it until the end. */
8378 if (t > 0 || !can_return_switch_frame)
8380 delayed_switch_frame = key;
8381 goto replay_key;
8385 GROW_RAW_KEYBUF;
8386 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8389 /* Clicks in non-text areas get prefixed by the symbol
8390 in their CHAR-ADDRESS field. For example, a click on
8391 the mode line is prefixed by the symbol `mode-line'.
8393 Furthermore, key sequences beginning with mouse clicks
8394 are read using the keymaps of the buffer clicked on, not
8395 the current buffer. So we may have to switch the buffer
8396 here.
8398 When we turn one event into two events, we must make sure
8399 that neither of the two looks like the original--so that,
8400 if we replay the events, they won't be expanded again.
8401 If not for this, such reexpansion could happen either here
8402 or when user programs play with this-command-keys. */
8403 if (EVENT_HAS_PARAMETERS (key))
8405 Lisp_Object kind;
8407 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
8408 if (EQ (kind, Qmouse_click))
8410 Lisp_Object window, posn;
8412 window = POSN_WINDOW (EVENT_START (key));
8413 posn = POSN_BUFFER_POSN (EVENT_START (key));
8415 if (CONSP (posn)
8416 || (!NILP (fake_prefixed_keys)
8417 && !NILP (Fmemq (key, fake_prefixed_keys))))
8419 /* We're looking a second time at an event for which
8420 we generated a fake prefix key. Set
8421 last_real_key_start appropriately. */
8422 if (t > 0)
8423 last_real_key_start = t - 1;
8426 /* Key sequences beginning with mouse clicks are
8427 read using the keymaps in the buffer clicked on,
8428 not the current buffer. If we're at the
8429 beginning of a key sequence, switch buffers. */
8430 if (last_real_key_start == 0
8431 && WINDOWP (window)
8432 && BUFFERP (XWINDOW (window)->buffer)
8433 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
8435 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8436 keybuf[t] = key;
8437 mock_input = t + 1;
8439 /* Arrange to go back to the original buffer once we're
8440 done reading the key sequence. Note that we can't
8441 use save_excursion_{save,restore} here, because they
8442 save point as well as the current buffer; we don't
8443 want to save point, because redisplay may change it,
8444 to accommodate a Fset_window_start or something. We
8445 don't want to do this at the top of the function,
8446 because we may get input from a subprocess which
8447 wants to change the selected window and stuff (say,
8448 emacsclient). */
8449 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
8451 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8452 Fkill_emacs (Qnil);
8453 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
8454 orig_local_map = get_local_map (PT, current_buffer,
8455 Qlocal_map);
8456 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8457 goto replay_sequence;
8460 /* For a mouse click, get the local text-property keymap
8461 of the place clicked on, rather than point. */
8462 if (last_real_key_start == 0
8463 && CONSP (XCDR (key))
8464 && ! localized_local_map)
8466 Lisp_Object map_here, start, pos;
8468 localized_local_map = 1;
8469 start = EVENT_START (key);
8471 if (CONSP (start) && CONSP (XCDR (start)))
8473 pos = POSN_BUFFER_POSN (start);
8474 if (INTEGERP (pos)
8475 && XINT (pos) >= BEG && XINT (pos) <= Z)
8477 map_here = get_local_map (XINT (pos),
8478 current_buffer, Qlocal_map);
8479 if (!EQ (map_here, orig_local_map))
8481 orig_local_map = map_here;
8482 keybuf[t] = key;
8483 mock_input = t + 1;
8485 goto replay_sequence;
8487 map_here = get_local_map (XINT (pos),
8488 current_buffer, Qkeymap);
8489 if (!EQ (map_here, orig_keymap))
8491 orig_keymap = map_here;
8492 keybuf[t] = key;
8493 mock_input = t + 1;
8495 goto replay_sequence;
8501 /* Expand mode-line and scroll-bar events into two events:
8502 use posn as a fake prefix key. */
8503 if (SYMBOLP (posn)
8504 && (NILP (fake_prefixed_keys)
8505 || NILP (Fmemq (key, fake_prefixed_keys))))
8507 if (t + 1 >= bufsize)
8508 error ("Key sequence too long");
8510 keybuf[t] = posn;
8511 keybuf[t + 1] = key;
8512 mock_input = t + 2;
8514 /* Record that a fake prefix key has been generated
8515 for KEY. Don't modify the event; this would
8516 prevent proper action when the event is pushed
8517 back tino unread-command-events. */
8518 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
8520 /* If on a mode line string with a local keymap,
8521 reconsider the key sequence with that keymap. */
8522 if (CONSP (POSN_STRING (EVENT_START (key))))
8524 Lisp_Object string, pos, map, map2;
8526 string = POSN_STRING (EVENT_START (key));
8527 pos = XCDR (string);
8528 string = XCAR (string);
8529 if (XINT (pos) >= 0
8530 && XINT (pos) < XSTRING (string)->size)
8532 map = Fget_text_property (pos, Qlocal_map, string);
8533 if (!NILP (map))
8534 orig_local_map = map;
8535 map2 = Fget_text_property (pos, Qkeymap, string);
8536 if (!NILP (map2))
8537 orig_keymap = map2;
8538 if (!NILP (map) || !NILP (map2))
8539 goto replay_sequence;
8543 goto replay_key;
8545 else if (CONSP (POSN_STRING (EVENT_START (key)))
8546 && NILP (from_string))
8548 /* For a click on a string, i.e. overlay string or a
8549 string displayed via the `display' property,
8550 consider `local-map' and `keymap' properties of
8551 that string. */
8552 Lisp_Object string, pos, map, map2;
8554 string = POSN_STRING (EVENT_START (key));
8555 pos = XCDR (string);
8556 string = XCAR (string);
8557 if (XINT (pos) >= 0
8558 && XINT (pos) < XSTRING (string)->size)
8560 map = Fget_text_property (pos, Qlocal_map, string);
8561 if (!NILP (map))
8562 orig_local_map = map;
8563 map2 = Fget_text_property (pos, Qkeymap, string);
8564 if (!NILP (map2))
8565 orig_keymap = map2;
8567 if (!NILP (map) || !NILP (map2))
8569 from_string = string;
8570 goto replay_sequence;
8575 else if (CONSP (XCDR (key))
8576 && CONSP (EVENT_START (key))
8577 && CONSP (XCDR (EVENT_START (key))))
8579 Lisp_Object posn;
8581 posn = POSN_BUFFER_POSN (EVENT_START (key));
8582 /* Handle menu-bar events:
8583 insert the dummy prefix event `menu-bar'. */
8584 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
8586 if (t + 1 >= bufsize)
8587 error ("Key sequence too long");
8588 keybuf[t] = posn;
8589 keybuf[t+1] = key;
8591 /* Zap the position in key, so we know that we've
8592 expanded it, and don't try to do so again. */
8593 POSN_BUFFER_SET_POSN (EVENT_START (key),
8594 Fcons (posn, Qnil));
8596 mock_input = t + 2;
8597 goto replay_sequence;
8599 else if (CONSP (posn))
8601 /* We're looking at the second event of a
8602 sequence which we expanded before. Set
8603 last_real_key_start appropriately. */
8604 if (last_real_key_start == t && t > 0)
8605 last_real_key_start = t - 1;
8610 /* We have finally decided that KEY is something we might want
8611 to look up. */
8612 first_binding = (follow_key (key,
8613 nmaps - first_binding,
8614 submaps + first_binding,
8615 defs + first_binding,
8616 submaps + first_binding)
8617 + first_binding);
8619 /* If KEY wasn't bound, we'll try some fallbacks. */
8620 if (first_binding < nmaps)
8621 /* This is needed for the following scenario:
8622 event 0: a down-event that gets dropped by calling replay_key.
8623 event 1: some normal prefix like C-h.
8624 After event 0, first_unbound is 0, after event 1 fkey_start
8625 and keytran_start are both 1, so when we see that C-h is bound,
8626 we need to update first_unbound. */
8627 first_unbound = max (t + 1, first_unbound);
8628 else
8630 Lisp_Object head;
8632 /* Remember the position to put an upper bound on fkey_start. */
8633 first_unbound = min (t, first_unbound);
8635 head = EVENT_HEAD (key);
8636 if (help_char_p (head) && t > 0)
8638 read_key_sequence_cmd = Vprefix_help_command;
8639 keybuf[t++] = key;
8640 last_nonmenu_event = key;
8641 /* The Microsoft C compiler can't handle the goto that
8642 would go here. */
8643 dummyflag = 1;
8644 break;
8647 if (SYMBOLP (head))
8649 Lisp_Object breakdown;
8650 int modifiers;
8652 breakdown = parse_modifiers (head);
8653 modifiers = XINT (XCAR (XCDR (breakdown)));
8654 /* Attempt to reduce an unbound mouse event to a simpler
8655 event that is bound:
8656 Drags reduce to clicks.
8657 Double-clicks reduce to clicks.
8658 Triple-clicks reduce to double-clicks, then to clicks.
8659 Down-clicks are eliminated.
8660 Double-downs reduce to downs, then are eliminated.
8661 Triple-downs reduce to double-downs, then to downs,
8662 then are eliminated. */
8663 if (modifiers & (down_modifier | drag_modifier
8664 | double_modifier | triple_modifier))
8666 while (modifiers & (down_modifier | drag_modifier
8667 | double_modifier | triple_modifier))
8669 Lisp_Object new_head, new_click;
8670 if (modifiers & triple_modifier)
8671 modifiers ^= (double_modifier | triple_modifier);
8672 else if (modifiers & double_modifier)
8673 modifiers &= ~double_modifier;
8674 else if (modifiers & drag_modifier)
8675 modifiers &= ~drag_modifier;
8676 else
8678 /* Dispose of this `down' event by simply jumping
8679 back to replay_key, to get another event.
8681 Note that if this event came from mock input,
8682 then just jumping back to replay_key will just
8683 hand it to us again. So we have to wipe out any
8684 mock input.
8686 We could delete keybuf[t] and shift everything
8687 after that to the left by one spot, but we'd also
8688 have to fix up any variable that points into
8689 keybuf, and shifting isn't really necessary
8690 anyway.
8692 Adding prefixes for non-textual mouse clicks
8693 creates two characters of mock input, and both
8694 must be thrown away. If we're only looking at
8695 the prefix now, we can just jump back to
8696 replay_key. On the other hand, if we've already
8697 processed the prefix, and now the actual click
8698 itself is giving us trouble, then we've lost the
8699 state of the keymaps we want to backtrack to, and
8700 we need to replay the whole sequence to rebuild
8703 Beyond that, only function key expansion could
8704 create more than two keys, but that should never
8705 generate mouse events, so it's okay to zero
8706 mock_input in that case too.
8708 FIXME: The above paragraph seems just plain
8709 wrong, if you consider things like
8710 xterm-mouse-mode. -stef
8712 Isn't this just the most wonderful code ever? */
8713 if (t == last_real_key_start)
8715 mock_input = 0;
8716 goto replay_key;
8718 else
8720 mock_input = last_real_key_start;
8721 goto replay_sequence;
8725 new_head
8726 = apply_modifiers (modifiers, XCAR (breakdown));
8727 new_click
8728 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
8730 /* Look for a binding for this new key. follow_key
8731 promises that it didn't munge submaps the
8732 last time we called it, since key was unbound. */
8733 first_binding
8734 = (follow_key (new_click,
8735 nmaps - local_first_binding,
8736 submaps + local_first_binding,
8737 defs + local_first_binding,
8738 submaps + local_first_binding)
8739 + local_first_binding);
8741 /* If that click is bound, go for it. */
8742 if (first_binding < nmaps)
8744 key = new_click;
8745 break;
8747 /* Otherwise, we'll leave key set to the drag event. */
8753 keybuf[t++] = key;
8754 /* Normally, last_nonmenu_event gets the previous key we read.
8755 But when a mouse popup menu is being used,
8756 we don't update last_nonmenu_event; it continues to hold the mouse
8757 event that preceded the first level of menu. */
8758 if (!used_mouse_menu)
8759 last_nonmenu_event = key;
8761 /* Record what part of this_command_keys is the current key sequence. */
8762 this_single_command_key_start = this_command_key_count - t;
8764 if (first_binding < nmaps && NILP (submaps[first_binding]))
8765 /* There is a binding and it's not a prefix.
8766 There is thus no function-key in this sequence.
8767 Moving fkey.start is important in this case to allow keytran.start
8768 to go over the sequence before we return (since we keep the
8769 invariant that keytran.end <= fkey.start). */
8771 if (fkey_start < t)
8772 (fkey_start = fkey_end = t, fkey_map = Vfunction_key_map);
8774 else
8775 /* If the sequence is unbound, see if we can hang a function key
8776 off the end of it. */
8778 Lisp_Object fkey_next;
8780 /* Continue scan from fkey_end until we find a bound suffix.
8781 If we fail, increment fkey_start and start over from there. */
8782 while (fkey_end < t)
8784 Lisp_Object key;
8786 key = keybuf[fkey_end++];
8787 fkey_next = access_keymap (fkey_map, key, 1, 0, 1);
8789 /* Handle symbol with autoload definition. */
8790 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8791 && CONSP (XSYMBOL (fkey_next)->function)
8792 && EQ (XCAR (XSYMBOL (fkey_next)->function), Qautoload))
8793 do_autoload (XSYMBOL (fkey_next)->function,
8794 fkey_next);
8796 /* Handle a symbol whose function definition is a keymap
8797 or an array. */
8798 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8799 && (!NILP (Farrayp (XSYMBOL (fkey_next)->function))
8800 || KEYMAPP (XSYMBOL (fkey_next)->function)))
8801 fkey_next = XSYMBOL (fkey_next)->function;
8803 #if 0 /* I didn't turn this on, because it might cause trouble
8804 for the mapping of return into C-m and tab into C-i. */
8805 /* Optionally don't map function keys into other things.
8806 This enables the user to redefine kp- keys easily. */
8807 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
8808 fkey_next = Qnil;
8809 #endif
8811 /* If the function key map gives a function, not an
8812 array, then call the function with no args and use
8813 its value instead. */
8814 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8815 /* If there's a binding (i.e. first_binding >= nmaps)
8816 we don't want to apply this function-key-mapping. */
8817 && fkey_end == t && first_binding >= nmaps)
8819 struct gcpro gcpro1, gcpro2, gcpro3;
8820 Lisp_Object tem;
8821 tem = fkey_next;
8823 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
8824 fkey_next = call1 (fkey_next, prompt);
8825 UNGCPRO;
8826 /* If the function returned something invalid,
8827 barf--don't ignore it.
8828 (To ignore it safely, we would need to gcpro a bunch of
8829 other variables.) */
8830 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
8831 error ("Function in key-translation-map returns invalid key sequence");
8834 /* If keybuf[fkey_start..fkey_end] is bound in the
8835 function key map and it's a suffix of the current
8836 sequence (i.e. fkey_end == t), replace it with
8837 the binding and restart with fkey_start at the end. */
8838 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
8839 /* If there's a binding (i.e. first_binding >= nmaps)
8840 we don't want to apply this function-key-mapping. */
8841 && fkey_end == t && first_binding >= nmaps)
8843 int len = XFASTINT (Flength (fkey_next));
8845 t = fkey_start + len;
8846 if (t >= bufsize)
8847 error ("Key sequence too long");
8849 if (VECTORP (fkey_next))
8850 bcopy (XVECTOR (fkey_next)->contents,
8851 keybuf + fkey_start,
8852 (t - fkey_start) * sizeof (keybuf[0]));
8853 else if (STRINGP (fkey_next))
8855 int i;
8857 for (i = 0; i < len; i++)
8858 XSETFASTINT (keybuf[fkey_start + i],
8859 XSTRING (fkey_next)->data[i]);
8862 mock_input = t;
8863 fkey_start = fkey_end = t;
8864 fkey_map = Vfunction_key_map;
8866 /* Do pass the results through key-translation-map.
8867 But don't retranslate what key-translation-map
8868 has already translated. */
8869 keytran_end = keytran_start;
8870 keytran_map = Vkey_translation_map;
8872 goto replay_sequence;
8875 fkey_map = get_keymap (fkey_next, 0, 1);
8877 /* If we no longer have a bound suffix, try a new positions for
8878 fkey_start. */
8879 if (!CONSP (fkey_map))
8881 fkey_end = ++fkey_start;
8882 fkey_map = Vfunction_key_map;
8887 /* Look for this sequence in key-translation-map. */
8889 Lisp_Object keytran_next;
8891 /* Scan from keytran_end until we find a bound suffix. */
8892 while (keytran_end < fkey_start)
8894 Lisp_Object key;
8896 key = keybuf[keytran_end++];
8897 keytran_next
8898 = access_keymap (keytran_map, key, 1, 0, 1);
8900 /* Handle symbol with autoload definition. */
8901 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
8902 && CONSP (XSYMBOL (keytran_next)->function)
8903 && EQ (XCAR (XSYMBOL (keytran_next)->function), Qautoload))
8904 do_autoload (XSYMBOL (keytran_next)->function,
8905 keytran_next);
8907 /* Handle a symbol whose function definition is a keymap
8908 or an array. */
8909 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
8910 && (!NILP (Farrayp (XSYMBOL (keytran_next)->function))
8911 || KEYMAPP (XSYMBOL (keytran_next)->function)))
8912 keytran_next = XSYMBOL (keytran_next)->function;
8914 /* If the key translation map gives a function, not an
8915 array, then call the function with one arg and use
8916 its value instead. */
8917 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next)))
8919 struct gcpro gcpro1, gcpro2, gcpro3;
8920 Lisp_Object tem;
8921 tem = keytran_next;
8923 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
8924 keytran_next = call1 (keytran_next, prompt);
8925 UNGCPRO;
8926 /* If the function returned something invalid,
8927 barf--don't ignore it.
8928 (To ignore it safely, we would need to gcpro a bunch of
8929 other variables.) */
8930 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
8931 error ("Function in key-translation-map returns invalid key sequence");
8934 /* If keybuf[keytran_start..keytran_end] is bound in the
8935 key translation map and it's a suffix of the current
8936 sequence (i.e. keytran_end == t), replace it with
8937 the binding and restart with keytran_start at the end. */
8938 if ((VECTORP (keytran_next) || STRINGP (keytran_next)))
8940 int len = XFASTINT (Flength (keytran_next));
8941 int i, diff = len - (keytran_end - keytran_start);
8943 mock_input = max (t, mock_input);
8944 if (mock_input + diff >= bufsize)
8945 error ("Key sequence too long");
8947 /* Shift the keys that are after keytran_end. */
8948 if (diff < 0)
8949 for (i = keytran_end; i < mock_input; i++)
8950 keybuf[i + diff] = keybuf[i];
8951 else if (diff > 0)
8952 for (i = mock_input - 1; i >= keytran_end; i--)
8953 keybuf[i + diff] = keybuf[i];
8954 /* Replace the keys between keytran_start and keytran_end
8955 with those from keytran_next. */
8956 for (i = 0; i < len; i++)
8957 keybuf[keytran_start + i]
8958 = Faref (keytran_next, make_number (i));
8960 mock_input += diff;
8961 keytran_start = keytran_end += diff;
8962 keytran_map = Vkey_translation_map;
8964 /* Adjust the function-key-map counters. */
8965 fkey_start += diff;
8966 fkey_end += diff;
8968 goto replay_sequence;
8971 keytran_map = get_keymap (keytran_next, 0, 1);
8973 /* If we no longer have a bound suffix, try a new positions for
8974 keytran_start. */
8975 if (!CONSP (keytran_map))
8977 keytran_end = ++keytran_start;
8978 keytran_map = Vkey_translation_map;
8983 /* If KEY is not defined in any of the keymaps,
8984 and cannot be part of a function key or translation,
8985 and is an upper case letter
8986 use the corresponding lower-case letter instead. */
8987 if (first_binding >= nmaps
8988 && fkey_start >= t && keytran_start >= t
8989 && INTEGERP (key)
8990 && ((((XINT (key) & 0x3ffff)
8991 < XCHAR_TABLE (current_buffer->downcase_table)->size)
8992 && UPPERCASEP (XINT (key) & 0x3ffff))
8993 || (XINT (key) & shift_modifier)))
8995 Lisp_Object new_key;
8997 original_uppercase = key;
8998 original_uppercase_position = t - 1;
9000 if (XINT (key) & shift_modifier)
9001 XSETINT (new_key, XINT (key) & ~shift_modifier);
9002 else
9003 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9004 | (XINT (key) & ~0x3ffff)));
9006 /* We have to do this unconditionally, regardless of whether
9007 the lower-case char is defined in the keymaps, because they
9008 might get translated through function-key-map. */
9009 keybuf[t - 1] = new_key;
9010 mock_input = max (t, mock_input);
9012 goto replay_sequence;
9014 /* If KEY is not defined in any of the keymaps,
9015 and cannot be part of a function key or translation,
9016 and is a shifted function key,
9017 use the corresponding unshifted function key instead. */
9018 if (first_binding >= nmaps
9019 && fkey_start >= t && keytran_start >= t
9020 && SYMBOLP (key))
9022 Lisp_Object breakdown;
9023 int modifiers;
9025 breakdown = parse_modifiers (key);
9026 modifiers = XINT (XCAR (XCDR (breakdown)));
9027 if (modifiers & shift_modifier)
9029 Lisp_Object new_key;
9031 original_uppercase = key;
9032 original_uppercase_position = t - 1;
9034 modifiers &= ~shift_modifier;
9035 new_key = apply_modifiers (modifiers,
9036 XCAR (breakdown));
9038 keybuf[t - 1] = new_key;
9039 mock_input = max (t, mock_input);
9041 goto replay_sequence;
9046 if (!dummyflag)
9047 read_key_sequence_cmd = (first_binding < nmaps
9048 ? defs[first_binding]
9049 : Qnil);
9051 unread_switch_frame = delayed_switch_frame;
9052 unbind_to (count, Qnil);
9054 /* Don't downcase the last character if the caller says don't.
9055 Don't downcase it if the result is undefined, either. */
9056 if ((dont_downcase_last || first_binding >= nmaps)
9057 && t - 1 == original_uppercase_position)
9058 keybuf[t - 1] = original_uppercase;
9060 /* Occasionally we fabricate events, perhaps by expanding something
9061 according to function-key-map, or by adding a prefix symbol to a
9062 mouse click in the scroll bar or modeline. In this cases, return
9063 the entire generated key sequence, even if we hit an unbound
9064 prefix or a definition before the end. This means that you will
9065 be able to push back the event properly, and also means that
9066 read-key-sequence will always return a logical unit.
9068 Better ideas? */
9069 for (; t < mock_input; t++)
9071 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9072 && NILP (Fzerop (Vecho_keystrokes)))
9073 echo_char (keybuf[t]);
9074 add_command_key (keybuf[t]);
9079 UNGCPRO;
9080 return t;
9083 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9084 doc: /* Read a sequence of keystrokes and return as a string or vector.
9085 The sequence is sufficient to specify a non-prefix command in the
9086 current local and global maps.
9088 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9089 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9090 as a continuation of the previous key.
9092 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9093 convert the last event to lower case. (Normally any upper case event
9094 is converted to lower case if the original event is undefined and the lower
9095 case equivalent is defined.) A non-nil value is appropriate for reading
9096 a key sequence to be defined.
9098 A C-g typed while in this function is treated like any other character,
9099 and `quit-flag' is not set.
9101 If the key sequence starts with a mouse click, then the sequence is read
9102 using the keymaps of the buffer of the window clicked in, not the buffer
9103 of the selected window as normal.
9105 `read-key-sequence' drops unbound button-down events, since you normally
9106 only care about the click or drag events which follow them. If a drag
9107 or multi-click event is unbound, but the corresponding click event would
9108 be bound, `read-key-sequence' turns the event into a click event at the
9109 drag's starting position. This means that you don't have to distinguish
9110 between click and drag, double, or triple events unless you want to.
9112 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9113 lines separating windows, and scroll bars with imaginary keys
9114 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9116 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9117 function will process a switch-frame event if the user switches frames
9118 before typing anything. If the user switches frames in the middle of a
9119 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9120 is nil, then the event will be put off until after the current key sequence.
9122 `read-key-sequence' checks `function-key-map' for function key
9123 sequences, where they wouldn't conflict with ordinary bindings. See
9124 `function-key-map' for more details.
9126 The optional fifth argument COMMAND-LOOP, if non-nil, means
9127 that this key sequence is being read by something that will
9128 read commands one after another. It should be nil if the caller
9129 will read just one key sequence. */)
9130 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9131 command_loop)
9132 Lisp_Object prompt, continue_echo, dont_downcase_last;
9133 Lisp_Object can_return_switch_frame, command_loop;
9135 Lisp_Object keybuf[30];
9136 register int i;
9137 struct gcpro gcpro1;
9138 int count = specpdl_ptr - specpdl;
9140 if (!NILP (prompt))
9141 CHECK_STRING (prompt);
9142 QUIT;
9144 specbind (Qinput_method_exit_on_first_char,
9145 (NILP (command_loop) ? Qt : Qnil));
9146 specbind (Qinput_method_use_echo_area,
9147 (NILP (command_loop) ? Qt : Qnil));
9149 bzero (keybuf, sizeof keybuf);
9150 GCPRO1 (keybuf[0]);
9151 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9153 if (NILP (continue_echo))
9155 this_command_key_count = 0;
9156 this_single_command_key_start = 0;
9159 #ifdef HAVE_X_WINDOWS
9160 if (display_hourglass_p)
9161 cancel_hourglass ();
9162 #endif
9164 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9165 prompt, ! NILP (dont_downcase_last),
9166 ! NILP (can_return_switch_frame), 0);
9168 #if 0 /* The following is fine for code reading a key sequence and
9169 then proceeding with a lenghty computation, but it's not good
9170 for code reading keys in a loop, like an input method. */
9171 #ifdef HAVE_X_WINDOWS
9172 if (display_hourglass_p)
9173 start_hourglass ();
9174 #endif
9175 #endif
9177 if (i == -1)
9179 Vquit_flag = Qt;
9180 QUIT;
9182 UNGCPRO;
9183 return unbind_to (count, make_event_array (i, keybuf));
9186 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9187 Sread_key_sequence_vector, 1, 5, 0,
9188 doc: /* Like `read-key-sequence' but always return a vector. */)
9189 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9190 command_loop)
9191 Lisp_Object prompt, continue_echo, dont_downcase_last;
9192 Lisp_Object can_return_switch_frame, command_loop;
9194 Lisp_Object keybuf[30];
9195 register int i;
9196 struct gcpro gcpro1;
9197 int count = specpdl_ptr - specpdl;
9199 if (!NILP (prompt))
9200 CHECK_STRING (prompt);
9201 QUIT;
9203 specbind (Qinput_method_exit_on_first_char,
9204 (NILP (command_loop) ? Qt : Qnil));
9205 specbind (Qinput_method_use_echo_area,
9206 (NILP (command_loop) ? Qt : Qnil));
9208 bzero (keybuf, sizeof keybuf);
9209 GCPRO1 (keybuf[0]);
9210 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9212 if (NILP (continue_echo))
9214 this_command_key_count = 0;
9215 this_single_command_key_start = 0;
9218 #ifdef HAVE_X_WINDOWS
9219 if (display_hourglass_p)
9220 cancel_hourglass ();
9221 #endif
9223 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9224 prompt, ! NILP (dont_downcase_last),
9225 ! NILP (can_return_switch_frame), 0);
9227 #ifdef HAVE_X_WINDOWS
9228 if (display_hourglass_p)
9229 start_hourglass ();
9230 #endif
9232 if (i == -1)
9234 Vquit_flag = Qt;
9235 QUIT;
9237 UNGCPRO;
9238 return unbind_to (count, Fvector (i, keybuf));
9241 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9242 doc: /* Execute CMD as an editor command.
9243 CMD must be a symbol that satisfies the `commandp' predicate.
9244 Optional second arg RECORD-FLAG non-nil
9245 means unconditionally put this command in `command-history'.
9246 Otherwise, that is done only if an arg is read using the minibuffer.
9247 The argument KEYS specifies the value to use instead of (this-command-keys)
9248 when reading the arguments; if it is nil, (this-command-keys) is used.
9249 The argument SPECIAL, if non-nil, means that this command is executing
9250 a special event, so ignore the prefix argument and don't clear it. */)
9251 (cmd, record_flag, keys, special)
9252 Lisp_Object cmd, record_flag, keys, special;
9254 register Lisp_Object final;
9255 register Lisp_Object tem;
9256 Lisp_Object prefixarg;
9257 struct backtrace backtrace;
9258 extern int debug_on_next_call;
9260 debug_on_next_call = 0;
9262 if (NILP (special))
9264 prefixarg = current_kboard->Vprefix_arg;
9265 Vcurrent_prefix_arg = prefixarg;
9266 current_kboard->Vprefix_arg = Qnil;
9268 else
9269 prefixarg = Qnil;
9271 if (SYMBOLP (cmd))
9273 tem = Fget (cmd, Qdisabled);
9274 if (!NILP (tem) && !NILP (Vrun_hooks))
9276 tem = Fsymbol_value (Qdisabled_command_hook);
9277 if (!NILP (tem))
9278 return call1 (Vrun_hooks, Qdisabled_command_hook);
9282 while (1)
9284 final = Findirect_function (cmd);
9286 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9288 struct gcpro gcpro1, gcpro2;
9290 GCPRO2 (cmd, prefixarg);
9291 do_autoload (final, cmd);
9292 UNGCPRO;
9294 else
9295 break;
9298 if (STRINGP (final) || VECTORP (final))
9300 /* If requested, place the macro in the command history. For
9301 other sorts of commands, call-interactively takes care of
9302 this. */
9303 if (!NILP (record_flag))
9305 Vcommand_history
9306 = Fcons (Fcons (Qexecute_kbd_macro,
9307 Fcons (final, Fcons (prefixarg, Qnil))),
9308 Vcommand_history);
9310 /* Don't keep command history around forever. */
9311 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9313 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9314 if (CONSP (tem))
9315 XSETCDR (tem, Qnil);
9319 return Fexecute_kbd_macro (final, prefixarg);
9322 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9324 backtrace.next = backtrace_list;
9325 backtrace_list = &backtrace;
9326 backtrace.function = &Qcall_interactively;
9327 backtrace.args = &cmd;
9328 backtrace.nargs = 1;
9329 backtrace.evalargs = 0;
9331 tem = Fcall_interactively (cmd, record_flag, keys);
9333 backtrace_list = backtrace.next;
9334 return tem;
9336 return Qnil;
9341 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9342 1, 1, "P",
9343 doc: /* Read function name, then read its arguments and call it. */)
9344 (prefixarg)
9345 Lisp_Object prefixarg;
9347 Lisp_Object function;
9348 char buf[40];
9349 int saved_last_point_position;
9350 Lisp_Object saved_keys, saved_last_point_position_buffer;
9351 Lisp_Object bindings, value;
9352 struct gcpro gcpro1, gcpro2, gcpro3;
9354 saved_keys = Fvector (this_command_key_count,
9355 XVECTOR (this_command_keys)->contents);
9356 saved_last_point_position_buffer = last_point_position_buffer;
9357 saved_last_point_position = last_point_position;
9358 buf[0] = 0;
9359 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
9361 if (EQ (prefixarg, Qminus))
9362 strcpy (buf, "- ");
9363 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9364 strcpy (buf, "C-u ");
9365 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9367 if (sizeof (int) == sizeof (EMACS_INT))
9368 sprintf (buf, "%d ", XINT (XCAR (prefixarg)));
9369 else if (sizeof (long) == sizeof (EMACS_INT))
9370 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9371 else
9372 abort ();
9374 else if (INTEGERP (prefixarg))
9376 if (sizeof (int) == sizeof (EMACS_INT))
9377 sprintf (buf, "%d ", XINT (prefixarg));
9378 else if (sizeof (long) == sizeof (EMACS_INT))
9379 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9380 else
9381 abort ();
9384 /* This isn't strictly correct if execute-extended-command
9385 is bound to anything else. Perhaps it should use
9386 this_command_keys? */
9387 strcat (buf, "M-x ");
9389 /* Prompt with buf, and then read a string, completing from and
9390 restricting to the set of all defined commands. Don't provide
9391 any initial input. Save the command read on the extended-command
9392 history list. */
9393 function = Fcompleting_read (build_string (buf),
9394 Vobarray, Qcommandp,
9395 Qt, Qnil, Qextended_command_history, Qnil,
9396 Qnil);
9398 if (STRINGP (function) && XSTRING (function)->size == 0)
9399 error ("No command name given");
9401 /* Set this_command_keys to the concatenation of saved_keys and
9402 function, followed by a RET. */
9404 struct Lisp_String *str;
9405 Lisp_Object *keys;
9406 int i;
9408 this_command_key_count = 0;
9409 this_single_command_key_start = 0;
9411 keys = XVECTOR (saved_keys)->contents;
9412 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9413 add_command_key (keys[i]);
9415 str = XSTRING (function);
9416 for (i = 0; i < str->size; i++)
9417 add_command_key (Faref (function, make_number (i)));
9419 add_command_key (make_number ('\015'));
9422 last_point_position = saved_last_point_position;
9423 last_point_position_buffer = saved_last_point_position_buffer;
9425 UNGCPRO;
9427 function = Fintern (function, Qnil);
9428 current_kboard->Vprefix_arg = prefixarg;
9429 Vthis_command = function;
9430 real_this_command = function;
9432 /* If enabled, show which key runs this command. */
9433 if (!NILP (Vsuggest_key_bindings)
9434 && NILP (Vexecuting_macro)
9435 && SYMBOLP (function))
9436 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9437 Qt, Qnil, Qnil);
9438 else
9439 bindings = Qnil;
9441 value = Qnil;
9442 GCPRO2 (bindings, value);
9443 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9445 /* If the command has a key binding, print it now. */
9446 if (!NILP (bindings)
9447 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9448 Qmouse_movement)))
9450 /* But first wait, and skip the message if there is input. */
9451 int delay_time;
9452 if (!NILP (echo_area_buffer[0]))
9453 /* This command displayed something in the echo area;
9454 so wait a few seconds, then display our suggestion message. */
9455 delay_time = (NUMBERP (Vsuggest_key_bindings)
9456 ? XINT (Vsuggest_key_bindings) : 2);
9457 else
9458 /* This command left the echo area empty,
9459 so display our message immediately. */
9460 delay_time = 0;
9462 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
9463 && ! CONSP (Vunread_command_events))
9465 Lisp_Object binding;
9466 char *newmessage;
9467 int message_p = push_message ();
9468 int count = BINDING_STACK_SIZE ();
9470 record_unwind_protect (push_message_unwind, Qnil);
9471 binding = Fkey_description (bindings);
9473 newmessage
9474 = (char *) alloca (XSTRING (SYMBOL_NAME (function))->size
9475 + STRING_BYTES (XSTRING (binding))
9476 + 100);
9477 sprintf (newmessage, "You can run the command `%s' with %s",
9478 XSTRING (SYMBOL_NAME (function))->data,
9479 XSTRING (binding)->data);
9480 message2_nolog (newmessage,
9481 strlen (newmessage),
9482 STRING_MULTIBYTE (binding));
9483 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9484 ? Vsuggest_key_bindings : make_number (2)),
9485 Qnil, Qnil))
9486 && message_p)
9487 restore_message ();
9489 unbind_to (count, Qnil);
9493 RETURN_UNGCPRO (value);
9497 /* Return nonzero if input events are pending. */
9500 detect_input_pending ()
9502 if (!input_pending)
9503 get_input_pending (&input_pending, 0);
9505 return input_pending;
9508 /* Return nonzero if input events are pending, and run any pending timers. */
9511 detect_input_pending_run_timers (do_display)
9512 int do_display;
9514 int old_timers_run = timers_run;
9516 if (!input_pending)
9517 get_input_pending (&input_pending, 1);
9519 if (old_timers_run != timers_run && do_display)
9521 redisplay_preserve_echo_area (8);
9522 /* The following fixes a bug when using lazy-lock with
9523 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9524 from an idle timer function. The symptom of the bug is that
9525 the cursor sometimes doesn't become visible until the next X
9526 event is processed. --gerd. */
9527 if (rif)
9528 rif->flush_display (NULL);
9531 return input_pending;
9534 /* This is called in some cases before a possible quit.
9535 It cases the next call to detect_input_pending to recompute input_pending.
9536 So calling this function unnecessarily can't do any harm. */
9538 void
9539 clear_input_pending ()
9541 input_pending = 0;
9544 /* Return nonzero if there are pending requeued events.
9545 This isn't used yet. The hope is to make wait_reading_process_input
9546 call it, and return if it runs Lisp code that unreads something.
9547 The problem is, kbd_buffer_get_event needs to be fixed to know what
9548 to do in that case. It isn't trivial. */
9551 requeued_events_pending_p ()
9553 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9557 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9558 doc: /* Return t if command input is currently available with no wait.
9559 Actually, the value is nil only if we can be sure that no input is available;
9560 if there is a doubt, the value is t. */)
9563 if (!NILP (Vunread_command_events) || unread_command_char != -1)
9564 return (Qt);
9566 get_input_pending (&input_pending, 1);
9567 return input_pending > 0 ? Qt : Qnil;
9570 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
9571 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
9574 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
9575 Lisp_Object val;
9577 if (total_keys < NUM_RECENT_KEYS)
9578 return Fvector (total_keys, keys);
9579 else
9581 val = Fvector (NUM_RECENT_KEYS, keys);
9582 bcopy (keys + recent_keys_index,
9583 XVECTOR (val)->contents,
9584 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
9585 bcopy (keys,
9586 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
9587 recent_keys_index * sizeof (Lisp_Object));
9588 return val;
9592 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
9593 doc: /* Return the key sequence that invoked this command.
9594 However, if the command has called `read-key-sequence', it returns
9595 the last key sequence that has been read.
9596 The value is a string or a vector. */)
9599 return make_event_array (this_command_key_count,
9600 XVECTOR (this_command_keys)->contents);
9603 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
9604 doc: /* Return the key sequence that invoked this command, as a vector.
9605 However, if the command has called `read-key-sequence', it returns
9606 the last key sequence that has been read. */)
9609 return Fvector (this_command_key_count,
9610 XVECTOR (this_command_keys)->contents);
9613 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
9614 Sthis_single_command_keys, 0, 0, 0,
9615 doc: /* Return the key sequence that invoked this command.
9616 More generally, it returns the last key sequence read, either by
9617 the command loop or by `read-key-sequence'.
9618 Unlike `this-command-keys', this function's value
9619 does not include prefix arguments.
9620 The value is always a vector. */)
9623 return Fvector (this_command_key_count
9624 - this_single_command_key_start,
9625 (XVECTOR (this_command_keys)->contents
9626 + this_single_command_key_start));
9629 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
9630 Sthis_single_command_raw_keys, 0, 0, 0,
9631 doc: /* Return the raw events that were read for this command.
9632 More generally, it returns the last key sequence read, either by
9633 the command loop or by `read-key-sequence'.
9634 Unlike `this-single-command-keys', this function's value
9635 shows the events before all translations (except for input methods).
9636 The value is always a vector. */)
9639 return Fvector (raw_keybuf_count,
9640 (XVECTOR (raw_keybuf)->contents));
9643 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
9644 Sreset_this_command_lengths, 0, 0, 0,
9645 doc: /* Used for complicated reasons in `universal-argument-other-key'.
9647 `universal-argument-other-key' rereads the event just typed.
9648 It then gets translated through `function-key-map'.
9649 The translated event gets included in the echo area and in
9650 the value of `this-command-keys' in addition to the raw original event.
9651 That is not right.
9653 Calling this function directs the translated event to replace
9654 the original event, so that only one version of the event actually
9655 appears in the echo area and in the value of `this-command-keys'. */)
9658 before_command_restore_flag = 1;
9659 before_command_key_count_1 = before_command_key_count;
9660 before_command_echo_length_1 = before_command_echo_length;
9661 return Qnil;
9664 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
9665 Sclear_this_command_keys, 0, 0, 0,
9666 doc: /* Clear out the vector that `this-command-keys' returns.
9667 Also clear the record of the last 100 events. */)
9670 int i;
9672 this_command_key_count = 0;
9674 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
9675 XVECTOR (recent_keys)->contents[i] = Qnil;
9676 total_keys = 0;
9677 recent_keys_index = 0;
9678 return Qnil;
9681 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
9682 doc: /* Return the current depth in recursive edits. */)
9685 Lisp_Object temp;
9686 XSETFASTINT (temp, command_loop_level + minibuf_level);
9687 return temp;
9690 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
9691 "FOpen dribble file: ",
9692 doc: /* Start writing all keyboard characters to a dribble file called FILE.
9693 If FILE is nil, close any open dribble file. */)
9694 (file)
9695 Lisp_Object file;
9697 if (dribble)
9699 fclose (dribble);
9700 dribble = 0;
9702 if (!NILP (file))
9704 file = Fexpand_file_name (file, Qnil);
9705 dribble = fopen (XSTRING (file)->data, "w");
9706 if (dribble == 0)
9707 report_file_error ("Opening dribble", Fcons (file, Qnil));
9709 return Qnil;
9712 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
9713 doc: /* Discard the contents of the terminal input buffer.
9714 Also cancel any kbd macro being defined. */)
9717 current_kboard->defining_kbd_macro = Qnil;
9718 update_mode_lines++;
9720 Vunread_command_events = Qnil;
9721 unread_command_char = -1;
9723 discard_tty_input ();
9725 kbd_fetch_ptr = kbd_store_ptr;
9726 Ffillarray (kbd_buffer_gcpro, Qnil);
9727 input_pending = 0;
9729 return Qnil;
9732 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
9733 doc: /* Stop Emacs and return to superior process. You can resume later.
9734 If `cannot-suspend' is non-nil, or if the system doesn't support job
9735 control, run a subshell instead.
9737 If optional arg STUFFSTRING is non-nil, its characters are stuffed
9738 to be read as terminal input by Emacs's parent, after suspension.
9740 Before suspending, run the normal hook `suspend-hook'.
9741 After resumption run the normal hook `suspend-resume-hook'.
9743 Some operating systems cannot stop the Emacs process and resume it later.
9744 On such systems, Emacs starts a subshell instead of suspending. */)
9745 (stuffstring)
9746 Lisp_Object stuffstring;
9748 int count = specpdl_ptr - specpdl;
9749 int old_height, old_width;
9750 int width, height;
9751 struct gcpro gcpro1;
9753 if (!NILP (stuffstring))
9754 CHECK_STRING (stuffstring);
9756 /* Run the functions in suspend-hook. */
9757 if (!NILP (Vrun_hooks))
9758 call1 (Vrun_hooks, intern ("suspend-hook"));
9760 GCPRO1 (stuffstring);
9761 get_frame_size (&old_width, &old_height);
9762 reset_sys_modes ();
9763 /* sys_suspend can get an error if it tries to fork a subshell
9764 and the system resources aren't available for that. */
9765 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
9766 Qnil);
9767 stuff_buffered_input (stuffstring);
9768 if (cannot_suspend)
9769 sys_subshell ();
9770 else
9771 sys_suspend ();
9772 unbind_to (count, Qnil);
9774 /* Check if terminal/window size has changed.
9775 Note that this is not useful when we are running directly
9776 with a window system; but suspend should be disabled in that case. */
9777 get_frame_size (&width, &height);
9778 if (width != old_width || height != old_height)
9779 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
9781 /* Run suspend-resume-hook. */
9782 if (!NILP (Vrun_hooks))
9783 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
9785 UNGCPRO;
9786 return Qnil;
9789 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
9790 Then in any case stuff anything Emacs has read ahead and not used. */
9792 void
9793 stuff_buffered_input (stuffstring)
9794 Lisp_Object stuffstring;
9796 /* stuff_char works only in BSD, versions 4.2 and up. */
9797 #ifdef BSD_SYSTEM
9798 #ifndef BSD4_1
9799 register unsigned char *p;
9801 if (STRINGP (stuffstring))
9803 register int count;
9805 p = XSTRING (stuffstring)->data;
9806 count = STRING_BYTES (XSTRING (stuffstring));
9807 while (count-- > 0)
9808 stuff_char (*p++);
9809 stuff_char ('\n');
9812 /* Anything we have read ahead, put back for the shell to read. */
9813 /* ?? What should this do when we have multiple keyboards??
9814 Should we ignore anything that was typed in at the "wrong" kboard? */
9815 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
9817 int idx;
9819 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
9820 kbd_fetch_ptr = kbd_buffer;
9821 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
9822 stuff_char (kbd_fetch_ptr->code);
9824 kbd_fetch_ptr->kind = NO_EVENT;
9825 idx = 2 * (kbd_fetch_ptr - kbd_buffer);
9826 ASET (kbd_buffer_gcpro, idx, Qnil);
9827 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
9830 input_pending = 0;
9831 #endif
9832 #endif /* BSD_SYSTEM and not BSD4_1 */
9835 void
9836 set_waiting_for_input (time_to_clear)
9837 EMACS_TIME *time_to_clear;
9839 input_available_clear_time = time_to_clear;
9841 /* Tell interrupt_signal to throw back to read_char, */
9842 waiting_for_input = 1;
9844 /* If interrupt_signal was called before and buffered a C-g,
9845 make it run again now, to avoid timing error. */
9846 if (!NILP (Vquit_flag))
9847 quit_throw_to_read_char ();
9850 void
9851 clear_waiting_for_input ()
9853 /* Tell interrupt_signal not to throw back to read_char, */
9854 waiting_for_input = 0;
9855 input_available_clear_time = 0;
9858 /* This routine is called at interrupt level in response to C-g.
9860 If interrupt_input, this is the handler for SIGINT. Otherwise, it
9861 is called from kbd_buffer_store_event, in handling SIGIO or
9862 SIGTINT.
9864 If `waiting_for_input' is non zero, then unless `echoing' is
9865 nonzero, immediately throw back to read_char.
9867 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
9868 eval to throw, when it gets a chance. If quit-flag is already
9869 non-nil, it stops the job right away. */
9871 SIGTYPE
9872 interrupt_signal (signalnum) /* If we don't have an argument, */
9873 int signalnum; /* some compilers complain in signal calls. */
9875 char c;
9876 /* Must preserve main program's value of errno. */
9877 int old_errno = errno;
9878 struct frame *sf = SELECTED_FRAME ();
9880 #if defined (USG) && !defined (POSIX_SIGNALS)
9881 if (!read_socket_hook && NILP (Vwindow_system))
9883 /* USG systems forget handlers when they are used;
9884 must reestablish each time */
9885 signal (SIGINT, interrupt_signal);
9886 signal (SIGQUIT, interrupt_signal);
9888 #endif /* USG */
9890 cancel_echoing ();
9892 if (!NILP (Vquit_flag)
9893 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
9895 /* If SIGINT isn't blocked, don't let us be interrupted by
9896 another SIGINT, it might be harmful due to non-reentrancy
9897 in I/O functions. */
9898 sigblock (sigmask (SIGINT));
9900 fflush (stdout);
9901 reset_sys_modes ();
9903 #ifdef SIGTSTP /* Support possible in later USG versions */
9905 * On systems which can suspend the current process and return to the original
9906 * shell, this command causes the user to end up back at the shell.
9907 * The "Auto-save" and "Abort" questions are not asked until
9908 * the user elects to return to emacs, at which point he can save the current
9909 * job and either dump core or continue.
9911 sys_suspend ();
9912 #else
9913 #ifdef VMS
9914 if (sys_suspend () == -1)
9916 printf ("Not running as a subprocess;\n");
9917 printf ("you can continue or abort.\n");
9919 #else /* not VMS */
9920 /* Perhaps should really fork an inferior shell?
9921 But that would not provide any way to get back
9922 to the original shell, ever. */
9923 printf ("No support for stopping a process on this operating system;\n");
9924 printf ("you can continue or abort.\n");
9925 #endif /* not VMS */
9926 #endif /* not SIGTSTP */
9927 #ifdef MSDOS
9928 /* We must remain inside the screen area when the internal terminal
9929 is used. Note that [Enter] is not echoed by dos. */
9930 cursor_to (0, 0);
9931 #endif
9932 /* It doesn't work to autosave while GC is in progress;
9933 the code used for auto-saving doesn't cope with the mark bit. */
9934 if (!gc_in_progress)
9936 printf ("Auto-save? (y or n) ");
9937 fflush (stdout);
9938 if (((c = getchar ()) & ~040) == 'Y')
9940 Fdo_auto_save (Qt, Qnil);
9941 #ifdef MSDOS
9942 printf ("\r\nAuto-save done");
9943 #else /* not MSDOS */
9944 printf ("Auto-save done\n");
9945 #endif /* not MSDOS */
9947 while (c != '\n') c = getchar ();
9949 else
9951 /* During GC, it must be safe to reenable quitting again. */
9952 Vinhibit_quit = Qnil;
9953 #ifdef MSDOS
9954 printf ("\r\n");
9955 #endif /* not MSDOS */
9956 printf ("Garbage collection in progress; cannot auto-save now\r\n");
9957 printf ("but will instead do a real quit after garbage collection ends\r\n");
9958 fflush (stdout);
9961 #ifdef MSDOS
9962 printf ("\r\nAbort? (y or n) ");
9963 #else /* not MSDOS */
9964 #ifdef VMS
9965 printf ("Abort (and enter debugger)? (y or n) ");
9966 #else /* not VMS */
9967 printf ("Abort (and dump core)? (y or n) ");
9968 #endif /* not VMS */
9969 #endif /* not MSDOS */
9970 fflush (stdout);
9971 if (((c = getchar ()) & ~040) == 'Y')
9972 abort ();
9973 while (c != '\n') c = getchar ();
9974 #ifdef MSDOS
9975 printf ("\r\nContinuing...\r\n");
9976 #else /* not MSDOS */
9977 printf ("Continuing...\n");
9978 #endif /* not MSDOS */
9979 fflush (stdout);
9980 init_sys_modes ();
9981 sigfree ();
9983 else
9985 /* If executing a function that wants to be interrupted out of
9986 and the user has not deferred quitting by binding `inhibit-quit'
9987 then quit right away. */
9988 if (immediate_quit && NILP (Vinhibit_quit))
9990 struct gl_state_s saved;
9991 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9993 immediate_quit = 0;
9994 sigfree ();
9995 saved = gl_state;
9996 GCPRO4 (saved.object, saved.global_code,
9997 saved.current_syntax_table, saved.old_prop);
9998 Fsignal (Qquit, Qnil);
9999 gl_state = saved;
10000 UNGCPRO;
10002 else
10003 /* Else request quit when it's safe */
10004 Vquit_flag = Qt;
10007 if (waiting_for_input && !echoing)
10008 quit_throw_to_read_char ();
10010 errno = old_errno;
10013 /* Handle a C-g by making read_char return C-g. */
10015 void
10016 quit_throw_to_read_char ()
10018 sigfree ();
10019 /* Prevent another signal from doing this before we finish. */
10020 clear_waiting_for_input ();
10021 input_pending = 0;
10023 Vunread_command_events = Qnil;
10024 unread_command_char = -1;
10026 #if 0 /* Currently, sit_for is called from read_char without turning
10027 off polling. And that can call set_waiting_for_input.
10028 It seems to be harmless. */
10029 #ifdef POLL_FOR_INPUT
10030 /* May be > 1 if in recursive minibuffer. */
10031 if (poll_suppress_count == 0)
10032 abort ();
10033 #endif
10034 #endif
10035 if (FRAMEP (internal_last_event_frame)
10036 && !EQ (internal_last_event_frame, selected_frame))
10037 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10038 0, 0);
10040 _longjmp (getcjmp, 1);
10043 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10044 doc: /* Set mode of reading keyboard input.
10045 First arg INTERRUPT non-nil means use input interrupts;
10046 nil means use CBREAK mode.
10047 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10048 (no effect except in CBREAK mode).
10049 Third arg META t means accept 8-bit input (for a Meta key).
10050 META nil means ignore the top bit, on the assumption it is parity.
10051 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10052 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10053 See also `current-input-mode'. */)
10054 (interrupt, flow, meta, quit)
10055 Lisp_Object interrupt, flow, meta, quit;
10057 if (!NILP (quit)
10058 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10059 error ("set-input-mode: QUIT must be an ASCII character");
10061 #ifdef POLL_FOR_INPUT
10062 stop_polling ();
10063 #endif
10065 #ifndef DOS_NT
10066 /* this causes startup screen to be restored and messes with the mouse */
10067 reset_sys_modes ();
10068 #endif
10070 #ifdef SIGIO
10071 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10072 if (read_socket_hook)
10074 /* When using X, don't give the user a real choice,
10075 because we haven't implemented the mechanisms to support it. */
10076 #ifdef NO_SOCK_SIGIO
10077 interrupt_input = 0;
10078 #else /* not NO_SOCK_SIGIO */
10079 interrupt_input = 1;
10080 #endif /* NO_SOCK_SIGIO */
10082 else
10083 interrupt_input = !NILP (interrupt);
10084 #else /* not SIGIO */
10085 interrupt_input = 0;
10086 #endif /* not SIGIO */
10088 /* Our VMS input only works by interrupts, as of now. */
10089 #ifdef VMS
10090 interrupt_input = 1;
10091 #endif
10093 flow_control = !NILP (flow);
10094 if (NILP (meta))
10095 meta_key = 0;
10096 else if (EQ (meta, Qt))
10097 meta_key = 1;
10098 else
10099 meta_key = 2;
10100 if (!NILP (quit))
10101 /* Don't let this value be out of range. */
10102 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10104 #ifndef DOS_NT
10105 init_sys_modes ();
10106 #endif
10108 #ifdef POLL_FOR_INPUT
10109 poll_suppress_count = 1;
10110 start_polling ();
10111 #endif
10112 return Qnil;
10115 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10116 doc: /* Return information about the way Emacs currently reads keyboard input.
10117 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10118 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10119 nil, Emacs is using CBREAK mode.
10120 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10121 terminal; this does not apply if Emacs uses interrupt-driven input.
10122 META is t if accepting 8-bit input with 8th bit as Meta flag.
10123 META nil means ignoring the top bit, on the assumption it is parity.
10124 META is neither t nor nil if accepting 8-bit input and using
10125 all 8 bits as the character code.
10126 QUIT is the character Emacs currently uses to quit.
10127 The elements of this list correspond to the arguments of
10128 `set-input-mode'. */)
10131 Lisp_Object val[4];
10133 val[0] = interrupt_input ? Qt : Qnil;
10134 val[1] = flow_control ? Qt : Qnil;
10135 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10136 XSETFASTINT (val[3], quit_char);
10138 return Flist (sizeof (val) / sizeof (val[0]), val);
10143 * Set up a new kboard object with reasonable initial values.
10145 void
10146 init_kboard (kb)
10147 KBOARD *kb;
10149 kb->Voverriding_terminal_local_map = Qnil;
10150 kb->Vlast_command = Qnil;
10151 kb->Vreal_last_command = Qnil;
10152 kb->Vprefix_arg = Qnil;
10153 kb->Vlast_prefix_arg = Qnil;
10154 kb->kbd_queue = Qnil;
10155 kb->kbd_queue_has_data = 0;
10156 kb->immediate_echo = 0;
10157 kb->echo_string = Qnil;
10158 kb->echo_after_prompt = -1;
10159 kb->kbd_macro_buffer = 0;
10160 kb->kbd_macro_bufsize = 0;
10161 kb->defining_kbd_macro = Qnil;
10162 kb->Vlast_kbd_macro = Qnil;
10163 kb->reference_count = 0;
10164 kb->Vsystem_key_alist = Qnil;
10165 kb->system_key_syms = Qnil;
10166 kb->Vdefault_minibuffer_frame = Qnil;
10170 * Destroy the contents of a kboard object, but not the object itself.
10171 * We use this just before deleting it, or if we're going to initialize
10172 * it a second time.
10174 static void
10175 wipe_kboard (kb)
10176 KBOARD *kb;
10178 if (kb->kbd_macro_buffer)
10179 xfree (kb->kbd_macro_buffer);
10182 #ifdef MULTI_KBOARD
10184 /* Free KB and memory referenced from it. */
10186 void
10187 delete_kboard (kb)
10188 KBOARD *kb;
10190 KBOARD **kbp;
10192 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10193 if (*kbp == NULL)
10194 abort ();
10195 *kbp = kb->next_kboard;
10197 /* Prevent a dangling reference to KB. */
10198 if (kb == current_kboard
10199 && FRAMEP (selected_frame)
10200 && FRAME_LIVE_P (XFRAME (selected_frame)))
10202 current_kboard = XFRAME (selected_frame)->kboard;
10203 if (current_kboard == kb)
10204 abort ();
10207 wipe_kboard (kb);
10208 xfree (kb);
10211 #endif /* MULTI_KBOARD */
10213 void
10214 init_keyboard ()
10216 /* This is correct before outermost invocation of the editor loop */
10217 command_loop_level = -1;
10218 immediate_quit = 0;
10219 quit_char = Ctl ('g');
10220 Vunread_command_events = Qnil;
10221 unread_command_char = -1;
10222 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10223 total_keys = 0;
10224 recent_keys_index = 0;
10225 kbd_fetch_ptr = kbd_buffer;
10226 kbd_store_ptr = kbd_buffer;
10227 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10228 #ifdef HAVE_MOUSE
10229 do_mouse_tracking = Qnil;
10230 #endif
10231 input_pending = 0;
10233 /* This means that command_loop_1 won't try to select anything the first
10234 time through. */
10235 internal_last_event_frame = Qnil;
10236 Vlast_event_frame = internal_last_event_frame;
10238 #ifdef MULTI_KBOARD
10239 current_kboard = initial_kboard;
10240 #endif
10241 wipe_kboard (current_kboard);
10242 init_kboard (current_kboard);
10244 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
10246 signal (SIGINT, interrupt_signal);
10247 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10248 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10249 SIGQUIT and we can't tell which one it will give us. */
10250 signal (SIGQUIT, interrupt_signal);
10251 #endif /* HAVE_TERMIO */
10253 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10254 #ifdef SIGIO
10255 if (!noninteractive)
10256 signal (SIGIO, input_available_signal);
10257 #endif /* SIGIO */
10259 /* Use interrupt input by default, if it works and noninterrupt input
10260 has deficiencies. */
10262 #ifdef INTERRUPT_INPUT
10263 interrupt_input = 1;
10264 #else
10265 interrupt_input = 0;
10266 #endif
10268 /* Our VMS input only works by interrupts, as of now. */
10269 #ifdef VMS
10270 interrupt_input = 1;
10271 #endif
10273 sigfree ();
10274 dribble = 0;
10276 if (keyboard_init_hook)
10277 (*keyboard_init_hook) ();
10279 #ifdef POLL_FOR_INPUT
10280 poll_suppress_count = 1;
10281 start_polling ();
10282 #endif
10285 /* This type's only use is in syms_of_keyboard, to initialize the
10286 event header symbols and put properties on them. */
10287 struct event_head {
10288 Lisp_Object *var;
10289 char *name;
10290 Lisp_Object *kind;
10293 struct event_head head_table[] = {
10294 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10295 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10296 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10297 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10298 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10299 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
10300 {&Qselect_window, "select-window", &Qselect_window}
10303 void
10304 syms_of_keyboard ()
10306 Vpre_help_message = Qnil;
10307 staticpro (&Vpre_help_message);
10309 Vlispy_mouse_stem = build_string ("mouse");
10310 staticpro (&Vlispy_mouse_stem);
10312 /* Tool-bars. */
10313 QCimage = intern (":image");
10314 staticpro (&QCimage);
10316 staticpro (&Qhelp_echo);
10317 Qhelp_echo = intern ("help-echo");
10319 staticpro (&item_properties);
10320 item_properties = Qnil;
10322 staticpro (&tool_bar_item_properties);
10323 tool_bar_item_properties = Qnil;
10324 staticpro (&tool_bar_items_vector);
10325 tool_bar_items_vector = Qnil;
10327 staticpro (&real_this_command);
10328 real_this_command = Qnil;
10330 Qtimer_event_handler = intern ("timer-event-handler");
10331 staticpro (&Qtimer_event_handler);
10333 Qdisabled_command_hook = intern ("disabled-command-hook");
10334 staticpro (&Qdisabled_command_hook);
10336 Qself_insert_command = intern ("self-insert-command");
10337 staticpro (&Qself_insert_command);
10339 Qforward_char = intern ("forward-char");
10340 staticpro (&Qforward_char);
10342 Qbackward_char = intern ("backward-char");
10343 staticpro (&Qbackward_char);
10345 Qdisabled = intern ("disabled");
10346 staticpro (&Qdisabled);
10348 Qundefined = intern ("undefined");
10349 staticpro (&Qundefined);
10351 Qpre_command_hook = intern ("pre-command-hook");
10352 staticpro (&Qpre_command_hook);
10354 Qpost_command_hook = intern ("post-command-hook");
10355 staticpro (&Qpost_command_hook);
10357 Qpost_command_idle_hook = intern ("post-command-idle-hook");
10358 staticpro (&Qpost_command_idle_hook);
10360 Qdeferred_action_function = intern ("deferred-action-function");
10361 staticpro (&Qdeferred_action_function);
10363 Qcommand_hook_internal = intern ("command-hook-internal");
10364 staticpro (&Qcommand_hook_internal);
10366 Qfunction_key = intern ("function-key");
10367 staticpro (&Qfunction_key);
10368 Qmouse_click = intern ("mouse-click");
10369 staticpro (&Qmouse_click);
10370 #ifdef WINDOWSNT
10371 Qmouse_wheel = intern ("mouse-wheel");
10372 staticpro (&Qmouse_wheel);
10373 Qlanguage_change = intern ("language-change");
10374 staticpro (&Qlanguage_change);
10375 #endif
10376 Qdrag_n_drop = intern ("drag-n-drop");
10377 staticpro (&Qdrag_n_drop);
10379 Qsave_session = intern ("save-session");
10380 staticpro(&Qsave_session);
10382 Qusr1_signal = intern ("usr1-signal");
10383 staticpro (&Qusr1_signal);
10384 Qusr2_signal = intern ("usr2-signal");
10385 staticpro (&Qusr2_signal);
10387 Qmenu_enable = intern ("menu-enable");
10388 staticpro (&Qmenu_enable);
10389 Qmenu_alias = intern ("menu-alias");
10390 staticpro (&Qmenu_alias);
10391 QCenable = intern (":enable");
10392 staticpro (&QCenable);
10393 QCvisible = intern (":visible");
10394 staticpro (&QCvisible);
10395 QChelp = intern (":help");
10396 staticpro (&QChelp);
10397 QCfilter = intern (":filter");
10398 staticpro (&QCfilter);
10399 QCbutton = intern (":button");
10400 staticpro (&QCbutton);
10401 QCkeys = intern (":keys");
10402 staticpro (&QCkeys);
10403 QCkey_sequence = intern (":key-sequence");
10404 staticpro (&QCkey_sequence);
10405 QCtoggle = intern (":toggle");
10406 staticpro (&QCtoggle);
10407 QCradio = intern (":radio");
10408 staticpro (&QCradio);
10410 Qmode_line = intern ("mode-line");
10411 staticpro (&Qmode_line);
10412 Qvertical_line = intern ("vertical-line");
10413 staticpro (&Qvertical_line);
10414 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10415 staticpro (&Qvertical_scroll_bar);
10416 Qmenu_bar = intern ("menu-bar");
10417 staticpro (&Qmenu_bar);
10419 Qabove_handle = intern ("above-handle");
10420 staticpro (&Qabove_handle);
10421 Qhandle = intern ("handle");
10422 staticpro (&Qhandle);
10423 Qbelow_handle = intern ("below-handle");
10424 staticpro (&Qbelow_handle);
10425 Qup = intern ("up");
10426 staticpro (&Qup);
10427 Qdown = intern ("down");
10428 staticpro (&Qdown);
10429 Qtop = intern ("top");
10430 staticpro (&Qtop);
10431 Qbottom = intern ("bottom");
10432 staticpro (&Qbottom);
10433 Qend_scroll = intern ("end-scroll");
10434 staticpro (&Qend_scroll);
10435 Qratio = intern ("ratio");
10436 staticpro (&Qratio);
10438 Qevent_kind = intern ("event-kind");
10439 staticpro (&Qevent_kind);
10440 Qevent_symbol_elements = intern ("event-symbol-elements");
10441 staticpro (&Qevent_symbol_elements);
10442 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
10443 staticpro (&Qevent_symbol_element_mask);
10444 Qmodifier_cache = intern ("modifier-cache");
10445 staticpro (&Qmodifier_cache);
10447 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
10448 staticpro (&Qrecompute_lucid_menubar);
10449 Qactivate_menubar_hook = intern ("activate-menubar-hook");
10450 staticpro (&Qactivate_menubar_hook);
10452 Qpolling_period = intern ("polling-period");
10453 staticpro (&Qpolling_period);
10455 Qinput_method_function = intern ("input-method-function");
10456 staticpro (&Qinput_method_function);
10458 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
10459 staticpro (&Qinput_method_exit_on_first_char);
10460 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
10461 staticpro (&Qinput_method_use_echo_area);
10463 Fset (Qinput_method_exit_on_first_char, Qnil);
10464 Fset (Qinput_method_use_echo_area, Qnil);
10466 last_point_position_buffer = Qnil;
10469 struct event_head *p;
10471 for (p = head_table;
10472 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
10473 p++)
10475 *p->var = intern (p->name);
10476 staticpro (p->var);
10477 Fput (*p->var, Qevent_kind, *p->kind);
10478 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
10482 button_down_location = Fmake_vector (make_number (1), Qnil);
10483 staticpro (&button_down_location);
10484 mouse_syms = Fmake_vector (make_number (1), Qnil);
10485 staticpro (&mouse_syms);
10488 int i;
10489 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
10491 modifier_symbols = Fmake_vector (make_number (len), Qnil);
10492 for (i = 0; i < len; i++)
10493 if (modifier_names[i])
10494 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
10495 staticpro (&modifier_symbols);
10498 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
10499 staticpro (&recent_keys);
10501 this_command_keys = Fmake_vector (make_number (40), Qnil);
10502 staticpro (&this_command_keys);
10504 raw_keybuf = Fmake_vector (make_number (30), Qnil);
10505 staticpro (&raw_keybuf);
10507 Qextended_command_history = intern ("extended-command-history");
10508 Fset (Qextended_command_history, Qnil);
10509 staticpro (&Qextended_command_history);
10511 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10512 staticpro (&kbd_buffer_gcpro);
10514 accent_key_syms = Qnil;
10515 staticpro (&accent_key_syms);
10517 func_key_syms = Qnil;
10518 staticpro (&func_key_syms);
10520 #ifdef WINDOWSNT
10521 mouse_wheel_syms = Qnil;
10522 staticpro (&mouse_wheel_syms);
10524 drag_n_drop_syms = Qnil;
10525 staticpro (&drag_n_drop_syms);
10526 #endif
10528 unread_switch_frame = Qnil;
10529 staticpro (&unread_switch_frame);
10531 internal_last_event_frame = Qnil;
10532 staticpro (&internal_last_event_frame);
10534 read_key_sequence_cmd = Qnil;
10535 staticpro (&read_key_sequence_cmd);
10537 menu_bar_one_keymap_changed_items = Qnil;
10538 staticpro (&menu_bar_one_keymap_changed_items);
10540 defsubr (&Sevent_convert_list);
10541 defsubr (&Sread_key_sequence);
10542 defsubr (&Sread_key_sequence_vector);
10543 defsubr (&Srecursive_edit);
10544 #ifdef HAVE_MOUSE
10545 defsubr (&Strack_mouse);
10546 #endif
10547 defsubr (&Sinput_pending_p);
10548 defsubr (&Scommand_execute);
10549 defsubr (&Srecent_keys);
10550 defsubr (&Sthis_command_keys);
10551 defsubr (&Sthis_command_keys_vector);
10552 defsubr (&Sthis_single_command_keys);
10553 defsubr (&Sthis_single_command_raw_keys);
10554 defsubr (&Sreset_this_command_lengths);
10555 defsubr (&Sclear_this_command_keys);
10556 defsubr (&Ssuspend_emacs);
10557 defsubr (&Sabort_recursive_edit);
10558 defsubr (&Sexit_recursive_edit);
10559 defsubr (&Srecursion_depth);
10560 defsubr (&Stop_level);
10561 defsubr (&Sdiscard_input);
10562 defsubr (&Sopen_dribble_file);
10563 defsubr (&Sset_input_mode);
10564 defsubr (&Scurrent_input_mode);
10565 defsubr (&Sexecute_extended_command);
10567 DEFVAR_LISP ("last-command-char", &last_command_char,
10568 doc: /* Last input event that was part of a command. */);
10570 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
10571 doc: /* Last input event that was part of a command. */);
10573 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
10574 doc: /* Last input event in a command, except for mouse menu events.
10575 Mouse menus give back keys that don't look like mouse events;
10576 this variable holds the actual mouse event that led to the menu,
10577 so that you can determine whether the command was run by mouse or not. */);
10579 DEFVAR_LISP ("last-input-char", &last_input_char,
10580 doc: /* Last input event. */);
10582 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
10583 doc: /* Last input event. */);
10585 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
10586 doc: /* List of events to be read as the command input.
10587 These events are processed first, before actual keyboard input. */);
10588 Vunread_command_events = Qnil;
10590 DEFVAR_INT ("unread-command-char", &unread_command_char,
10591 doc: /* If not -1, an object to be read as next command input event. */);
10593 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
10594 doc: /* List of events to be processed as input by input methods.
10595 These events are processed after `unread-command-events', but
10596 before actual keyboard input. */);
10597 Vunread_post_input_method_events = Qnil;
10599 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
10600 doc: /* List of events to be processed as input by input methods.
10601 These events are processed after `unread-command-events', but
10602 before actual keyboard input. */);
10603 Vunread_input_method_events = Qnil;
10605 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
10606 doc: /* Meta-prefix character code.
10607 Meta-foo as command input turns into this character followed by foo. */);
10608 XSETINT (meta_prefix_char, 033);
10610 DEFVAR_KBOARD ("last-command", Vlast_command,
10611 doc: /* The last command executed.
10612 Normally a symbol with a function definition, but can be whatever was found
10613 in the keymap, or whatever the variable `this-command' was set to by that
10614 command.
10616 The value `mode-exit' is special; it means that the previous command
10617 read an event that told it to exit, and it did so and unread that event.
10618 In other words, the present command is the event that made the previous
10619 command exit.
10621 The value `kill-region' is special; it means that the previous command
10622 was a kill command. */);
10624 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
10625 doc: /* Same as `last-command', but never altered by Lisp code. */);
10627 DEFVAR_LISP ("this-command", &Vthis_command,
10628 doc: /* The command now being executed.
10629 The command can set this variable; whatever is put here
10630 will be in `last-command' during the following command. */);
10631 Vthis_command = Qnil;
10633 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
10634 doc: /* If non-nil, the original command bound to the current key sequence.
10635 The value of `this-command' is the result of looking up the original
10636 command in the active keymaps. */);
10637 Vthis_original_command = Qnil;
10639 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
10640 doc: /* *Number of input events between auto-saves.
10641 Zero means disable autosaving due to number of characters typed. */);
10642 auto_save_interval = 300;
10644 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
10645 doc: /* *Number of seconds idle time before auto-save.
10646 Zero or nil means disable auto-saving due to idleness.
10647 After auto-saving due to this many seconds of idle time,
10648 Emacs also does a garbage collection if that seems to be warranted. */);
10649 XSETFASTINT (Vauto_save_timeout, 30);
10651 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
10652 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
10653 The value may be integer or floating point. */);
10654 Vecho_keystrokes = make_number (1);
10656 DEFVAR_INT ("polling-period", &polling_period,
10657 doc: /* *Interval between polling for input during Lisp execution.
10658 The reason for polling is to make C-g work to stop a running program.
10659 Polling is needed only when using X windows and SIGIO does not work.
10660 Polling is automatically disabled in all other cases. */);
10661 polling_period = 2;
10663 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
10664 doc: /* *Maximum time between mouse clicks to make a double-click.
10665 Measured in milliseconds. nil means disable double-click recognition;
10666 t means double-clicks have no time limit and are detected
10667 by position only. */);
10668 Vdouble_click_time = make_number (500);
10670 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
10671 doc: /* *Maximum mouse movement between clicks to make a double-click.
10672 On window-system frames, value is the number of pixels the mouse may have
10673 moved horizontally or vertically between two clicks to make a double-click.
10674 On non window-system frames, value is interpreted in units of 1/8 characters
10675 instead of pixels.
10677 This variable is also the threshold for motion of the mouse
10678 to count as a drag. */);
10679 double_click_fuzz = 3;
10681 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
10682 doc: /* *Non-nil means inhibit local map menu bar menus. */);
10683 inhibit_local_menu_bar_menus = 0;
10685 DEFVAR_INT ("num-input-keys", &num_input_keys,
10686 doc: /* Number of complete key sequences read as input so far.
10687 This includes key sequences read from keyboard macros.
10688 The number is effectively the number of interactive command invocations. */);
10689 num_input_keys = 0;
10691 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
10692 doc: /* Number of input events read from the keyboard so far.
10693 This does not include events generated by keyboard macros. */);
10694 num_nonmacro_input_events = 0;
10696 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
10697 doc: /* The frame in which the most recently read event occurred.
10698 If the last event came from a keyboard macro, this is set to `macro'. */);
10699 Vlast_event_frame = Qnil;
10701 /* This variable is set up in sysdep.c. */
10702 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
10703 doc: /* The ERASE character as set by the user with stty. */);
10705 DEFVAR_LISP ("help-char", &Vhelp_char,
10706 doc: /* Character to recognize as meaning Help.
10707 When it is read, do `(eval help-form)', and display result if it's a string.
10708 If the value of `help-form' is nil, this char can be read normally. */);
10709 XSETINT (Vhelp_char, Ctl ('H'));
10711 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
10712 doc: /* List of input events to recognize as meaning Help.
10713 These work just like the value of `help-char' (see that). */);
10714 Vhelp_event_list = Qnil;
10716 DEFVAR_LISP ("help-form", &Vhelp_form,
10717 doc: /* Form to execute when character `help-char' is read.
10718 If the form returns a string, that string is displayed.
10719 If `help-form' is nil, the help char is not recognized. */);
10720 Vhelp_form = Qnil;
10722 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
10723 doc: /* Command to run when `help-char' character follows a prefix key.
10724 This command is used only when there is no actual binding
10725 for that character after that prefix key. */);
10726 Vprefix_help_command = Qnil;
10728 DEFVAR_LISP ("top-level", &Vtop_level,
10729 doc: /* Form to evaluate when Emacs starts up.
10730 Useful to set before you dump a modified Emacs. */);
10731 Vtop_level = Qnil;
10733 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
10734 doc: /* Translate table for keyboard input, or nil.
10735 Each character is looked up in this string and the contents used instead.
10736 The value may be a string, a vector, or a char-table.
10737 If it is a string or vector of length N,
10738 character codes N and up are untranslated.
10739 In a vector or a char-table, an element which is nil means "no translation". */);
10740 Vkeyboard_translate_table = Qnil;
10742 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
10743 doc: /* Non-nil means to always spawn a subshell instead of suspending.
10744 \(Even if the operating system has support for stopping a process.\) */);
10745 cannot_suspend = 0;
10747 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
10748 doc: /* Non-nil means prompt with menus when appropriate.
10749 This is done when reading from a keymap that has a prompt string,
10750 for elements that have prompt strings.
10751 The menu is displayed on the screen
10752 if X menus were enabled at configuration
10753 time and the previous event was a mouse click prefix key.
10754 Otherwise, menu prompting uses the echo area. */);
10755 menu_prompting = 1;
10757 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
10758 doc: /* Character to see next line of menu prompt.
10759 Type this character while in a menu prompt to rotate around the lines of it. */);
10760 XSETINT (menu_prompt_more_char, ' ');
10762 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
10763 doc: /* A mask of additional modifier keys to use with every keyboard character.
10764 Emacs applies the modifiers of the character stored here to each keyboard
10765 character it reads. For example, after evaluating the expression
10766 (setq extra-keyboard-modifiers ?\\C-x)
10767 all input characters will have the control modifier applied to them.
10769 Note that the character ?\\C-@, equivalent to the integer zero, does
10770 not count as a control character; rather, it counts as a character
10771 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
10772 cancels any modification. */);
10773 extra_keyboard_modifiers = 0;
10775 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
10776 doc: /* If an editing command sets this to t, deactivate the mark afterward.
10777 The command loop sets this to nil before each command,
10778 and tests the value when the command returns.
10779 Buffer modification stores t in this variable. */);
10780 Vdeactivate_mark = Qnil;
10782 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
10783 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
10784 Vcommand_hook_internal = Qnil;
10786 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
10787 doc: /* Normal hook run before each command is executed.
10788 If an unhandled error happens in running this hook,
10789 the hook value is set to nil, since otherwise the error
10790 might happen repeatedly and make Emacs nonfunctional. */);
10791 Vpre_command_hook = Qnil;
10793 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
10794 doc: /* Normal hook run after each command is executed.
10795 If an unhandled error happens in running this hook,
10796 the hook value is set to nil, since otherwise the error
10797 might happen repeatedly and make Emacs nonfunctional. */);
10798 Vpost_command_hook = Qnil;
10800 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
10801 doc: /* Normal hook run after each command is executed, if idle.
10802 Errors running the hook are caught and ignored.
10803 This feature is obsolete; use idle timers instead. See `etc/NEWS'. */);
10804 Vpost_command_idle_hook = Qnil;
10806 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
10807 doc: /* Delay time before running `post-command-idle-hook'.
10808 This is measured in microseconds. */);
10809 post_command_idle_delay = 100000;
10811 #if 0
10812 DEFVAR_LISP ("echo-area-clear-hook", ...,
10813 doc: /* Normal hook run when clearing the echo area. */);
10814 #endif
10815 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
10816 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
10818 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
10819 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
10820 Vlucid_menu_bar_dirty_flag = Qnil;
10822 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
10823 doc: /* List of menu bar items to move to the end of the menu bar.
10824 The elements of the list are event types that may have menu bar bindings. */);
10825 Vmenu_bar_final_items = Qnil;
10827 DEFVAR_KBOARD ("overriding-terminal-local-map",
10828 Voverriding_terminal_local_map,
10829 doc: /* Per-terminal keymap that overrides all other local keymaps.
10830 If this variable is non-nil, it is used as a keymap instead of the
10831 buffer's local map, and the minor mode keymaps and text property keymaps.
10832 This variable is intended to let commands such as `universal-argument'
10833 set up a different keymap for reading the next command. */);
10835 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
10836 doc: /* Keymap that overrides all other local keymaps.
10837 If this variable is non-nil, it is used as a keymap instead of the
10838 buffer's local map, and the minor mode keymaps and text property keymaps. */);
10839 Voverriding_local_map = Qnil;
10841 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
10842 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
10843 Otherwise, the menu bar continues to reflect the buffer's local map
10844 and the minor mode maps regardless of `overriding-local-map'. */);
10845 Voverriding_local_map_menu_flag = Qnil;
10847 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
10848 doc: /* Keymap defining bindings for special events to execute at low level. */);
10849 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
10851 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
10852 doc: /* *Non-nil means generate motion events for mouse motion. */);
10854 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
10855 doc: /* Alist of system-specific X windows key symbols.
10856 Each element should have the form (N . SYMBOL) where N is the
10857 numeric keysym code (sans the \"system-specific\" bit 1<<28)
10858 and SYMBOL is its name. */);
10860 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
10861 doc: /* List of deferred actions to be performed at a later time.
10862 The precise format isn't relevant here; we just check whether it is nil. */);
10863 Vdeferred_action_list = Qnil;
10865 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
10866 doc: /* Function to call to handle deferred actions, after each command.
10867 This function is called with no arguments after each command
10868 whenever `deferred-action-list' is non-nil. */);
10869 Vdeferred_action_function = Qnil;
10871 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
10872 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
10873 The value can be a length of time to show the message for.
10874 If the value is non-nil and not a number, we wait 2 seconds. */);
10875 Vsuggest_key_bindings = Qt;
10877 DEFVAR_LISP ("timer-list", &Vtimer_list,
10878 doc: /* List of active absolute time timers in order of increasing time. */);
10879 Vtimer_list = Qnil;
10881 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
10882 doc: /* List of active idle-time timers in order of increasing time. */);
10883 Vtimer_idle_list = Qnil;
10885 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
10886 doc: /* If non-nil, the function that implements the current input method.
10887 It's called with one argument, a printing character that was just read.
10888 \(That means a character with code 040...0176.)
10889 Typically this function uses `read-event' to read additional events.
10890 When it does so, it should first bind `input-method-function' to nil
10891 so it will not be called recursively.
10893 The function should return a list of zero or more events
10894 to be used as input. If it wants to put back some events
10895 to be reconsidered, separately, by the input method,
10896 it can add them to the beginning of `unread-command-events'.
10898 The input method function can find in `input-method-previous-method'
10899 the previous echo area message.
10901 The input method function should refer to the variables
10902 `input-method-use-echo-area' and `input-method-exit-on-first-char'
10903 for guidance on what to do. */);
10904 Vinput_method_function = Qnil;
10906 DEFVAR_LISP ("input-method-previous-message",
10907 &Vinput_method_previous_message,
10908 doc: /* When `input-method-function' is called, hold the previous echo area message.
10909 This variable exists because `read-event' clears the echo area
10910 before running the input method. It is nil if there was no message. */);
10911 Vinput_method_previous_message = Qnil;
10913 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
10914 doc: /* If non-nil, the function that implements the display of help.
10915 It's called with one argument, the help string to display. */);
10916 Vshow_help_function = Qnil;
10918 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
10919 doc: /* If non-nil, suppress point adjustment after executing a command.
10921 After a command is executed, if point is moved into a region that has
10922 special properties (e.g. composition, display), we adjust point to
10923 the boundary of the region. But, several special commands sets this
10924 variable to non-nil, then we suppress the point adjustment.
10926 This variable is set to nil before reading a command, and is checked
10927 just after executing the command. */);
10928 Vdisable_point_adjustment = Qnil;
10930 DEFVAR_LISP ("global-disable-point-adjustment",
10931 &Vglobal_disable_point_adjustment,
10932 doc: /* *If non-nil, always suppress point adjustment.
10934 The default value is nil, in which case, point adjustment are
10935 suppressed only after special commands that set
10936 `disable-point-adjustment' (which see) to non-nil. */);
10937 Vglobal_disable_point_adjustment = Qnil;
10939 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings,
10940 doc: /* Non-nil means updating menu bindings is allowed.
10941 A value of nil means menu bindings should not be updated.
10942 Used during Emacs' startup. */);
10943 update_menu_bindings = 1;
10945 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
10946 doc: /* *How long to display an echo-area message when the minibuffer is active.
10947 If the value is not a number, such messages don't time out. */);
10948 Vminibuffer_message_timeout = make_number (2);
10951 void
10952 keys_of_keyboard ()
10954 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
10955 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
10956 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
10957 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
10958 initial_define_key (meta_map, 'x', "execute-extended-command");
10960 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
10961 "handle-delete-frame");
10962 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
10963 "ignore-event");
10964 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
10965 "ignore-event");
10966 initial_define_lispy_key (Vspecial_event_map, "select-window",
10967 "handle-select-window");
10968 initial_define_lispy_key (Vspecial_event_map, "save-session",
10969 "handle-save-session");