Thanks to Hugo Gayosso, fix minor typos.
[emacs.git] / src / keyboard.c
blob009184add0785ea698b56b2a478acade5bdb06f1
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96,97,99, 2000, 01, 02
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 /* 1 after calling Freset_this_command_lengths.
149 Usually it is 0. */
150 int this_command_key_count_reset;
152 /* This vector is used as a buffer to record the events that were actually read
153 by read_key_sequence. */
154 Lisp_Object raw_keybuf;
155 int raw_keybuf_count;
157 #define GROW_RAW_KEYBUF \
158 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
160 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
161 Lisp_Object new; \
162 new = Fmake_vector (make_number (newsize), Qnil); \
163 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
164 raw_keybuf_count * sizeof (Lisp_Object)); \
165 raw_keybuf = new; \
168 /* Number of elements of this_command_keys
169 that precede this key sequence. */
170 int this_single_command_key_start;
172 /* Record values of this_command_key_count and echo_length ()
173 before this command was read. */
174 static int before_command_key_count;
175 static int before_command_echo_length;
177 extern int minbuf_level;
179 extern int message_enable_multibyte;
181 extern struct backtrace *backtrace_list;
183 /* If non-nil, the function that implements the display of help.
184 It's called with one argument, the help string to display. */
186 Lisp_Object Vshow_help_function;
188 /* If a string, the message displayed before displaying a help-echo
189 in the echo area. */
191 Lisp_Object Vpre_help_message;
193 /* Nonzero means do menu prompting. */
195 static int menu_prompting;
197 /* Character to see next line of menu prompt. */
199 static Lisp_Object menu_prompt_more_char;
201 /* For longjmp to where kbd input is being done. */
203 static jmp_buf getcjmp;
205 /* True while doing kbd input. */
206 int waiting_for_input;
208 /* True while displaying for echoing. Delays C-g throwing. */
210 int echoing;
212 /* Non-null means we can start echoing at the next input pause even
213 though there is something in the echo area. */
215 static struct kboard *ok_to_echo_at_next_pause;
217 /* The kboard last echoing, or null for none. Reset to 0 in
218 cancel_echoing. If non-null, and a current echo area message
219 exists, and echo_message_buffer is eq to the current message
220 buffer, we know that the message comes from echo_kboard. */
222 struct kboard *echo_kboard;
224 /* The buffer used for echoing. Set in echo_now, reset in
225 cancel_echoing. */
227 Lisp_Object echo_message_buffer;
229 /* Nonzero means disregard local maps for the menu bar. */
230 static int inhibit_local_menu_bar_menus;
232 /* Nonzero means C-g should cause immediate error-signal. */
233 int immediate_quit;
235 /* The user's ERASE setting. */
236 Lisp_Object Vtty_erase_char;
238 /* Character to recognize as the help char. */
239 Lisp_Object Vhelp_char;
241 /* List of other event types to recognize as meaning "help". */
242 Lisp_Object Vhelp_event_list;
244 /* Form to execute when help char is typed. */
245 Lisp_Object Vhelp_form;
247 /* Command to run when the help character follows a prefix key. */
248 Lisp_Object Vprefix_help_command;
250 /* List of items that should move to the end of the menu bar. */
251 Lisp_Object Vmenu_bar_final_items;
253 /* Non-nil means show the equivalent key-binding for
254 any M-x command that has one.
255 The value can be a length of time to show the message for.
256 If the value is non-nil and not a number, we wait 2 seconds. */
257 Lisp_Object Vsuggest_key_bindings;
259 /* How long to display an echo-area message when the minibuffer is active.
260 If the value is not a number, such messages don't time out. */
261 Lisp_Object Vminibuffer_message_timeout;
263 /* Character that causes a quit. Normally C-g.
265 If we are running on an ordinary terminal, this must be an ordinary
266 ASCII char, since we want to make it our interrupt character.
268 If we are not running on an ordinary terminal, it still needs to be
269 an ordinary ASCII char. This character needs to be recognized in
270 the input interrupt handler. At this point, the keystroke is
271 represented as a struct input_event, while the desired quit
272 character is specified as a lispy event. The mapping from struct
273 input_events to lispy events cannot run in an interrupt handler,
274 and the reverse mapping is difficult for anything but ASCII
275 keystrokes.
277 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
278 ASCII character. */
279 int quit_char;
281 extern Lisp_Object current_global_map;
282 extern int minibuf_level;
284 /* If non-nil, this is a map that overrides all other local maps. */
285 Lisp_Object Voverriding_local_map;
287 /* If non-nil, Voverriding_local_map applies to the menu bar. */
288 Lisp_Object Voverriding_local_map_menu_flag;
290 /* Keymap that defines special misc events that should
291 be processed immediately at a low level. */
292 Lisp_Object Vspecial_event_map;
294 /* Current depth in recursive edits. */
295 int command_loop_level;
297 /* Total number of times command_loop has read a key sequence. */
298 EMACS_INT num_input_keys;
300 /* Last input character read as a command. */
301 Lisp_Object last_command_char;
303 /* Last input character read as a command, not counting menus
304 reached by the mouse. */
305 Lisp_Object last_nonmenu_event;
307 /* Last input character read for any purpose. */
308 Lisp_Object last_input_char;
310 /* If not Qnil, a list of objects to be read as subsequent command input. */
311 Lisp_Object Vunread_command_events;
313 /* If not Qnil, a list of objects to be read as subsequent command input
314 including input method processing. */
315 Lisp_Object Vunread_input_method_events;
317 /* If not Qnil, a list of objects to be read as subsequent command input
318 but NOT including input method processing. */
319 Lisp_Object Vunread_post_input_method_events;
321 /* If not -1, an event to be read as subsequent command input. */
322 EMACS_INT unread_command_char;
324 /* If not Qnil, this is a switch-frame event which we decided to put
325 off until the end of a key sequence. This should be read as the
326 next command input, after any unread_command_events.
328 read_key_sequence uses this to delay switch-frame events until the
329 end of the key sequence; Fread_char uses it to put off switch-frame
330 events until a non-ASCII event is acceptable as input. */
331 Lisp_Object unread_switch_frame;
333 /* A mask of extra modifier bits to put into every keyboard char. */
334 EMACS_INT extra_keyboard_modifiers;
336 /* Char to use as prefix when a meta character is typed in.
337 This is bound on entry to minibuffer in case ESC is changed there. */
339 Lisp_Object meta_prefix_char;
341 /* Last size recorded for a current buffer which is not a minibuffer. */
342 static int last_non_minibuf_size;
344 /* Number of idle seconds before an auto-save and garbage collection. */
345 static Lisp_Object Vauto_save_timeout;
347 /* Total number of times read_char has returned. */
348 int num_input_events;
350 /* Total number of times read_char has returned, outside of macros. */
351 EMACS_INT num_nonmacro_input_events;
353 /* Auto-save automatically when this many characters have been typed
354 since the last time. */
356 static EMACS_INT auto_save_interval;
358 /* Value of num_nonmacro_input_events as of last auto save. */
360 int last_auto_save;
362 /* The command being executed by the command loop.
363 Commands may set this, and the value set will be copied into
364 current_kboard->Vlast_command instead of the actual command. */
365 Lisp_Object Vthis_command;
367 /* This is like Vthis_command, except that commands never set it. */
368 Lisp_Object real_this_command;
370 /* If the lookup of the command returns a binding, the original
371 command is stored in this-original-command. It is nil otherwise. */
372 Lisp_Object Vthis_original_command;
374 /* The value of point when the last command was executed. */
375 int last_point_position;
377 /* The buffer that was current when the last command was started. */
378 Lisp_Object last_point_position_buffer;
380 /* The frame in which the last input event occurred, or Qmacro if the
381 last event came from a macro. We use this to determine when to
382 generate switch-frame events. This may be cleared by functions
383 like Fselect_frame, to make sure that a switch-frame event is
384 generated by the next character. */
385 Lisp_Object internal_last_event_frame;
387 /* A user-visible version of the above, intended to allow users to
388 figure out where the last event came from, if the event doesn't
389 carry that information itself (i.e. if it was a character). */
390 Lisp_Object Vlast_event_frame;
392 /* The timestamp of the last input event we received from the X server.
393 X Windows wants this for selection ownership. */
394 unsigned long last_event_timestamp;
396 Lisp_Object Qself_insert_command;
397 Lisp_Object Qforward_char;
398 Lisp_Object Qbackward_char;
399 Lisp_Object Qundefined;
400 Lisp_Object Qtimer_event_handler;
402 /* read_key_sequence stores here the command definition of the
403 key sequence that it reads. */
404 Lisp_Object read_key_sequence_cmd;
406 /* Echo unfinished commands after this many seconds of pause. */
407 Lisp_Object Vecho_keystrokes;
409 /* Form to evaluate (if non-nil) when Emacs is started. */
410 Lisp_Object Vtop_level;
412 /* User-supplied table to translate input characters. */
413 Lisp_Object Vkeyboard_translate_table;
415 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
416 extern Lisp_Object Vfunction_key_map;
418 /* Another keymap that maps key sequences into key sequences.
419 This one takes precedence over ordinary definitions. */
420 extern Lisp_Object Vkey_translation_map;
422 /* If non-nil, this implements the current input method. */
423 Lisp_Object Vinput_method_function;
424 Lisp_Object Qinput_method_function;
426 /* When we call Vinput_method_function,
427 this holds the echo area message that was just erased. */
428 Lisp_Object Vinput_method_previous_message;
430 /* Non-nil means deactivate the mark at end of this command. */
431 Lisp_Object Vdeactivate_mark;
433 /* Menu bar specified in Lucid Emacs fashion. */
435 Lisp_Object Vlucid_menu_bar_dirty_flag;
436 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
438 Lisp_Object Qecho_area_clear_hook;
440 /* Hooks to run before and after each command. */
441 Lisp_Object Qpre_command_hook, Vpre_command_hook;
442 Lisp_Object Qpost_command_hook, Vpost_command_hook;
443 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
444 /* Hook run after a command if there's no more input soon. */
445 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
447 /* Delay time in microseconds before running post-command-idle-hook. */
448 EMACS_INT post_command_idle_delay;
450 /* List of deferred actions to be performed at a later time.
451 The precise format isn't relevant here; we just check whether it is nil. */
452 Lisp_Object Vdeferred_action_list;
454 /* Function to call to handle deferred actions, when there are any. */
455 Lisp_Object Vdeferred_action_function;
456 Lisp_Object Qdeferred_action_function;
458 Lisp_Object Qinput_method_exit_on_first_char;
459 Lisp_Object Qinput_method_use_echo_area;
461 /* File in which we write all commands we read. */
462 FILE *dribble;
464 /* Nonzero if input is available. */
465 int input_pending;
467 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
468 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
470 int meta_key;
472 /* Non-zero means force key bindings update in parse_menu_item. */
474 int update_menu_bindings;
476 extern char *pending_malloc_warning;
478 /* Circular buffer for pre-read keyboard input. */
480 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
482 /* Vector to GCPRO the Lisp objects referenced from kbd_buffer.
484 The interrupt-level event handlers will never enqueue an event on a
485 frame which is not in Vframe_list, and once an event is dequeued,
486 internal_last_event_frame or the event itself points to the frame.
487 So that's all fine.
489 But while the event is sitting in the queue, it's completely
490 unprotected. Suppose the user types one command which will run for
491 a while and then delete a frame, and then types another event at
492 the frame that will be deleted, before the command gets around to
493 it. Suppose there are no references to this frame elsewhere in
494 Emacs, and a GC occurs before the second event is dequeued. Now we
495 have an event referring to a freed frame, which will crash Emacs
496 when it is dequeued.
498 Similar things happen when an event on a scroll bar is enqueued; the
499 window may be deleted while the event is in the queue.
501 So, we use this vector to protect the Lisp_Objects in the event
502 queue. That way, they'll be dequeued as dead frames or windows,
503 but still valid Lisp objects.
505 If kbd_buffer[i].kind != NO_EVENT, then
507 AREF (kbd_buffer_gcpro, 2 * i) == kbd_buffer[i].frame_or_window.
508 AREF (kbd_buffer_gcpro, 2 * i + 1) == kbd_buffer[i].arg. */
510 static Lisp_Object kbd_buffer_gcpro;
512 /* Pointer to next available character in kbd_buffer.
513 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
514 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
515 next available char is in kbd_buffer[0]. */
516 static struct input_event *kbd_fetch_ptr;
518 /* Pointer to next place to store character in kbd_buffer. This
519 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
520 character should go in kbd_buffer[0]. */
521 static struct input_event * volatile kbd_store_ptr;
523 /* The above pair of variables forms a "queue empty" flag. When we
524 enqueue a non-hook event, we increment kbd_store_ptr. When we
525 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
526 there is input available iff the two pointers are not equal.
528 Why not just have a flag set and cleared by the enqueuing and
529 dequeuing functions? Such a flag could be screwed up by interrupts
530 at inopportune times. */
532 /* If this flag is non-nil, we check mouse_moved to see when the
533 mouse moves, and motion events will appear in the input stream.
534 Otherwise, mouse motion is ignored. */
535 Lisp_Object do_mouse_tracking;
537 /* Symbols to head events. */
538 Lisp_Object Qmouse_movement;
539 Lisp_Object Qscroll_bar_movement;
540 Lisp_Object Qswitch_frame;
541 Lisp_Object Qdelete_frame;
542 Lisp_Object Qiconify_frame;
543 Lisp_Object Qmake_frame_visible;
544 Lisp_Object Qselect_window;
545 Lisp_Object Qhelp_echo;
547 /* Symbols to denote kinds of events. */
548 Lisp_Object Qfunction_key;
549 Lisp_Object Qmouse_click;
550 #if defined(WINDOWSNT) || defined(MAC_OSX)
551 Lisp_Object Qmouse_wheel;
552 #endif
553 #ifdef WINDOWSNT
554 Lisp_Object Qlanguage_change;
555 #endif
556 Lisp_Object Qdrag_n_drop;
557 Lisp_Object Qsave_session;
559 /* Lisp_Object Qmouse_movement; - also an event header */
561 /* Properties of event headers. */
562 Lisp_Object Qevent_kind;
563 Lisp_Object Qevent_symbol_elements;
565 /* menu item parts */
566 Lisp_Object Qmenu_alias;
567 Lisp_Object Qmenu_enable;
568 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
569 Lisp_Object QCbutton, QCtoggle, QCradio;
570 extern Lisp_Object Vdefine_key_rebound_commands;
571 extern Lisp_Object Qmenu_item;
573 /* An event header symbol HEAD may have a property named
574 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
575 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
576 mask of modifiers applied to it. If present, this is used to help
577 speed up parse_modifiers. */
578 Lisp_Object Qevent_symbol_element_mask;
580 /* An unmodified event header BASE may have a property named
581 Qmodifier_cache, which is an alist mapping modifier masks onto
582 modified versions of BASE. If present, this helps speed up
583 apply_modifiers. */
584 Lisp_Object Qmodifier_cache;
586 /* Symbols to use for parts of windows. */
587 Lisp_Object Qmode_line;
588 Lisp_Object Qvertical_line;
589 Lisp_Object Qvertical_scroll_bar;
590 Lisp_Object Qmenu_bar;
591 extern Lisp_Object Qleft_margin, Qright_margin;
593 Lisp_Object recursive_edit_unwind (), command_loop ();
594 Lisp_Object Fthis_command_keys ();
595 Lisp_Object Qextended_command_history;
596 EMACS_TIME timer_check ();
598 extern Lisp_Object Vhistory_length, Vtranslation_table_for_input;
600 extern char *x_get_keysym_name ();
602 static void record_menu_key ();
603 static int echo_length ();
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 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
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;
667 /* After Emacs stops being idle, this saves the last value
668 of timer_idleness_start_time from when it was idle. */
670 static EMACS_TIME timer_last_idleness_start_time;
673 /* Global variable declarations. */
675 /* Function for init_keyboard to call with no args (if nonzero). */
676 void (*keyboard_init_hook) ();
678 static int read_avail_input P_ ((int));
679 static void get_input_pending P_ ((int *, int));
680 static void get_filtered_input_pending P_ ((int *, int, int));
681 static int readable_events P_ ((int));
682 static int readable_filtered_events P_ ((int, int));
683 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
684 Lisp_Object, int *));
685 static Lisp_Object read_char_x_menu_prompt ();
686 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
687 Lisp_Object *));
688 static Lisp_Object make_lispy_event P_ ((struct input_event *));
689 #ifdef HAVE_MOUSE
690 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
691 enum scroll_bar_part,
692 Lisp_Object, Lisp_Object,
693 unsigned long));
694 #endif
695 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
696 Lisp_Object, char **,
697 Lisp_Object *, unsigned));
698 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
699 static int parse_solitary_modifier P_ ((Lisp_Object));
700 static int parse_solitary_modifier ();
701 static void save_getcjmp P_ ((jmp_buf));
702 static void save_getcjmp ();
703 static void restore_getcjmp P_ ((jmp_buf));
704 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
705 static void clear_event P_ ((struct input_event *));
706 static void any_kboard_state P_ ((void));
707 static SIGTYPE interrupt_signal P_ ((int signalnum));
709 /* Nonzero means don't try to suspend even if the operating system seems
710 to support it. */
711 static int cannot_suspend;
713 /* Install the string STR as the beginning of the string of echoing,
714 so that it serves as a prompt for the next character.
715 Also start echoing. */
717 void
718 echo_prompt (str)
719 Lisp_Object str;
721 current_kboard->echo_string = str;
722 current_kboard->echo_after_prompt = SCHARS (str);
723 echo_now ();
726 /* Add C to the echo string, if echoing is going on.
727 C can be a character, which is printed prettily ("M-C-x" and all that
728 jazz), or a symbol, whose name is printed. */
730 void
731 echo_char (c)
732 Lisp_Object c;
734 if (current_kboard->immediate_echo)
736 int size = KEY_DESCRIPTION_SIZE + 100;
737 char *buffer = (char *) alloca (size);
738 char *ptr = buffer;
739 Lisp_Object echo_string;
741 echo_string = current_kboard->echo_string;
743 /* If someone has passed us a composite event, use its head symbol. */
744 c = EVENT_HEAD (c);
746 if (INTEGERP (c))
748 ptr = push_key_description (XINT (c), ptr, 1);
750 else if (SYMBOLP (c))
752 Lisp_Object name = SYMBOL_NAME (c);
753 int nbytes = SBYTES (name);
755 if (size - (ptr - buffer) < nbytes)
757 int offset = ptr - buffer;
758 size = max (2 * size, size + nbytes);
759 buffer = (char *) alloca (size);
760 ptr = buffer + offset;
763 ptr += copy_text (SDATA (name), ptr, nbytes,
764 STRING_MULTIBYTE (name), 1);
767 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
768 && help_char_p (c))
770 const char *text = " (Type ? for further options)";
771 int len = strlen (text);
773 if (size - (ptr - buffer) < len)
775 int offset = ptr - buffer;
776 size += len;
777 buffer = (char *) alloca (size);
778 ptr = buffer + offset;
781 bcopy (text, ptr, len);
782 ptr += len;
785 /* Replace a dash from echo_dash with a space, otherwise
786 add a space at the end as a separator between keys. */
787 if (STRINGP (echo_string)
788 && SCHARS (echo_string) > 0)
790 Lisp_Object last_char, idx;
792 idx = make_number (SCHARS (echo_string) - 1);
793 last_char = Faref (echo_string, idx);
795 if (XINT (last_char) == '-')
796 Faset (echo_string, idx, make_number (' '));
797 else
798 echo_string = concat2 (echo_string, build_string (" "));
801 current_kboard->echo_string
802 = concat2 (echo_string, make_string (buffer, ptr - buffer));
804 echo_now ();
808 /* Temporarily add a dash to the end of the echo string if it's not
809 empty, so that it serves as a mini-prompt for the very next character. */
811 void
812 echo_dash ()
814 /* Do nothing if not echoing at all. */
815 if (NILP (current_kboard->echo_string))
816 return;
818 if (!current_kboard->immediate_echo
819 && SCHARS (current_kboard->echo_string) == 0)
820 return;
822 /* Do nothing if we just printed a prompt. */
823 if (current_kboard->echo_after_prompt
824 == SCHARS (current_kboard->echo_string))
825 return;
827 /* Put a dash at the end of the buffer temporarily,
828 but make it go away when the next character is added. */
829 current_kboard->echo_string = concat2 (current_kboard->echo_string,
830 build_string ("-"));
831 echo_now ();
834 /* Display the current echo string, and begin echoing if not already
835 doing so. */
837 void
838 echo_now ()
840 if (!current_kboard->immediate_echo)
842 int i;
843 current_kboard->immediate_echo = 1;
845 for (i = 0; i < this_command_key_count; i++)
847 Lisp_Object c;
849 /* Set before_command_echo_length to the value that would
850 have been saved before the start of this subcommand in
851 command_loop_1, if we had already been echoing then. */
852 if (i == this_single_command_key_start)
853 before_command_echo_length = echo_length ();
855 c = XVECTOR (this_command_keys)->contents[i];
856 if (! (EVENT_HAS_PARAMETERS (c)
857 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
858 echo_char (c);
861 /* Set before_command_echo_length to the value that would
862 have been saved before the start of this subcommand in
863 command_loop_1, if we had already been echoing then. */
864 if (this_command_key_count == this_single_command_key_start)
865 before_command_echo_length = echo_length ();
867 /* Put a dash at the end to invite the user to type more. */
868 echo_dash ();
871 echoing = 1;
872 message3_nolog (current_kboard->echo_string,
873 SBYTES (current_kboard->echo_string),
874 STRING_MULTIBYTE (current_kboard->echo_string));
875 echoing = 0;
877 /* Record in what buffer we echoed, and from which kboard. */
878 echo_message_buffer = echo_area_buffer[0];
879 echo_kboard = current_kboard;
881 if (waiting_for_input && !NILP (Vquit_flag))
882 quit_throw_to_read_char ();
885 /* Turn off echoing, for the start of a new command. */
887 void
888 cancel_echoing ()
890 current_kboard->immediate_echo = 0;
891 current_kboard->echo_after_prompt = -1;
892 current_kboard->echo_string = Qnil;
893 ok_to_echo_at_next_pause = NULL;
894 echo_kboard = NULL;
895 echo_message_buffer = Qnil;
898 /* Return the length of the current echo string. */
900 static int
901 echo_length ()
903 return (STRINGP (current_kboard->echo_string)
904 ? SCHARS (current_kboard->echo_string)
905 : 0);
908 /* Truncate the current echo message to its first LEN chars.
909 This and echo_char get used by read_key_sequence when the user
910 switches frames while entering a key sequence. */
912 static void
913 echo_truncate (nchars)
914 int nchars;
916 if (STRINGP (current_kboard->echo_string))
917 current_kboard->echo_string
918 = Fsubstring (current_kboard->echo_string,
919 make_number (0), make_number (nchars));
920 truncate_echo_area (nchars);
924 /* Functions for manipulating this_command_keys. */
925 static void
926 add_command_key (key)
927 Lisp_Object key;
929 #if 0 /* Not needed after we made Freset_this_command_lengths
930 do the job immediately. */
931 /* If reset-this-command-length was called recently, obey it now.
932 See the doc string of that function for an explanation of why. */
933 if (before_command_restore_flag)
935 this_command_key_count = before_command_key_count_1;
936 if (this_command_key_count < this_single_command_key_start)
937 this_single_command_key_start = this_command_key_count;
938 echo_truncate (before_command_echo_length_1);
939 before_command_restore_flag = 0;
941 #endif
943 if (this_command_key_count >= ASIZE (this_command_keys))
944 this_command_keys = larger_vector (this_command_keys,
945 2 * ASIZE (this_command_keys),
946 Qnil);
948 AREF (this_command_keys, this_command_key_count) = key;
949 ++this_command_key_count;
953 Lisp_Object
954 recursive_edit_1 ()
956 int count = SPECPDL_INDEX ();
957 Lisp_Object val;
959 if (command_loop_level > 0)
961 specbind (Qstandard_output, Qt);
962 specbind (Qstandard_input, Qt);
965 #ifdef HAVE_X_WINDOWS
966 /* The command loop has started an hourglass timer, so we have to
967 cancel it here, otherwise it will fire because the recursive edit
968 can take some time. Do not check for display_hourglass_p here,
969 because it could already be nil. */
970 cancel_hourglass ();
971 #endif
973 /* This function may have been called from a debugger called from
974 within redisplay, for instance by Edebugging a function called
975 from fontification-functions. We want to allow redisplay in
976 the debugging session.
978 The recursive edit is left with a `(throw exit ...)'. The `exit'
979 tag is not caught anywhere in redisplay, i.e. when we leave the
980 recursive edit, the original redisplay leading to the recursive
981 edit will be unwound. The outcome should therefore be safe. */
982 specbind (Qinhibit_redisplay, Qnil);
983 redisplaying_p = 0;
985 val = command_loop ();
986 if (EQ (val, Qt))
987 Fsignal (Qquit, Qnil);
988 /* Handle throw from read_minibuf when using minibuffer
989 while it's active but we're in another window. */
990 if (STRINGP (val))
991 Fsignal (Qerror, Fcons (val, Qnil));
993 return unbind_to (count, Qnil);
996 /* When an auto-save happens, record the "time", and don't do again soon. */
998 void
999 record_auto_save ()
1001 last_auto_save = num_nonmacro_input_events;
1004 /* Make an auto save happen as soon as possible at command level. */
1006 void
1007 force_auto_save_soon ()
1009 last_auto_save = - auto_save_interval - 1;
1011 record_asynch_buffer_change ();
1014 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
1015 doc: /* Invoke the editor command loop recursively.
1016 To get out of the recursive edit, a command can do `(throw 'exit nil)';
1017 that tells this function to return.
1018 Alternately, `(throw 'exit t)' makes this function signal an error.
1019 This function is called by the editor initialization to begin editing. */)
1022 int count = SPECPDL_INDEX ();
1023 Lisp_Object buffer;
1025 command_loop_level++;
1026 update_mode_lines = 1;
1028 if (command_loop_level
1029 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1030 buffer = Fcurrent_buffer ();
1031 else
1032 buffer = Qnil;
1034 /* If we leave recursive_edit_1 below with a `throw' for instance,
1035 like it is done in the splash screen display, we have to
1036 make sure that we restore single_kboard as command_loop_1
1037 would have done if it were left normally. */
1038 record_unwind_protect (recursive_edit_unwind,
1039 Fcons (buffer, single_kboard ? Qt : Qnil));
1041 recursive_edit_1 ();
1042 return unbind_to (count, Qnil);
1045 Lisp_Object
1046 recursive_edit_unwind (info)
1047 Lisp_Object info;
1049 if (BUFFERP (XCAR (info)))
1050 Fset_buffer (XCAR (info));
1052 if (NILP (XCDR (info)))
1053 any_kboard_state ();
1054 else
1055 single_kboard_state ();
1057 command_loop_level--;
1058 update_mode_lines = 1;
1059 return Qnil;
1063 static void
1064 any_kboard_state ()
1066 #ifdef MULTI_KBOARD
1067 #if 0 /* Theory: if there's anything in Vunread_command_events,
1068 it will right away be read by read_key_sequence,
1069 and then if we do switch KBOARDS, it will go into the side
1070 queue then. So we don't need to do anything special here -- rms. */
1071 if (CONSP (Vunread_command_events))
1073 current_kboard->kbd_queue
1074 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1075 current_kboard->kbd_queue_has_data = 1;
1077 Vunread_command_events = Qnil;
1078 #endif
1079 single_kboard = 0;
1080 #endif
1083 /* Switch to the single-kboard state, making current_kboard
1084 the only KBOARD from which further input is accepted. */
1086 void
1087 single_kboard_state ()
1089 #ifdef MULTI_KBOARD
1090 single_kboard = 1;
1091 #endif
1094 /* Maintain a stack of kboards, so other parts of Emacs
1095 can switch temporarily to the kboard of a given frame
1096 and then revert to the previous status. */
1098 struct kboard_stack
1100 KBOARD *kboard;
1101 struct kboard_stack *next;
1104 static struct kboard_stack *kboard_stack;
1106 void
1107 push_frame_kboard (f)
1108 FRAME_PTR f;
1110 #ifdef MULTI_KBOARD
1111 struct kboard_stack *p
1112 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1114 p->next = kboard_stack;
1115 p->kboard = current_kboard;
1116 kboard_stack = p;
1118 current_kboard = FRAME_KBOARD (f);
1119 #endif
1122 void
1123 pop_frame_kboard ()
1125 #ifdef MULTI_KBOARD
1126 struct kboard_stack *p = kboard_stack;
1127 current_kboard = p->kboard;
1128 kboard_stack = p->next;
1129 xfree (p);
1130 #endif
1133 /* Handle errors that are not handled at inner levels
1134 by printing an error message and returning to the editor command loop. */
1136 Lisp_Object
1137 cmd_error (data)
1138 Lisp_Object data;
1140 Lisp_Object old_level, old_length;
1141 char macroerror[50];
1143 #ifdef HAVE_X_WINDOWS
1144 if (display_hourglass_p)
1145 cancel_hourglass ();
1146 #endif
1148 if (!NILP (executing_macro))
1150 if (executing_macro_iterations == 1)
1151 sprintf (macroerror, "After 1 kbd macro iteration: ");
1152 else
1153 sprintf (macroerror, "After %d kbd macro iterations: ",
1154 executing_macro_iterations);
1156 else
1157 *macroerror = 0;
1159 Vstandard_output = Qt;
1160 Vstandard_input = Qt;
1161 Vexecuting_macro = Qnil;
1162 executing_macro = Qnil;
1163 current_kboard->Vprefix_arg = Qnil;
1164 current_kboard->Vlast_prefix_arg = Qnil;
1165 cancel_echoing ();
1167 /* Avoid unquittable loop if data contains a circular list. */
1168 old_level = Vprint_level;
1169 old_length = Vprint_length;
1170 XSETFASTINT (Vprint_level, 10);
1171 XSETFASTINT (Vprint_length, 10);
1172 cmd_error_internal (data, macroerror);
1173 Vprint_level = old_level;
1174 Vprint_length = old_length;
1176 Vquit_flag = Qnil;
1178 Vinhibit_quit = Qnil;
1179 #ifdef MULTI_KBOARD
1180 any_kboard_state ();
1181 #endif
1183 return make_number (0);
1186 /* Take actions on handling an error. DATA is the data that describes
1187 the error.
1189 CONTEXT is a C-string containing ASCII characters only which
1190 describes the context in which the error happened. If we need to
1191 generalize CONTEXT to allow multibyte characters, make it a Lisp
1192 string. */
1194 void
1195 cmd_error_internal (data, context)
1196 Lisp_Object data;
1197 char *context;
1199 Lisp_Object stream;
1200 int kill_emacs_p = 0;
1201 struct frame *sf = SELECTED_FRAME ();
1203 Vquit_flag = Qnil;
1204 Vinhibit_quit = Qt;
1205 clear_message (1, 0);
1207 /* If the window system or terminal frame hasn't been initialized
1208 yet, or we're not interactive, it's best to dump this message out
1209 to stderr and exit. */
1210 if (!sf->glyphs_initialized_p
1211 /* This is the case of the frame dumped with Emacs, when we're
1212 running under a window system. */
1213 || (!NILP (Vwindow_system)
1214 && !inhibit_window_system
1215 && FRAME_TERMCAP_P (sf))
1216 || noninteractive)
1218 stream = Qexternal_debugging_output;
1219 kill_emacs_p = 1;
1221 else
1223 Fdiscard_input ();
1224 message_log_maybe_newline ();
1225 bitch_at_user ();
1226 stream = Qt;
1229 /* The immediate context is not interesting for Quits,
1230 since they are asyncronous. */
1231 if (EQ (XCAR (data), Qquit))
1232 Vsignaling_function = Qnil;
1234 print_error_message (data, stream, context, Vsignaling_function);
1236 Vsignaling_function = Qnil;
1238 /* If the window system or terminal frame hasn't been initialized
1239 yet, or we're in -batch mode, this error should cause Emacs to exit. */
1240 if (kill_emacs_p)
1242 Fterpri (stream);
1243 Fkill_emacs (make_number (-1));
1247 Lisp_Object command_loop_1 ();
1248 Lisp_Object command_loop_2 ();
1249 Lisp_Object top_level_1 ();
1251 /* Entry to editor-command-loop.
1252 This level has the catches for exiting/returning to editor command loop.
1253 It returns nil to exit recursive edit, t to abort it. */
1255 Lisp_Object
1256 command_loop ()
1258 if (command_loop_level > 0 || minibuf_level > 0)
1260 Lisp_Object val;
1261 val = internal_catch (Qexit, command_loop_2, Qnil);
1262 executing_macro = Qnil;
1263 return val;
1265 else
1266 while (1)
1268 internal_catch (Qtop_level, top_level_1, Qnil);
1269 internal_catch (Qtop_level, command_loop_2, Qnil);
1270 executing_macro = Qnil;
1272 /* End of file in -batch run causes exit here. */
1273 if (noninteractive)
1274 Fkill_emacs (Qt);
1278 /* Here we catch errors in execution of commands within the
1279 editing loop, and reenter the editing loop.
1280 When there is an error, cmd_error runs and returns a non-nil
1281 value to us. A value of nil means that command_loop_1 itself
1282 returned due to end of file (or end of kbd macro). */
1284 Lisp_Object
1285 command_loop_2 ()
1287 register Lisp_Object val;
1290 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1291 while (!NILP (val));
1293 return Qnil;
1296 Lisp_Object
1297 top_level_2 ()
1299 return Feval (Vtop_level);
1302 Lisp_Object
1303 top_level_1 ()
1305 /* On entry to the outer level, run the startup file */
1306 if (!NILP (Vtop_level))
1307 internal_condition_case (top_level_2, Qerror, cmd_error);
1308 else if (!NILP (Vpurify_flag))
1309 message ("Bare impure Emacs (standard Lisp code not loaded)");
1310 else
1311 message ("Bare Emacs (standard Lisp code not loaded)");
1312 return Qnil;
1315 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1316 doc: /* Exit all recursive editing levels. */)
1319 #ifdef HAVE_X_WINDOWS
1320 if (display_hourglass_p)
1321 cancel_hourglass ();
1322 #endif
1323 return Fthrow (Qtop_level, Qnil);
1326 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1327 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1330 if (command_loop_level > 0 || minibuf_level > 0)
1331 Fthrow (Qexit, Qnil);
1333 error ("No recursive edit is in progress");
1334 return Qnil;
1337 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1338 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1341 if (command_loop_level > 0 || minibuf_level > 0)
1342 Fthrow (Qexit, Qt);
1344 error ("No recursive edit is in progress");
1345 return Qnil;
1348 /* This is the actual command reading loop,
1349 sans error-handling encapsulation. */
1351 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1352 int, int, int));
1353 void safe_run_hooks P_ ((Lisp_Object));
1354 static void adjust_point_for_property P_ ((int, int));
1356 /* Cancel hourglass from protect_unwind.
1357 ARG is not used. */
1358 #ifdef HAVE_X_WINDOWS
1359 static Lisp_Object
1360 cancel_hourglass_unwind (arg)
1361 Lisp_Object arg;
1363 cancel_hourglass ();
1365 #endif
1367 Lisp_Object
1368 command_loop_1 ()
1370 Lisp_Object cmd;
1371 int lose;
1372 int nonundocount;
1373 Lisp_Object keybuf[30];
1374 int i;
1375 int no_direct;
1376 int prev_modiff;
1377 struct buffer *prev_buffer = NULL;
1378 #ifdef MULTI_KBOARD
1379 int was_locked = single_kboard;
1380 #endif
1381 int already_adjusted;
1383 current_kboard->Vprefix_arg = Qnil;
1384 current_kboard->Vlast_prefix_arg = Qnil;
1385 Vdeactivate_mark = Qnil;
1386 waiting_for_input = 0;
1387 cancel_echoing ();
1389 nonundocount = 0;
1390 this_command_key_count = 0;
1391 this_command_key_count_reset = 0;
1392 this_single_command_key_start = 0;
1394 if (NILP (Vmemory_full))
1396 /* Make sure this hook runs after commands that get errors and
1397 throw to top level. */
1398 /* Note that the value cell will never directly contain nil
1399 if the symbol is a local variable. */
1400 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1401 safe_run_hooks (Qpost_command_hook);
1403 /* If displaying a message, resize the echo area window to fit
1404 that message's size exactly. */
1405 if (!NILP (echo_area_buffer[0]))
1406 resize_echo_area_exactly ();
1408 if (!NILP (Vdeferred_action_list))
1409 call0 (Vdeferred_action_function);
1411 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1413 if (NILP (Vunread_command_events)
1414 && NILP (Vunread_input_method_events)
1415 && NILP (Vunread_post_input_method_events)
1416 && NILP (Vexecuting_macro)
1417 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1418 safe_run_hooks (Qpost_command_idle_hook);
1422 Vmemory_full = Qnil;
1424 /* Do this after running Vpost_command_hook, for consistency. */
1425 current_kboard->Vlast_command = Vthis_command;
1426 current_kboard->Vreal_last_command = real_this_command;
1428 while (1)
1430 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1431 Fkill_emacs (Qnil);
1433 /* Make sure the current window's buffer is selected. */
1434 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1435 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1437 /* Display any malloc warning that just came out. Use while because
1438 displaying one warning can cause another. */
1440 while (pending_malloc_warning)
1441 display_malloc_warning ();
1443 no_direct = 0;
1445 Vdeactivate_mark = Qnil;
1447 /* If minibuffer on and echo area in use,
1448 wait a short time and redraw minibuffer. */
1450 if (minibuf_level
1451 && !NILP (echo_area_buffer[0])
1452 && EQ (minibuf_window, echo_area_window)
1453 && NUMBERP (Vminibuffer_message_timeout))
1455 /* Bind inhibit-quit to t so that C-g gets read in
1456 rather than quitting back to the minibuffer. */
1457 int count = SPECPDL_INDEX ();
1458 specbind (Qinhibit_quit, Qt);
1460 Fsit_for (Vminibuffer_message_timeout, Qnil, Qnil);
1461 /* Clear the echo area. */
1462 message2 (0, 0, 0);
1463 safe_run_hooks (Qecho_area_clear_hook);
1465 unbind_to (count, Qnil);
1467 /* If a C-g came in before, treat it as input now. */
1468 if (!NILP (Vquit_flag))
1470 Vquit_flag = Qnil;
1471 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1475 #ifdef C_ALLOCA
1476 alloca (0); /* Cause a garbage collection now */
1477 /* Since we can free the most stuff here. */
1478 #endif /* C_ALLOCA */
1480 #if 0
1481 /* Select the frame that the last event came from. Usually,
1482 switch-frame events will take care of this, but if some lisp
1483 code swallows a switch-frame event, we'll fix things up here.
1484 Is this a good idea? */
1485 if (FRAMEP (internal_last_event_frame)
1486 && !EQ (internal_last_event_frame, selected_frame))
1487 Fselect_frame (internal_last_event_frame, Qnil);
1488 #endif
1489 /* If it has changed current-menubar from previous value,
1490 really recompute the menubar from the value. */
1491 if (! NILP (Vlucid_menu_bar_dirty_flag)
1492 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1493 call0 (Qrecompute_lucid_menubar);
1495 before_command_key_count = this_command_key_count;
1496 before_command_echo_length = echo_length ();
1498 Vthis_command = Qnil;
1499 real_this_command = Qnil;
1501 /* Read next key sequence; i gets its length. */
1502 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1503 Qnil, 0, 1, 1);
1505 /* A filter may have run while we were reading the input. */
1506 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1507 Fkill_emacs (Qnil);
1508 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1509 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1511 ++num_input_keys;
1513 /* Now we have read a key sequence of length I,
1514 or else I is 0 and we found end of file. */
1516 if (i == 0) /* End of file -- happens only in */
1517 return Qnil; /* a kbd macro, at the end. */
1518 /* -1 means read_key_sequence got a menu that was rejected.
1519 Just loop around and read another command. */
1520 if (i == -1)
1522 cancel_echoing ();
1523 this_command_key_count = 0;
1524 this_command_key_count_reset = 0;
1525 this_single_command_key_start = 0;
1526 goto finalize;
1529 last_command_char = keybuf[i - 1];
1531 /* If the previous command tried to force a specific window-start,
1532 forget about that, in case this command moves point far away
1533 from that position. But also throw away beg_unchanged and
1534 end_unchanged information in that case, so that redisplay will
1535 update the whole window properly. */
1536 if (!NILP (XWINDOW (selected_window)->force_start))
1538 struct buffer *b;
1539 XWINDOW (selected_window)->force_start = Qnil;
1540 b = XBUFFER (XWINDOW (selected_window)->buffer);
1541 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1544 cmd = read_key_sequence_cmd;
1545 if (!NILP (Vexecuting_macro))
1547 if (!NILP (Vquit_flag))
1549 Vexecuting_macro = Qt;
1550 QUIT; /* Make some noise. */
1551 /* Will return since macro now empty. */
1555 /* Do redisplay processing after this command except in special
1556 cases identified below. */
1557 prev_buffer = current_buffer;
1558 prev_modiff = MODIFF;
1559 last_point_position = PT;
1560 XSETBUFFER (last_point_position_buffer, prev_buffer);
1562 /* By default, we adjust point to a boundary of a region that
1563 has such a property that should be treated intangible
1564 (e.g. composition, display). But, some commands will set
1565 this variable differently. */
1566 Vdisable_point_adjustment = Qnil;
1568 /* Process filters and timers may have messed with deactivate-mark.
1569 reset it before we execute the command. */
1570 Vdeactivate_mark = Qnil;
1572 /* Remap command through active keymaps */
1573 Vthis_original_command = cmd;
1574 if (SYMBOLP (cmd))
1576 Lisp_Object cmd1;
1577 if (cmd1 = Fcommand_remapping (cmd), !NILP (cmd1))
1578 cmd = cmd1;
1581 /* Execute the command. */
1583 Vthis_command = cmd;
1584 real_this_command = cmd;
1585 /* Note that the value cell will never directly contain nil
1586 if the symbol is a local variable. */
1587 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1588 safe_run_hooks (Qpre_command_hook);
1590 already_adjusted = 0;
1592 if (NILP (Vthis_command))
1594 /* nil means key is undefined. */
1595 bitch_at_user ();
1596 current_kboard->defining_kbd_macro = Qnil;
1597 update_mode_lines = 1;
1598 current_kboard->Vprefix_arg = Qnil;
1600 else
1602 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1604 /* In case we jump to directly_done. */
1605 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1607 /* Recognize some common commands in common situations and
1608 do them directly. */
1609 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1611 struct Lisp_Char_Table *dp
1612 = window_display_table (XWINDOW (selected_window));
1613 lose = FETCH_CHAR (PT_BYTE);
1614 SET_PT (PT + 1);
1615 if (! NILP (Vpost_command_hook))
1616 /* Put this before calling adjust_point_for_property
1617 so it will only get called once in any case. */
1618 goto directly_done;
1619 if (current_buffer == prev_buffer
1620 && last_point_position != PT
1621 && NILP (Vdisable_point_adjustment)
1622 && NILP (Vglobal_disable_point_adjustment))
1623 adjust_point_for_property (last_point_position, 0);
1624 already_adjusted = 1;
1625 if (PT == last_point_position + 1
1626 && (dp
1627 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1628 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1629 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1630 && (lose >= 0x20 && lose < 0x7f)))
1631 : (lose >= 0x20 && lose < 0x7f))
1632 /* To extract the case of continuation on
1633 wide-column characters. */
1634 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1635 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1636 >= MODIFF)
1637 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1638 >= OVERLAY_MODIFF)
1639 && (XFASTINT (XWINDOW (selected_window)->last_point)
1640 == PT - 1)
1641 && !windows_or_buffers_changed
1642 && EQ (current_buffer->selective_display, Qnil)
1643 && !detect_input_pending ()
1644 && NILP (XWINDOW (selected_window)->column_number_displayed)
1645 && NILP (Vexecuting_macro))
1646 direct_output_forward_char (1);
1647 goto directly_done;
1649 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1651 struct Lisp_Char_Table *dp
1652 = window_display_table (XWINDOW (selected_window));
1653 SET_PT (PT - 1);
1654 lose = FETCH_CHAR (PT_BYTE);
1655 if (! NILP (Vpost_command_hook))
1656 goto directly_done;
1657 if (current_buffer == prev_buffer
1658 && last_point_position != PT
1659 && NILP (Vdisable_point_adjustment)
1660 && NILP (Vglobal_disable_point_adjustment))
1661 adjust_point_for_property (last_point_position, 0);
1662 already_adjusted = 1;
1663 if (PT == last_point_position - 1
1664 && (dp
1665 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1666 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1667 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1668 && (lose >= 0x20 && lose < 0x7f)))
1669 : (lose >= 0x20 && lose < 0x7f))
1670 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1671 >= MODIFF)
1672 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1673 >= OVERLAY_MODIFF)
1674 && (XFASTINT (XWINDOW (selected_window)->last_point)
1675 == PT + 1)
1676 && !windows_or_buffers_changed
1677 && EQ (current_buffer->selective_display, Qnil)
1678 && !detect_input_pending ()
1679 && NILP (XWINDOW (selected_window)->column_number_displayed)
1680 && NILP (Vexecuting_macro))
1681 direct_output_forward_char (-1);
1682 goto directly_done;
1684 else if (EQ (Vthis_command, Qself_insert_command)
1685 /* Try this optimization only on char keystrokes. */
1686 && NATNUMP (last_command_char)
1687 && CHAR_VALID_P (XFASTINT (last_command_char), 0))
1689 unsigned int c
1690 = translate_char (Vtranslation_table_for_input,
1691 XFASTINT (last_command_char), 0, 0, 0);
1692 int value;
1693 if (NILP (Vexecuting_macro)
1694 && !EQ (minibuf_window, selected_window))
1696 if (!nonundocount || nonundocount >= 20)
1698 Fundo_boundary ();
1699 nonundocount = 0;
1701 nonundocount++;
1704 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1705 < MODIFF)
1706 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1707 < OVERLAY_MODIFF)
1708 || (XFASTINT (XWINDOW (selected_window)->last_point)
1709 != PT)
1710 || MODIFF <= SAVE_MODIFF
1711 || windows_or_buffers_changed
1712 || !EQ (current_buffer->selective_display, Qnil)
1713 || detect_input_pending ()
1714 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1715 || !NILP (Vexecuting_macro));
1717 value = internal_self_insert (c, 0);
1719 if (value == 2)
1720 nonundocount = 0;
1722 if (! NILP (Vpost_command_hook))
1723 /* Put this before calling adjust_point_for_property
1724 so it will only get called once in any case. */
1725 goto directly_done;
1727 /* VALUE == 1 when AFTER-CHANGE functions are
1728 installed which is the case most of the time
1729 because FONT-LOCK installs one. */
1730 if (!lose && !value)
1731 direct_output_for_insert (c);
1732 goto directly_done;
1736 /* Here for a command that isn't executed directly */
1739 #ifdef HAVE_X_WINDOWS
1740 int scount = SPECPDL_INDEX ();
1742 if (display_hourglass_p
1743 && NILP (Vexecuting_macro))
1745 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1746 start_hourglass ();
1748 #endif
1750 nonundocount = 0;
1751 if (NILP (current_kboard->Vprefix_arg))
1752 Fundo_boundary ();
1753 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1755 #ifdef HAVE_X_WINDOWS
1756 /* Do not check display_hourglass_p here, because
1757 Fcommand_execute could change it, but we should cancel
1758 hourglass cursor anyway.
1759 But don't cancel the hourglass within a macro
1760 just because a command in the macro finishes. */
1761 if (NILP (Vexecuting_macro))
1762 unbind_to (scount, Qnil);
1763 #endif
1766 directly_done: ;
1767 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1769 /* Note that the value cell will never directly contain nil
1770 if the symbol is a local variable. */
1771 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1772 safe_run_hooks (Qpost_command_hook);
1774 /* If displaying a message, resize the echo area window to fit
1775 that message's size exactly. */
1776 if (!NILP (echo_area_buffer[0]))
1777 resize_echo_area_exactly ();
1779 if (!NILP (Vdeferred_action_list))
1780 safe_run_hooks (Qdeferred_action_function);
1782 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1784 if (NILP (Vunread_command_events)
1785 && NILP (Vunread_input_method_events)
1786 && NILP (Vunread_post_input_method_events)
1787 && NILP (Vexecuting_macro)
1788 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1789 safe_run_hooks (Qpost_command_idle_hook);
1792 /* If there is a prefix argument,
1793 1) We don't want Vlast_command to be ``universal-argument''
1794 (that would be dumb), so don't set Vlast_command,
1795 2) we want to leave echoing on so that the prefix will be
1796 echoed as part of this key sequence, so don't call
1797 cancel_echoing, and
1798 3) we want to leave this_command_key_count non-zero, so that
1799 read_char will realize that it is re-reading a character, and
1800 not echo it a second time.
1802 If the command didn't actually create a prefix arg,
1803 but is merely a frame event that is transparent to prefix args,
1804 then the above doesn't apply. */
1805 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1807 current_kboard->Vlast_command = Vthis_command;
1808 current_kboard->Vreal_last_command = real_this_command;
1809 cancel_echoing ();
1810 this_command_key_count = 0;
1811 this_command_key_count_reset = 0;
1812 this_single_command_key_start = 0;
1815 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1817 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1819 /* We could also call `deactivate'mark'. */
1820 if (EQ (Vtransient_mark_mode, Qlambda))
1821 Vtransient_mark_mode = Qnil;
1822 else
1824 current_buffer->mark_active = Qnil;
1825 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1828 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1829 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1832 finalize:
1834 if (current_buffer == prev_buffer
1835 && last_point_position != PT
1836 && NILP (Vdisable_point_adjustment)
1837 && NILP (Vglobal_disable_point_adjustment)
1838 && !already_adjusted)
1839 adjust_point_for_property (last_point_position, MODIFF != prev_modiff);
1841 /* Install chars successfully executed in kbd macro. */
1843 if (!NILP (current_kboard->defining_kbd_macro)
1844 && NILP (current_kboard->Vprefix_arg))
1845 finalize_kbd_macro_chars ();
1847 #ifdef MULTI_KBOARD
1848 if (!was_locked)
1849 any_kboard_state ();
1850 #endif
1854 extern Lisp_Object Qcomposition, Qdisplay;
1856 /* Adjust point to a boundary of a region that has such a property
1857 that should be treated intangible. For the moment, we check
1858 `composition', `display' and `invisible' properties.
1859 LAST_PT is the last position of point. */
1861 extern Lisp_Object Qafter_string, Qbefore_string;
1862 extern Lisp_Object get_pos_property P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
1864 static void
1865 adjust_point_for_property (last_pt, modified)
1866 int last_pt;
1867 int modified;
1869 int beg, end;
1870 Lisp_Object val, overlay, tmp;
1871 int check_composition = 1, check_display = 1, check_invisible = 1;
1873 while (check_composition || check_display || check_invisible)
1875 if (check_composition
1876 && PT > BEGV && PT < ZV
1877 && get_property_and_range (PT, Qcomposition, &val, &beg, &end, Qnil)
1878 && COMPOSITION_VALID_P (beg, end, val)
1879 && beg < PT /* && end > PT <- It's always the case. */
1880 && (last_pt <= beg || last_pt >= end))
1882 xassert (end > PT);
1883 SET_PT (PT < last_pt ? beg : end);
1884 check_display = check_invisible = 1;
1886 check_composition = 0;
1887 if (check_display
1888 && PT > BEGV && PT < ZV
1889 && !NILP (val = get_char_property_and_overlay
1890 (make_number (PT), Qdisplay, Qnil, &overlay))
1891 && display_prop_intangible_p (val)
1892 && (!OVERLAYP (overlay)
1893 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
1894 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
1895 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
1896 && beg < PT) /* && end > PT <- It's always the case. */
1898 xassert (end > PT);
1899 SET_PT (PT < last_pt ? beg : end);
1900 check_composition = check_invisible = 1;
1902 check_display = 0;
1903 if (check_invisible && PT > BEGV && PT < ZV)
1905 int inv, ellipsis = 0;
1906 beg = end = PT;
1908 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1909 while (end < ZV
1910 && !NILP (val = get_char_property_and_overlay
1911 (make_number (end), Qinvisible, Qnil, &overlay))
1912 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1914 ellipsis = ellipsis || inv > 1
1915 || (OVERLAYP (overlay)
1916 && (!NILP (Foverlay_get (overlay, Qafter_string))
1917 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1918 tmp = Fnext_single_char_property_change
1919 (make_number (end), Qinvisible, Qnil, Qnil);
1920 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
1922 while (beg > BEGV
1923 && !NILP (val = get_char_property_and_overlay
1924 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
1925 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1927 ellipsis = ellipsis || inv > 1
1928 || (OVERLAYP (overlay)
1929 && (!NILP (Foverlay_get (overlay, Qafter_string))
1930 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1931 tmp = Fprevious_single_char_property_change
1932 (make_number (beg), Qinvisible, Qnil, Qnil);
1933 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
1936 /* Move away from the inside area. */
1937 if (beg < PT && end > PT)
1939 SET_PT (PT < last_pt ? beg : end);
1940 check_composition = check_display = 1;
1942 xassert (PT == beg || PT == end);
1943 /* Pretend the area doesn't exist if the buffer is not
1944 modified. */
1945 if (!modified && !ellipsis && beg < end)
1947 if (last_pt == beg && PT == end && end < ZV)
1948 (check_composition = check_display = 1, SET_PT (end + 1));
1949 else if (last_pt == end && PT == beg && beg > BEGV)
1950 (check_composition = check_display = 1, SET_PT (beg - 1));
1951 else if (PT == ((PT < last_pt) ? beg : end))
1952 /* We've already moved as far as we can. Trying to go
1953 to the other end would mean moving backwards and thus
1954 could lead to an infinite loop. */
1956 else if (val = get_pos_property (make_number (PT),
1957 Qinvisible, Qnil),
1958 TEXT_PROP_MEANS_INVISIBLE (val)
1959 && (val = get_pos_property
1960 (make_number (PT == beg ? end : beg),
1961 Qinvisible, Qnil),
1962 !TEXT_PROP_MEANS_INVISIBLE (val)))
1963 (check_composition = check_display = 1,
1964 SET_PT (PT == beg ? end : beg));
1967 check_invisible = 0;
1971 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1973 static Lisp_Object
1974 safe_run_hooks_1 (hook)
1975 Lisp_Object hook;
1977 return call1 (Vrun_hooks, Vinhibit_quit);
1980 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1982 static Lisp_Object
1983 safe_run_hooks_error (data)
1984 Lisp_Object data;
1986 return Fset (Vinhibit_quit, Qnil);
1989 /* If we get an error while running the hook, cause the hook variable
1990 to be nil. Also inhibit quits, so that C-g won't cause the hook
1991 to mysteriously evaporate. */
1993 void
1994 safe_run_hooks (hook)
1995 Lisp_Object hook;
1997 int count = SPECPDL_INDEX ();
1998 specbind (Qinhibit_quit, hook);
2000 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
2002 unbind_to (count, Qnil);
2006 /* Number of seconds between polling for input. This is a Lisp
2007 variable that can be bound. */
2009 EMACS_INT polling_period;
2011 /* Nonzero means polling for input is temporarily suppressed. */
2013 int poll_suppress_count;
2015 /* Asynchronous timer for polling. */
2017 struct atimer *poll_timer;
2020 #ifdef POLL_FOR_INPUT
2022 /* Poll for input, so what we catch a C-g if it comes in. This
2023 function is called from x_make_frame_visible, see comment
2024 there. */
2026 void
2027 poll_for_input_1 ()
2029 if (interrupt_input_blocked == 0
2030 && !waiting_for_input)
2031 read_avail_input (0);
2034 /* Timer callback function for poll_timer. TIMER is equal to
2035 poll_timer. */
2037 void
2038 poll_for_input (timer)
2039 struct atimer *timer;
2041 if (poll_suppress_count == 0)
2042 poll_for_input_1 ();
2045 #endif /* POLL_FOR_INPUT */
2047 /* Begin signals to poll for input, if they are appropriate.
2048 This function is called unconditionally from various places. */
2050 void
2051 start_polling ()
2053 #ifdef POLL_FOR_INPUT
2054 if (read_socket_hook && !interrupt_input)
2056 /* Turn alarm handling on unconditionally. It might have
2057 been turned off in process.c. */
2058 turn_on_atimers (1);
2060 /* If poll timer doesn't exist, are we need one with
2061 a different interval, start a new one. */
2062 if (poll_timer == NULL
2063 || EMACS_SECS (poll_timer->interval) != polling_period)
2065 EMACS_TIME interval;
2067 if (poll_timer)
2068 cancel_atimer (poll_timer);
2070 EMACS_SET_SECS_USECS (interval, polling_period, 0);
2071 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2072 poll_for_input, NULL);
2075 /* Let the timer's callback function poll for input
2076 if this becomes zero. */
2077 --poll_suppress_count;
2079 #endif
2082 /* Nonzero if we are using polling to handle input asynchronously. */
2085 input_polling_used ()
2087 #ifdef POLL_FOR_INPUT
2088 return read_socket_hook && !interrupt_input;
2089 #else
2090 return 0;
2091 #endif
2094 /* Turn off polling. */
2096 void
2097 stop_polling ()
2099 #ifdef POLL_FOR_INPUT
2100 if (read_socket_hook && !interrupt_input)
2101 ++poll_suppress_count;
2102 #endif
2105 /* Set the value of poll_suppress_count to COUNT
2106 and start or stop polling accordingly. */
2108 void
2109 set_poll_suppress_count (count)
2110 int count;
2112 #ifdef POLL_FOR_INPUT
2113 if (count == 0 && poll_suppress_count != 0)
2115 poll_suppress_count = 1;
2116 start_polling ();
2118 else if (count != 0 && poll_suppress_count == 0)
2120 stop_polling ();
2122 poll_suppress_count = count;
2123 #endif
2126 /* Bind polling_period to a value at least N.
2127 But don't decrease it. */
2129 void
2130 bind_polling_period (n)
2131 int n;
2133 #ifdef POLL_FOR_INPUT
2134 int new = polling_period;
2136 if (n > new)
2137 new = n;
2139 stop_other_atimers (poll_timer);
2140 stop_polling ();
2141 specbind (Qpolling_period, make_number (new));
2142 /* Start a new alarm with the new period. */
2143 start_polling ();
2144 #endif
2147 /* Apply the control modifier to CHARACTER. */
2150 make_ctrl_char (c)
2151 int c;
2153 /* Save the upper bits here. */
2154 int upper = c & ~0177;
2156 c &= 0177;
2158 /* Everything in the columns containing the upper-case letters
2159 denotes a control character. */
2160 if (c >= 0100 && c < 0140)
2162 int oc = c;
2163 c &= ~0140;
2164 /* Set the shift modifier for a control char
2165 made from a shifted letter. But only for letters! */
2166 if (oc >= 'A' && oc <= 'Z')
2167 c |= shift_modifier;
2170 /* The lower-case letters denote control characters too. */
2171 else if (c >= 'a' && c <= 'z')
2172 c &= ~0140;
2174 /* Include the bits for control and shift
2175 only if the basic ASCII code can't indicate them. */
2176 else if (c >= ' ')
2177 c |= ctrl_modifier;
2179 /* Replace the high bits. */
2180 c |= (upper & ~ctrl_modifier);
2182 return c;
2185 /* Display help echo in the echo area.
2187 HELP a string means display that string, HELP nil means clear the
2188 help echo. If HELP is a function, call it with OBJECT and POS as
2189 arguments; the function should return a help string or nil for
2190 none. For all other types of HELP evaluate it to obtain a string.
2192 WINDOW is the window in which the help was generated, if any.
2193 It is nil if not in a window.
2195 If OBJECT is a buffer, POS is the position in the buffer where the
2196 `help-echo' text property was found.
2198 If OBJECT is an overlay, that overlay has a `help-echo' property,
2199 and POS is the position in the overlay's buffer under the mouse.
2201 If OBJECT is a string (an overlay string or a string displayed with
2202 the `display' property). POS is the position in that string under
2203 the mouse.
2205 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2206 echo overwrites a keystroke echo currently displayed in the echo
2207 area.
2209 Note: this function may only be called with HELP nil or a string
2210 from X code running asynchronously. */
2212 void
2213 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2214 Lisp_Object help, window, object, pos;
2215 int ok_to_overwrite_keystroke_echo;
2217 if (!NILP (help) && !STRINGP (help))
2219 if (FUNCTIONP (help))
2221 Lisp_Object args[4];
2222 args[0] = help;
2223 args[1] = window;
2224 args[2] = object;
2225 args[3] = pos;
2226 help = safe_call (4, args);
2228 else
2229 help = safe_eval (help);
2231 if (!STRINGP (help))
2232 return;
2235 if (STRINGP (help) || NILP (help))
2237 if (!NILP (Vshow_help_function))
2238 call1 (Vshow_help_function, help);
2239 else if (/* Don't overwrite minibuffer contents. */
2240 !MINI_WINDOW_P (XWINDOW (selected_window))
2241 /* Don't overwrite a keystroke echo. */
2242 && (NILP (echo_message_buffer)
2243 || ok_to_overwrite_keystroke_echo)
2244 /* Don't overwrite a prompt. */
2245 && !cursor_in_echo_area)
2247 if (STRINGP (help))
2249 int count = SPECPDL_INDEX ();
2251 if (!help_echo_showing_p)
2252 Vpre_help_message = current_message ();
2254 specbind (Qmessage_truncate_lines, Qt);
2255 message3_nolog (help, SBYTES (help),
2256 STRING_MULTIBYTE (help));
2257 unbind_to (count, Qnil);
2259 else if (STRINGP (Vpre_help_message))
2261 message3_nolog (Vpre_help_message,
2262 SBYTES (Vpre_help_message),
2263 STRING_MULTIBYTE (Vpre_help_message));
2264 Vpre_help_message = Qnil;
2266 else
2267 message (0);
2270 help_echo_showing_p = STRINGP (help);
2276 /* Input of single characters from keyboard */
2278 Lisp_Object print_help ();
2279 static Lisp_Object kbd_buffer_get_event ();
2280 static void record_char ();
2282 #ifdef MULTI_KBOARD
2283 static jmp_buf wrong_kboard_jmpbuf;
2284 #endif
2286 #define STOP_POLLING \
2287 do { if (! polling_stopped_here) stop_polling (); \
2288 polling_stopped_here = 1; } while (0)
2290 #define RESUME_POLLING \
2291 do { if (polling_stopped_here) start_polling (); \
2292 polling_stopped_here = 0; } while (0)
2294 /* read a character from the keyboard; call the redisplay if needed */
2295 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2296 -1 means do not do redisplay, but do do autosaving.
2297 1 means do both. */
2299 /* The arguments MAPS and NMAPS are for menu prompting.
2300 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2302 PREV_EVENT is the previous input event, or nil if we are reading
2303 the first event of a key sequence (or not reading a key sequence).
2304 If PREV_EVENT is t, that is a "magic" value that says
2305 not to run input methods, but in other respects to act as if
2306 not reading a key sequence.
2308 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2309 if we used a mouse menu to read the input, or zero otherwise. If
2310 USED_MOUSE_MENU is null, we don't dereference it.
2312 Value is t if we showed a menu and the user rejected it. */
2314 Lisp_Object
2315 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
2316 int commandflag;
2317 int nmaps;
2318 Lisp_Object *maps;
2319 Lisp_Object prev_event;
2320 int *used_mouse_menu;
2322 volatile Lisp_Object c;
2323 int count;
2324 jmp_buf local_getcjmp;
2325 jmp_buf save_jump;
2326 volatile int key_already_recorded = 0;
2327 Lisp_Object tem, save;
2328 volatile Lisp_Object previous_echo_area_message;
2329 volatile Lisp_Object also_record;
2330 volatile int reread;
2331 struct gcpro gcpro1, gcpro2;
2332 EMACS_TIME last_idle_start;
2333 int polling_stopped_here = 0;
2335 also_record = Qnil;
2337 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2338 before_command_key_count = this_command_key_count;
2339 before_command_echo_length = echo_length ();
2340 #endif
2341 c = Qnil;
2342 previous_echo_area_message = Qnil;
2344 GCPRO2 (c, previous_echo_area_message);
2346 retry:
2348 reread = 0;
2349 if (CONSP (Vunread_post_input_method_events))
2351 c = XCAR (Vunread_post_input_method_events);
2352 Vunread_post_input_method_events
2353 = XCDR (Vunread_post_input_method_events);
2355 /* Undo what read_char_x_menu_prompt did when it unread
2356 additional keys returned by Fx_popup_menu. */
2357 if (CONSP (c)
2358 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2359 && NILP (XCDR (c)))
2360 c = XCAR (c);
2362 reread = 1;
2363 goto reread_first;
2366 if (unread_command_char != -1)
2368 XSETINT (c, unread_command_char);
2369 unread_command_char = -1;
2371 reread = 1;
2372 goto reread_first;
2375 if (CONSP (Vunread_command_events))
2377 c = XCAR (Vunread_command_events);
2378 Vunread_command_events = XCDR (Vunread_command_events);
2380 /* Undo what read_char_x_menu_prompt did when it unread
2381 additional keys returned by Fx_popup_menu. */
2382 if (CONSP (c)
2383 && EQ (XCDR (c), Qdisabled)
2384 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2385 c = XCAR (c);
2387 /* If the queued event is something that used the mouse,
2388 set used_mouse_menu accordingly. */
2389 if (used_mouse_menu
2390 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2391 *used_mouse_menu = 1;
2393 reread = 1;
2394 goto reread_for_input_method;
2397 if (CONSP (Vunread_input_method_events))
2399 c = XCAR (Vunread_input_method_events);
2400 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2402 /* Undo what read_char_x_menu_prompt did when it unread
2403 additional keys returned by Fx_popup_menu. */
2404 if (CONSP (c)
2405 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2406 && NILP (XCDR (c)))
2407 c = XCAR (c);
2408 reread = 1;
2409 goto reread_for_input_method;
2412 this_command_key_count_reset = 0;
2414 if (!NILP (Vexecuting_macro))
2416 /* We set this to Qmacro; since that's not a frame, nobody will
2417 try to switch frames on us, and the selected window will
2418 remain unchanged.
2420 Since this event came from a macro, it would be misleading to
2421 leave internal_last_event_frame set to wherever the last
2422 real event came from. Normally, a switch-frame event selects
2423 internal_last_event_frame after each command is read, but
2424 events read from a macro should never cause a new frame to be
2425 selected. */
2426 Vlast_event_frame = internal_last_event_frame = Qmacro;
2428 /* Exit the macro if we are at the end.
2429 Also, some things replace the macro with t
2430 to force an early exit. */
2431 if (EQ (Vexecuting_macro, Qt)
2432 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
2434 XSETINT (c, -1);
2435 goto exit;
2438 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
2439 if (STRINGP (Vexecuting_macro)
2440 && (XINT (c) & 0x80))
2441 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2443 executing_macro_index++;
2445 goto from_macro;
2448 if (!NILP (unread_switch_frame))
2450 c = unread_switch_frame;
2451 unread_switch_frame = Qnil;
2453 /* This event should make it into this_command_keys, and get echoed
2454 again, so we do not set `reread'. */
2455 goto reread_first;
2458 /* if redisplay was requested */
2459 if (commandflag >= 0)
2461 /* If there is pending input, process any events which are not
2462 user-visible, such as X selection_request events. */
2463 if (input_pending
2464 || detect_input_pending_run_timers (0))
2465 swallow_events (0); /* may clear input_pending */
2467 /* Redisplay if no pending input. */
2468 while (!input_pending)
2470 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2471 redisplay_preserve_echo_area (5);
2472 else
2473 redisplay ();
2475 if (!input_pending)
2476 /* Normal case: no input arrived during redisplay. */
2477 break;
2479 /* Input arrived and pre-empted redisplay.
2480 Process any events which are not user-visible. */
2481 swallow_events (0);
2482 /* If that cleared input_pending, try again to redisplay. */
2486 /* Message turns off echoing unless more keystrokes turn it on again.
2488 The code in 20.x for the condition was
2490 1. echo_area_glyphs && *echo_area_glyphs
2491 2. && echo_area_glyphs != current_kboard->echobuf
2492 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2494 (1) means there's a current message displayed
2496 (2) means it's not the message from echoing from the current
2497 kboard.
2499 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2500 is set to a non-null value. This is done in read_char and it is
2501 set to echo_area_glyphs after a call to echo_char. That means
2502 ok_to_echo_at_next_pause is either null or
2503 current_kboard->echobuf with the appropriate current_kboard at
2504 that time.
2506 So, condition (3) means in clear text ok_to_echo_at_next_pause
2507 must be either null, or the current message isn't from echoing at
2508 all, or it's from echoing from a different kboard than the
2509 current one. */
2511 if (/* There currently is something in the echo area. */
2512 !NILP (echo_area_buffer[0])
2513 && (/* And it's either not from echoing. */
2514 !EQ (echo_area_buffer[0], echo_message_buffer)
2515 /* Or it's an echo from a different kboard. */
2516 || echo_kboard != current_kboard
2517 /* Or we explicitly allow overwriting whatever there is. */
2518 || ok_to_echo_at_next_pause == NULL))
2519 cancel_echoing ();
2520 else
2521 echo_dash ();
2523 /* Try reading a character via menu prompting in the minibuf.
2524 Try this before the sit-for, because the sit-for
2525 would do the wrong thing if we are supposed to do
2526 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2527 after a mouse event so don't try a minibuf menu. */
2528 c = Qnil;
2529 if (nmaps > 0 && INTERACTIVE
2530 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2531 /* Don't bring up a menu if we already have another event. */
2532 && NILP (Vunread_command_events)
2533 && unread_command_char < 0
2534 && !detect_input_pending_run_timers (0))
2536 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2537 if (! NILP (c))
2539 key_already_recorded = 1;
2540 goto non_reread_1;
2544 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2545 We will do that below, temporarily for short sections of code,
2546 when appropriate. local_getcjmp must be in effect
2547 around any call to sit_for or kbd_buffer_get_event;
2548 it *must not* be in effect when we call redisplay. */
2550 if (_setjmp (local_getcjmp))
2552 XSETINT (c, quit_char);
2553 internal_last_event_frame = selected_frame;
2554 Vlast_event_frame = internal_last_event_frame;
2555 /* If we report the quit char as an event,
2556 don't do so more than once. */
2557 if (!NILP (Vinhibit_quit))
2558 Vquit_flag = Qnil;
2560 #ifdef MULTI_KBOARD
2562 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2563 if (kb != current_kboard)
2565 Lisp_Object link = kb->kbd_queue;
2566 /* We shouldn't get here if we were in single-kboard mode! */
2567 if (single_kboard)
2568 abort ();
2569 if (CONSP (link))
2571 while (CONSP (XCDR (link)))
2572 link = XCDR (link);
2573 if (!NILP (XCDR (link)))
2574 abort ();
2576 if (!CONSP (link))
2577 kb->kbd_queue = Fcons (c, Qnil);
2578 else
2579 XSETCDR (link, Fcons (c, Qnil));
2580 kb->kbd_queue_has_data = 1;
2581 current_kboard = kb;
2582 /* This is going to exit from read_char
2583 so we had better get rid of this frame's stuff. */
2584 UNGCPRO;
2585 longjmp (wrong_kboard_jmpbuf, 1);
2588 #endif
2589 goto non_reread;
2592 timer_start_idle ();
2594 /* If in middle of key sequence and minibuffer not active,
2595 start echoing if enough time elapses. */
2597 if (minibuf_level == 0
2598 && !current_kboard->immediate_echo
2599 && this_command_key_count > 0
2600 && ! noninteractive
2601 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2602 && NILP (Fzerop (Vecho_keystrokes))
2603 && (/* No message. */
2604 NILP (echo_area_buffer[0])
2605 /* Or empty message. */
2606 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2607 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2608 /* Or already echoing from same kboard. */
2609 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2610 /* Or not echoing before and echoing allowed. */
2611 || (!echo_kboard && ok_to_echo_at_next_pause)))
2613 Lisp_Object tem0;
2615 /* After a mouse event, start echoing right away.
2616 This is because we are probably about to display a menu,
2617 and we don't want to delay before doing so. */
2618 if (EVENT_HAS_PARAMETERS (prev_event))
2619 echo_now ();
2620 else
2622 int sec, usec;
2623 double duration = extract_float (Vecho_keystrokes);
2624 sec = (int) duration;
2625 usec = (duration - sec) * 1000000;
2626 save_getcjmp (save_jump);
2627 restore_getcjmp (local_getcjmp);
2628 tem0 = sit_for (sec, usec, 1, 1, 0);
2629 restore_getcjmp (save_jump);
2630 if (EQ (tem0, Qt)
2631 && ! CONSP (Vunread_command_events))
2632 echo_now ();
2636 /* Maybe auto save due to number of keystrokes. */
2638 if (commandflag != 0
2639 && auto_save_interval > 0
2640 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2641 && !detect_input_pending_run_timers (0))
2643 Fdo_auto_save (Qnil, Qnil);
2644 /* Hooks can actually change some buffers in auto save. */
2645 redisplay ();
2648 /* Try reading using an X menu.
2649 This is never confused with reading using the minibuf
2650 because the recursive call of read_char in read_char_minibuf_menu_prompt
2651 does not pass on any keymaps. */
2653 if (nmaps > 0 && INTERACTIVE
2654 && !NILP (prev_event)
2655 && EVENT_HAS_PARAMETERS (prev_event)
2656 && !EQ (XCAR (prev_event), Qmenu_bar)
2657 && !EQ (XCAR (prev_event), Qtool_bar)
2658 /* Don't bring up a menu if we already have another event. */
2659 && NILP (Vunread_command_events)
2660 && unread_command_char < 0)
2662 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2664 /* Now that we have read an event, Emacs is not idle. */
2665 timer_stop_idle ();
2667 goto exit;
2670 /* Maybe autosave and/or garbage collect due to idleness. */
2672 if (INTERACTIVE && NILP (c))
2674 int delay_level, buffer_size;
2676 /* Slow down auto saves logarithmically in size of current buffer,
2677 and garbage collect while we're at it. */
2678 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2679 last_non_minibuf_size = Z - BEG;
2680 buffer_size = (last_non_minibuf_size >> 8) + 1;
2681 delay_level = 0;
2682 while (buffer_size > 64)
2683 delay_level++, buffer_size -= buffer_size >> 2;
2684 if (delay_level < 4) delay_level = 4;
2685 /* delay_level is 4 for files under around 50k, 7 at 100k,
2686 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2688 /* Auto save if enough time goes by without input. */
2689 if (commandflag != 0
2690 && num_nonmacro_input_events > last_auto_save
2691 && INTEGERP (Vauto_save_timeout)
2692 && XINT (Vauto_save_timeout) > 0)
2694 Lisp_Object tem0;
2696 save_getcjmp (save_jump);
2697 restore_getcjmp (local_getcjmp);
2698 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
2699 0, 1, 1, 0);
2700 restore_getcjmp (save_jump);
2702 if (EQ (tem0, Qt)
2703 && ! CONSP (Vunread_command_events))
2705 Fdo_auto_save (Qnil, Qnil);
2707 /* If we have auto-saved and there is still no input
2708 available, garbage collect if there has been enough
2709 consing going on to make it worthwhile. */
2710 if (!detect_input_pending_run_timers (0)
2711 && consing_since_gc > gc_cons_threshold / 2)
2712 Fgarbage_collect ();
2714 redisplay ();
2719 /* If this has become non-nil here, it has been set by a timer
2720 or sentinel or filter. */
2721 if (CONSP (Vunread_command_events))
2723 c = XCAR (Vunread_command_events);
2724 Vunread_command_events = XCDR (Vunread_command_events);
2727 /* Read something from current KBOARD's side queue, if possible. */
2729 if (NILP (c))
2731 if (current_kboard->kbd_queue_has_data)
2733 if (!CONSP (current_kboard->kbd_queue))
2734 abort ();
2735 c = XCAR (current_kboard->kbd_queue);
2736 current_kboard->kbd_queue
2737 = XCDR (current_kboard->kbd_queue);
2738 if (NILP (current_kboard->kbd_queue))
2739 current_kboard->kbd_queue_has_data = 0;
2740 input_pending = readable_events (0);
2741 if (EVENT_HAS_PARAMETERS (c)
2742 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2743 internal_last_event_frame = XCAR (XCDR (c));
2744 Vlast_event_frame = internal_last_event_frame;
2748 #ifdef MULTI_KBOARD
2749 /* If current_kboard's side queue is empty check the other kboards.
2750 If one of them has data that we have not yet seen here,
2751 switch to it and process the data waiting for it.
2753 Note: if the events queued up for another kboard
2754 have already been seen here, and therefore are not a complete command,
2755 the kbd_queue_has_data field is 0, so we skip that kboard here.
2756 That's to avoid an infinite loop switching between kboards here. */
2757 if (NILP (c) && !single_kboard)
2759 KBOARD *kb;
2760 for (kb = all_kboards; kb; kb = kb->next_kboard)
2761 if (kb->kbd_queue_has_data)
2763 current_kboard = kb;
2764 /* This is going to exit from read_char
2765 so we had better get rid of this frame's stuff. */
2766 UNGCPRO;
2767 longjmp (wrong_kboard_jmpbuf, 1);
2770 #endif
2772 wrong_kboard:
2774 STOP_POLLING;
2776 /* Finally, we read from the main queue,
2777 and if that gives us something we can't use yet, we put it on the
2778 appropriate side queue and try again. */
2780 if (NILP (c))
2782 KBOARD *kb;
2784 /* Actually read a character, waiting if necessary. */
2785 save_getcjmp (save_jump);
2786 restore_getcjmp (local_getcjmp);
2787 timer_start_idle ();
2788 c = kbd_buffer_get_event (&kb, used_mouse_menu);
2789 restore_getcjmp (save_jump);
2791 #ifdef MULTI_KBOARD
2792 if (! NILP (c) && (kb != current_kboard))
2794 Lisp_Object link = kb->kbd_queue;
2795 if (CONSP (link))
2797 while (CONSP (XCDR (link)))
2798 link = XCDR (link);
2799 if (!NILP (XCDR (link)))
2800 abort ();
2802 if (!CONSP (link))
2803 kb->kbd_queue = Fcons (c, Qnil);
2804 else
2805 XSETCDR (link, Fcons (c, Qnil));
2806 kb->kbd_queue_has_data = 1;
2807 c = Qnil;
2808 if (single_kboard)
2809 goto wrong_kboard;
2810 current_kboard = kb;
2811 /* This is going to exit from read_char
2812 so we had better get rid of this frame's stuff. */
2813 UNGCPRO;
2814 longjmp (wrong_kboard_jmpbuf, 1);
2816 #endif
2819 /* Terminate Emacs in batch mode if at eof. */
2820 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2821 Fkill_emacs (make_number (1));
2823 if (INTEGERP (c))
2825 /* Add in any extra modifiers, where appropriate. */
2826 if ((extra_keyboard_modifiers & CHAR_CTL)
2827 || ((extra_keyboard_modifiers & 0177) < ' '
2828 && (extra_keyboard_modifiers & 0177) != 0))
2829 XSETINT (c, make_ctrl_char (XINT (c)));
2831 /* Transfer any other modifier bits directly from
2832 extra_keyboard_modifiers to c. Ignore the actual character code
2833 in the low 16 bits of extra_keyboard_modifiers. */
2834 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2837 non_reread:
2839 /* Record the last idle start time so that we can reset it
2840 should the next event read be a help-echo. */
2841 last_idle_start = timer_idleness_start_time;
2842 timer_stop_idle ();
2843 RESUME_POLLING;
2845 if (NILP (c))
2847 if (commandflag >= 0
2848 && !input_pending && !detect_input_pending_run_timers (0))
2849 redisplay ();
2851 goto wrong_kboard;
2854 non_reread_1:
2856 /* Buffer switch events are only for internal wakeups
2857 so don't show them to the user.
2858 Also, don't record a key if we already did. */
2859 if (BUFFERP (c) || key_already_recorded)
2860 goto exit;
2862 /* Process special events within read_char
2863 and loop around to read another event. */
2864 save = Vquit_flag;
2865 Vquit_flag = Qnil;
2866 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2867 Vquit_flag = save;
2869 if (!NILP (tem))
2871 int was_locked = single_kboard;
2873 last_input_char = c;
2874 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2876 if (CONSP (c) && EQ (XCAR (c), Qselect_window))
2877 /* We stopped being idle for this event; undo that. This
2878 prevents automatic window selection (under
2879 mouse_autoselect_window from acting as a real input event, for
2880 example banishing the mouse under mouse-avoidance-mode. */
2881 timer_idleness_start_time = last_idle_start;
2883 /* Resume allowing input from any kboard, if that was true before. */
2884 if (!was_locked)
2885 any_kboard_state ();
2887 goto retry;
2890 /* Handle things that only apply to characters. */
2891 if (INTEGERP (c))
2893 /* If kbd_buffer_get_event gave us an EOF, return that. */
2894 if (XINT (c) == -1)
2895 goto exit;
2897 if ((STRINGP (Vkeyboard_translate_table)
2898 && SCHARS (Vkeyboard_translate_table) > (unsigned) XFASTINT (c))
2899 || (VECTORP (Vkeyboard_translate_table)
2900 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2901 || (CHAR_TABLE_P (Vkeyboard_translate_table)
2902 && CHAR_VALID_P (XINT (c), 0)))
2904 Lisp_Object d;
2905 d = Faref (Vkeyboard_translate_table, c);
2906 /* nil in keyboard-translate-table means no translation. */
2907 if (!NILP (d))
2908 c = d;
2912 /* If this event is a mouse click in the menu bar,
2913 return just menu-bar for now. Modify the mouse click event
2914 so we won't do this twice, then queue it up. */
2915 if (EVENT_HAS_PARAMETERS (c)
2916 && CONSP (XCDR (c))
2917 && CONSP (EVENT_START (c))
2918 && CONSP (XCDR (EVENT_START (c))))
2920 Lisp_Object posn;
2922 posn = POSN_BUFFER_POSN (EVENT_START (c));
2923 /* Handle menu-bar events:
2924 insert the dummy prefix event `menu-bar'. */
2925 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2927 /* Change menu-bar to (menu-bar) as the event "position". */
2928 POSN_BUFFER_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
2930 also_record = c;
2931 Vunread_command_events = Fcons (c, Vunread_command_events);
2932 c = posn;
2936 /* Store these characters into recent_keys, the dribble file if any,
2937 and the keyboard macro being defined, if any. */
2938 record_char (c);
2939 if (! NILP (also_record))
2940 record_char (also_record);
2942 /* Wipe the echo area.
2943 But first, if we are about to use an input method,
2944 save the echo area contents for it to refer to. */
2945 if (INTEGERP (c)
2946 && ! NILP (Vinput_method_function)
2947 && (unsigned) XINT (c) >= ' '
2948 && (unsigned) XINT (c) != 127
2949 && (unsigned) XINT (c) < 256)
2951 previous_echo_area_message = Fcurrent_message ();
2952 Vinput_method_previous_message = previous_echo_area_message;
2955 /* Now wipe the echo area, except for help events which do their
2956 own stuff with the echo area. */
2957 if (!CONSP (c)
2958 || (!(EQ (Qhelp_echo, XCAR (c)))
2959 && !(EQ (Qswitch_frame, XCAR (c)))))
2961 if (!NILP (echo_area_buffer[0]))
2962 safe_run_hooks (Qecho_area_clear_hook);
2963 clear_message (1, 0);
2966 reread_for_input_method:
2967 from_macro:
2968 /* Pass this to the input method, if appropriate. */
2969 if (INTEGERP (c)
2970 && ! NILP (Vinput_method_function)
2971 /* Don't run the input method within a key sequence,
2972 after the first event of the key sequence. */
2973 && NILP (prev_event)
2974 && (unsigned) XINT (c) >= ' '
2975 && (unsigned) XINT (c) != 127
2976 && (unsigned) XINT (c) < 256)
2978 Lisp_Object keys;
2979 int key_count, key_count_reset;
2980 struct gcpro gcpro1;
2981 int count = SPECPDL_INDEX ();
2983 /* Save the echo status. */
2984 int saved_immediate_echo = current_kboard->immediate_echo;
2985 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
2986 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
2988 #if 0
2989 if (before_command_restore_flag)
2991 this_command_key_count = before_command_key_count_1;
2992 if (this_command_key_count < this_single_command_key_start)
2993 this_single_command_key_start = this_command_key_count;
2994 echo_truncate (before_command_echo_length_1);
2995 before_command_restore_flag = 0;
2997 #endif
2999 /* Save the this_command_keys status. */
3000 key_count = this_command_key_count;
3001 key_count_reset = this_command_key_count_reset;
3003 if (key_count > 0)
3004 keys = Fcopy_sequence (this_command_keys);
3005 else
3006 keys = Qnil;
3007 GCPRO1 (keys);
3009 /* Clear out this_command_keys. */
3010 this_command_key_count = 0;
3011 this_command_key_count_reset = 0;
3013 /* Now wipe the echo area. */
3014 if (!NILP (echo_area_buffer[0]))
3015 safe_run_hooks (Qecho_area_clear_hook);
3016 clear_message (1, 0);
3017 echo_truncate (0);
3019 /* If we are not reading a key sequence,
3020 never use the echo area. */
3021 if (maps == 0)
3023 specbind (Qinput_method_use_echo_area, Qt);
3026 /* Call the input method. */
3027 tem = call1 (Vinput_method_function, c);
3029 tem = unbind_to (count, tem);
3031 /* Restore the saved echoing state
3032 and this_command_keys state. */
3033 this_command_key_count = key_count;
3034 this_command_key_count_reset = key_count_reset;
3035 if (key_count > 0)
3036 this_command_keys = keys;
3038 cancel_echoing ();
3039 ok_to_echo_at_next_pause = saved_ok_to_echo;
3040 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3041 if (saved_immediate_echo)
3042 echo_now ();
3044 UNGCPRO;
3046 /* The input method can return no events. */
3047 if (! CONSP (tem))
3049 /* Bring back the previous message, if any. */
3050 if (! NILP (previous_echo_area_message))
3051 message_with_string ("%s", previous_echo_area_message, 0);
3052 goto retry;
3054 /* It returned one event or more. */
3055 c = XCAR (tem);
3056 Vunread_post_input_method_events
3057 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3060 reread_first:
3062 /* Display help if not echoing. */
3063 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3065 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3066 Lisp_Object help, object, position, window, tem;
3068 tem = Fcdr (XCDR (c));
3069 help = Fcar (tem);
3070 tem = Fcdr (tem);
3071 window = Fcar (tem);
3072 tem = Fcdr (tem);
3073 object = Fcar (tem);
3074 tem = Fcdr (tem);
3075 position = Fcar (tem);
3077 show_help_echo (help, window, object, position, 0);
3079 /* We stopped being idle for this event; undo that. */
3080 timer_idleness_start_time = last_idle_start;
3081 goto retry;
3084 if (! reread || this_command_key_count == 0
3085 || this_command_key_count_reset)
3088 /* Don't echo mouse motion events. */
3089 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3090 && NILP (Fzerop (Vecho_keystrokes))
3091 && ! (EVENT_HAS_PARAMETERS (c)
3092 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3094 echo_char (c);
3095 if (! NILP (also_record))
3096 echo_char (also_record);
3097 /* Once we reread a character, echoing can happen
3098 the next time we pause to read a new one. */
3099 ok_to_echo_at_next_pause = current_kboard;
3102 /* Record this character as part of the current key. */
3103 add_command_key (c);
3104 if (! NILP (also_record))
3105 add_command_key (also_record);
3108 last_input_char = c;
3109 num_input_events++;
3111 /* Process the help character specially if enabled */
3112 if (!NILP (Vhelp_form) && help_char_p (c))
3114 Lisp_Object tem0;
3115 count = SPECPDL_INDEX ();
3117 record_unwind_protect (Fset_window_configuration,
3118 Fcurrent_window_configuration (Qnil));
3120 tem0 = Feval (Vhelp_form);
3121 if (STRINGP (tem0))
3122 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3124 cancel_echoing ();
3126 c = read_char (0, 0, 0, Qnil, 0);
3127 while (BUFFERP (c));
3128 /* Remove the help from the frame */
3129 unbind_to (count, Qnil);
3131 redisplay ();
3132 if (EQ (c, make_number (040)))
3134 cancel_echoing ();
3136 c = read_char (0, 0, 0, Qnil, 0);
3137 while (BUFFERP (c));
3141 exit:
3142 RESUME_POLLING;
3143 RETURN_UNGCPRO (c);
3146 /* Record a key that came from a mouse menu.
3147 Record it for echoing, for this-command-keys, and so on. */
3149 static void
3150 record_menu_key (c)
3151 Lisp_Object c;
3153 /* Wipe the echo area. */
3154 clear_message (1, 0);
3156 record_char (c);
3158 #if 0
3159 before_command_key_count = this_command_key_count;
3160 before_command_echo_length = echo_length ();
3161 #endif
3163 /* Don't echo mouse motion events. */
3164 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3165 && NILP (Fzerop (Vecho_keystrokes)))
3167 echo_char (c);
3169 /* Once we reread a character, echoing can happen
3170 the next time we pause to read a new one. */
3171 ok_to_echo_at_next_pause = 0;
3174 /* Record this character as part of the current key. */
3175 add_command_key (c);
3177 /* Re-reading in the middle of a command */
3178 last_input_char = c;
3179 num_input_events++;
3182 /* Return 1 if should recognize C as "the help character". */
3185 help_char_p (c)
3186 Lisp_Object c;
3188 Lisp_Object tail;
3190 if (EQ (c, Vhelp_char))
3191 return 1;
3192 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3193 if (EQ (c, XCAR (tail)))
3194 return 1;
3195 return 0;
3198 /* Record the input event C in various ways. */
3200 static void
3201 record_char (c)
3202 Lisp_Object c;
3204 int recorded = 0;
3206 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3208 /* To avoid filling recent_keys with help-echo and mouse-movement
3209 events, we filter out repeated help-echo events, only store the
3210 first and last in a series of mouse-movement events, and don't
3211 store repeated help-echo events which are only separated by
3212 mouse-movement events. */
3214 Lisp_Object ev1, ev2, ev3;
3215 int ix1, ix2, ix3;
3217 if ((ix1 = recent_keys_index - 1) < 0)
3218 ix1 = NUM_RECENT_KEYS - 1;
3219 ev1 = AREF (recent_keys, ix1);
3221 if ((ix2 = ix1 - 1) < 0)
3222 ix2 = NUM_RECENT_KEYS - 1;
3223 ev2 = AREF (recent_keys, ix2);
3225 if ((ix3 = ix2 - 1) < 0)
3226 ix3 = NUM_RECENT_KEYS - 1;
3227 ev3 = AREF (recent_keys, ix3);
3229 if (EQ (XCAR (c), Qhelp_echo))
3231 /* Don't record `help-echo' in recent_keys unless it shows some help
3232 message, and a different help than the previously recorded
3233 event. */
3234 Lisp_Object help, last_help;
3236 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3237 if (!STRINGP (help))
3238 recorded = 1;
3239 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3240 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3241 recorded = 1;
3242 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3243 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3244 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3245 recorded = -1;
3246 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3247 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3248 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3249 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3250 recorded = -2;
3252 else if (EQ (XCAR (c), Qmouse_movement))
3254 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3255 So additional mouse movement events replace the last element. */
3256 Lisp_Object last_window, window;
3258 window = Fcar_safe (Fcar_safe (XCDR (c)));
3259 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3260 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3261 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3262 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3264 ASET (recent_keys, ix1, c);
3265 recorded = 1;
3269 else
3270 store_kbd_macro_char (c);
3272 if (!recorded)
3274 total_keys++;
3275 ASET (recent_keys, recent_keys_index, c);
3276 if (++recent_keys_index >= NUM_RECENT_KEYS)
3277 recent_keys_index = 0;
3279 else if (recorded < 0)
3281 /* We need to remove one or two events from recent_keys.
3282 To do this, we simply put nil at those events and move the
3283 recent_keys_index backwards over those events. Usually,
3284 users will never see those nil events, as they will be
3285 overwritten by the command keys entered to see recent_keys
3286 (e.g. C-h l). */
3288 while (recorded++ < 0 && total_keys > 0)
3290 if (total_keys < NUM_RECENT_KEYS)
3291 total_keys--;
3292 if (--recent_keys_index < 0)
3293 recent_keys_index = NUM_RECENT_KEYS - 1;
3294 ASET (recent_keys, recent_keys_index, Qnil);
3298 num_nonmacro_input_events++;
3300 /* Write c to the dribble file. If c is a lispy event, write
3301 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3302 If you, dear reader, have a better idea, you've got the source. :-) */
3303 if (dribble)
3305 if (INTEGERP (c))
3307 if (XUINT (c) < 0x100)
3308 putc (XINT (c), dribble);
3309 else
3310 fprintf (dribble, " 0x%x", (int) XUINT (c));
3312 else
3314 Lisp_Object dribblee;
3316 /* If it's a structured event, take the event header. */
3317 dribblee = EVENT_HEAD (c);
3319 if (SYMBOLP (dribblee))
3321 putc ('<', dribble);
3322 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3323 SBYTES (SYMBOL_NAME (dribblee)),
3324 dribble);
3325 putc ('>', dribble);
3329 fflush (dribble);
3333 Lisp_Object
3334 print_help (object)
3335 Lisp_Object object;
3337 struct buffer *old = current_buffer;
3338 Fprinc (object, Qnil);
3339 set_buffer_internal (XBUFFER (Vstandard_output));
3340 call0 (intern ("help-mode"));
3341 set_buffer_internal (old);
3342 return Qnil;
3345 /* Copy out or in the info on where C-g should throw to.
3346 This is used when running Lisp code from within get_char,
3347 in case get_char is called recursively.
3348 See read_process_output. */
3350 static void
3351 save_getcjmp (temp)
3352 jmp_buf temp;
3354 bcopy (getcjmp, temp, sizeof getcjmp);
3357 static void
3358 restore_getcjmp (temp)
3359 jmp_buf temp;
3361 bcopy (temp, getcjmp, sizeof getcjmp);
3364 #ifdef HAVE_MOUSE
3366 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3367 of this function. */
3369 static Lisp_Object
3370 tracking_off (old_value)
3371 Lisp_Object old_value;
3373 do_mouse_tracking = old_value;
3374 if (NILP (old_value))
3376 /* Redisplay may have been preempted because there was input
3377 available, and it assumes it will be called again after the
3378 input has been processed. If the only input available was
3379 the sort that we have just disabled, then we need to call
3380 redisplay. */
3381 if (!readable_events (1))
3383 redisplay_preserve_echo_area (6);
3384 get_input_pending (&input_pending, 1);
3387 return Qnil;
3390 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
3391 doc: /* Evaluate BODY with mouse movement events enabled.
3392 Within a `track-mouse' form, mouse motion generates input events that
3393 you can read with `read-event'.
3394 Normally, mouse motion is ignored.
3395 usage: (track-mouse BODY ...) */)
3396 (args)
3397 Lisp_Object args;
3399 int count = SPECPDL_INDEX ();
3400 Lisp_Object val;
3402 record_unwind_protect (tracking_off, do_mouse_tracking);
3404 do_mouse_tracking = Qt;
3406 val = Fprogn (args);
3407 return unbind_to (count, val);
3410 /* If mouse has moved on some frame, return one of those frames.
3411 Return 0 otherwise. */
3413 static FRAME_PTR
3414 some_mouse_moved ()
3416 Lisp_Object tail, frame;
3418 FOR_EACH_FRAME (tail, frame)
3420 if (XFRAME (frame)->mouse_moved)
3421 return XFRAME (frame);
3424 return 0;
3427 #endif /* HAVE_MOUSE */
3429 /* Low level keyboard/mouse input.
3430 kbd_buffer_store_event places events in kbd_buffer, and
3431 kbd_buffer_get_event retrieves them. */
3433 /* Return true iff there are any events in the queue that read-char
3434 would return. If this returns false, a read-char would block. */
3435 static int
3436 readable_filtered_events (do_timers_now, filter_events)
3437 int do_timers_now;
3438 int filter_events;
3440 if (do_timers_now)
3441 timer_check (do_timers_now);
3443 /* If the buffer contains only FOCUS_IN_EVENT events,
3444 and FILTER_EVENTS is nonzero, report it as empty. */
3445 if (kbd_fetch_ptr != kbd_store_ptr)
3447 int have_live_event = 1;
3449 if (filter_events)
3451 struct input_event *event;
3453 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3454 ? kbd_fetch_ptr
3455 : kbd_buffer);
3457 while (have_live_event && event->kind == FOCUS_IN_EVENT)
3459 event++;
3460 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3461 event = kbd_buffer;
3462 if (event == kbd_store_ptr)
3463 have_live_event = 0;
3466 if (have_live_event) return 1;
3469 #ifdef HAVE_MOUSE
3470 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3471 return 1;
3472 #endif
3473 if (single_kboard)
3475 if (current_kboard->kbd_queue_has_data)
3476 return 1;
3478 else
3480 KBOARD *kb;
3481 for (kb = all_kboards; kb; kb = kb->next_kboard)
3482 if (kb->kbd_queue_has_data)
3483 return 1;
3485 return 0;
3488 /* Return true iff there are any events in the queue that read-char
3489 would return. If this returns false, a read-char would block. */
3490 static int
3491 readable_events (do_timers_now)
3492 int do_timers_now;
3494 return readable_filtered_events (do_timers_now, 0);
3497 /* Set this for debugging, to have a way to get out */
3498 int stop_character;
3500 #ifdef MULTI_KBOARD
3501 static KBOARD *
3502 event_to_kboard (event)
3503 struct input_event *event;
3505 Lisp_Object frame;
3506 frame = event->frame_or_window;
3507 if (CONSP (frame))
3508 frame = XCAR (frame);
3509 else if (WINDOWP (frame))
3510 frame = WINDOW_FRAME (XWINDOW (frame));
3512 /* There are still some events that don't set this field.
3513 For now, just ignore the problem.
3514 Also ignore dead frames here. */
3515 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3516 return 0;
3517 else
3518 return FRAME_KBOARD (XFRAME (frame));
3520 #endif
3522 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3524 void
3525 kbd_buffer_store_event (event)
3526 register struct input_event *event;
3528 if (event->kind == NO_EVENT)
3529 abort ();
3531 if (event->kind == ASCII_KEYSTROKE_EVENT)
3533 register int c = event->code & 0377;
3535 if (event->modifiers & ctrl_modifier)
3536 c = make_ctrl_char (c);
3538 c |= (event->modifiers
3539 & (meta_modifier | alt_modifier
3540 | hyper_modifier | super_modifier));
3542 if (c == quit_char)
3544 #ifdef MULTI_KBOARD
3545 KBOARD *kb;
3546 struct input_event *sp;
3548 if (single_kboard
3549 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3550 kb != current_kboard))
3552 kb->kbd_queue
3553 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3554 Fcons (make_number (c), Qnil));
3555 kb->kbd_queue_has_data = 1;
3556 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3558 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3559 sp = kbd_buffer;
3561 if (event_to_kboard (sp) == kb)
3563 sp->kind = NO_EVENT;
3564 sp->frame_or_window = Qnil;
3565 sp->arg = Qnil;
3568 return;
3570 #endif
3572 /* If this results in a quit_char being returned to Emacs as
3573 input, set Vlast_event_frame properly. If this doesn't
3574 get returned to Emacs as an event, the next event read
3575 will set Vlast_event_frame again, so this is safe to do. */
3577 Lisp_Object focus;
3579 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3580 if (NILP (focus))
3581 focus = event->frame_or_window;
3582 internal_last_event_frame = focus;
3583 Vlast_event_frame = focus;
3586 last_event_timestamp = event->timestamp;
3587 interrupt_signal (0 /* dummy */);
3588 return;
3591 if (c && c == stop_character)
3593 sys_suspend ();
3594 return;
3597 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3598 Just ignore the second one. */
3599 else if (event->kind == BUFFER_SWITCH_EVENT
3600 && kbd_fetch_ptr != kbd_store_ptr
3601 && kbd_store_ptr->kind == BUFFER_SWITCH_EVENT)
3602 return;
3604 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3605 kbd_store_ptr = kbd_buffer;
3607 /* Don't let the very last slot in the buffer become full,
3608 since that would make the two pointers equal,
3609 and that is indistinguishable from an empty buffer.
3610 Discard the event if it would fill the last slot. */
3611 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3613 int idx;
3615 #if 0 /* The SELECTION_REQUEST_EVENT case looks bogus, and it's error
3616 prone to assign individual members for other events, in case
3617 the input_event structure is changed. --2000-07-13, gerd. */
3618 struct input_event *sp = kbd_store_ptr;
3619 sp->kind = event->kind;
3620 if (event->kind == SELECTION_REQUEST_EVENT)
3622 /* We must not use the ordinary copying code for this case,
3623 since `part' is an enum and copying it might not copy enough
3624 in this case. */
3625 bcopy (event, (char *) sp, sizeof (*event));
3627 else
3630 sp->code = event->code;
3631 sp->part = event->part;
3632 sp->frame_or_window = event->frame_or_window;
3633 sp->arg = event->arg;
3634 sp->modifiers = event->modifiers;
3635 sp->x = event->x;
3636 sp->y = event->y;
3637 sp->timestamp = event->timestamp;
3639 #else
3640 *kbd_store_ptr = *event;
3641 #endif
3643 idx = 2 * (kbd_store_ptr - kbd_buffer);
3644 ASET (kbd_buffer_gcpro, idx, event->frame_or_window);
3645 ASET (kbd_buffer_gcpro, idx + 1, event->arg);
3646 ++kbd_store_ptr;
3651 /* Generate HELP_EVENT input_events in BUFP which has room for
3652 SIZE events. If there's not enough room in BUFP, ignore this
3653 event.
3655 HELP is the help form.
3657 FRAME is the frame on which the help is generated. OBJECT is the
3658 Lisp object where the help was found (a buffer, a string, an
3659 overlay, or nil if neither from a string nor from a buffer. POS is
3660 the position within OBJECT where the help was found.
3662 Value is the number of input_events generated. */
3665 gen_help_event (bufp, size, help, frame, window, object, pos)
3666 struct input_event *bufp;
3667 int size;
3668 Lisp_Object help, frame, object, window;
3669 int pos;
3671 if (size >= 1)
3673 bufp->kind = HELP_EVENT;
3674 bufp->frame_or_window = frame;
3675 bufp->arg = object;
3676 bufp->x = WINDOWP (window) ? window : frame;
3677 bufp->y = help;
3678 bufp->code = pos;
3679 return 1;
3681 return 0;
3685 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3687 void
3688 kbd_buffer_store_help_event (frame, help)
3689 Lisp_Object frame, help;
3691 struct input_event event;
3693 event.kind = HELP_EVENT;
3694 event.frame_or_window = frame;
3695 event.arg = Qnil;
3696 event.x = Qnil;
3697 event.y = help;
3698 event.code = 0;
3699 kbd_buffer_store_event (&event);
3703 /* Discard any mouse events in the event buffer by setting them to
3704 NO_EVENT. */
3705 void
3706 discard_mouse_events ()
3708 struct input_event *sp;
3709 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3711 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3712 sp = kbd_buffer;
3714 if (sp->kind == MOUSE_CLICK_EVENT
3715 #ifdef WINDOWSNT
3716 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
3717 #endif
3718 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3720 sp->kind = NO_EVENT;
3726 /* Return non-zero if there are any real events waiting in the event
3727 buffer, not counting `NO_EVENT's.
3729 If DISCARD is non-zero, discard NO_EVENT events at the front of
3730 the input queue, possibly leaving the input queue empty if there
3731 are no real input events. */
3734 kbd_buffer_events_waiting (discard)
3735 int discard;
3737 struct input_event *sp;
3739 for (sp = kbd_fetch_ptr;
3740 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3741 ++sp)
3743 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3744 sp = kbd_buffer;
3747 if (discard)
3748 kbd_fetch_ptr = sp;
3750 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3754 /* Clear input event EVENT. */
3756 static INLINE void
3757 clear_event (event)
3758 struct input_event *event;
3760 int idx = 2 * (event - kbd_buffer);
3761 ASET (kbd_buffer_gcpro, idx, Qnil);
3762 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
3763 event->kind = NO_EVENT;
3767 /* Read one event from the event buffer, waiting if necessary.
3768 The value is a Lisp object representing the event.
3769 The value is nil for an event that should be ignored,
3770 or that was handled here.
3771 We always read and discard one event. */
3773 static Lisp_Object
3774 kbd_buffer_get_event (kbp, used_mouse_menu)
3775 KBOARD **kbp;
3776 int *used_mouse_menu;
3778 register int c;
3779 Lisp_Object obj;
3781 if (noninteractive)
3783 c = getchar ();
3784 XSETINT (obj, c);
3785 *kbp = current_kboard;
3786 return obj;
3789 /* Wait until there is input available. */
3790 for (;;)
3792 if (kbd_fetch_ptr != kbd_store_ptr)
3793 break;
3794 #ifdef HAVE_MOUSE
3795 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3796 break;
3797 #endif
3799 /* If the quit flag is set, then read_char will return
3800 quit_char, so that counts as "available input." */
3801 if (!NILP (Vquit_flag))
3802 quit_throw_to_read_char ();
3804 /* One way or another, wait until input is available; then, if
3805 interrupt handlers have not read it, read it now. */
3807 #ifdef OLDVMS
3808 wait_for_kbd_input ();
3809 #else
3810 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3811 #ifdef SIGIO
3812 gobble_input (0);
3813 #endif /* SIGIO */
3814 if (kbd_fetch_ptr != kbd_store_ptr)
3815 break;
3816 #ifdef HAVE_MOUSE
3817 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3818 break;
3819 #endif
3821 Lisp_Object minus_one;
3823 XSETINT (minus_one, -1);
3824 wait_reading_process_input (0, 0, minus_one, 1);
3826 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3827 /* Pass 1 for EXPECT since we just waited to have input. */
3828 read_avail_input (1);
3830 #endif /* not VMS */
3833 if (CONSP (Vunread_command_events))
3835 Lisp_Object first;
3836 first = XCAR (Vunread_command_events);
3837 Vunread_command_events = XCDR (Vunread_command_events);
3838 *kbp = current_kboard;
3839 return first;
3842 /* At this point, we know that there is a readable event available
3843 somewhere. If the event queue is empty, then there must be a
3844 mouse movement enabled and available. */
3845 if (kbd_fetch_ptr != kbd_store_ptr)
3847 struct input_event *event;
3849 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3850 ? kbd_fetch_ptr
3851 : kbd_buffer);
3853 last_event_timestamp = event->timestamp;
3855 #ifdef MULTI_KBOARD
3856 *kbp = event_to_kboard (event);
3857 if (*kbp == 0)
3858 *kbp = current_kboard; /* Better than returning null ptr? */
3859 #else
3860 *kbp = &the_only_kboard;
3861 #endif
3863 obj = Qnil;
3865 /* These two kinds of events get special handling
3866 and don't actually appear to the command loop.
3867 We return nil for them. */
3868 if (event->kind == SELECTION_REQUEST_EVENT)
3870 #ifdef HAVE_X11
3871 struct input_event copy;
3873 /* Remove it from the buffer before processing it,
3874 since otherwise swallow_events will see it
3875 and process it again. */
3876 copy = *event;
3877 kbd_fetch_ptr = event + 1;
3878 input_pending = readable_events (0);
3879 x_handle_selection_request (&copy);
3880 #else
3881 /* We're getting selection request events, but we don't have
3882 a window system. */
3883 abort ();
3884 #endif
3887 else if (event->kind == SELECTION_CLEAR_EVENT)
3889 #ifdef HAVE_X11
3890 struct input_event copy;
3892 /* Remove it from the buffer before processing it. */
3893 copy = *event;
3894 kbd_fetch_ptr = event + 1;
3895 input_pending = readable_events (0);
3896 x_handle_selection_clear (&copy);
3897 #else
3898 /* We're getting selection request events, but we don't have
3899 a window system. */
3900 abort ();
3901 #endif
3903 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
3904 else if (event->kind == DELETE_WINDOW_EVENT)
3906 /* Make an event (delete-frame (FRAME)). */
3907 obj = Fcons (event->frame_or_window, Qnil);
3908 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
3909 kbd_fetch_ptr = event + 1;
3911 #endif
3912 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
3913 else if (event->kind == ICONIFY_EVENT)
3915 /* Make an event (iconify-frame (FRAME)). */
3916 obj = Fcons (event->frame_or_window, Qnil);
3917 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
3918 kbd_fetch_ptr = event + 1;
3920 else if (event->kind == DEICONIFY_EVENT)
3922 /* Make an event (make-frame-visible (FRAME)). */
3923 obj = Fcons (event->frame_or_window, Qnil);
3924 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
3925 kbd_fetch_ptr = event + 1;
3927 #endif
3928 else if (event->kind == BUFFER_SWITCH_EVENT)
3930 /* The value doesn't matter here; only the type is tested. */
3931 XSETBUFFER (obj, current_buffer);
3932 kbd_fetch_ptr = event + 1;
3934 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
3935 || defined (USE_GTK)
3936 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
3938 kbd_fetch_ptr = event + 1;
3939 input_pending = readable_events (0);
3940 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
3941 x_activate_menubar (XFRAME (event->frame_or_window));
3943 #endif
3944 #ifdef WINDOWSNT
3945 else if (event->kind == LANGUAGE_CHANGE_EVENT)
3947 /* Make an event (language-change (FRAME CHARSET LCID)). */
3948 obj = Fcons (event->modifiers, Qnil);
3949 obj = Fcons (event->code, obj);
3950 obj = Fcons (event->frame_or_window, obj);
3951 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
3952 kbd_fetch_ptr = event + 1;
3954 #endif
3955 else if (event->kind == SAVE_SESSION_EVENT)
3957 obj = Fcons (Qsave_session, Qnil);
3958 kbd_fetch_ptr = event + 1;
3960 /* Just discard these, by returning nil.
3961 With MULTI_KBOARD, these events are used as placeholders
3962 when we need to randomly delete events from the queue.
3963 (They shouldn't otherwise be found in the buffer,
3964 but on some machines it appears they do show up
3965 even without MULTI_KBOARD.) */
3966 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
3967 mouse events during a popup-menu call. */
3968 else if (event->kind == NO_EVENT)
3969 kbd_fetch_ptr = event + 1;
3970 else if (event->kind == HELP_EVENT)
3972 Lisp_Object object, position, help, frame, window;
3974 frame = event->frame_or_window;
3975 object = event->arg;
3976 position = make_number (event->code);
3977 window = event->x;
3978 help = event->y;
3979 clear_event (event);
3981 kbd_fetch_ptr = event + 1;
3982 if (!WINDOWP (window))
3983 window = Qnil;
3984 obj = Fcons (Qhelp_echo,
3985 list5 (frame, help, window, object, position));
3987 else if (event->kind == FOCUS_IN_EVENT)
3989 /* Notification of a FocusIn event. The frame receiving the
3990 focus is in event->frame_or_window. Generate a
3991 switch-frame event if necessary. */
3992 Lisp_Object frame, focus;
3994 frame = event->frame_or_window;
3995 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3996 if (FRAMEP (focus))
3997 frame = focus;
3999 if (!EQ (frame, internal_last_event_frame)
4000 && !EQ (frame, selected_frame))
4001 obj = make_lispy_switch_frame (frame);
4002 internal_last_event_frame = frame;
4003 kbd_fetch_ptr = event + 1;
4005 else
4007 /* If this event is on a different frame, return a switch-frame this
4008 time, and leave the event in the queue for next time. */
4009 Lisp_Object frame;
4010 Lisp_Object focus;
4012 frame = event->frame_or_window;
4013 if (CONSP (frame))
4014 frame = XCAR (frame);
4015 else if (WINDOWP (frame))
4016 frame = WINDOW_FRAME (XWINDOW (frame));
4018 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4019 if (! NILP (focus))
4020 frame = focus;
4022 if (! EQ (frame, internal_last_event_frame)
4023 && !EQ (frame, selected_frame))
4024 obj = make_lispy_switch_frame (frame);
4025 internal_last_event_frame = frame;
4027 /* If we didn't decide to make a switch-frame event, go ahead
4028 and build a real event from the queue entry. */
4030 if (NILP (obj))
4032 obj = make_lispy_event (event);
4034 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4035 || defined (USE_GTK)
4036 /* If this was a menu selection, then set the flag to inhibit
4037 writing to last_nonmenu_event. Don't do this if the event
4038 we're returning is (menu-bar), though; that indicates the
4039 beginning of the menu sequence, and we might as well leave
4040 that as the `event with parameters' for this selection. */
4041 if (used_mouse_menu
4042 && !EQ (event->frame_or_window, event->arg)
4043 && (event->kind == MENU_BAR_EVENT
4044 || event->kind == TOOL_BAR_EVENT))
4045 *used_mouse_menu = 1;
4046 #endif
4048 /* Wipe out this event, to catch bugs. */
4049 clear_event (event);
4050 kbd_fetch_ptr = event + 1;
4054 #ifdef HAVE_MOUSE
4055 /* Try generating a mouse motion event. */
4056 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4058 FRAME_PTR f = some_mouse_moved ();
4059 Lisp_Object bar_window;
4060 enum scroll_bar_part part;
4061 Lisp_Object x, y;
4062 unsigned long time;
4064 *kbp = current_kboard;
4065 /* Note that this uses F to determine which display to look at.
4066 If there is no valid info, it does not store anything
4067 so x remains nil. */
4068 x = Qnil;
4069 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
4071 obj = Qnil;
4073 /* Decide if we should generate a switch-frame event. Don't
4074 generate switch-frame events for motion outside of all Emacs
4075 frames. */
4076 if (!NILP (x) && f)
4078 Lisp_Object frame;
4080 frame = FRAME_FOCUS_FRAME (f);
4081 if (NILP (frame))
4082 XSETFRAME (frame, f);
4084 if (! EQ (frame, internal_last_event_frame)
4085 && !EQ (frame, selected_frame))
4086 obj = make_lispy_switch_frame (frame);
4087 internal_last_event_frame = frame;
4090 /* If we didn't decide to make a switch-frame event, go ahead and
4091 return a mouse-motion event. */
4092 if (!NILP (x) && NILP (obj))
4093 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4095 #endif /* HAVE_MOUSE */
4096 else
4097 /* We were promised by the above while loop that there was
4098 something for us to read! */
4099 abort ();
4101 input_pending = readable_events (0);
4103 Vlast_event_frame = internal_last_event_frame;
4105 return (obj);
4108 /* Process any events that are not user-visible,
4109 then return, without reading any user-visible events. */
4111 void
4112 swallow_events (do_display)
4113 int do_display;
4115 int old_timers_run;
4117 while (kbd_fetch_ptr != kbd_store_ptr)
4119 struct input_event *event;
4121 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4122 ? kbd_fetch_ptr
4123 : kbd_buffer);
4125 last_event_timestamp = event->timestamp;
4127 /* These two kinds of events get special handling
4128 and don't actually appear to the command loop. */
4129 if (event->kind == SELECTION_REQUEST_EVENT)
4131 #ifdef HAVE_X11
4132 struct input_event copy;
4134 /* Remove it from the buffer before processing it,
4135 since otherwise swallow_events called recursively could see it
4136 and process it again. */
4137 copy = *event;
4138 kbd_fetch_ptr = event + 1;
4139 input_pending = readable_events (0);
4140 x_handle_selection_request (&copy);
4141 #else
4142 /* We're getting selection request events, but we don't have
4143 a window system. */
4144 abort ();
4145 #endif
4148 else if (event->kind == SELECTION_CLEAR_EVENT)
4150 #ifdef HAVE_X11
4151 struct input_event copy;
4153 /* Remove it from the buffer before processing it, */
4154 copy = *event;
4156 kbd_fetch_ptr = event + 1;
4157 input_pending = readable_events (0);
4158 x_handle_selection_clear (&copy);
4159 #else
4160 /* We're getting selection request events, but we don't have
4161 a window system. */
4162 abort ();
4163 #endif
4165 else
4166 break;
4169 old_timers_run = timers_run;
4170 get_input_pending (&input_pending, 1);
4172 if (timers_run != old_timers_run && do_display)
4173 redisplay_preserve_echo_area (7);
4176 /* Record the start of when Emacs is idle,
4177 for the sake of running idle-time timers. */
4179 void
4180 timer_start_idle ()
4182 Lisp_Object timers;
4184 /* If we are already in the idle state, do nothing. */
4185 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4186 return;
4188 EMACS_GET_TIME (timer_idleness_start_time);
4190 timer_last_idleness_start_time = timer_idleness_start_time;
4192 /* Mark all idle-time timers as once again candidates for running. */
4193 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4195 Lisp_Object timer;
4197 timer = XCAR (timers);
4199 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4200 continue;
4201 XVECTOR (timer)->contents[0] = Qnil;
4205 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4207 void
4208 timer_stop_idle ()
4210 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4213 /* This is only for debugging. */
4214 struct input_event last_timer_event;
4216 /* Check whether a timer has fired. To prevent larger problems we simply
4217 disregard elements that are not proper timers. Do not make a circular
4218 timer list for the time being.
4220 Returns the number of seconds to wait until the next timer fires. If a
4221 timer is triggering now, return zero seconds.
4222 If no timer is active, return -1 seconds.
4224 If a timer is ripe, we run it, with quitting turned off.
4226 DO_IT_NOW is now ignored. It used to mean that we should
4227 run the timer directly instead of queueing a timer-event.
4228 Now we always run timers directly. */
4230 EMACS_TIME
4231 timer_check (do_it_now)
4232 int do_it_now;
4234 EMACS_TIME nexttime;
4235 EMACS_TIME now, idleness_now;
4236 Lisp_Object timers, idle_timers, chosen_timer;
4237 struct gcpro gcpro1, gcpro2, gcpro3;
4239 EMACS_SET_SECS (nexttime, -1);
4240 EMACS_SET_USECS (nexttime, -1);
4242 /* Always consider the ordinary timers. */
4243 timers = Vtimer_list;
4244 /* Consider the idle timers only if Emacs is idle. */
4245 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4246 idle_timers = Vtimer_idle_list;
4247 else
4248 idle_timers = Qnil;
4249 chosen_timer = Qnil;
4250 GCPRO3 (timers, idle_timers, chosen_timer);
4252 if (CONSP (timers) || CONSP (idle_timers))
4254 EMACS_GET_TIME (now);
4255 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4256 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4259 while (CONSP (timers) || CONSP (idle_timers))
4261 Lisp_Object *vector;
4262 Lisp_Object timer = Qnil, idle_timer = Qnil;
4263 EMACS_TIME timer_time, idle_timer_time;
4264 EMACS_TIME difference, timer_difference, idle_timer_difference;
4266 /* Skip past invalid timers and timers already handled. */
4267 if (!NILP (timers))
4269 timer = XCAR (timers);
4270 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4272 timers = XCDR (timers);
4273 continue;
4275 vector = XVECTOR (timer)->contents;
4277 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4278 || !INTEGERP (vector[3])
4279 || ! NILP (vector[0]))
4281 timers = XCDR (timers);
4282 continue;
4285 if (!NILP (idle_timers))
4287 timer = XCAR (idle_timers);
4288 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4290 idle_timers = XCDR (idle_timers);
4291 continue;
4293 vector = XVECTOR (timer)->contents;
4295 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4296 || !INTEGERP (vector[3])
4297 || ! NILP (vector[0]))
4299 idle_timers = XCDR (idle_timers);
4300 continue;
4304 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4305 based on the next ordinary timer.
4306 TIMER_DIFFERENCE is the distance in time from NOW to when
4307 this timer becomes ripe (negative if it's already ripe). */
4308 if (!NILP (timers))
4310 timer = XCAR (timers);
4311 vector = XVECTOR (timer)->contents;
4312 EMACS_SET_SECS (timer_time,
4313 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4314 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4315 EMACS_SUB_TIME (timer_difference, timer_time, now);
4318 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4319 based on the next idle timer. */
4320 if (!NILP (idle_timers))
4322 idle_timer = XCAR (idle_timers);
4323 vector = XVECTOR (idle_timer)->contents;
4324 EMACS_SET_SECS (idle_timer_time,
4325 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4326 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4327 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4330 /* Decide which timer is the next timer,
4331 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4332 Also step down the list where we found that timer. */
4334 if (! NILP (timers) && ! NILP (idle_timers))
4336 EMACS_TIME temp;
4337 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4338 if (EMACS_TIME_NEG_P (temp))
4340 chosen_timer = timer;
4341 timers = XCDR (timers);
4342 difference = timer_difference;
4344 else
4346 chosen_timer = idle_timer;
4347 idle_timers = XCDR (idle_timers);
4348 difference = idle_timer_difference;
4351 else if (! NILP (timers))
4353 chosen_timer = timer;
4354 timers = XCDR (timers);
4355 difference = timer_difference;
4357 else
4359 chosen_timer = idle_timer;
4360 idle_timers = XCDR (idle_timers);
4361 difference = idle_timer_difference;
4363 vector = XVECTOR (chosen_timer)->contents;
4365 /* If timer is ripe, run it if it hasn't been run. */
4366 if (EMACS_TIME_NEG_P (difference)
4367 || (EMACS_SECS (difference) == 0
4368 && EMACS_USECS (difference) == 0))
4370 if (NILP (vector[0]))
4372 int was_locked = single_kboard;
4373 int count = SPECPDL_INDEX ();
4374 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4376 /* Mark the timer as triggered to prevent problems if the lisp
4377 code fails to reschedule it right. */
4378 vector[0] = Qt;
4380 specbind (Qinhibit_quit, Qt);
4382 call1 (Qtimer_event_handler, chosen_timer);
4383 Vdeactivate_mark = old_deactivate_mark;
4384 timers_run++;
4385 unbind_to (count, Qnil);
4387 /* Resume allowing input from any kboard, if that was true before. */
4388 if (!was_locked)
4389 any_kboard_state ();
4391 /* Since we have handled the event,
4392 we don't need to tell the caller to wake up and do it. */
4395 else
4396 /* When we encounter a timer that is still waiting,
4397 return the amount of time to wait before it is ripe. */
4399 UNGCPRO;
4400 return difference;
4404 /* No timers are pending in the future. */
4405 /* Return 0 if we generated an event, and -1 if not. */
4406 UNGCPRO;
4407 return nexttime;
4410 /* Caches for modify_event_symbol. */
4411 static Lisp_Object accent_key_syms;
4412 static Lisp_Object func_key_syms;
4413 static Lisp_Object mouse_syms;
4414 #if defined(WINDOWSNT) || defined(MAC_OSX)
4415 static Lisp_Object mouse_wheel_syms;
4416 #endif
4417 static Lisp_Object drag_n_drop_syms;
4419 /* This is a list of keysym codes for special "accent" characters.
4420 It parallels lispy_accent_keys. */
4422 static int lispy_accent_codes[] =
4424 #ifdef XK_dead_circumflex
4425 XK_dead_circumflex,
4426 #else
4428 #endif
4429 #ifdef XK_dead_grave
4430 XK_dead_grave,
4431 #else
4433 #endif
4434 #ifdef XK_dead_tilde
4435 XK_dead_tilde,
4436 #else
4438 #endif
4439 #ifdef XK_dead_diaeresis
4440 XK_dead_diaeresis,
4441 #else
4443 #endif
4444 #ifdef XK_dead_macron
4445 XK_dead_macron,
4446 #else
4448 #endif
4449 #ifdef XK_dead_degree
4450 XK_dead_degree,
4451 #else
4453 #endif
4454 #ifdef XK_dead_acute
4455 XK_dead_acute,
4456 #else
4458 #endif
4459 #ifdef XK_dead_cedilla
4460 XK_dead_cedilla,
4461 #else
4463 #endif
4464 #ifdef XK_dead_breve
4465 XK_dead_breve,
4466 #else
4468 #endif
4469 #ifdef XK_dead_ogonek
4470 XK_dead_ogonek,
4471 #else
4473 #endif
4474 #ifdef XK_dead_caron
4475 XK_dead_caron,
4476 #else
4478 #endif
4479 #ifdef XK_dead_doubleacute
4480 XK_dead_doubleacute,
4481 #else
4483 #endif
4484 #ifdef XK_dead_abovedot
4485 XK_dead_abovedot,
4486 #else
4488 #endif
4489 #ifdef XK_dead_abovering
4490 XK_dead_abovering,
4491 #else
4493 #endif
4494 #ifdef XK_dead_iota
4495 XK_dead_iota,
4496 #else
4498 #endif
4499 #ifdef XK_dead_belowdot
4500 XK_dead_belowdot,
4501 #else
4503 #endif
4504 #ifdef XK_dead_voiced_sound
4505 XK_dead_voiced_sound,
4506 #else
4508 #endif
4509 #ifdef XK_dead_semivoiced_sound
4510 XK_dead_semivoiced_sound,
4511 #else
4513 #endif
4514 #ifdef XK_dead_hook
4515 XK_dead_hook,
4516 #else
4518 #endif
4519 #ifdef XK_dead_horn
4520 XK_dead_horn,
4521 #else
4523 #endif
4526 /* This is a list of Lisp names for special "accent" characters.
4527 It parallels lispy_accent_codes. */
4529 static char *lispy_accent_keys[] =
4531 "dead-circumflex",
4532 "dead-grave",
4533 "dead-tilde",
4534 "dead-diaeresis",
4535 "dead-macron",
4536 "dead-degree",
4537 "dead-acute",
4538 "dead-cedilla",
4539 "dead-breve",
4540 "dead-ogonek",
4541 "dead-caron",
4542 "dead-doubleacute",
4543 "dead-abovedot",
4544 "dead-abovering",
4545 "dead-iota",
4546 "dead-belowdot",
4547 "dead-voiced-sound",
4548 "dead-semivoiced-sound",
4549 "dead-hook",
4550 "dead-horn",
4553 #ifdef HAVE_NTGUI
4554 #define FUNCTION_KEY_OFFSET 0x0
4556 char *lispy_function_keys[] =
4558 0, /* 0 */
4560 0, /* VK_LBUTTON 0x01 */
4561 0, /* VK_RBUTTON 0x02 */
4562 "cancel", /* VK_CANCEL 0x03 */
4563 0, /* VK_MBUTTON 0x04 */
4565 0, 0, 0, /* 0x05 .. 0x07 */
4567 "backspace", /* VK_BACK 0x08 */
4568 "tab", /* VK_TAB 0x09 */
4570 0, 0, /* 0x0A .. 0x0B */
4572 "clear", /* VK_CLEAR 0x0C */
4573 "return", /* VK_RETURN 0x0D */
4575 0, 0, /* 0x0E .. 0x0F */
4577 0, /* VK_SHIFT 0x10 */
4578 0, /* VK_CONTROL 0x11 */
4579 0, /* VK_MENU 0x12 */
4580 "pause", /* VK_PAUSE 0x13 */
4581 "capslock", /* VK_CAPITAL 0x14 */
4583 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4585 "escape", /* VK_ESCAPE 0x1B */
4587 0, 0, 0, 0, /* 0x1C .. 0x1F */
4589 0, /* VK_SPACE 0x20 */
4590 "prior", /* VK_PRIOR 0x21 */
4591 "next", /* VK_NEXT 0x22 */
4592 "end", /* VK_END 0x23 */
4593 "home", /* VK_HOME 0x24 */
4594 "left", /* VK_LEFT 0x25 */
4595 "up", /* VK_UP 0x26 */
4596 "right", /* VK_RIGHT 0x27 */
4597 "down", /* VK_DOWN 0x28 */
4598 "select", /* VK_SELECT 0x29 */
4599 "print", /* VK_PRINT 0x2A */
4600 "execute", /* VK_EXECUTE 0x2B */
4601 "snapshot", /* VK_SNAPSHOT 0x2C */
4602 "insert", /* VK_INSERT 0x2D */
4603 "delete", /* VK_DELETE 0x2E */
4604 "help", /* VK_HELP 0x2F */
4606 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4608 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4610 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4612 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4614 0, 0, 0, 0, 0, 0, 0, 0, 0,
4615 0, 0, 0, 0, 0, 0, 0, 0, 0,
4616 0, 0, 0, 0, 0, 0, 0, 0,
4618 "lwindow", /* VK_LWIN 0x5B */
4619 "rwindow", /* VK_RWIN 0x5C */
4620 "apps", /* VK_APPS 0x5D */
4622 0, 0, /* 0x5E .. 0x5F */
4624 "kp-0", /* VK_NUMPAD0 0x60 */
4625 "kp-1", /* VK_NUMPAD1 0x61 */
4626 "kp-2", /* VK_NUMPAD2 0x62 */
4627 "kp-3", /* VK_NUMPAD3 0x63 */
4628 "kp-4", /* VK_NUMPAD4 0x64 */
4629 "kp-5", /* VK_NUMPAD5 0x65 */
4630 "kp-6", /* VK_NUMPAD6 0x66 */
4631 "kp-7", /* VK_NUMPAD7 0x67 */
4632 "kp-8", /* VK_NUMPAD8 0x68 */
4633 "kp-9", /* VK_NUMPAD9 0x69 */
4634 "kp-multiply", /* VK_MULTIPLY 0x6A */
4635 "kp-add", /* VK_ADD 0x6B */
4636 "kp-separator", /* VK_SEPARATOR 0x6C */
4637 "kp-subtract", /* VK_SUBTRACT 0x6D */
4638 "kp-decimal", /* VK_DECIMAL 0x6E */
4639 "kp-divide", /* VK_DIVIDE 0x6F */
4640 "f1", /* VK_F1 0x70 */
4641 "f2", /* VK_F2 0x71 */
4642 "f3", /* VK_F3 0x72 */
4643 "f4", /* VK_F4 0x73 */
4644 "f5", /* VK_F5 0x74 */
4645 "f6", /* VK_F6 0x75 */
4646 "f7", /* VK_F7 0x76 */
4647 "f8", /* VK_F8 0x77 */
4648 "f9", /* VK_F9 0x78 */
4649 "f10", /* VK_F10 0x79 */
4650 "f11", /* VK_F11 0x7A */
4651 "f12", /* VK_F12 0x7B */
4652 "f13", /* VK_F13 0x7C */
4653 "f14", /* VK_F14 0x7D */
4654 "f15", /* VK_F15 0x7E */
4655 "f16", /* VK_F16 0x7F */
4656 "f17", /* VK_F17 0x80 */
4657 "f18", /* VK_F18 0x81 */
4658 "f19", /* VK_F19 0x82 */
4659 "f20", /* VK_F20 0x83 */
4660 "f21", /* VK_F21 0x84 */
4661 "f22", /* VK_F22 0x85 */
4662 "f23", /* VK_F23 0x86 */
4663 "f24", /* VK_F24 0x87 */
4665 0, 0, 0, 0, /* 0x88 .. 0x8B */
4666 0, 0, 0, 0, /* 0x8C .. 0x8F */
4668 "kp-numlock", /* VK_NUMLOCK 0x90 */
4669 "scroll", /* VK_SCROLL 0x91 */
4671 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4672 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4673 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4674 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4675 "kp-end", /* VK_NUMPAD_END 0x96 */
4676 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4677 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4678 "kp-up", /* VK_NUMPAD_UP 0x99 */
4679 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4680 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4681 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4682 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4684 0, 0, /* 0x9E .. 0x9F */
4687 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4688 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4689 * No other API or message will distinguish left and right keys this way.
4691 /* 0xA0 .. 0xEF */
4693 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4694 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4695 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4696 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4697 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4699 /* 0xF0 .. 0xF5 */
4701 0, 0, 0, 0, 0, 0,
4703 "attn", /* VK_ATTN 0xF6 */
4704 "crsel", /* VK_CRSEL 0xF7 */
4705 "exsel", /* VK_EXSEL 0xF8 */
4706 "ereof", /* VK_EREOF 0xF9 */
4707 "play", /* VK_PLAY 0xFA */
4708 "zoom", /* VK_ZOOM 0xFB */
4709 "noname", /* VK_NONAME 0xFC */
4710 "pa1", /* VK_PA1 0xFD */
4711 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4712 0 /* 0xFF */
4715 #else /* not HAVE_NTGUI */
4717 /* This should be dealt with in XTread_socket now, and that doesn't
4718 depend on the client system having the Kana syms defined. See also
4719 the XK_kana_A case below. */
4720 #if 0
4721 #ifdef XK_kana_A
4722 static char *lispy_kana_keys[] =
4724 /* X Keysym value */
4725 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4726 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4727 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4728 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4729 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4730 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4731 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4732 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4733 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4734 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4735 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4736 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4737 "kana-i", "kana-u", "kana-e", "kana-o",
4738 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4739 "prolongedsound", "kana-A", "kana-I", "kana-U",
4740 "kana-E", "kana-O", "kana-KA", "kana-KI",
4741 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4742 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4743 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4744 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4745 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4746 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4747 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4748 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4749 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4750 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4751 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4752 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4754 #endif /* XK_kana_A */
4755 #endif /* 0 */
4757 #define FUNCTION_KEY_OFFSET 0xff00
4759 /* You'll notice that this table is arranged to be conveniently
4760 indexed by X Windows keysym values. */
4761 static char *lispy_function_keys[] =
4763 /* X Keysym value */
4765 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4766 "backspace", "tab", "linefeed", "clear",
4767 0, "return", 0, 0,
4768 0, 0, 0, "pause", /* 0xff10...1f */
4769 0, 0, 0, 0, 0, 0, 0, "escape",
4770 0, 0, 0, 0,
4771 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4772 "romaji", "hiragana", "katakana", "hiragana-katakana",
4773 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4774 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4775 "eisu-toggle", /* 0xff30...3f */
4776 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4777 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4779 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4780 "down", "prior", "next", "end",
4781 "begin", 0, 0, 0, 0, 0, 0, 0,
4782 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4783 "print",
4784 "execute",
4785 "insert",
4786 0, /* 0xff64 */
4787 "undo",
4788 "redo",
4789 "menu",
4790 "find",
4791 "cancel",
4792 "help",
4793 "break", /* 0xff6b */
4795 0, 0, 0, 0,
4796 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4797 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4798 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4799 0, 0, 0, 0, 0, 0, 0, 0,
4800 "kp-tab", /* 0xff89 */
4801 0, 0, 0,
4802 "kp-enter", /* 0xff8d */
4803 0, 0, 0,
4804 "kp-f1", /* 0xff91 */
4805 "kp-f2",
4806 "kp-f3",
4807 "kp-f4",
4808 "kp-home", /* 0xff95 */
4809 "kp-left",
4810 "kp-up",
4811 "kp-right",
4812 "kp-down",
4813 "kp-prior", /* kp-page-up */
4814 "kp-next", /* kp-page-down */
4815 "kp-end",
4816 "kp-begin",
4817 "kp-insert",
4818 "kp-delete",
4819 0, /* 0xffa0 */
4820 0, 0, 0, 0, 0, 0, 0, 0, 0,
4821 "kp-multiply", /* 0xffaa */
4822 "kp-add",
4823 "kp-separator",
4824 "kp-subtract",
4825 "kp-decimal",
4826 "kp-divide", /* 0xffaf */
4827 "kp-0", /* 0xffb0 */
4828 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4829 0, /* 0xffba */
4830 0, 0,
4831 "kp-equal", /* 0xffbd */
4832 "f1", /* 0xffbe */ /* IsFunctionKey */
4833 "f2",
4834 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4835 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4836 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4837 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4838 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4839 0, 0, 0, 0, 0, 0, 0, 0,
4840 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4841 0, 0, 0, 0, 0, 0, 0, "delete"
4844 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4845 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
4847 static char *iso_lispy_function_keys[] =
4849 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4850 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4851 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4852 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4853 "iso-lefttab", /* 0xfe20 */
4854 "iso-move-line-up", "iso-move-line-down",
4855 "iso-partial-line-up", "iso-partial-line-down",
4856 "iso-partial-space-left", "iso-partial-space-right",
4857 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4858 "iso-release-margin-left", "iso-release-margin-right",
4859 "iso-release-both-margins",
4860 "iso-fast-cursor-left", "iso-fast-cursor-right",
4861 "iso-fast-cursor-up", "iso-fast-cursor-down",
4862 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4863 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4866 #endif /* not HAVE_NTGUI */
4868 Lisp_Object Vlispy_mouse_stem;
4870 #if defined(WINDOWSNT) || defined(MAC_OSX)
4871 /* mouse-wheel events are generated by the wheel on devices such as
4872 the MS Intellimouse. The wheel sits in between the left and right
4873 mouse buttons, and is typically used to scroll or zoom the window
4874 underneath the pointer. mouse-wheel events specify the object on
4875 which they operate, and a delta corresponding to the amount and
4876 direction that the wheel is rotated. Clicking the mouse-wheel
4877 generates a mouse-2 event. */
4878 static char *lispy_mouse_wheel_names[] =
4880 "mouse-wheel"
4883 #endif /* WINDOWSNT */
4885 /* drag-n-drop events are generated when a set of selected files are
4886 dragged from another application and dropped onto an Emacs window. */
4887 static char *lispy_drag_n_drop_names[] =
4889 "drag-n-drop"
4892 /* Scroll bar parts. */
4893 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4894 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
4895 Lisp_Object Qtop, Qratio;
4897 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4898 Lisp_Object *scroll_bar_parts[] = {
4899 &Qabove_handle, &Qhandle, &Qbelow_handle,
4900 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4903 /* User signal events. */
4904 Lisp_Object Qusr1_signal, Qusr2_signal;
4906 Lisp_Object *lispy_user_signals[] =
4908 &Qusr1_signal, &Qusr2_signal
4912 /* A vector, indexed by button number, giving the down-going location
4913 of currently depressed buttons, both scroll bar and non-scroll bar.
4915 The elements have the form
4916 (BUTTON-NUMBER MODIFIER-MASK . REST)
4917 where REST is the cdr of a position as it would be reported in the event.
4919 The make_lispy_event function stores positions here to tell the
4920 difference between click and drag events, and to store the starting
4921 location to be included in drag events. */
4923 static Lisp_Object button_down_location;
4925 /* Information about the most recent up-going button event: Which
4926 button, what location, and what time. */
4928 static int last_mouse_button;
4929 static int last_mouse_x;
4930 static int last_mouse_y;
4931 static unsigned long button_down_time;
4933 /* The maximum time between clicks to make a double-click, or Qnil to
4934 disable double-click detection, or Qt for no time limit. */
4936 Lisp_Object Vdouble_click_time;
4938 /* Maximum number of pixels the mouse may be moved between clicks
4939 to make a double-click. */
4941 EMACS_INT double_click_fuzz;
4943 /* The number of clicks in this multiple-click. */
4945 int double_click_count;
4947 /* Given a struct input_event, build the lisp event which represents
4948 it. If EVENT is 0, build a mouse movement event from the mouse
4949 movement buffer, which should have a movement event in it.
4951 Note that events must be passed to this function in the order they
4952 are received; this function stores the location of button presses
4953 in order to build drag events when the button is released. */
4955 static Lisp_Object
4956 make_lispy_event (event)
4957 struct input_event *event;
4959 int i;
4961 switch (SWITCH_ENUM_CAST (event->kind))
4963 /* A simple keystroke. */
4964 case ASCII_KEYSTROKE_EVENT:
4966 Lisp_Object lispy_c;
4967 int c = event->code & 0377;
4968 /* Turn ASCII characters into control characters
4969 when proper. */
4970 if (event->modifiers & ctrl_modifier)
4971 c = make_ctrl_char (c);
4973 /* Add in the other modifier bits. We took care of ctrl_modifier
4974 just above, and the shift key was taken care of by the X code,
4975 and applied to control characters by make_ctrl_char. */
4976 c |= (event->modifiers
4977 & (meta_modifier | alt_modifier
4978 | hyper_modifier | super_modifier));
4979 /* Distinguish Shift-SPC from SPC. */
4980 if ((event->code & 0377) == 040
4981 && event->modifiers & shift_modifier)
4982 c |= shift_modifier;
4983 button_down_time = 0;
4984 XSETFASTINT (lispy_c, c);
4985 return lispy_c;
4988 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
4990 Lisp_Object lispy_c;
4992 XSETFASTINT (lispy_c, event->code);
4993 return lispy_c;
4996 /* A function key. The symbol may need to have modifier prefixes
4997 tacked onto it. */
4998 case NON_ASCII_KEYSTROKE_EVENT:
4999 button_down_time = 0;
5001 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5002 if (event->code == lispy_accent_codes[i])
5003 return modify_event_symbol (i,
5004 event->modifiers,
5005 Qfunction_key, Qnil,
5006 lispy_accent_keys, &accent_key_syms,
5007 (sizeof (lispy_accent_keys)
5008 / sizeof (lispy_accent_keys[0])));
5010 #if 0
5011 #ifdef XK_kana_A
5012 if (event->code >= 0x400 && event->code < 0x500)
5013 return modify_event_symbol (event->code - 0x400,
5014 event->modifiers & ~shift_modifier,
5015 Qfunction_key, Qnil,
5016 lispy_kana_keys, &func_key_syms,
5017 (sizeof (lispy_kana_keys)
5018 / sizeof (lispy_kana_keys[0])));
5019 #endif /* XK_kana_A */
5020 #endif /* 0 */
5022 #ifdef ISO_FUNCTION_KEY_OFFSET
5023 if (event->code < FUNCTION_KEY_OFFSET
5024 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5025 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5026 event->modifiers,
5027 Qfunction_key, Qnil,
5028 iso_lispy_function_keys, &func_key_syms,
5029 (sizeof (iso_lispy_function_keys)
5030 / sizeof (iso_lispy_function_keys[0])));
5031 #endif
5033 /* Handle system-specific or unknown keysyms. */
5034 if (event->code & (1 << 28)
5035 || event->code - FUNCTION_KEY_OFFSET < 0
5036 || (event->code - FUNCTION_KEY_OFFSET
5037 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5038 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5040 /* We need to use an alist rather than a vector as the cache
5041 since we can't make a vector long enuf. */
5042 if (NILP (current_kboard->system_key_syms))
5043 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5044 return modify_event_symbol (event->code,
5045 event->modifiers,
5046 Qfunction_key,
5047 current_kboard->Vsystem_key_alist,
5048 0, &current_kboard->system_key_syms,
5049 (unsigned) -1);
5052 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5053 event->modifiers,
5054 Qfunction_key, Qnil,
5055 lispy_function_keys, &func_key_syms,
5056 (sizeof (lispy_function_keys)
5057 / sizeof (lispy_function_keys[0])));
5059 #ifdef HAVE_MOUSE
5060 /* A mouse click. Figure out where it is, decide whether it's
5061 a press, click or drag, and build the appropriate structure. */
5062 case MOUSE_CLICK_EVENT:
5063 #ifndef USE_TOOLKIT_SCROLL_BARS
5064 case SCROLL_BAR_CLICK_EVENT:
5065 #endif
5067 int button = event->code;
5068 int is_double;
5069 Lisp_Object position;
5070 Lisp_Object *start_pos_ptr;
5071 Lisp_Object start_pos;
5072 Lisp_Object window;
5074 position = Qnil;
5076 /* Build the position as appropriate for this mouse click. */
5077 if (event->kind == MOUSE_CLICK_EVENT)
5079 enum window_part part;
5080 struct frame *f = XFRAME (event->frame_or_window);
5081 Lisp_Object posn;
5082 Lisp_Object string_info = Qnil;
5083 int row, column;
5085 /* Ignore mouse events that were made on frame that
5086 have been deleted. */
5087 if (! FRAME_LIVE_P (f))
5088 return Qnil;
5090 /* EVENT->x and EVENT->y are frame-relative pixel
5091 coordinates at this place. Under old redisplay, COLUMN
5092 and ROW are set to frame relative glyph coordinates
5093 which are then used to determine whether this click is
5094 in a menu (non-toolkit version). */
5095 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5096 &column, &row, NULL, 1);
5098 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5099 /* In the non-toolkit version, clicks on the menu bar
5100 are ordinary button events in the event buffer.
5101 Distinguish them, and invoke the menu.
5103 (In the toolkit version, the toolkit handles the menu bar
5104 and Emacs doesn't know about it until after the user
5105 makes a selection.) */
5106 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5107 && (event->modifiers & down_modifier))
5109 Lisp_Object items, item;
5110 int hpos;
5111 int i;
5113 #if 0
5114 /* Activate the menu bar on the down event. If the
5115 up event comes in before the menu code can deal with it,
5116 just ignore it. */
5117 if (! (event->modifiers & down_modifier))
5118 return Qnil;
5119 #endif
5121 /* Find the menu bar item under `column'. */
5122 item = Qnil;
5123 items = FRAME_MENU_BAR_ITEMS (f);
5124 for (i = 0; i < XVECTOR (items)->size; i += 4)
5126 Lisp_Object pos, string;
5127 string = AREF (items, i + 1);
5128 pos = AREF (items, i + 3);
5129 if (NILP (string))
5130 break;
5131 if (column >= XINT (pos)
5132 && column < XINT (pos) + SCHARS (string))
5134 item = AREF (items, i);
5135 break;
5139 /* ELisp manual 2.4b says (x y) are window relative but
5140 code says they are frame-relative. */
5141 position
5142 = Fcons (event->frame_or_window,
5143 Fcons (Qmenu_bar,
5144 Fcons (Fcons (event->x, event->y),
5145 Fcons (make_number (event->timestamp),
5146 Qnil))));
5148 return Fcons (item, Fcons (position, Qnil));
5150 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5152 /* Set `window' to the window under frame pixel coordinates
5153 event->x/event->y. */
5154 window = window_from_coordinates (f, XINT (event->x),
5155 XINT (event->y), &part, 0);
5157 if (!WINDOWP (window))
5159 window = event->frame_or_window;
5160 posn = Qnil;
5162 else
5164 /* It's a click in window window at frame coordinates
5165 event->x/ event->y. */
5166 struct window *w = XWINDOW (window);
5168 /* Get window relative coordinates. Original code
5169 `rounded' this to glyph boundaries. */
5170 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
5171 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
5173 /* Set event coordinates to window-relative coordinates
5174 for constructing the Lisp event below. */
5175 XSETINT (event->x, wx);
5176 XSETINT (event->y, wy);
5178 if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5180 /* Mode line or header line. Look for a string under
5181 the mouse that may have a `local-map' property. */
5182 Lisp_Object string;
5183 int charpos;
5185 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5186 string = mode_line_string (w, wx, wy, part, &charpos);
5187 if (STRINGP (string))
5188 string_info = Fcons (string, make_number (charpos));
5190 else if (part == ON_VERTICAL_BORDER)
5191 posn = Qvertical_line;
5192 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5194 int charpos;
5195 Lisp_Object object = marginal_area_string (w, wx, wy, part,
5196 &charpos);
5197 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5198 if (STRINGP (object))
5199 string_info = Fcons (object, make_number (charpos));
5201 else
5203 Lisp_Object object;
5204 struct display_pos p;
5205 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5206 posn = make_number (CHARPOS (p.pos));
5207 if (STRINGP (object))
5208 string_info
5209 = Fcons (object,
5210 make_number (CHARPOS (p.string_pos)));
5214 position
5215 = Fcons (window,
5216 Fcons (posn,
5217 Fcons (Fcons (event->x, event->y),
5218 Fcons (make_number (event->timestamp),
5219 (NILP (string_info)
5220 ? Qnil
5221 : Fcons (string_info, Qnil))))));
5223 #ifndef USE_TOOLKIT_SCROLL_BARS
5224 else
5226 /* It's a scrollbar click. */
5227 Lisp_Object portion_whole;
5228 Lisp_Object part;
5230 window = event->frame_or_window;
5231 portion_whole = Fcons (event->x, event->y);
5232 part = *scroll_bar_parts[(int) event->part];
5234 position
5235 = Fcons (window,
5236 Fcons (Qvertical_scroll_bar,
5237 Fcons (portion_whole,
5238 Fcons (make_number (event->timestamp),
5239 Fcons (part, Qnil)))));
5241 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5243 if (button >= ASIZE (button_down_location))
5245 button_down_location = larger_vector (button_down_location,
5246 button + 1, Qnil);
5247 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5250 start_pos_ptr = &AREF (button_down_location, button);
5251 start_pos = *start_pos_ptr;
5252 *start_pos_ptr = Qnil;
5255 /* On window-system frames, use the value of
5256 double-click-fuzz as is. On other frames, interpret it
5257 as a multiple of 1/8 characters. */
5258 struct frame *f;
5259 int fuzz;
5261 if (WINDOWP (event->frame_or_window))
5262 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5263 else if (FRAMEP (event->frame_or_window))
5264 f = XFRAME (event->frame_or_window);
5265 else
5266 abort ();
5268 if (FRAME_WINDOW_P (f))
5269 fuzz = double_click_fuzz;
5270 else
5271 fuzz = double_click_fuzz / 8;
5273 is_double = (button == last_mouse_button
5274 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5275 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5276 && button_down_time != 0
5277 && (EQ (Vdouble_click_time, Qt)
5278 || (INTEGERP (Vdouble_click_time)
5279 && ((int)(event->timestamp - button_down_time)
5280 < XINT (Vdouble_click_time)))));
5283 last_mouse_button = button;
5284 last_mouse_x = XINT (event->x);
5285 last_mouse_y = XINT (event->y);
5287 /* If this is a button press, squirrel away the location, so
5288 we can decide later whether it was a click or a drag. */
5289 if (event->modifiers & down_modifier)
5291 if (is_double)
5293 double_click_count++;
5294 event->modifiers |= ((double_click_count > 2)
5295 ? triple_modifier
5296 : double_modifier);
5298 else
5299 double_click_count = 1;
5300 button_down_time = event->timestamp;
5301 *start_pos_ptr = Fcopy_alist (position);
5304 /* Now we're releasing a button - check the co-ordinates to
5305 see if this was a click or a drag. */
5306 else if (event->modifiers & up_modifier)
5308 /* If we did not see a down before this up, ignore the up.
5309 Probably this happened because the down event chose a
5310 menu item. It would be an annoyance to treat the
5311 release of the button that chose the menu item as a
5312 separate event. */
5314 if (!CONSP (start_pos))
5315 return Qnil;
5317 event->modifiers &= ~up_modifier;
5318 #if 0 /* Formerly we treated an up with no down as a click event. */
5319 if (!CONSP (start_pos))
5320 event->modifiers |= click_modifier;
5321 else
5322 #endif
5324 Lisp_Object down;
5325 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5327 /* The third element of every position
5328 should be the (x,y) pair. */
5329 down = Fcar (Fcdr (Fcdr (start_pos)));
5330 if (CONSP (down)
5331 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5333 xdiff = XFASTINT (event->x) - XFASTINT (XCAR (down));
5334 ydiff = XFASTINT (event->y) - XFASTINT (XCDR (down));
5337 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5338 && ydiff < double_click_fuzz
5339 && ydiff > - double_click_fuzz)
5340 /* Mouse hasn't moved (much). */
5341 event->modifiers |= click_modifier;
5342 else
5344 button_down_time = 0;
5345 event->modifiers |= drag_modifier;
5348 /* Don't check is_double; treat this as multiple
5349 if the down-event was multiple. */
5350 if (double_click_count > 1)
5351 event->modifiers |= ((double_click_count > 2)
5352 ? triple_modifier
5353 : double_modifier);
5356 else
5357 /* Every mouse event should either have the down_modifier or
5358 the up_modifier set. */
5359 abort ();
5362 /* Get the symbol we should use for the mouse click. */
5363 Lisp_Object head;
5365 head = modify_event_symbol (button,
5366 event->modifiers,
5367 Qmouse_click, Vlispy_mouse_stem,
5368 NULL,
5369 &mouse_syms,
5370 XVECTOR (mouse_syms)->size);
5371 if (event->modifiers & drag_modifier)
5372 return Fcons (head,
5373 Fcons (start_pos,
5374 Fcons (position,
5375 Qnil)));
5376 else if (event->modifiers & (double_modifier | triple_modifier))
5377 return Fcons (head,
5378 Fcons (position,
5379 Fcons (make_number (double_click_count),
5380 Qnil)));
5381 else
5382 return Fcons (head,
5383 Fcons (position,
5384 Qnil));
5388 #ifdef USE_TOOLKIT_SCROLL_BARS
5390 /* We don't have down and up events if using toolkit scroll bars,
5391 so make this always a click event. Store in the `part' of
5392 the Lisp event a symbol which maps to the following actions:
5394 `above_handle' page up
5395 `below_handle' page down
5396 `up' line up
5397 `down' line down
5398 `top' top of buffer
5399 `bottom' bottom of buffer
5400 `handle' thumb has been dragged.
5401 `end-scroll' end of interaction with scroll bar
5403 The incoming input_event contains in its `part' member an
5404 index of type `enum scroll_bar_part' which we can use as an
5405 index in scroll_bar_parts to get the appropriate symbol. */
5407 case SCROLL_BAR_CLICK_EVENT:
5409 Lisp_Object position, head, window, portion_whole, part;
5411 window = event->frame_or_window;
5412 portion_whole = Fcons (event->x, event->y);
5413 part = *scroll_bar_parts[(int) event->part];
5415 position
5416 = Fcons (window,
5417 Fcons (Qvertical_scroll_bar,
5418 Fcons (portion_whole,
5419 Fcons (make_number (event->timestamp),
5420 Fcons (part, Qnil)))));
5422 /* Always treat scroll bar events as clicks. */
5423 event->modifiers |= click_modifier;
5424 event->modifiers &= ~up_modifier;
5426 if (event->code >= ASIZE (mouse_syms))
5427 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5429 /* Get the symbol we should use for the mouse click. */
5430 head = modify_event_symbol (event->code,
5431 event->modifiers,
5432 Qmouse_click,
5433 Vlispy_mouse_stem,
5434 NULL, &mouse_syms,
5435 XVECTOR (mouse_syms)->size);
5436 return Fcons (head, Fcons (position, Qnil));
5439 #endif /* USE_TOOLKIT_SCROLL_BARS */
5441 #ifdef WINDOWSNT
5442 case W32_SCROLL_BAR_CLICK_EVENT:
5444 int button = event->code;
5445 int is_double;
5446 Lisp_Object position;
5447 Lisp_Object *start_pos_ptr;
5448 Lisp_Object start_pos;
5451 Lisp_Object window;
5452 Lisp_Object portion_whole;
5453 Lisp_Object part;
5455 window = event->frame_or_window;
5456 portion_whole = Fcons (event->x, event->y);
5457 part = *scroll_bar_parts[(int) event->part];
5459 position
5460 = Fcons (window,
5461 Fcons (Qvertical_scroll_bar,
5462 Fcons (portion_whole,
5463 Fcons (make_number (event->timestamp),
5464 Fcons (part, Qnil)))));
5467 /* Always treat W32 scroll bar events as clicks. */
5468 event->modifiers |= click_modifier;
5471 /* Get the symbol we should use for the mouse click. */
5472 Lisp_Object head;
5474 head = modify_event_symbol (button,
5475 event->modifiers,
5476 Qmouse_click,
5477 Vlispy_mouse_stem,
5478 NULL, &mouse_syms,
5479 XVECTOR (mouse_syms)->size);
5480 return Fcons (head,
5481 Fcons (position,
5482 Qnil));
5485 #endif /* WINDOWSNT */
5486 #if defined(WINDOWSNT) || defined(MAC_OSX)
5487 case MOUSE_WHEEL_EVENT:
5489 enum window_part part;
5490 FRAME_PTR f = XFRAME (event->frame_or_window);
5491 Lisp_Object window;
5492 Lisp_Object posn;
5493 Lisp_Object head, position;
5494 int row, column;
5496 /* Ignore mouse events that were made on frame that
5497 have been deleted. */
5498 if (! FRAME_LIVE_P (f))
5499 return Qnil;
5500 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5501 &column, &row, NULL, 1);
5502 window = window_from_coordinates (f, XINT (event->x),
5503 XINT (event->y), &part, 0);
5505 if (!WINDOWP (window))
5507 window = event->frame_or_window;
5508 posn = Qnil;
5510 else
5512 int pixcolumn, pixrow;
5513 column -= XINT (XWINDOW (window)->left);
5514 row -= XINT (XWINDOW (window)->top);
5515 glyph_to_pixel_coords (XWINDOW(window), column, row,
5516 &pixcolumn, &pixrow);
5517 XSETINT (event->x, pixcolumn);
5518 XSETINT (event->y, pixrow);
5520 if (part == ON_MODE_LINE)
5521 posn = Qmode_line;
5522 else if (part == ON_VERTICAL_BORDER)
5523 posn = Qvertical_line;
5524 else if (part == ON_HEADER_LINE)
5525 posn = Qheader_line;
5526 else
5528 Lisp_Object object;
5529 struct display_pos p;
5530 buffer_posn_from_coords (XWINDOW (window), &column, &row,
5531 &object, &p);
5532 posn = make_number (CHARPOS (p.pos));
5537 Lisp_Object head, position;
5539 position
5540 = Fcons (window,
5541 Fcons (posn,
5542 Fcons (Fcons (event->x, event->y),
5543 Fcons (make_number (event->timestamp),
5544 Qnil))));
5546 head = modify_event_symbol (0, event->modifiers,
5547 Qmouse_wheel, Qnil,
5548 lispy_mouse_wheel_names,
5549 &mouse_wheel_syms, 1);
5550 return Fcons (head,
5551 Fcons (position,
5552 /* Insert 1 here so event-click-count works. */
5553 Fcons (make_number (1),
5554 Fcons (make_number (event->code),
5555 Qnil))));
5558 #endif /* WINDOWSNT || MAC_OSX */
5560 case DRAG_N_DROP_EVENT:
5562 enum window_part part;
5563 FRAME_PTR f;
5564 Lisp_Object window;
5565 Lisp_Object posn;
5566 Lisp_Object files;
5568 /* The frame_or_window field should be a cons of the frame in
5569 which the event occurred and a list of the filenames
5570 dropped. */
5571 if (! CONSP (event->frame_or_window))
5572 abort ();
5574 f = XFRAME (XCAR (event->frame_or_window));
5575 files = XCDR (event->frame_or_window);
5577 /* Ignore mouse events that were made on frames that
5578 have been deleted. */
5579 if (! FRAME_LIVE_P (f))
5580 return Qnil;
5582 window = window_from_coordinates (f, XINT (event->x),
5583 XINT (event->y), &part, 0);
5585 if (!WINDOWP (window))
5587 window = XCAR (event->frame_or_window);
5588 posn = Qnil;
5590 else
5592 /* It's an event in window `window' at frame coordinates
5593 event->x/ event->y. */
5594 struct window *w = XWINDOW (window);
5596 /* Get window relative coordinates. */
5597 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
5598 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
5600 /* Set event coordinates to window-relative coordinates
5601 for constructing the Lisp event below. */
5602 XSETINT (event->x, wx);
5603 XSETINT (event->y, wy);
5605 if (part == ON_MODE_LINE)
5606 posn = Qmode_line;
5607 else if (part == ON_VERTICAL_BORDER)
5608 posn = Qvertical_line;
5609 else if (part == ON_HEADER_LINE)
5610 posn = Qheader_line;
5611 else
5613 Lisp_Object object;
5614 struct display_pos p;
5615 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5616 posn = make_number (CHARPOS (p.pos));
5621 Lisp_Object head, position;
5623 position
5624 = Fcons (window,
5625 Fcons (posn,
5626 Fcons (Fcons (event->x, event->y),
5627 Fcons (make_number (event->timestamp),
5628 Qnil))));
5630 head = modify_event_symbol (0, event->modifiers,
5631 Qdrag_n_drop, Qnil,
5632 lispy_drag_n_drop_names,
5633 &drag_n_drop_syms, 1);
5634 return Fcons (head,
5635 Fcons (position,
5636 Fcons (files,
5637 Qnil)));
5640 #endif /* HAVE_MOUSE */
5642 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5643 || defined (USE_GTK)
5644 case MENU_BAR_EVENT:
5645 if (EQ (event->arg, event->frame_or_window))
5646 /* This is the prefix key. We translate this to
5647 `(menu_bar)' because the code in keyboard.c for menu
5648 events, which we use, relies on this. */
5649 return Fcons (Qmenu_bar, Qnil);
5650 return event->arg;
5651 #endif
5653 case SELECT_WINDOW_EVENT:
5654 /* Make an event (select-window (WINDOW)). */
5655 return Fcons (Qselect_window,
5656 Fcons (Fcons (event->frame_or_window, Qnil),
5657 Qnil));
5659 case TOOL_BAR_EVENT:
5660 if (EQ (event->arg, event->frame_or_window))
5661 /* This is the prefix key. We translate this to
5662 `(tool_bar)' because the code in keyboard.c for tool bar
5663 events, which we use, relies on this. */
5664 return Fcons (Qtool_bar, Qnil);
5665 else if (SYMBOLP (event->arg))
5666 return apply_modifiers (event->modifiers, event->arg);
5667 return event->arg;
5669 case USER_SIGNAL_EVENT:
5670 /* A user signal. */
5671 return *lispy_user_signals[event->code];
5673 case SAVE_SESSION_EVENT:
5674 return Qsave_session;
5676 /* The 'kind' field of the event is something we don't recognize. */
5677 default:
5678 abort ();
5682 #ifdef HAVE_MOUSE
5684 static Lisp_Object
5685 make_lispy_movement (frame, bar_window, part, x, y, time)
5686 FRAME_PTR frame;
5687 Lisp_Object bar_window;
5688 enum scroll_bar_part part;
5689 Lisp_Object x, y;
5690 unsigned long time;
5692 /* Is it a scroll bar movement? */
5693 if (frame && ! NILP (bar_window))
5695 Lisp_Object part_sym;
5697 part_sym = *scroll_bar_parts[(int) part];
5698 return Fcons (Qscroll_bar_movement,
5699 (Fcons (Fcons (bar_window,
5700 Fcons (Qvertical_scroll_bar,
5701 Fcons (Fcons (x, y),
5702 Fcons (make_number (time),
5703 Fcons (part_sym,
5704 Qnil))))),
5705 Qnil)));
5708 /* Or is it an ordinary mouse movement? */
5709 else
5711 enum window_part area;
5712 Lisp_Object window;
5713 Lisp_Object posn;
5715 if (frame)
5716 /* It's in a frame; which window on that frame? */
5717 window = window_from_coordinates (frame, XINT (x), XINT (y), &area, 0);
5718 else
5719 window = Qnil;
5721 if (WINDOWP (window))
5723 struct window *w = XWINDOW (window);
5724 int wx, wy;
5726 /* Get window relative coordinates. */
5727 wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (x));
5728 wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (y));
5729 XSETINT (x, wx);
5730 XSETINT (y, wy);
5732 if (area == ON_MODE_LINE)
5733 posn = Qmode_line;
5734 else if (area == ON_VERTICAL_BORDER)
5735 posn = Qvertical_line;
5736 else if (area == ON_HEADER_LINE)
5737 posn = Qheader_line;
5738 else
5740 Lisp_Object object;
5741 struct display_pos p;
5742 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5743 posn = make_number (CHARPOS (p.pos));
5746 else if (frame != 0)
5748 XSETFRAME (window, frame);
5749 posn = Qnil;
5751 else
5753 window = Qnil;
5754 posn = Qnil;
5755 XSETFASTINT (x, 0);
5756 XSETFASTINT (y, 0);
5759 return Fcons (Qmouse_movement,
5760 Fcons (Fcons (window,
5761 Fcons (posn,
5762 Fcons (Fcons (x, y),
5763 Fcons (make_number (time),
5764 Qnil)))),
5765 Qnil));
5769 #endif /* HAVE_MOUSE */
5771 /* Construct a switch frame event. */
5772 static Lisp_Object
5773 make_lispy_switch_frame (frame)
5774 Lisp_Object frame;
5776 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5779 /* Manipulating modifiers. */
5781 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
5783 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5784 SYMBOL's name of the end of the modifiers; the string from this
5785 position is the unmodified symbol name.
5787 This doesn't use any caches. */
5789 static int
5790 parse_modifiers_uncached (symbol, modifier_end)
5791 Lisp_Object symbol;
5792 int *modifier_end;
5794 Lisp_Object name;
5795 int i;
5796 int modifiers;
5798 CHECK_SYMBOL (symbol);
5800 modifiers = 0;
5801 name = SYMBOL_NAME (symbol);
5803 for (i = 0; i+2 <= SBYTES (name); )
5805 int this_mod_end = 0;
5806 int this_mod = 0;
5808 /* See if the name continues with a modifier word.
5809 Check that the word appears, but don't check what follows it.
5810 Set this_mod and this_mod_end to record what we find. */
5812 switch (SREF (name, i))
5814 #define SINGLE_LETTER_MOD(BIT) \
5815 (this_mod_end = i + 1, this_mod = BIT)
5817 case 'A':
5818 SINGLE_LETTER_MOD (alt_modifier);
5819 break;
5821 case 'C':
5822 SINGLE_LETTER_MOD (ctrl_modifier);
5823 break;
5825 case 'H':
5826 SINGLE_LETTER_MOD (hyper_modifier);
5827 break;
5829 case 'M':
5830 SINGLE_LETTER_MOD (meta_modifier);
5831 break;
5833 case 'S':
5834 SINGLE_LETTER_MOD (shift_modifier);
5835 break;
5837 case 's':
5838 SINGLE_LETTER_MOD (super_modifier);
5839 break;
5841 #undef SINGLE_LETTER_MOD
5844 /* If we found no modifier, stop looking for them. */
5845 if (this_mod_end == 0)
5846 break;
5848 /* Check there is a dash after the modifier, so that it
5849 really is a modifier. */
5850 if (this_mod_end >= SBYTES (name)
5851 || SREF (name, this_mod_end) != '-')
5852 break;
5854 /* This modifier is real; look for another. */
5855 modifiers |= this_mod;
5856 i = this_mod_end + 1;
5859 /* Should we include the `click' modifier? */
5860 if (! (modifiers & (down_modifier | drag_modifier
5861 | double_modifier | triple_modifier))
5862 && i + 7 == SBYTES (name)
5863 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
5864 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
5865 modifiers |= click_modifier;
5867 if (modifier_end)
5868 *modifier_end = i;
5870 return modifiers;
5873 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
5874 prepended to the string BASE[0..BASE_LEN-1].
5875 This doesn't use any caches. */
5876 static Lisp_Object
5877 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
5878 int modifiers;
5879 char *base;
5880 int base_len, base_len_byte;
5882 /* Since BASE could contain nulls, we can't use intern here; we have
5883 to use Fintern, which expects a genuine Lisp_String, and keeps a
5884 reference to it. */
5885 char *new_mods
5886 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
5887 int mod_len;
5890 char *p = new_mods;
5892 /* Only the event queue may use the `up' modifier; it should always
5893 be turned into a click or drag event before presented to lisp code. */
5894 if (modifiers & up_modifier)
5895 abort ();
5897 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
5898 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
5899 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
5900 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
5901 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
5902 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
5903 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
5904 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
5905 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
5906 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
5907 /* The click modifier is denoted by the absence of other modifiers. */
5909 *p = '\0';
5911 mod_len = p - new_mods;
5915 Lisp_Object new_name;
5917 new_name = make_uninit_multibyte_string (mod_len + base_len,
5918 mod_len + base_len_byte);
5919 bcopy (new_mods, SDATA (new_name), mod_len);
5920 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
5922 return Fintern (new_name, Qnil);
5927 static char *modifier_names[] =
5929 "up", "down", "drag", "click", "double", "triple", 0, 0,
5930 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5931 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
5933 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
5935 static Lisp_Object modifier_symbols;
5937 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
5938 static Lisp_Object
5939 lispy_modifier_list (modifiers)
5940 int modifiers;
5942 Lisp_Object modifier_list;
5943 int i;
5945 modifier_list = Qnil;
5946 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
5947 if (modifiers & (1<<i))
5948 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
5949 modifier_list);
5951 return modifier_list;
5955 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
5956 where UNMODIFIED is the unmodified form of SYMBOL,
5957 MASK is the set of modifiers present in SYMBOL's name.
5958 This is similar to parse_modifiers_uncached, but uses the cache in
5959 SYMBOL's Qevent_symbol_element_mask property, and maintains the
5960 Qevent_symbol_elements property. */
5962 Lisp_Object
5963 parse_modifiers (symbol)
5964 Lisp_Object symbol;
5966 Lisp_Object elements;
5968 elements = Fget (symbol, Qevent_symbol_element_mask);
5969 if (CONSP (elements))
5970 return elements;
5971 else
5973 int end;
5974 int modifiers = parse_modifiers_uncached (symbol, &end);
5975 Lisp_Object unmodified;
5976 Lisp_Object mask;
5978 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
5979 SBYTES (SYMBOL_NAME (symbol)) - end),
5980 Qnil);
5982 if (modifiers & ~VALMASK)
5983 abort ();
5984 XSETFASTINT (mask, modifiers);
5985 elements = Fcons (unmodified, Fcons (mask, Qnil));
5987 /* Cache the parsing results on SYMBOL. */
5988 Fput (symbol, Qevent_symbol_element_mask,
5989 elements);
5990 Fput (symbol, Qevent_symbol_elements,
5991 Fcons (unmodified, lispy_modifier_list (modifiers)));
5993 /* Since we know that SYMBOL is modifiers applied to unmodified,
5994 it would be nice to put that in unmodified's cache.
5995 But we can't, since we're not sure that parse_modifiers is
5996 canonical. */
5998 return elements;
6002 /* Apply the modifiers MODIFIERS to the symbol BASE.
6003 BASE must be unmodified.
6005 This is like apply_modifiers_uncached, but uses BASE's
6006 Qmodifier_cache property, if present. It also builds
6007 Qevent_symbol_elements properties, since it has that info anyway.
6009 apply_modifiers copies the value of BASE's Qevent_kind property to
6010 the modified symbol. */
6011 static Lisp_Object
6012 apply_modifiers (modifiers, base)
6013 int modifiers;
6014 Lisp_Object base;
6016 Lisp_Object cache, index, entry, new_symbol;
6018 /* Mask out upper bits. We don't know where this value's been. */
6019 modifiers &= VALMASK;
6021 /* The click modifier never figures into cache indices. */
6022 cache = Fget (base, Qmodifier_cache);
6023 XSETFASTINT (index, (modifiers & ~click_modifier));
6024 entry = assq_no_quit (index, cache);
6026 if (CONSP (entry))
6027 new_symbol = XCDR (entry);
6028 else
6030 /* We have to create the symbol ourselves. */
6031 new_symbol = apply_modifiers_uncached (modifiers,
6032 SDATA (SYMBOL_NAME (base)),
6033 SCHARS (SYMBOL_NAME (base)),
6034 SBYTES (SYMBOL_NAME (base)));
6036 /* Add the new symbol to the base's cache. */
6037 entry = Fcons (index, new_symbol);
6038 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6040 /* We have the parsing info now for free, so add it to the caches. */
6041 XSETFASTINT (index, modifiers);
6042 Fput (new_symbol, Qevent_symbol_element_mask,
6043 Fcons (base, Fcons (index, Qnil)));
6044 Fput (new_symbol, Qevent_symbol_elements,
6045 Fcons (base, lispy_modifier_list (modifiers)));
6048 /* Make sure this symbol is of the same kind as BASE.
6050 You'd think we could just set this once and for all when we
6051 intern the symbol above, but reorder_modifiers may call us when
6052 BASE's property isn't set right; we can't assume that just
6053 because it has a Qmodifier_cache property it must have its
6054 Qevent_kind set right as well. */
6055 if (NILP (Fget (new_symbol, Qevent_kind)))
6057 Lisp_Object kind;
6059 kind = Fget (base, Qevent_kind);
6060 if (! NILP (kind))
6061 Fput (new_symbol, Qevent_kind, kind);
6064 return new_symbol;
6068 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6069 return a symbol with the modifiers placed in the canonical order.
6070 Canonical order is alphabetical, except for down and drag, which
6071 always come last. The 'click' modifier is never written out.
6073 Fdefine_key calls this to make sure that (for example) C-M-foo
6074 and M-C-foo end up being equivalent in the keymap. */
6076 Lisp_Object
6077 reorder_modifiers (symbol)
6078 Lisp_Object symbol;
6080 /* It's hopefully okay to write the code this way, since everything
6081 will soon be in caches, and no consing will be done at all. */
6082 Lisp_Object parsed;
6084 parsed = parse_modifiers (symbol);
6085 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6086 XCAR (parsed));
6090 /* For handling events, we often want to produce a symbol whose name
6091 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6092 to some base, like the name of a function key or mouse button.
6093 modify_event_symbol produces symbols of this sort.
6095 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6096 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6097 in the table.
6099 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6100 into symbol names, or a string specifying a name stem used to
6101 construct a symbol name or the form `STEM-N', where N is the decimal
6102 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6103 non-nil; otherwise NAME_TABLE is used.
6105 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6106 persist between calls to modify_event_symbol that it can use to
6107 store a cache of the symbols it's generated for this NAME_TABLE
6108 before. The object stored there may be a vector or an alist.
6110 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6112 MODIFIERS is a set of modifier bits (as given in struct input_events)
6113 whose prefixes should be applied to the symbol name.
6115 SYMBOL_KIND is the value to be placed in the event_kind property of
6116 the returned symbol.
6118 The symbols we create are supposed to have an
6119 `event-symbol-elements' property, which lists the modifiers present
6120 in the symbol's name. */
6122 static Lisp_Object
6123 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
6124 name_table, symbol_table, table_size)
6125 int symbol_num;
6126 unsigned modifiers;
6127 Lisp_Object symbol_kind;
6128 Lisp_Object name_alist_or_stem;
6129 char **name_table;
6130 Lisp_Object *symbol_table;
6131 unsigned int table_size;
6133 Lisp_Object value;
6134 Lisp_Object symbol_int;
6136 /* Get rid of the "vendor-specific" bit here. */
6137 XSETINT (symbol_int, symbol_num & 0xffffff);
6139 /* Is this a request for a valid symbol? */
6140 if (symbol_num < 0 || symbol_num >= table_size)
6141 return Qnil;
6143 if (CONSP (*symbol_table))
6144 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6146 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6147 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6148 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6149 we've never used that symbol before. */
6150 else
6152 if (! VECTORP (*symbol_table)
6153 || XVECTOR (*symbol_table)->size != table_size)
6155 Lisp_Object size;
6157 XSETFASTINT (size, table_size);
6158 *symbol_table = Fmake_vector (size, Qnil);
6161 value = XVECTOR (*symbol_table)->contents[symbol_num];
6164 /* Have we already used this symbol before? */
6165 if (NILP (value))
6167 /* No; let's create it. */
6168 if (CONSP (name_alist_or_stem))
6169 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6170 else if (STRINGP (name_alist_or_stem))
6172 int len = SBYTES (name_alist_or_stem);
6173 char *buf = (char *) alloca (len + 50);
6174 if (sizeof (int) == sizeof (EMACS_INT))
6175 sprintf (buf, "%s-%d", SDATA (name_alist_or_stem),
6176 XINT (symbol_int) + 1);
6177 else if (sizeof (long) == sizeof (EMACS_INT))
6178 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6179 XINT (symbol_int) + 1);
6180 value = intern (buf);
6182 else if (name_table != 0 && name_table[symbol_num])
6183 value = intern (name_table[symbol_num]);
6185 #ifdef HAVE_WINDOW_SYSTEM
6186 if (NILP (value))
6188 char *name = x_get_keysym_name (symbol_num);
6189 if (name)
6190 value = intern (name);
6192 #endif
6194 if (NILP (value))
6196 char buf[20];
6197 sprintf (buf, "key-%d", symbol_num);
6198 value = intern (buf);
6201 if (CONSP (*symbol_table))
6202 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6203 else
6204 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6206 /* Fill in the cache entries for this symbol; this also
6207 builds the Qevent_symbol_elements property, which the user
6208 cares about. */
6209 apply_modifiers (modifiers & click_modifier, value);
6210 Fput (value, Qevent_kind, symbol_kind);
6213 /* Apply modifiers to that symbol. */
6214 return apply_modifiers (modifiers, value);
6217 /* Convert a list that represents an event type,
6218 such as (ctrl meta backspace), into the usual representation of that
6219 event type as a number or a symbol. */
6221 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6222 doc: /* Convert the event description list EVENT-DESC to an event type.
6223 EVENT-DESC should contain one base event type (a character or symbol)
6224 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6225 drag, down, double or triple). The base must be last.
6226 The return value is an event type (a character or symbol) which
6227 has the same base event type and all the specified modifiers. */)
6228 (event_desc)
6229 Lisp_Object event_desc;
6231 Lisp_Object base;
6232 int modifiers = 0;
6233 Lisp_Object rest;
6235 base = Qnil;
6236 rest = event_desc;
6237 while (CONSP (rest))
6239 Lisp_Object elt;
6240 int this = 0;
6242 elt = XCAR (rest);
6243 rest = XCDR (rest);
6245 /* Given a symbol, see if it is a modifier name. */
6246 if (SYMBOLP (elt) && CONSP (rest))
6247 this = parse_solitary_modifier (elt);
6249 if (this != 0)
6250 modifiers |= this;
6251 else if (!NILP (base))
6252 error ("Two bases given in one event");
6253 else
6254 base = elt;
6258 /* Let the symbol A refer to the character A. */
6259 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6260 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6262 if (INTEGERP (base))
6264 /* Turn (shift a) into A. */
6265 if ((modifiers & shift_modifier) != 0
6266 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6268 XSETINT (base, XINT (base) - ('a' - 'A'));
6269 modifiers &= ~shift_modifier;
6272 /* Turn (control a) into C-a. */
6273 if (modifiers & ctrl_modifier)
6274 return make_number ((modifiers & ~ctrl_modifier)
6275 | make_ctrl_char (XINT (base)));
6276 else
6277 return make_number (modifiers | XINT (base));
6279 else if (SYMBOLP (base))
6280 return apply_modifiers (modifiers, base);
6281 else
6283 error ("Invalid base event");
6284 return Qnil;
6288 /* Try to recognize SYMBOL as a modifier name.
6289 Return the modifier flag bit, or 0 if not recognized. */
6291 static int
6292 parse_solitary_modifier (symbol)
6293 Lisp_Object symbol;
6295 Lisp_Object name = SYMBOL_NAME (symbol);
6297 switch (SREF (name, 0))
6299 #define SINGLE_LETTER_MOD(BIT) \
6300 if (SBYTES (name) == 1) \
6301 return BIT;
6303 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6304 if (LEN == SBYTES (name) \
6305 && ! strncmp (SDATA (name), NAME, LEN)) \
6306 return BIT;
6308 case 'A':
6309 SINGLE_LETTER_MOD (alt_modifier);
6310 break;
6312 case 'a':
6313 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6314 break;
6316 case 'C':
6317 SINGLE_LETTER_MOD (ctrl_modifier);
6318 break;
6320 case 'c':
6321 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6322 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6323 break;
6325 case 'H':
6326 SINGLE_LETTER_MOD (hyper_modifier);
6327 break;
6329 case 'h':
6330 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6331 break;
6333 case 'M':
6334 SINGLE_LETTER_MOD (meta_modifier);
6335 break;
6337 case 'm':
6338 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6339 break;
6341 case 'S':
6342 SINGLE_LETTER_MOD (shift_modifier);
6343 break;
6345 case 's':
6346 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6347 MULTI_LETTER_MOD (super_modifier, "super", 5);
6348 SINGLE_LETTER_MOD (super_modifier);
6349 break;
6351 case 'd':
6352 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6353 MULTI_LETTER_MOD (down_modifier, "down", 4);
6354 MULTI_LETTER_MOD (double_modifier, "double", 6);
6355 break;
6357 case 't':
6358 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6359 break;
6361 #undef SINGLE_LETTER_MOD
6362 #undef MULTI_LETTER_MOD
6365 return 0;
6368 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6369 Such a list is not valid as an event,
6370 but it can be a Lucid-style event type list. */
6373 lucid_event_type_list_p (object)
6374 Lisp_Object object;
6376 Lisp_Object tail;
6378 if (! CONSP (object))
6379 return 0;
6381 if (EQ (XCAR (object), Qhelp_echo)
6382 || EQ (XCAR (object), Qvertical_line)
6383 || EQ (XCAR (object), Qmode_line)
6384 || EQ (XCAR (object), Qheader_line))
6385 return 0;
6387 for (tail = object; CONSP (tail); tail = XCDR (tail))
6389 Lisp_Object elt;
6390 elt = XCAR (tail);
6391 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6392 return 0;
6395 return NILP (tail);
6398 /* Store into *addr a value nonzero if terminal input chars are available.
6399 Serves the purpose of ioctl (0, FIONREAD, addr)
6400 but works even if FIONREAD does not exist.
6401 (In fact, this may actually read some input.)
6403 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe.
6404 If FILTER_EVENTS is nonzero, ignore internal events (FOCUS_IN_EVENT). */
6406 static void
6407 get_filtered_input_pending (addr, do_timers_now, filter_events)
6408 int *addr;
6409 int do_timers_now;
6410 int filter_events;
6412 /* First of all, have we already counted some input? */
6413 *addr = (!NILP (Vquit_flag)
6414 || readable_filtered_events (do_timers_now, filter_events));
6416 /* If input is being read as it arrives, and we have none, there is none. */
6417 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6418 return;
6420 /* Try to read some input and see how much we get. */
6421 gobble_input (0);
6422 *addr = (!NILP (Vquit_flag)
6423 || readable_filtered_events (do_timers_now, filter_events));
6426 /* Store into *addr a value nonzero if terminal input chars are available.
6427 Serves the purpose of ioctl (0, FIONREAD, addr)
6428 but works even if FIONREAD does not exist.
6429 (In fact, this may actually read some input.)
6431 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
6433 static void
6434 get_input_pending (addr, do_timers_now)
6435 int *addr;
6436 int do_timers_now;
6438 get_filtered_input_pending (addr, do_timers_now, 0);
6441 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6443 void
6444 gobble_input (expected)
6445 int expected;
6447 #ifndef VMS
6448 #ifdef SIGIO
6449 if (interrupt_input)
6451 SIGMASKTYPE mask;
6452 mask = sigblock (sigmask (SIGIO));
6453 read_avail_input (expected);
6454 sigsetmask (mask);
6456 else
6457 #ifdef POLL_FOR_INPUT
6458 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6460 SIGMASKTYPE mask;
6461 mask = sigblock (sigmask (SIGALRM));
6462 read_avail_input (expected);
6463 sigsetmask (mask);
6465 else
6466 #endif
6467 #endif
6468 read_avail_input (expected);
6469 #endif
6472 /* Put a BUFFER_SWITCH_EVENT in the buffer
6473 so that read_key_sequence will notice the new current buffer. */
6475 void
6476 record_asynch_buffer_change ()
6478 struct input_event event;
6479 Lisp_Object tem;
6481 event.kind = BUFFER_SWITCH_EVENT;
6482 event.frame_or_window = Qnil;
6483 event.arg = Qnil;
6485 #ifdef subprocesses
6486 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6487 The purpose of the event is to make read_key_sequence look up the
6488 keymaps again. If we aren't in read_key_sequence, we don't need one,
6489 and the event could cause trouble by messing up (input-pending-p). */
6490 tem = Fwaiting_for_user_input_p ();
6491 if (NILP (tem))
6492 return;
6493 #else
6494 /* We never need these events if we have no asynchronous subprocesses. */
6495 return;
6496 #endif
6498 /* Make sure no interrupt happens while storing the event. */
6499 #ifdef SIGIO
6500 if (interrupt_input)
6502 SIGMASKTYPE mask;
6503 mask = sigblock (sigmask (SIGIO));
6504 kbd_buffer_store_event (&event);
6505 sigsetmask (mask);
6507 else
6508 #endif
6510 stop_polling ();
6511 kbd_buffer_store_event (&event);
6512 start_polling ();
6516 #ifndef VMS
6518 /* Read any terminal input already buffered up by the system
6519 into the kbd_buffer, but do not wait.
6521 EXPECTED should be nonzero if the caller knows there is some input.
6523 Except on VMS, all input is read by this function.
6524 If interrupt_input is nonzero, this function MUST be called
6525 only when SIGIO is blocked.
6527 Returns the number of keyboard chars read, or -1 meaning
6528 this is a bad time to try to read input. */
6530 static int
6531 read_avail_input (expected)
6532 int expected;
6534 struct input_event buf[KBD_BUFFER_SIZE];
6535 register int i;
6536 int nread;
6538 if (read_socket_hook)
6539 /* No need for FIONREAD or fcntl; just say don't wait. */
6540 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE, expected);
6541 else
6543 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6544 the kbd_buffer can really hold. That may prevent loss
6545 of characters on some systems when input is stuffed at us. */
6546 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6547 int n_to_read;
6549 /* Determine how many characters we should *try* to read. */
6550 #ifdef WINDOWSNT
6551 return 0;
6552 #else /* not WINDOWSNT */
6553 #ifdef MSDOS
6554 n_to_read = dos_keysns ();
6555 if (n_to_read == 0)
6556 return 0;
6557 #else /* not MSDOS */
6558 #ifdef FIONREAD
6559 /* Find out how much input is available. */
6560 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6561 /* Formerly simply reported no input, but that sometimes led to
6562 a failure of Emacs to terminate.
6563 SIGHUP seems appropriate if we can't reach the terminal. */
6564 /* ??? Is it really right to send the signal just to this process
6565 rather than to the whole process group?
6566 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6567 kill (getpid (), SIGHUP);
6568 if (n_to_read == 0)
6569 return 0;
6570 if (n_to_read > sizeof cbuf)
6571 n_to_read = sizeof cbuf;
6572 #else /* no FIONREAD */
6573 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6574 /* Read some input if available, but don't wait. */
6575 n_to_read = sizeof cbuf;
6576 fcntl (input_fd, F_SETFL, O_NDELAY);
6577 #else
6578 you lose;
6579 #endif
6580 #endif
6581 #endif /* not MSDOS */
6582 #endif /* not WINDOWSNT */
6584 /* Now read; for one reason or another, this will not block.
6585 NREAD is set to the number of chars read. */
6588 #ifdef MSDOS
6589 cbuf[0] = dos_keyread ();
6590 nread = 1;
6591 #else
6592 nread = emacs_read (input_fd, cbuf, n_to_read);
6593 #endif
6594 /* POSIX infers that processes which are not in the session leader's
6595 process group won't get SIGHUP's at logout time. BSDI adheres to
6596 this part standard and returns -1 from read (0) with errno==EIO
6597 when the control tty is taken away.
6598 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6599 if (nread == -1 && errno == EIO)
6600 kill (0, SIGHUP);
6601 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6602 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6603 This looks incorrect, but it isn't, because _BSD causes
6604 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6605 and that causes a value other than 0 when there is no input. */
6606 if (nread == 0)
6607 kill (0, SIGHUP);
6608 #endif
6610 while (
6611 /* We used to retry the read if it was interrupted.
6612 But this does the wrong thing when O_NDELAY causes
6613 an EAGAIN error. Does anybody know of a situation
6614 where a retry is actually needed? */
6615 #if 0
6616 nread < 0 && (errno == EAGAIN
6617 #ifdef EFAULT
6618 || errno == EFAULT
6619 #endif
6620 #ifdef EBADSLT
6621 || errno == EBADSLT
6622 #endif
6624 #else
6626 #endif
6629 #ifndef FIONREAD
6630 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6631 fcntl (input_fd, F_SETFL, 0);
6632 #endif /* USG or DGUX or CYGWIN */
6633 #endif /* no FIONREAD */
6634 for (i = 0; i < nread; i++)
6636 buf[i].kind = ASCII_KEYSTROKE_EVENT;
6637 buf[i].modifiers = 0;
6638 if (meta_key == 1 && (cbuf[i] & 0x80))
6639 buf[i].modifiers = meta_modifier;
6640 if (meta_key != 2)
6641 cbuf[i] &= ~0x80;
6643 buf[i].code = cbuf[i];
6644 buf[i].frame_or_window = selected_frame;
6645 buf[i].arg = Qnil;
6649 /* Scan the chars for C-g and store them in kbd_buffer. */
6650 for (i = 0; i < nread; i++)
6652 kbd_buffer_store_event (&buf[i]);
6653 /* Don't look at input that follows a C-g too closely.
6654 This reduces lossage due to autorepeat on C-g. */
6655 if (buf[i].kind == ASCII_KEYSTROKE_EVENT
6656 && buf[i].code == quit_char)
6657 break;
6660 return nread;
6662 #endif /* not VMS */
6664 #ifdef SIGIO /* for entire page */
6665 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6667 SIGTYPE
6668 input_available_signal (signo)
6669 int signo;
6671 /* Must preserve main program's value of errno. */
6672 int old_errno = errno;
6673 #ifdef BSD4_1
6674 extern int select_alarmed;
6675 #endif
6677 #if defined (USG) && !defined (POSIX_SIGNALS)
6678 /* USG systems forget handlers when they are used;
6679 must reestablish each time */
6680 signal (signo, input_available_signal);
6681 #endif /* USG */
6683 #ifdef BSD4_1
6684 sigisheld (SIGIO);
6685 #endif
6687 if (input_available_clear_time)
6688 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6690 while (1)
6692 int nread;
6693 nread = read_avail_input (1);
6694 /* -1 means it's not ok to read the input now.
6695 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6696 0 means there was no keyboard input available. */
6697 if (nread <= 0)
6698 break;
6700 #ifdef BSD4_1
6701 select_alarmed = 1; /* Force the select emulator back to life */
6702 #endif
6705 #ifdef BSD4_1
6706 sigfree ();
6707 #endif
6708 errno = old_errno;
6710 #endif /* SIGIO */
6712 /* Send ourselves a SIGIO.
6714 This function exists so that the UNBLOCK_INPUT macro in
6715 blockinput.h can have some way to take care of input we put off
6716 dealing with, without assuming that every file which uses
6717 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6718 void
6719 reinvoke_input_signal ()
6721 #ifdef SIGIO
6722 kill (getpid (), SIGIO);
6723 #endif
6728 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object));
6729 static void menu_bar_one_keymap P_ ((Lisp_Object));
6731 /* These variables hold the vector under construction within
6732 menu_bar_items and its subroutines, and the current index
6733 for storing into that vector. */
6734 static Lisp_Object menu_bar_items_vector;
6735 static int menu_bar_items_index;
6737 /* Return a vector of menu items for a menu bar, appropriate
6738 to the current buffer. Each item has three elements in the vector:
6739 KEY STRING MAPLIST.
6741 OLD is an old vector we can optionally reuse, or nil. */
6743 Lisp_Object
6744 menu_bar_items (old)
6745 Lisp_Object old;
6747 /* The number of keymaps we're scanning right now, and the number of
6748 keymaps we have allocated space for. */
6749 int nmaps;
6751 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6752 in the current keymaps, or nil where it is not a prefix. */
6753 Lisp_Object *maps;
6755 Lisp_Object def, tail;
6757 Lisp_Object result;
6759 int mapno;
6760 Lisp_Object oquit;
6762 int i;
6764 struct gcpro gcpro1;
6766 /* In order to build the menus, we need to call the keymap
6767 accessors. They all call QUIT. But this function is called
6768 during redisplay, during which a quit is fatal. So inhibit
6769 quitting while building the menus.
6770 We do this instead of specbind because (1) errors will clear it anyway
6771 and (2) this avoids risk of specpdl overflow. */
6772 oquit = Vinhibit_quit;
6773 Vinhibit_quit = Qt;
6775 if (!NILP (old))
6776 menu_bar_items_vector = old;
6777 else
6778 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6779 menu_bar_items_index = 0;
6781 GCPRO1 (menu_bar_items_vector);
6783 /* Build our list of keymaps.
6784 If we recognize a function key and replace its escape sequence in
6785 keybuf with its symbol, or if the sequence starts with a mouse
6786 click and we need to switch buffers, we jump back here to rebuild
6787 the initial keymaps from the current buffer. */
6789 Lisp_Object *tmaps;
6791 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6792 if (!NILP (Voverriding_local_map_menu_flag))
6794 /* Yes, use them (if non-nil) as well as the global map. */
6795 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
6796 nmaps = 0;
6797 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6798 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6799 if (!NILP (Voverriding_local_map))
6800 maps[nmaps++] = Voverriding_local_map;
6802 else
6804 /* No, so use major and minor mode keymaps and keymap property.
6805 Note that menu-bar bindings in the local-map and keymap
6806 properties may not work reliable, as they are only
6807 recognized when the menu-bar (or mode-line) is updated,
6808 which does not normally happen after every command. */
6809 Lisp_Object tem;
6810 int nminor;
6811 nminor = current_minor_maps (NULL, &tmaps);
6812 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
6813 nmaps = 0;
6814 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
6815 maps[nmaps++] = tem;
6816 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
6817 nmaps += nminor;
6818 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
6820 maps[nmaps++] = current_global_map;
6823 /* Look up in each map the dummy prefix key `menu-bar'. */
6825 result = Qnil;
6827 for (mapno = nmaps - 1; mapno >= 0; mapno--)
6828 if (!NILP (maps[mapno]))
6830 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
6831 0, 1);
6832 if (CONSP (def))
6833 menu_bar_one_keymap (def);
6836 /* Move to the end those items that should be at the end. */
6838 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
6840 int i;
6841 int end = menu_bar_items_index;
6843 for (i = 0; i < end; i += 4)
6844 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
6846 Lisp_Object tem0, tem1, tem2, tem3;
6847 /* Move the item at index I to the end,
6848 shifting all the others forward. */
6849 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
6850 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
6851 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6852 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
6853 if (end > i + 4)
6854 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6855 &XVECTOR (menu_bar_items_vector)->contents[i],
6856 (end - i - 4) * sizeof (Lisp_Object));
6857 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
6858 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
6859 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
6860 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
6861 break;
6865 /* Add nil, nil, nil, nil at the end. */
6866 i = menu_bar_items_index;
6867 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6869 Lisp_Object tem;
6870 tem = Fmake_vector (make_number (2 * i), Qnil);
6871 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6872 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6873 menu_bar_items_vector = tem;
6875 /* Add this item. */
6876 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6877 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6878 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6879 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6880 menu_bar_items_index = i;
6882 Vinhibit_quit = oquit;
6883 UNGCPRO;
6884 return menu_bar_items_vector;
6887 /* Scan one map KEYMAP, accumulating any menu items it defines
6888 in menu_bar_items_vector. */
6890 static Lisp_Object menu_bar_one_keymap_changed_items;
6892 static void
6893 menu_bar_one_keymap (keymap)
6894 Lisp_Object keymap;
6896 Lisp_Object tail, item;
6898 menu_bar_one_keymap_changed_items = Qnil;
6900 /* Loop over all keymap entries that have menu strings. */
6901 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
6903 item = XCAR (tail);
6904 if (CONSP (item))
6905 menu_bar_item (XCAR (item), XCDR (item));
6906 else if (VECTORP (item))
6908 /* Loop over the char values represented in the vector. */
6909 int len = XVECTOR (item)->size;
6910 int c;
6911 for (c = 0; c < len; c++)
6913 Lisp_Object character;
6914 XSETFASTINT (character, c);
6915 menu_bar_item (character, XVECTOR (item)->contents[c]);
6921 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
6922 If there's already an item for KEY, add this DEF to it. */
6924 Lisp_Object item_properties;
6926 static void
6927 menu_bar_item (key, item)
6928 Lisp_Object key, item;
6930 struct gcpro gcpro1;
6931 int i;
6932 Lisp_Object tem;
6934 if (EQ (item, Qundefined))
6936 /* If a map has an explicit `undefined' as definition,
6937 discard any previously made menu bar item. */
6939 for (i = 0; i < menu_bar_items_index; i += 4)
6940 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6942 if (menu_bar_items_index > i + 4)
6943 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6944 &XVECTOR (menu_bar_items_vector)->contents[i],
6945 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
6946 menu_bar_items_index -= 4;
6950 /* If this keymap has already contributed to this KEY,
6951 don't contribute to it a second time. */
6952 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
6953 if (!NILP (tem) || NILP (item))
6954 return;
6956 menu_bar_one_keymap_changed_items
6957 = Fcons (key, menu_bar_one_keymap_changed_items);
6959 /* We add to menu_bar_one_keymap_changed_items before doing the
6960 parse_menu_item, so that if it turns out it wasn't a menu item,
6961 it still correctly hides any further menu item. */
6962 GCPRO1 (key);
6963 i = parse_menu_item (item, 0, 1);
6964 UNGCPRO;
6965 if (!i)
6966 return;
6968 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
6970 /* Find any existing item for this KEY. */
6971 for (i = 0; i < menu_bar_items_index; i += 4)
6972 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6973 break;
6975 /* If we did not find this KEY, add it at the end. */
6976 if (i == menu_bar_items_index)
6978 /* If vector is too small, get a bigger one. */
6979 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6981 Lisp_Object tem;
6982 tem = Fmake_vector (make_number (2 * i), Qnil);
6983 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6984 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6985 menu_bar_items_vector = tem;
6988 /* Add this item. */
6989 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
6990 XVECTOR (menu_bar_items_vector)->contents[i++]
6991 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
6992 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
6993 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
6994 menu_bar_items_index = i;
6996 /* We did find an item for this KEY. Add ITEM to its list of maps. */
6997 else
6999 Lisp_Object old;
7000 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7001 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (item, old);
7005 /* This is used as the handler when calling menu_item_eval_property. */
7006 static Lisp_Object
7007 menu_item_eval_property_1 (arg)
7008 Lisp_Object arg;
7010 /* If we got a quit from within the menu computation,
7011 quit all the way out of it. This takes care of C-] in the debugger. */
7012 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7013 Fsignal (Qquit, Qnil);
7015 return Qnil;
7018 /* Evaluate an expression and return the result (or nil if something
7019 went wrong). Used to evaluate dynamic parts of menu items. */
7020 Lisp_Object
7021 menu_item_eval_property (sexpr)
7022 Lisp_Object sexpr;
7024 int count = SPECPDL_INDEX ();
7025 Lisp_Object val;
7026 specbind (Qinhibit_redisplay, Qt);
7027 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7028 menu_item_eval_property_1);
7029 return unbind_to (count, val);
7032 /* This function parses a menu item and leaves the result in the
7033 vector item_properties.
7034 ITEM is a key binding, a possible menu item.
7035 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7036 evaluate dynamic expressions in the menu item.
7037 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7038 top level.
7039 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7040 parse_menu_item returns true if the item is a menu item and false
7041 otherwise. */
7044 parse_menu_item (item, notreal, inmenubar)
7045 Lisp_Object item;
7046 int notreal, inmenubar;
7048 Lisp_Object def, tem, item_string, start;
7049 Lisp_Object cachelist;
7050 Lisp_Object filter;
7051 Lisp_Object keyhint;
7052 int i;
7053 int newcache = 0;
7055 cachelist = Qnil;
7056 filter = Qnil;
7057 keyhint = Qnil;
7059 if (!CONSP (item))
7060 return 0;
7062 /* Create item_properties vector if necessary. */
7063 if (NILP (item_properties))
7064 item_properties
7065 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7067 /* Initialize optional entries. */
7068 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7069 AREF (item_properties, i) = Qnil;
7070 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7072 /* Save the item here to protect it from GC. */
7073 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
7075 item_string = XCAR (item);
7077 start = item;
7078 item = XCDR (item);
7079 if (STRINGP (item_string))
7081 /* Old format menu item. */
7082 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7084 /* Maybe help string. */
7085 if (CONSP (item) && STRINGP (XCAR (item)))
7087 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7088 start = item;
7089 item = XCDR (item);
7092 /* Maybe key binding cache. */
7093 if (CONSP (item) && CONSP (XCAR (item))
7094 && (NILP (XCAR (XCAR (item)))
7095 || VECTORP (XCAR (XCAR (item)))))
7097 cachelist = XCAR (item);
7098 item = XCDR (item);
7101 /* This is the real definition--the function to run. */
7102 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
7104 /* Get enable property, if any. */
7105 if (SYMBOLP (item))
7107 tem = Fget (item, Qmenu_enable);
7108 if (!NILP (tem))
7109 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7112 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7114 /* New format menu item. */
7115 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7116 start = XCDR (item);
7117 if (CONSP (start))
7119 /* We have a real binding. */
7120 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
7122 item = XCDR (start);
7123 /* Is there a cache list with key equivalences. */
7124 if (CONSP (item) && CONSP (XCAR (item)))
7126 cachelist = XCAR (item);
7127 item = XCDR (item);
7130 /* Parse properties. */
7131 while (CONSP (item) && CONSP (XCDR (item)))
7133 tem = XCAR (item);
7134 item = XCDR (item);
7136 if (EQ (tem, QCenable))
7137 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
7138 else if (EQ (tem, QCvisible) && !notreal)
7140 /* If got a visible property and that evaluates to nil
7141 then ignore this item. */
7142 tem = menu_item_eval_property (XCAR (item));
7143 if (NILP (tem))
7144 return 0;
7146 else if (EQ (tem, QChelp))
7147 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7148 else if (EQ (tem, QCfilter))
7149 filter = item;
7150 else if (EQ (tem, QCkey_sequence))
7152 tem = XCAR (item);
7153 if (NILP (cachelist)
7154 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7155 /* Be GC protected. Set keyhint to item instead of tem. */
7156 keyhint = item;
7158 else if (EQ (tem, QCkeys))
7160 tem = XCAR (item);
7161 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
7162 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7164 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7166 Lisp_Object type;
7167 tem = XCAR (item);
7168 type = XCAR (tem);
7169 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7171 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7172 = XCDR (tem);
7173 AREF (item_properties, ITEM_PROPERTY_TYPE)
7174 = type;
7177 item = XCDR (item);
7180 else if (inmenubar || !NILP (start))
7181 return 0;
7183 else
7184 return 0; /* not a menu item */
7186 /* If item string is not a string, evaluate it to get string.
7187 If we don't get a string, skip this item. */
7188 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7189 if (!(STRINGP (item_string) || notreal))
7191 item_string = menu_item_eval_property (item_string);
7192 if (!STRINGP (item_string))
7193 return 0;
7194 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7197 /* If got a filter apply it on definition. */
7198 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7199 if (!NILP (filter))
7201 def = menu_item_eval_property (list2 (XCAR (filter),
7202 list2 (Qquote, def)));
7204 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
7207 /* Enable or disable selection of item. */
7208 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7209 if (!EQ (tem, Qt))
7211 if (notreal)
7212 tem = Qt;
7213 else
7214 tem = menu_item_eval_property (tem);
7215 if (inmenubar && NILP (tem))
7216 return 0; /* Ignore disabled items in menu bar. */
7217 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7220 /* If we got no definition, this item is just unselectable text which
7221 is OK in a submenu but not in the menubar. */
7222 if (NILP (def))
7223 return (inmenubar ? 0 : 1);
7225 /* See if this is a separate pane or a submenu. */
7226 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7227 tem = get_keymap (def, 0, 1);
7228 /* For a subkeymap, just record its details and exit. */
7229 if (CONSP (tem))
7231 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7232 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7233 return 1;
7236 /* At the top level in the menu bar, do likewise for commands also.
7237 The menu bar does not display equivalent key bindings anyway.
7238 ITEM_PROPERTY_DEF is already set up properly. */
7239 if (inmenubar > 0)
7240 return 1;
7242 /* This is a command. See if there is an equivalent key binding. */
7243 if (NILP (cachelist))
7245 /* We have to create a cachelist. */
7246 CHECK_IMPURE (start);
7247 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7248 cachelist = XCAR (XCDR (start));
7249 newcache = 1;
7250 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7251 if (!NILP (keyhint))
7253 XSETCAR (cachelist, XCAR (keyhint));
7254 newcache = 0;
7256 else if (STRINGP (tem))
7258 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7259 XSETCAR (cachelist, Qt);
7263 tem = XCAR (cachelist);
7264 if (!EQ (tem, Qt))
7266 int chkcache = 0;
7267 Lisp_Object prefix;
7269 if (!NILP (tem))
7270 tem = Fkey_binding (tem, Qnil, Qnil);
7272 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7273 if (CONSP (prefix))
7275 def = XCAR (prefix);
7276 prefix = XCDR (prefix);
7278 else
7279 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7281 if (!update_menu_bindings)
7282 chkcache = 0;
7283 else if (NILP (XCAR (cachelist))) /* Have no saved key. */
7285 if (newcache /* Always check first time. */
7286 /* Should we check everything when precomputing key
7287 bindings? */
7288 /* If something had no key binding before, don't recheck it
7289 because that is too slow--except if we have a list of
7290 rebound commands in Vdefine_key_rebound_commands, do
7291 recheck any command that appears in that list. */
7292 || (CONSP (Vdefine_key_rebound_commands)
7293 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7294 chkcache = 1;
7296 /* We had a saved key. Is it still bound to the command? */
7297 else if (NILP (tem)
7298 || (!EQ (tem, def)
7299 /* If the command is an alias for another
7300 (such as lmenu.el set it up), check if the
7301 original command matches the cached command. */
7302 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7303 chkcache = 1; /* Need to recompute key binding. */
7305 if (chkcache)
7307 /* Recompute equivalent key binding. If the command is an alias
7308 for another (such as lmenu.el set it up), see if the original
7309 command name has equivalent keys. Otherwise look up the
7310 specified command itself. We don't try both, because that
7311 makes lmenu menus slow. */
7312 if (SYMBOLP (def)
7313 && SYMBOLP (XSYMBOL (def)->function)
7314 && ! NILP (Fget (def, Qmenu_alias)))
7315 def = XSYMBOL (def)->function;
7316 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7317 XSETCAR (cachelist, tem);
7318 if (NILP (tem))
7320 XSETCDR (cachelist, Qnil);
7321 chkcache = 0;
7324 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7326 tem = XCAR (cachelist);
7327 chkcache = 1;
7330 newcache = chkcache;
7331 if (chkcache)
7333 tem = Fkey_description (tem);
7334 if (CONSP (prefix))
7336 if (STRINGP (XCAR (prefix)))
7337 tem = concat2 (XCAR (prefix), tem);
7338 if (STRINGP (XCDR (prefix)))
7339 tem = concat2 (tem, XCDR (prefix));
7341 XSETCDR (cachelist, tem);
7345 tem = XCDR (cachelist);
7346 if (newcache && !NILP (tem))
7348 tem = concat3 (build_string (" ("), tem, build_string (")"));
7349 XSETCDR (cachelist, tem);
7352 /* If we only want to precompute equivalent key bindings, stop here. */
7353 if (notreal)
7354 return 1;
7356 /* If we have an equivalent key binding, use that. */
7357 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7359 /* Include this when menu help is implemented.
7360 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7361 if (!(NILP (tem) || STRINGP (tem)))
7363 tem = menu_item_eval_property (tem);
7364 if (!STRINGP (tem))
7365 tem = Qnil;
7366 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7370 /* Handle radio buttons or toggle boxes. */
7371 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7372 if (!NILP (tem))
7373 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7374 = menu_item_eval_property (tem);
7376 return 1;
7381 /***********************************************************************
7382 Tool-bars
7383 ***********************************************************************/
7385 /* A vector holding tool bar items while they are parsed in function
7386 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7387 in the vector. */
7389 static Lisp_Object tool_bar_items_vector;
7391 /* A vector holding the result of parse_tool_bar_item. Layout is like
7392 the one for a single item in tool_bar_items_vector. */
7394 static Lisp_Object tool_bar_item_properties;
7396 /* Next free index in tool_bar_items_vector. */
7398 static int ntool_bar_items;
7400 /* The symbols `tool-bar', and `:image'. */
7402 extern Lisp_Object Qtool_bar;
7403 Lisp_Object QCimage;
7405 /* Function prototypes. */
7407 static void init_tool_bar_items P_ ((Lisp_Object));
7408 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7409 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7410 static void append_tool_bar_item P_ ((void));
7413 /* Return a vector of tool bar items for keymaps currently in effect.
7414 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7415 tool bar items found. */
7417 Lisp_Object
7418 tool_bar_items (reuse, nitems)
7419 Lisp_Object reuse;
7420 int *nitems;
7422 Lisp_Object *maps;
7423 int nmaps, i;
7424 Lisp_Object oquit;
7425 Lisp_Object *tmaps;
7427 *nitems = 0;
7429 /* In order to build the menus, we need to call the keymap
7430 accessors. They all call QUIT. But this function is called
7431 during redisplay, during which a quit is fatal. So inhibit
7432 quitting while building the menus. We do this instead of
7433 specbind because (1) errors will clear it anyway and (2) this
7434 avoids risk of specpdl overflow. */
7435 oquit = Vinhibit_quit;
7436 Vinhibit_quit = Qt;
7438 /* Initialize tool_bar_items_vector and protect it from GC. */
7439 init_tool_bar_items (reuse);
7441 /* Build list of keymaps in maps. Set nmaps to the number of maps
7442 to process. */
7444 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7445 if (!NILP (Voverriding_local_map_menu_flag))
7447 /* Yes, use them (if non-nil) as well as the global map. */
7448 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7449 nmaps = 0;
7450 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7451 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7452 if (!NILP (Voverriding_local_map))
7453 maps[nmaps++] = Voverriding_local_map;
7455 else
7457 /* No, so use major and minor mode keymaps and keymap property.
7458 Note that tool-bar bindings in the local-map and keymap
7459 properties may not work reliable, as they are only
7460 recognized when the tool-bar (or mode-line) is updated,
7461 which does not normally happen after every command. */
7462 Lisp_Object tem;
7463 int nminor;
7464 nminor = current_minor_maps (NULL, &tmaps);
7465 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7466 nmaps = 0;
7467 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7468 maps[nmaps++] = tem;
7469 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7470 nmaps += nminor;
7471 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7474 /* Add global keymap at the end. */
7475 maps[nmaps++] = current_global_map;
7477 /* Process maps in reverse order and look up in each map the prefix
7478 key `tool-bar'. */
7479 for (i = nmaps - 1; i >= 0; --i)
7480 if (!NILP (maps[i]))
7482 Lisp_Object keymap;
7484 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7485 if (CONSP (keymap))
7487 Lisp_Object tail;
7489 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7490 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7492 Lisp_Object keydef = XCAR (tail);
7493 if (CONSP (keydef))
7494 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7499 Vinhibit_quit = oquit;
7500 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7501 return tool_bar_items_vector;
7505 /* Process the definition of KEY which is DEF. */
7507 static void
7508 process_tool_bar_item (key, def)
7509 Lisp_Object key, def;
7511 int i;
7512 extern Lisp_Object Qundefined;
7513 struct gcpro gcpro1, gcpro2;
7515 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7516 eval. */
7517 GCPRO2 (key, def);
7519 if (EQ (def, Qundefined))
7521 /* If a map has an explicit `undefined' as definition,
7522 discard any previously made item. */
7523 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7525 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7527 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7529 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7530 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7531 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7532 * sizeof (Lisp_Object)));
7533 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7534 break;
7538 else if (parse_tool_bar_item (key, def))
7539 /* Append a new tool bar item to tool_bar_items_vector. Accept
7540 more than one definition for the same key. */
7541 append_tool_bar_item ();
7543 UNGCPRO;
7547 /* Parse a tool bar item specification ITEM for key KEY and return the
7548 result in tool_bar_item_properties. Value is zero if ITEM is
7549 invalid.
7551 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7553 CAPTION is the caption of the item, If it's not a string, it is
7554 evaluated to get a string.
7556 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7557 as binding are currently ignored.
7559 The following properties are recognized:
7561 - `:enable FORM'.
7563 FORM is evaluated and specifies whether the tool bar item is
7564 enabled or disabled.
7566 - `:visible FORM'
7568 FORM is evaluated and specifies whether the tool bar item is visible.
7570 - `:filter FUNCTION'
7572 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7573 result is stored as the new binding.
7575 - `:button (TYPE SELECTED)'
7577 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7578 and specifies whether the button is selected (pressed) or not.
7580 - `:image IMAGES'
7582 IMAGES is either a single image specification or a vector of four
7583 image specifications. See enum tool_bar_item_images.
7585 - `:help HELP-STRING'.
7587 Gives a help string to display for the tool bar item. */
7589 static int
7590 parse_tool_bar_item (key, item)
7591 Lisp_Object key, item;
7593 /* Access slot with index IDX of vector tool_bar_item_properties. */
7594 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7596 Lisp_Object filter = Qnil;
7597 Lisp_Object caption;
7598 int i;
7600 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7601 Rule out items that aren't lists, don't start with
7602 `menu-item' or whose rest following `tool-bar-item' is not a
7603 list. */
7604 if (!CONSP (item)
7605 || !EQ (XCAR (item), Qmenu_item)
7606 || (item = XCDR (item),
7607 !CONSP (item)))
7608 return 0;
7610 /* Create tool_bar_item_properties vector if necessary. Reset it to
7611 defaults. */
7612 if (VECTORP (tool_bar_item_properties))
7614 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7615 PROP (i) = Qnil;
7617 else
7618 tool_bar_item_properties
7619 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7621 /* Set defaults. */
7622 PROP (TOOL_BAR_ITEM_KEY) = key;
7623 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7625 /* Get the caption of the item. If the caption is not a string,
7626 evaluate it to get a string. If we don't get a string, skip this
7627 item. */
7628 caption = XCAR (item);
7629 if (!STRINGP (caption))
7631 caption = menu_item_eval_property (caption);
7632 if (!STRINGP (caption))
7633 return 0;
7635 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7637 /* Give up if rest following the caption is not a list. */
7638 item = XCDR (item);
7639 if (!CONSP (item))
7640 return 0;
7642 /* Store the binding. */
7643 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7644 item = XCDR (item);
7646 /* Ignore cached key binding, if any. */
7647 if (CONSP (item) && CONSP (XCAR (item)))
7648 item = XCDR (item);
7650 /* Process the rest of the properties. */
7651 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7653 Lisp_Object key, value;
7655 key = XCAR (item);
7656 value = XCAR (XCDR (item));
7658 if (EQ (key, QCenable))
7659 /* `:enable FORM'. */
7660 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7661 else if (EQ (key, QCvisible))
7663 /* `:visible FORM'. If got a visible property and that
7664 evaluates to nil then ignore this item. */
7665 if (NILP (menu_item_eval_property (value)))
7666 return 0;
7668 else if (EQ (key, QChelp))
7669 /* `:help HELP-STRING'. */
7670 PROP (TOOL_BAR_ITEM_HELP) = value;
7671 else if (EQ (key, QCfilter))
7672 /* ':filter FORM'. */
7673 filter = value;
7674 else if (EQ (key, QCbutton) && CONSP (value))
7676 /* `:button (TYPE . SELECTED)'. */
7677 Lisp_Object type, selected;
7679 type = XCAR (value);
7680 selected = XCDR (value);
7681 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7683 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7684 PROP (TOOL_BAR_ITEM_TYPE) = type;
7687 else if (EQ (key, QCimage)
7688 && (CONSP (value)
7689 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7690 /* Value is either a single image specification or a vector
7691 of 4 such specifications for the different button states. */
7692 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7695 /* If got a filter apply it on binding. */
7696 if (!NILP (filter))
7697 PROP (TOOL_BAR_ITEM_BINDING)
7698 = menu_item_eval_property (list2 (filter,
7699 list2 (Qquote,
7700 PROP (TOOL_BAR_ITEM_BINDING))));
7702 /* See if the binding is a keymap. Give up if it is. */
7703 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7704 return 0;
7706 /* Enable or disable selection of item. */
7707 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7708 PROP (TOOL_BAR_ITEM_ENABLED_P)
7709 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7711 /* Handle radio buttons or toggle boxes. */
7712 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7713 PROP (TOOL_BAR_ITEM_SELECTED_P)
7714 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7716 return 1;
7718 #undef PROP
7722 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7723 that can be reused. */
7725 static void
7726 init_tool_bar_items (reuse)
7727 Lisp_Object reuse;
7729 if (VECTORP (reuse))
7730 tool_bar_items_vector = reuse;
7731 else
7732 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7733 ntool_bar_items = 0;
7737 /* Append parsed tool bar item properties from
7738 tool_bar_item_properties */
7740 static void
7741 append_tool_bar_item ()
7743 Lisp_Object *to, *from;
7745 /* Enlarge tool_bar_items_vector if necessary. */
7746 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7747 >= XVECTOR (tool_bar_items_vector)->size)
7749 Lisp_Object new_vector;
7750 int old_size = XVECTOR (tool_bar_items_vector)->size;
7752 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
7753 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7754 XVECTOR (new_vector)->contents,
7755 old_size * sizeof (Lisp_Object));
7756 tool_bar_items_vector = new_vector;
7759 /* Append entries from tool_bar_item_properties to the end of
7760 tool_bar_items_vector. */
7761 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7762 from = XVECTOR (tool_bar_item_properties)->contents;
7763 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7764 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7771 /* Read a character using menus based on maps in the array MAPS.
7772 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7773 Return t if we displayed a menu but the user rejected it.
7775 PREV_EVENT is the previous input event, or nil if we are reading
7776 the first event of a key sequence.
7778 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7779 if we used a mouse menu to read the input, or zero otherwise. If
7780 USED_MOUSE_MENU is null, we don't dereference it.
7782 The prompting is done based on the prompt-string of the map
7783 and the strings associated with various map elements.
7785 This can be done with X menus or with menus put in the minibuf.
7786 These are done in different ways, depending on how the input will be read.
7787 Menus using X are done after auto-saving in read-char, getting the input
7788 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7789 and do auto-saving in the inner call of read_char. */
7791 static Lisp_Object
7792 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7793 int nmaps;
7794 Lisp_Object *maps;
7795 Lisp_Object prev_event;
7796 int *used_mouse_menu;
7798 int mapno;
7799 register Lisp_Object name = Qnil;
7801 if (used_mouse_menu)
7802 *used_mouse_menu = 0;
7804 /* Use local over global Menu maps */
7806 if (! menu_prompting)
7807 return Qnil;
7809 /* Optionally disregard all but the global map. */
7810 if (inhibit_local_menu_bar_menus)
7812 maps += (nmaps - 1);
7813 nmaps = 1;
7816 /* Get the menu name from the first map that has one (a prompt string). */
7817 for (mapno = 0; mapno < nmaps; mapno++)
7819 name = Fkeymap_prompt (maps[mapno]);
7820 if (!NILP (name))
7821 break;
7824 /* If we don't have any menus, just read a character normally. */
7825 if (!STRINGP (name))
7826 return Qnil;
7828 #ifdef HAVE_MENUS
7829 /* If we got to this point via a mouse click,
7830 use a real menu for mouse selection. */
7831 if (EVENT_HAS_PARAMETERS (prev_event)
7832 && !EQ (XCAR (prev_event), Qmenu_bar)
7833 && !EQ (XCAR (prev_event), Qtool_bar))
7835 /* Display the menu and get the selection. */
7836 Lisp_Object *realmaps
7837 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
7838 Lisp_Object value;
7839 int nmaps1 = 0;
7841 /* Use the maps that are not nil. */
7842 for (mapno = 0; mapno < nmaps; mapno++)
7843 if (!NILP (maps[mapno]))
7844 realmaps[nmaps1++] = maps[mapno];
7846 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
7847 if (CONSP (value))
7849 Lisp_Object tem;
7851 record_menu_key (XCAR (value));
7853 /* If we got multiple events, unread all but
7854 the first.
7855 There is no way to prevent those unread events
7856 from showing up later in last_nonmenu_event.
7857 So turn symbol and integer events into lists,
7858 to indicate that they came from a mouse menu,
7859 so that when present in last_nonmenu_event
7860 they won't confuse things. */
7861 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
7863 record_menu_key (XCAR (tem));
7864 if (SYMBOLP (XCAR (tem))
7865 || INTEGERP (XCAR (tem)))
7866 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
7869 /* If we got more than one event, put all but the first
7870 onto this list to be read later.
7871 Return just the first event now. */
7872 Vunread_command_events
7873 = nconc2 (XCDR (value), Vunread_command_events);
7874 value = XCAR (value);
7876 else if (NILP (value))
7877 value = Qt;
7878 if (used_mouse_menu)
7879 *used_mouse_menu = 1;
7880 return value;
7882 #endif /* HAVE_MENUS */
7883 return Qnil ;
7886 /* Buffer in use so far for the minibuf prompts for menu keymaps.
7887 We make this bigger when necessary, and never free it. */
7888 static char *read_char_minibuf_menu_text;
7889 /* Size of that buffer. */
7890 static int read_char_minibuf_menu_width;
7892 static Lisp_Object
7893 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
7894 int commandflag ;
7895 int nmaps;
7896 Lisp_Object *maps;
7898 int mapno;
7899 register Lisp_Object name;
7900 int nlength;
7901 /* FIXME: Use the minibuffer's frame width. */
7902 int width = FRAME_WIDTH (SELECTED_FRAME ()) - 4;
7903 int idx = -1;
7904 int nobindings = 1;
7905 Lisp_Object rest, vector;
7906 char *menu;
7908 vector = Qnil;
7909 name = Qnil;
7911 if (! menu_prompting)
7912 return Qnil;
7914 /* Make sure we have a big enough buffer for the menu text. */
7915 if (read_char_minibuf_menu_text == 0)
7917 read_char_minibuf_menu_width = width + 4;
7918 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
7920 else if (width + 4 > read_char_minibuf_menu_width)
7922 read_char_minibuf_menu_width = width + 4;
7923 read_char_minibuf_menu_text
7924 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
7926 menu = read_char_minibuf_menu_text;
7928 /* Get the menu name from the first map that has one (a prompt string). */
7929 for (mapno = 0; mapno < nmaps; mapno++)
7931 name = Fkeymap_prompt (maps[mapno]);
7932 if (!NILP (name))
7933 break;
7936 /* If we don't have any menus, just read a character normally. */
7937 if (!STRINGP (name))
7938 return Qnil;
7940 /* Prompt string always starts with map's prompt, and a space. */
7941 strcpy (menu, SDATA (name));
7942 nlength = SBYTES (name);
7943 menu[nlength++] = ':';
7944 menu[nlength++] = ' ';
7945 menu[nlength] = 0;
7947 /* Start prompting at start of first map. */
7948 mapno = 0;
7949 rest = maps[mapno];
7951 /* Present the documented bindings, a line at a time. */
7952 while (1)
7954 int notfirst = 0;
7955 int i = nlength;
7956 Lisp_Object obj;
7957 int ch;
7958 Lisp_Object orig_defn_macro;
7960 /* Loop over elements of map. */
7961 while (i < width)
7963 Lisp_Object elt;
7965 /* If reached end of map, start at beginning of next map. */
7966 if (NILP (rest))
7968 mapno++;
7969 /* At end of last map, wrap around to first map if just starting,
7970 or end this line if already have something on it. */
7971 if (mapno == nmaps)
7973 mapno = 0;
7974 if (notfirst || nobindings) break;
7976 rest = maps[mapno];
7979 /* Look at the next element of the map. */
7980 if (idx >= 0)
7981 elt = XVECTOR (vector)->contents[idx];
7982 else
7983 elt = Fcar_safe (rest);
7985 if (idx < 0 && VECTORP (elt))
7987 /* If we found a dense table in the keymap,
7988 advanced past it, but start scanning its contents. */
7989 rest = Fcdr_safe (rest);
7990 vector = elt;
7991 idx = 0;
7993 else
7995 /* An ordinary element. */
7996 Lisp_Object event, tem;
7998 if (idx < 0)
8000 event = Fcar_safe (elt); /* alist */
8001 elt = Fcdr_safe (elt);
8003 else
8005 XSETINT (event, idx); /* vector */
8008 /* Ignore the element if it has no prompt string. */
8009 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8011 /* 1 if the char to type matches the string. */
8012 int char_matches;
8013 Lisp_Object upcased_event, downcased_event;
8014 Lisp_Object desc = Qnil;
8015 Lisp_Object s
8016 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8018 upcased_event = Fupcase (event);
8019 downcased_event = Fdowncase (event);
8020 char_matches = (XINT (upcased_event) == SREF (s, 0)
8021 || XINT (downcased_event) == SREF (s, 0));
8022 if (! char_matches)
8023 desc = Fsingle_key_description (event, Qnil);
8025 #if 0 /* It is redundant to list the equivalent key bindings because
8026 the prefix is what the user has already typed. */
8028 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8029 if (!NILP (tem))
8030 /* Insert equivalent keybinding. */
8031 s = concat2 (s, tem);
8032 #endif
8034 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8035 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8037 /* Insert button prefix. */
8038 Lisp_Object selected
8039 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8040 if (EQ (tem, QCradio))
8041 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8042 else
8043 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8044 s = concat2 (tem, s);
8048 /* If we have room for the prompt string, add it to this line.
8049 If this is the first on the line, always add it. */
8050 if ((SCHARS (s) + i + 2
8051 + (char_matches ? 0 : SCHARS (desc) + 3))
8052 < width
8053 || !notfirst)
8055 int thiswidth;
8057 /* Punctuate between strings. */
8058 if (notfirst)
8060 strcpy (menu + i, ", ");
8061 i += 2;
8063 notfirst = 1;
8064 nobindings = 0 ;
8066 /* If the char to type doesn't match the string's
8067 first char, explicitly show what char to type. */
8068 if (! char_matches)
8070 /* Add as much of string as fits. */
8071 thiswidth = SCHARS (desc);
8072 if (thiswidth + i > width)
8073 thiswidth = width - i;
8074 bcopy (SDATA (desc), menu + i, thiswidth);
8075 i += thiswidth;
8076 strcpy (menu + i, " = ");
8077 i += 3;
8080 /* Add as much of string as fits. */
8081 thiswidth = SCHARS (s);
8082 if (thiswidth + i > width)
8083 thiswidth = width - i;
8084 bcopy (SDATA (s), menu + i, thiswidth);
8085 i += thiswidth;
8086 menu[i] = 0;
8088 else
8090 /* If this element does not fit, end the line now,
8091 and save the element for the next line. */
8092 strcpy (menu + i, "...");
8093 break;
8097 /* Move past this element. */
8098 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8099 /* Handle reaching end of dense table. */
8100 idx = -1;
8101 if (idx >= 0)
8102 idx++;
8103 else
8104 rest = Fcdr_safe (rest);
8108 /* Prompt with that and read response. */
8109 message2_nolog (menu, strlen (menu),
8110 ! NILP (current_buffer->enable_multibyte_characters));
8112 /* Make believe its not a keyboard macro in case the help char
8113 is pressed. Help characters are not recorded because menu prompting
8114 is not used on replay.
8116 orig_defn_macro = current_kboard->defining_kbd_macro;
8117 current_kboard->defining_kbd_macro = Qnil;
8119 obj = read_char (commandflag, 0, 0, Qt, 0);
8120 while (BUFFERP (obj));
8121 current_kboard->defining_kbd_macro = orig_defn_macro;
8123 if (!INTEGERP (obj))
8124 return obj;
8125 else
8126 ch = XINT (obj);
8128 if (! EQ (obj, menu_prompt_more_char)
8129 && (!INTEGERP (menu_prompt_more_char)
8130 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8132 if (!NILP (current_kboard->defining_kbd_macro))
8133 store_kbd_macro_char (obj);
8134 return obj;
8136 /* Help char - go round again */
8140 /* Reading key sequences. */
8142 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8143 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8144 keymap, or nil otherwise. Return the index of the first keymap in
8145 which KEY has any binding, or NMAPS if no map has a binding.
8147 If KEY is a meta ASCII character, treat it like meta-prefix-char
8148 followed by the corresponding non-meta character. Keymaps in
8149 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8150 NEXT.
8152 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8153 unmodified.
8155 NEXT may be the same array as CURRENT. */
8157 static int
8158 follow_key (key, nmaps, current, defs, next)
8159 Lisp_Object key;
8160 Lisp_Object *current, *defs, *next;
8161 int nmaps;
8163 int i, first_binding;
8164 int did_meta = 0;
8166 first_binding = nmaps;
8167 for (i = nmaps - 1; i >= 0; i--)
8169 if (! NILP (current[i]))
8171 Lisp_Object map;
8172 if (did_meta)
8173 map = defs[i];
8174 else
8175 map = current[i];
8177 defs[i] = access_keymap (map, key, 1, 0, 1);
8178 if (! NILP (defs[i]))
8179 first_binding = i;
8181 else
8182 defs[i] = Qnil;
8185 /* Given the set of bindings we've found, produce the next set of maps. */
8186 if (first_binding < nmaps)
8187 for (i = 0; i < nmaps; i++)
8188 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8190 return first_binding;
8193 /* Structure used to keep track of partial application of key remapping
8194 such as Vfunction_key_map and Vkey_translation_map. */
8195 typedef struct keyremap
8197 Lisp_Object map;
8198 int start, end;
8199 } keyremap;
8202 /* Read a sequence of keys that ends with a non prefix character,
8203 storing it in KEYBUF, a buffer of size BUFSIZE.
8204 Prompt with PROMPT.
8205 Return the length of the key sequence stored.
8206 Return -1 if the user rejected a command menu.
8208 Echo starting immediately unless `prompt' is 0.
8210 Where a key sequence ends depends on the currently active keymaps.
8211 These include any minor mode keymaps active in the current buffer,
8212 the current buffer's local map, and the global map.
8214 If a key sequence has no other bindings, we check Vfunction_key_map
8215 to see if some trailing subsequence might be the beginning of a
8216 function key's sequence. If so, we try to read the whole function
8217 key, and substitute its symbolic name into the key sequence.
8219 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8220 `double-' events into similar click events, if that would make them
8221 bound. We try to turn `triple-' events first into `double-' events,
8222 then into clicks.
8224 If we get a mouse click in a mode line, vertical divider, or other
8225 non-text area, we treat the click as if it were prefixed by the
8226 symbol denoting that area - `mode-line', `vertical-line', or
8227 whatever.
8229 If the sequence starts with a mouse click, we read the key sequence
8230 with respect to the buffer clicked on, not the current buffer.
8232 If the user switches frames in the midst of a key sequence, we put
8233 off the switch-frame event until later; the next call to
8234 read_char will return it.
8236 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8237 from the selected window's buffer. */
8239 static int
8240 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8241 can_return_switch_frame, fix_current_buffer)
8242 Lisp_Object *keybuf;
8243 int bufsize;
8244 Lisp_Object prompt;
8245 int dont_downcase_last;
8246 int can_return_switch_frame;
8247 int fix_current_buffer;
8249 volatile Lisp_Object from_string;
8250 volatile int count = SPECPDL_INDEX ();
8252 /* How many keys there are in the current key sequence. */
8253 volatile int t;
8255 /* The length of the echo buffer when we started reading, and
8256 the length of this_command_keys when we started reading. */
8257 volatile int echo_start;
8258 volatile int keys_start;
8260 /* The number of keymaps we're scanning right now, and the number of
8261 keymaps we have allocated space for. */
8262 volatile int nmaps;
8263 volatile int nmaps_allocated = 0;
8265 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8266 the current keymaps. */
8267 Lisp_Object *volatile defs = NULL;
8269 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8270 in the current keymaps, or nil where it is not a prefix. */
8271 Lisp_Object *volatile submaps = NULL;
8273 /* The local map to start out with at start of key sequence. */
8274 volatile Lisp_Object orig_local_map;
8276 /* The map from the `keymap' property to start out with at start of
8277 key sequence. */
8278 volatile Lisp_Object orig_keymap;
8280 /* 1 if we have already considered switching to the local-map property
8281 of the place where a mouse click occurred. */
8282 volatile int localized_local_map = 0;
8284 /* The index in defs[] of the first keymap that has a binding for
8285 this key sequence. In other words, the lowest i such that
8286 defs[i] is non-nil. */
8287 volatile int first_binding;
8288 /* Index of the first key that has no binding.
8289 It is useless to try fkey.start larger than that. */
8290 volatile int first_unbound;
8292 /* If t < mock_input, then KEYBUF[t] should be read as the next
8293 input key.
8295 We use this to recover after recognizing a function key. Once we
8296 realize that a suffix of the current key sequence is actually a
8297 function key's escape sequence, we replace the suffix with the
8298 function key's binding from Vfunction_key_map. Now keybuf
8299 contains a new and different key sequence, so the echo area,
8300 this_command_keys, and the submaps and defs arrays are wrong. In
8301 this situation, we set mock_input to t, set t to 0, and jump to
8302 restart_sequence; the loop will read keys from keybuf up until
8303 mock_input, thus rebuilding the state; and then it will resume
8304 reading characters from the keyboard. */
8305 volatile int mock_input = 0;
8307 /* If the sequence is unbound in submaps[], then
8308 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8309 and fkey.map is its binding.
8311 These might be > t, indicating that all function key scanning
8312 should hold off until t reaches them. We do this when we've just
8313 recognized a function key, to avoid searching for the function
8314 key's again in Vfunction_key_map. */
8315 volatile keyremap fkey;
8317 /* Likewise, for key_translation_map. */
8318 volatile keyremap keytran;
8320 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
8321 we put it off for later. While we're reading, we keep the event here. */
8322 volatile Lisp_Object delayed_switch_frame;
8324 /* See the comment below... */
8325 #if defined (GOBBLE_FIRST_EVENT)
8326 Lisp_Object first_event;
8327 #endif
8329 volatile Lisp_Object original_uppercase;
8330 volatile int original_uppercase_position = -1;
8332 /* Gets around Microsoft compiler limitations. */
8333 int dummyflag = 0;
8335 struct buffer *starting_buffer;
8337 /* List of events for which a fake prefix key has been generated. */
8338 volatile Lisp_Object fake_prefixed_keys = Qnil;
8340 #if defined (GOBBLE_FIRST_EVENT)
8341 int junk;
8342 #endif
8344 struct gcpro gcpro1;
8346 GCPRO1 (fake_prefixed_keys);
8347 raw_keybuf_count = 0;
8349 last_nonmenu_event = Qnil;
8351 delayed_switch_frame = Qnil;
8352 fkey.map = Vfunction_key_map;
8353 keytran.map = Vkey_translation_map;
8354 /* If there is no translation-map, turn off scanning. */
8355 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
8356 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
8358 if (INTERACTIVE)
8360 if (!NILP (prompt))
8361 echo_prompt (prompt);
8362 else if (cursor_in_echo_area
8363 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8364 && NILP (Fzerop (Vecho_keystrokes)))
8365 /* This doesn't put in a dash if the echo buffer is empty, so
8366 you don't always see a dash hanging out in the minibuffer. */
8367 echo_dash ();
8370 /* Record the initial state of the echo area and this_command_keys;
8371 we will need to restore them if we replay a key sequence. */
8372 if (INTERACTIVE)
8373 echo_start = echo_length ();
8374 keys_start = this_command_key_count;
8375 this_single_command_key_start = keys_start;
8377 #if defined (GOBBLE_FIRST_EVENT)
8378 /* This doesn't quite work, because some of the things that read_char
8379 does cannot safely be bypassed. It seems too risky to try to make
8380 this work right. */
8382 /* Read the first char of the sequence specially, before setting
8383 up any keymaps, in case a filter runs and switches buffers on us. */
8384 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8385 &junk);
8386 #endif /* GOBBLE_FIRST_EVENT */
8388 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8389 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8390 from_string = Qnil;
8392 /* We jump here when the key sequence has been thoroughly changed, and
8393 we need to rescan it starting from the beginning. When we jump here,
8394 keybuf[0..mock_input] holds the sequence we should reread. */
8395 replay_sequence:
8397 starting_buffer = current_buffer;
8398 first_unbound = bufsize + 1;
8400 /* Build our list of keymaps.
8401 If we recognize a function key and replace its escape sequence in
8402 keybuf with its symbol, or if the sequence starts with a mouse
8403 click and we need to switch buffers, we jump back here to rebuild
8404 the initial keymaps from the current buffer. */
8405 nmaps = 0;
8407 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8408 || !NILP (Voverriding_local_map))
8410 if (3 > nmaps_allocated)
8412 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8413 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8414 nmaps_allocated = 3;
8416 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8417 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8418 if (!NILP (Voverriding_local_map))
8419 submaps[nmaps++] = Voverriding_local_map;
8421 else
8423 int nminor;
8424 int total;
8425 Lisp_Object *maps;
8427 nminor = current_minor_maps (0, &maps);
8428 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8430 if (total > nmaps_allocated)
8432 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8433 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8434 nmaps_allocated = total;
8437 if (!NILP (orig_keymap))
8438 submaps[nmaps++] = orig_keymap;
8440 bcopy (maps, (void *) (submaps + nmaps),
8441 nminor * sizeof (submaps[0]));
8443 nmaps += nminor;
8445 submaps[nmaps++] = orig_local_map;
8447 submaps[nmaps++] = current_global_map;
8449 /* Find an accurate initial value for first_binding. */
8450 for (first_binding = 0; first_binding < nmaps; first_binding++)
8451 if (! NILP (submaps[first_binding]))
8452 break;
8454 /* Start from the beginning in keybuf. */
8455 t = 0;
8457 /* These are no-ops the first time through, but if we restart, they
8458 revert the echo area and this_command_keys to their original state. */
8459 this_command_key_count = keys_start;
8460 if (INTERACTIVE && t < mock_input)
8461 echo_truncate (echo_start);
8463 /* If the best binding for the current key sequence is a keymap, or
8464 we may be looking at a function key's escape sequence, keep on
8465 reading. */
8466 while (first_binding < nmaps
8467 /* Keep reading as long as there's a prefix binding. */
8468 ? !NILP (submaps[first_binding])
8469 /* Don't return in the middle of a possible function key sequence,
8470 if the only bindings we found were via case conversion.
8471 Thus, if ESC O a has a function-key-map translation
8472 and ESC o has a binding, don't return after ESC O,
8473 so that we can translate ESC O plus the next character. */
8474 : (fkey.start < t || keytran.start < t))
8476 Lisp_Object key;
8477 int used_mouse_menu = 0;
8479 /* Where the last real key started. If we need to throw away a
8480 key that has expanded into more than one element of keybuf
8481 (say, a mouse click on the mode line which is being treated
8482 as [mode-line (mouse-...)], then we backtrack to this point
8483 of keybuf. */
8484 volatile int last_real_key_start;
8486 /* These variables are analogous to echo_start and keys_start;
8487 while those allow us to restart the entire key sequence,
8488 echo_local_start and keys_local_start allow us to throw away
8489 just one key. */
8490 volatile int echo_local_start, keys_local_start, local_first_binding;
8492 /* key-translation-map is applied *after* function-key-map. */
8493 eassert (keytran.end <= fkey.start);
8495 if (first_unbound < fkey.start && first_unbound < keytran.start)
8496 { /* The prefix upto first_unbound has no binding and has
8497 no translation left to do either, so we know it's unbound.
8498 If we don't stop now, we risk staying here indefinitely
8499 (if the user keeps entering fkey or keytran prefixes
8500 like C-c ESC ESC ESC ESC ...) */
8501 int i;
8502 for (i = first_unbound + 1; i < t; i++)
8503 keybuf[i - first_unbound - 1] = keybuf[i];
8504 mock_input = t - first_unbound - 1;
8505 fkey.end = fkey.start -= first_unbound + 1;
8506 fkey.map = Vfunction_key_map;
8507 keytran.end = keytran.start -= first_unbound + 1;
8508 keytran.map = Vkey_translation_map;
8509 goto replay_sequence;
8512 if (t >= bufsize)
8513 error ("Key sequence too long");
8515 if (INTERACTIVE)
8516 echo_local_start = echo_length ();
8517 keys_local_start = this_command_key_count;
8518 local_first_binding = first_binding;
8520 replay_key:
8521 /* These are no-ops, unless we throw away a keystroke below and
8522 jumped back up to replay_key; in that case, these restore the
8523 variables to their original state, allowing us to replay the
8524 loop. */
8525 if (INTERACTIVE && t < mock_input)
8526 echo_truncate (echo_local_start);
8527 this_command_key_count = keys_local_start;
8528 first_binding = local_first_binding;
8530 /* By default, assume each event is "real". */
8531 last_real_key_start = t;
8533 /* Does mock_input indicate that we are re-reading a key sequence? */
8534 if (t < mock_input)
8536 key = keybuf[t];
8537 add_command_key (key);
8538 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8539 && NILP (Fzerop (Vecho_keystrokes)))
8540 echo_char (key);
8543 /* If not, we should actually read a character. */
8544 else
8547 #ifdef MULTI_KBOARD
8548 KBOARD *interrupted_kboard = current_kboard;
8549 struct frame *interrupted_frame = SELECTED_FRAME ();
8550 if (setjmp (wrong_kboard_jmpbuf))
8552 if (!NILP (delayed_switch_frame))
8554 interrupted_kboard->kbd_queue
8555 = Fcons (delayed_switch_frame,
8556 interrupted_kboard->kbd_queue);
8557 delayed_switch_frame = Qnil;
8559 while (t > 0)
8560 interrupted_kboard->kbd_queue
8561 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8563 /* If the side queue is non-empty, ensure it begins with a
8564 switch-frame, so we'll replay it in the right context. */
8565 if (CONSP (interrupted_kboard->kbd_queue)
8566 && (key = XCAR (interrupted_kboard->kbd_queue),
8567 !(EVENT_HAS_PARAMETERS (key)
8568 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8569 Qswitch_frame))))
8571 Lisp_Object frame;
8572 XSETFRAME (frame, interrupted_frame);
8573 interrupted_kboard->kbd_queue
8574 = Fcons (make_lispy_switch_frame (frame),
8575 interrupted_kboard->kbd_queue);
8577 mock_input = 0;
8578 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8579 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8580 goto replay_sequence;
8582 #endif
8583 key = read_char (NILP (prompt), nmaps,
8584 (Lisp_Object *) submaps, last_nonmenu_event,
8585 &used_mouse_menu);
8588 /* read_char returns t when it shows a menu and the user rejects it.
8589 Just return -1. */
8590 if (EQ (key, Qt))
8592 unbind_to (count, Qnil);
8593 UNGCPRO;
8594 return -1;
8597 /* read_char returns -1 at the end of a macro.
8598 Emacs 18 handles this by returning immediately with a
8599 zero, so that's what we'll do. */
8600 if (INTEGERP (key) && XINT (key) == -1)
8602 t = 0;
8603 /* The Microsoft C compiler can't handle the goto that
8604 would go here. */
8605 dummyflag = 1;
8606 break;
8609 /* If the current buffer has been changed from under us, the
8610 keymap may have changed, so replay the sequence. */
8611 if (BUFFERP (key))
8613 EMACS_TIME initial_idleness_start_time;
8614 EMACS_SET_SECS_USECS (initial_idleness_start_time,
8615 EMACS_SECS (timer_last_idleness_start_time),
8616 EMACS_USECS (timer_last_idleness_start_time));
8618 /* Resume idle state, using the same start-time as before. */
8619 timer_start_idle ();
8620 timer_idleness_start_time = initial_idleness_start_time;
8622 mock_input = t;
8623 /* Reset the current buffer from the selected window
8624 in case something changed the former and not the latter.
8625 This is to be more consistent with the behavior
8626 of the command_loop_1. */
8627 if (fix_current_buffer)
8629 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8630 Fkill_emacs (Qnil);
8631 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8632 Fset_buffer (XWINDOW (selected_window)->buffer);
8635 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8636 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8637 goto replay_sequence;
8640 /* If we have a quit that was typed in another frame, and
8641 quit_throw_to_read_char switched buffers,
8642 replay to get the right keymap. */
8643 if (INTEGERP (key)
8644 && XINT (key) == quit_char
8645 && current_buffer != starting_buffer)
8647 GROW_RAW_KEYBUF;
8648 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8649 keybuf[t++] = key;
8650 mock_input = t;
8651 Vquit_flag = Qnil;
8652 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8653 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8654 goto replay_sequence;
8657 Vquit_flag = Qnil;
8659 if (EVENT_HAS_PARAMETERS (key)
8660 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8662 /* If we're at the beginning of a key sequence, and the caller
8663 says it's okay, go ahead and return this event. If we're
8664 in the midst of a key sequence, delay it until the end. */
8665 if (t > 0 || !can_return_switch_frame)
8667 delayed_switch_frame = key;
8668 goto replay_key;
8672 GROW_RAW_KEYBUF;
8673 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8676 /* Clicks in non-text areas get prefixed by the symbol
8677 in their CHAR-ADDRESS field. For example, a click on
8678 the mode line is prefixed by the symbol `mode-line'.
8680 Furthermore, key sequences beginning with mouse clicks
8681 are read using the keymaps of the buffer clicked on, not
8682 the current buffer. So we may have to switch the buffer
8683 here.
8685 When we turn one event into two events, we must make sure
8686 that neither of the two looks like the original--so that,
8687 if we replay the events, they won't be expanded again.
8688 If not for this, such reexpansion could happen either here
8689 or when user programs play with this-command-keys. */
8690 if (EVENT_HAS_PARAMETERS (key))
8692 Lisp_Object kind;
8694 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
8695 if (EQ (kind, Qmouse_click))
8697 Lisp_Object window, posn;
8699 window = POSN_WINDOW (EVENT_START (key));
8700 posn = POSN_BUFFER_POSN (EVENT_START (key));
8702 if (CONSP (posn)
8703 || (!NILP (fake_prefixed_keys)
8704 && !NILP (Fmemq (key, fake_prefixed_keys))))
8706 /* We're looking a second time at an event for which
8707 we generated a fake prefix key. Set
8708 last_real_key_start appropriately. */
8709 if (t > 0)
8710 last_real_key_start = t - 1;
8713 /* Key sequences beginning with mouse clicks are
8714 read using the keymaps in the buffer clicked on,
8715 not the current buffer. If we're at the
8716 beginning of a key sequence, switch buffers. */
8717 if (last_real_key_start == 0
8718 && WINDOWP (window)
8719 && BUFFERP (XWINDOW (window)->buffer)
8720 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
8722 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8723 keybuf[t] = key;
8724 mock_input = t + 1;
8726 /* Arrange to go back to the original buffer once we're
8727 done reading the key sequence. Note that we can't
8728 use save_excursion_{save,restore} here, because they
8729 save point as well as the current buffer; we don't
8730 want to save point, because redisplay may change it,
8731 to accommodate a Fset_window_start or something. We
8732 don't want to do this at the top of the function,
8733 because we may get input from a subprocess which
8734 wants to change the selected window and stuff (say,
8735 emacsclient). */
8736 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
8738 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8739 Fkill_emacs (Qnil);
8740 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
8741 orig_local_map = get_local_map (PT, current_buffer,
8742 Qlocal_map);
8743 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8744 goto replay_sequence;
8747 /* For a mouse click, get the local text-property keymap
8748 of the place clicked on, rather than point. */
8749 if (last_real_key_start == 0
8750 && CONSP (XCDR (key))
8751 && ! localized_local_map)
8753 Lisp_Object map_here, start, pos;
8755 localized_local_map = 1;
8756 start = EVENT_START (key);
8758 if (CONSP (start) && CONSP (XCDR (start)))
8760 pos = POSN_BUFFER_POSN (start);
8761 if (INTEGERP (pos)
8762 && XINT (pos) >= BEG && XINT (pos) <= Z)
8764 map_here = get_local_map (XINT (pos),
8765 current_buffer, Qlocal_map);
8766 if (!EQ (map_here, orig_local_map))
8768 orig_local_map = map_here;
8769 keybuf[t] = key;
8770 mock_input = t + 1;
8772 goto replay_sequence;
8774 map_here = get_local_map (XINT (pos),
8775 current_buffer, Qkeymap);
8776 if (!EQ (map_here, orig_keymap))
8778 orig_keymap = map_here;
8779 keybuf[t] = key;
8780 mock_input = t + 1;
8782 goto replay_sequence;
8788 /* Expand mode-line and scroll-bar events into two events:
8789 use posn as a fake prefix key. */
8790 if (SYMBOLP (posn)
8791 && (NILP (fake_prefixed_keys)
8792 || NILP (Fmemq (key, fake_prefixed_keys))))
8794 if (t + 1 >= bufsize)
8795 error ("Key sequence too long");
8797 keybuf[t] = posn;
8798 keybuf[t + 1] = key;
8799 mock_input = t + 2;
8801 /* Record that a fake prefix key has been generated
8802 for KEY. Don't modify the event; this would
8803 prevent proper action when the event is pushed
8804 back into unread-command-events. */
8805 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
8807 /* If on a mode line string with a local keymap,
8808 reconsider the key sequence with that keymap. */
8809 if (CONSP (POSN_STRING (EVENT_START (key))))
8811 Lisp_Object string, pos, map, map2;
8813 string = POSN_STRING (EVENT_START (key));
8814 pos = XCDR (string);
8815 string = XCAR (string);
8816 if (XINT (pos) >= 0
8817 && XINT (pos) < SCHARS (string))
8819 map = Fget_text_property (pos, Qlocal_map, string);
8820 if (!NILP (map))
8821 orig_local_map = map;
8822 map2 = Fget_text_property (pos, Qkeymap, string);
8823 if (!NILP (map2))
8824 orig_keymap = map2;
8825 if (!NILP (map) || !NILP (map2))
8826 goto replay_sequence;
8830 goto replay_key;
8832 else if (CONSP (POSN_STRING (EVENT_START (key)))
8833 && NILP (from_string))
8835 /* For a click on a string, i.e. overlay string or a
8836 string displayed via the `display' property,
8837 consider `local-map' and `keymap' properties of
8838 that string. */
8839 Lisp_Object string, pos, map, map2;
8841 string = POSN_STRING (EVENT_START (key));
8842 pos = XCDR (string);
8843 string = XCAR (string);
8844 if (XINT (pos) >= 0
8845 && XINT (pos) < SCHARS (string))
8847 map = Fget_text_property (pos, Qlocal_map, string);
8848 if (!NILP (map))
8849 orig_local_map = map;
8850 map2 = Fget_text_property (pos, Qkeymap, string);
8851 if (!NILP (map2))
8852 orig_keymap = map2;
8854 if (!NILP (map) || !NILP (map2))
8856 from_string = string;
8857 goto replay_sequence;
8862 else if (CONSP (XCDR (key))
8863 && CONSP (EVENT_START (key))
8864 && CONSP (XCDR (EVENT_START (key))))
8866 Lisp_Object posn;
8868 posn = POSN_BUFFER_POSN (EVENT_START (key));
8869 /* Handle menu-bar events:
8870 insert the dummy prefix event `menu-bar'. */
8871 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
8873 if (t + 1 >= bufsize)
8874 error ("Key sequence too long");
8875 keybuf[t] = posn;
8876 keybuf[t+1] = key;
8878 /* Zap the position in key, so we know that we've
8879 expanded it, and don't try to do so again. */
8880 POSN_BUFFER_SET_POSN (EVENT_START (key),
8881 Fcons (posn, Qnil));
8883 mock_input = t + 2;
8884 goto replay_sequence;
8886 else if (CONSP (posn))
8888 /* We're looking at the second event of a
8889 sequence which we expanded before. Set
8890 last_real_key_start appropriately. */
8891 if (last_real_key_start == t && t > 0)
8892 last_real_key_start = t - 1;
8897 /* We have finally decided that KEY is something we might want
8898 to look up. */
8899 first_binding = (follow_key (key,
8900 nmaps - first_binding,
8901 submaps + first_binding,
8902 defs + first_binding,
8903 submaps + first_binding)
8904 + first_binding);
8906 /* If KEY wasn't bound, we'll try some fallbacks. */
8907 if (first_binding < nmaps)
8908 /* This is needed for the following scenario:
8909 event 0: a down-event that gets dropped by calling replay_key.
8910 event 1: some normal prefix like C-h.
8911 After event 0, first_unbound is 0, after event 1 fkey.start
8912 and keytran.start are both 1, so when we see that C-h is bound,
8913 we need to update first_unbound. */
8914 first_unbound = max (t + 1, first_unbound);
8915 else
8917 Lisp_Object head;
8919 /* Remember the position to put an upper bound on fkey.start. */
8920 first_unbound = min (t, first_unbound);
8922 head = EVENT_HEAD (key);
8923 if (help_char_p (head) && t > 0)
8925 read_key_sequence_cmd = Vprefix_help_command;
8926 keybuf[t++] = key;
8927 last_nonmenu_event = key;
8928 /* The Microsoft C compiler can't handle the goto that
8929 would go here. */
8930 dummyflag = 1;
8931 break;
8934 if (SYMBOLP (head))
8936 Lisp_Object breakdown;
8937 int modifiers;
8939 breakdown = parse_modifiers (head);
8940 modifiers = XINT (XCAR (XCDR (breakdown)));
8941 /* Attempt to reduce an unbound mouse event to a simpler
8942 event that is bound:
8943 Drags reduce to clicks.
8944 Double-clicks reduce to clicks.
8945 Triple-clicks reduce to double-clicks, then to clicks.
8946 Down-clicks are eliminated.
8947 Double-downs reduce to downs, then are eliminated.
8948 Triple-downs reduce to double-downs, then to downs,
8949 then are eliminated. */
8950 if (modifiers & (down_modifier | drag_modifier
8951 | double_modifier | triple_modifier))
8953 while (modifiers & (down_modifier | drag_modifier
8954 | double_modifier | triple_modifier))
8956 Lisp_Object new_head, new_click;
8957 if (modifiers & triple_modifier)
8958 modifiers ^= (double_modifier | triple_modifier);
8959 else if (modifiers & double_modifier)
8960 modifiers &= ~double_modifier;
8961 else if (modifiers & drag_modifier)
8962 modifiers &= ~drag_modifier;
8963 else
8965 /* Dispose of this `down' event by simply jumping
8966 back to replay_key, to get another event.
8968 Note that if this event came from mock input,
8969 then just jumping back to replay_key will just
8970 hand it to us again. So we have to wipe out any
8971 mock input.
8973 We could delete keybuf[t] and shift everything
8974 after that to the left by one spot, but we'd also
8975 have to fix up any variable that points into
8976 keybuf, and shifting isn't really necessary
8977 anyway.
8979 Adding prefixes for non-textual mouse clicks
8980 creates two characters of mock input, and both
8981 must be thrown away. If we're only looking at
8982 the prefix now, we can just jump back to
8983 replay_key. On the other hand, if we've already
8984 processed the prefix, and now the actual click
8985 itself is giving us trouble, then we've lost the
8986 state of the keymaps we want to backtrack to, and
8987 we need to replay the whole sequence to rebuild
8990 Beyond that, only function key expansion could
8991 create more than two keys, but that should never
8992 generate mouse events, so it's okay to zero
8993 mock_input in that case too.
8995 FIXME: The above paragraph seems just plain
8996 wrong, if you consider things like
8997 xterm-mouse-mode. -stef
8999 Isn't this just the most wonderful code ever? */
9000 if (t == last_real_key_start)
9002 mock_input = 0;
9003 goto replay_key;
9005 else
9007 mock_input = last_real_key_start;
9008 goto replay_sequence;
9012 new_head
9013 = apply_modifiers (modifiers, XCAR (breakdown));
9014 new_click
9015 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9017 /* Look for a binding for this new key. follow_key
9018 promises that it didn't munge submaps the
9019 last time we called it, since key was unbound. */
9020 first_binding
9021 = (follow_key (new_click,
9022 nmaps - local_first_binding,
9023 submaps + local_first_binding,
9024 defs + local_first_binding,
9025 submaps + local_first_binding)
9026 + local_first_binding);
9028 /* If that click is bound, go for it. */
9029 if (first_binding < nmaps)
9031 key = new_click;
9032 break;
9034 /* Otherwise, we'll leave key set to the drag event. */
9040 keybuf[t++] = key;
9041 /* Normally, last_nonmenu_event gets the previous key we read.
9042 But when a mouse popup menu is being used,
9043 we don't update last_nonmenu_event; it continues to hold the mouse
9044 event that preceded the first level of menu. */
9045 if (!used_mouse_menu)
9046 last_nonmenu_event = key;
9048 /* Record what part of this_command_keys is the current key sequence. */
9049 this_single_command_key_start = this_command_key_count - t;
9051 if (first_binding < nmaps && NILP (submaps[first_binding]))
9052 /* There is a binding and it's not a prefix.
9053 There is thus no function-key in this sequence.
9054 Moving fkey.start is important in this case to allow keytran.start
9055 to go over the sequence before we return (since we keep the
9056 invariant that keytran.end <= fkey.start). */
9058 if (fkey.start < t)
9059 (fkey.start = fkey.end = t, fkey.map = Vfunction_key_map);
9061 else
9062 /* If the sequence is unbound, see if we can hang a function key
9063 off the end of it. */
9065 Lisp_Object next;
9067 /* Continue scan from fkey.end until we find a bound suffix.
9068 If we fail, increment fkey.start and start over from there. */
9069 while (fkey.end < t)
9071 Lisp_Object key;
9073 key = keybuf[fkey.end++];
9074 next = access_keymap (fkey.map, key, 1, 0, 1);
9076 /* Handle symbol with autoload definition. */
9077 if (SYMBOLP (next) && ! NILP (Ffboundp (next))
9078 && CONSP (XSYMBOL (next)->function)
9079 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
9080 do_autoload (XSYMBOL (next)->function, next);
9082 /* Handle a symbol whose function definition is a keymap
9083 or an array. */
9084 if (SYMBOLP (next) && ! NILP (Ffboundp (next))
9085 && (!NILP (Farrayp (XSYMBOL (next)->function))
9086 || KEYMAPP (XSYMBOL (next)->function)))
9087 next = XSYMBOL (next)->function;
9089 #if 0 /* I didn't turn this on, because it might cause trouble
9090 for the mapping of return into C-m and tab into C-i. */
9091 /* Optionally don't map function keys into other things.
9092 This enables the user to redefine kp- keys easily. */
9093 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
9094 next = Qnil;
9095 #endif
9097 /* If the function key map gives a function, not an
9098 array, then call the function with no args and use
9099 its value instead. */
9100 if (SYMBOLP (next) && ! NILP (Ffboundp (next))
9101 /* If there's a binding (i.e. first_binding >= nmaps)
9102 we don't want to apply this function-key-mapping. */
9103 && fkey.end == t && first_binding >= nmaps)
9105 struct gcpro gcpro1, gcpro2, gcpro3;
9106 Lisp_Object tem;
9107 tem = next;
9109 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9110 next = call1 (next, prompt);
9111 UNGCPRO;
9112 /* If the function returned something invalid,
9113 barf--don't ignore it.
9114 (To ignore it safely, we would need to gcpro a bunch of
9115 other variables.) */
9116 if (! (VECTORP (next) || STRINGP (next)))
9117 error ("Function in key-translation-map returns invalid key sequence");
9120 /* If keybuf[fkey.start..fkey.end] is bound in the
9121 function key map and it's a suffix of the current
9122 sequence (i.e. fkey.end == t), replace it with
9123 the binding and restart with fkey.start at the end. */
9124 if ((VECTORP (next) || STRINGP (next))
9125 /* If there's a binding (i.e. first_binding >= nmaps)
9126 we don't want to apply this function-key-mapping. */
9127 && fkey.end == t && first_binding >= nmaps)
9129 int len = XFASTINT (Flength (next));
9131 t = fkey.start + len;
9132 if (t >= bufsize)
9133 error ("Key sequence too long");
9135 if (VECTORP (next))
9136 bcopy (XVECTOR (next)->contents,
9137 keybuf + fkey.start,
9138 (t - fkey.start) * sizeof (keybuf[0]));
9139 else if (STRINGP (next))
9141 int i;
9143 for (i = 0; i < len; i++)
9144 XSETFASTINT (keybuf[fkey.start + i], SREF (next, i));
9147 mock_input = t;
9148 fkey.start = fkey.end = t;
9149 fkey.map = Vfunction_key_map;
9151 /* Do pass the results through key-translation-map.
9152 But don't retranslate what key-translation-map
9153 has already translated. */
9154 keytran.end = keytran.start;
9155 keytran.map = Vkey_translation_map;
9157 goto replay_sequence;
9160 fkey.map = get_keymap (next, 0, 1);
9162 /* If we no longer have a bound suffix, try a new positions for
9163 fkey.start. */
9164 if (!CONSP (fkey.map))
9166 fkey.end = ++fkey.start;
9167 fkey.map = Vfunction_key_map;
9172 /* Look for this sequence in key-translation-map. */
9174 Lisp_Object next;
9176 /* Scan from keytran.end until we find a bound suffix. */
9177 while (keytran.end < fkey.start)
9179 Lisp_Object key;
9181 key = keybuf[keytran.end++];
9182 next = access_keymap (keytran.map, key, 1, 0, 1);
9184 /* Handle symbol with autoload definition. */
9185 if (SYMBOLP (next) && ! NILP (Ffboundp (next))
9186 && CONSP (XSYMBOL (next)->function)
9187 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
9188 do_autoload (XSYMBOL (next)->function, next);
9190 /* Handle a symbol whose function definition is a keymap
9191 or an array. */
9192 if (SYMBOLP (next) && ! NILP (Ffboundp (next))
9193 && (!NILP (Farrayp (XSYMBOL (next)->function))
9194 || KEYMAPP (XSYMBOL (next)->function)))
9195 next = XSYMBOL (next)->function;
9197 /* If the key translation map gives a function, not an
9198 array, then call the function with one arg and use
9199 its value instead. */
9200 if (SYMBOLP (next) && ! NILP (Ffboundp (next)))
9202 struct gcpro gcpro1, gcpro2, gcpro3;
9203 Lisp_Object tem;
9204 tem = next;
9206 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9207 next = call1 (next, prompt);
9208 UNGCPRO;
9209 /* If the function returned something invalid,
9210 barf--don't ignore it.
9211 (To ignore it safely, we would need to gcpro a bunch of
9212 other variables.) */
9213 if (! (VECTORP (next) || STRINGP (next)))
9214 error ("Function in key-translation-map returns invalid key sequence");
9217 /* If keybuf[keytran.start..keytran.end] is bound in the
9218 key translation map and it's a suffix of the current
9219 sequence (i.e. keytran.end == t), replace it with
9220 the binding and restart with keytran.start at the end. */
9221 if ((VECTORP (next) || STRINGP (next)))
9223 int len = XFASTINT (Flength (next));
9224 int i, diff = len - (keytran.end - keytran.start);
9226 mock_input = max (t, mock_input);
9227 if (mock_input + diff >= bufsize)
9228 error ("Key sequence too long");
9230 /* Shift the keys that are after keytran.end. */
9231 if (diff < 0)
9232 for (i = keytran.end; i < mock_input; i++)
9233 keybuf[i + diff] = keybuf[i];
9234 else if (diff > 0)
9235 for (i = mock_input - 1; i >= keytran.end; i--)
9236 keybuf[i + diff] = keybuf[i];
9237 /* Replace the keys between keytran.start and keytran.end
9238 with those from next. */
9239 for (i = 0; i < len; i++)
9240 keybuf[keytran.start + i]
9241 = Faref (next, make_number (i));
9243 mock_input += diff;
9244 keytran.start = keytran.end += diff;
9245 keytran.map = Vkey_translation_map;
9247 /* Adjust the function-key-map counters. */
9248 fkey.start += diff;
9249 fkey.end += diff;
9251 goto replay_sequence;
9254 keytran.map = get_keymap (next, 0, 1);
9256 /* If we no longer have a bound suffix, try a new positions for
9257 keytran.start. */
9258 if (!CONSP (keytran.map))
9260 keytran.end = ++keytran.start;
9261 keytran.map = Vkey_translation_map;
9266 /* If KEY is not defined in any of the keymaps,
9267 and cannot be part of a function key or translation,
9268 and is an upper case letter
9269 use the corresponding lower-case letter instead. */
9270 if (first_binding >= nmaps
9271 && fkey.start >= t && keytran.start >= t
9272 && INTEGERP (key)
9273 && ((((XINT (key) & 0x3ffff)
9274 < XCHAR_TABLE (current_buffer->downcase_table)->size)
9275 && UPPERCASEP (XINT (key) & 0x3ffff))
9276 || (XINT (key) & shift_modifier)))
9278 Lisp_Object new_key;
9280 original_uppercase = key;
9281 original_uppercase_position = t - 1;
9283 if (XINT (key) & shift_modifier)
9284 XSETINT (new_key, XINT (key) & ~shift_modifier);
9285 else
9286 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9287 | (XINT (key) & ~0x3ffff)));
9289 /* We have to do this unconditionally, regardless of whether
9290 the lower-case char is defined in the keymaps, because they
9291 might get translated through function-key-map. */
9292 keybuf[t - 1] = new_key;
9293 mock_input = max (t, mock_input);
9295 goto replay_sequence;
9297 /* If KEY is not defined in any of the keymaps,
9298 and cannot be part of a function key or translation,
9299 and is a shifted function key,
9300 use the corresponding unshifted function key instead. */
9301 if (first_binding >= nmaps
9302 && fkey.start >= t && keytran.start >= t
9303 && SYMBOLP (key))
9305 Lisp_Object breakdown;
9306 int modifiers;
9308 breakdown = parse_modifiers (key);
9309 modifiers = XINT (XCAR (XCDR (breakdown)));
9310 if (modifiers & shift_modifier)
9312 Lisp_Object new_key;
9314 original_uppercase = key;
9315 original_uppercase_position = t - 1;
9317 modifiers &= ~shift_modifier;
9318 new_key = apply_modifiers (modifiers,
9319 XCAR (breakdown));
9321 keybuf[t - 1] = new_key;
9322 mock_input = max (t, mock_input);
9324 goto replay_sequence;
9329 if (!dummyflag)
9330 read_key_sequence_cmd = (first_binding < nmaps
9331 ? defs[first_binding]
9332 : Qnil);
9334 unread_switch_frame = delayed_switch_frame;
9335 unbind_to (count, Qnil);
9337 /* Don't downcase the last character if the caller says don't.
9338 Don't downcase it if the result is undefined, either. */
9339 if ((dont_downcase_last || first_binding >= nmaps)
9340 && t - 1 == original_uppercase_position)
9341 keybuf[t - 1] = original_uppercase;
9343 /* Occasionally we fabricate events, perhaps by expanding something
9344 according to function-key-map, or by adding a prefix symbol to a
9345 mouse click in the scroll bar or modeline. In this cases, return
9346 the entire generated key sequence, even if we hit an unbound
9347 prefix or a definition before the end. This means that you will
9348 be able to push back the event properly, and also means that
9349 read-key-sequence will always return a logical unit.
9351 Better ideas? */
9352 for (; t < mock_input; t++)
9354 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9355 && NILP (Fzerop (Vecho_keystrokes)))
9356 echo_char (keybuf[t]);
9357 add_command_key (keybuf[t]);
9362 UNGCPRO;
9363 return t;
9366 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9367 doc: /* Read a sequence of keystrokes and return as a string or vector.
9368 The sequence is sufficient to specify a non-prefix command in the
9369 current local and global maps.
9371 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9372 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9373 as a continuation of the previous key.
9375 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9376 convert the last event to lower case. (Normally any upper case event
9377 is converted to lower case if the original event is undefined and the lower
9378 case equivalent is defined.) A non-nil value is appropriate for reading
9379 a key sequence to be defined.
9381 A C-g typed while in this function is treated like any other character,
9382 and `quit-flag' is not set.
9384 If the key sequence starts with a mouse click, then the sequence is read
9385 using the keymaps of the buffer of the window clicked in, not the buffer
9386 of the selected window as normal.
9388 `read-key-sequence' drops unbound button-down events, since you normally
9389 only care about the click or drag events which follow them. If a drag
9390 or multi-click event is unbound, but the corresponding click event would
9391 be bound, `read-key-sequence' turns the event into a click event at the
9392 drag's starting position. This means that you don't have to distinguish
9393 between click and drag, double, or triple events unless you want to.
9395 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9396 lines separating windows, and scroll bars with imaginary keys
9397 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9399 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9400 function will process a switch-frame event if the user switches frames
9401 before typing anything. If the user switches frames in the middle of a
9402 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9403 is nil, then the event will be put off until after the current key sequence.
9405 `read-key-sequence' checks `function-key-map' for function key
9406 sequences, where they wouldn't conflict with ordinary bindings. See
9407 `function-key-map' for more details.
9409 The optional fifth argument COMMAND-LOOP, if non-nil, means
9410 that this key sequence is being read by something that will
9411 read commands one after another. It should be nil if the caller
9412 will read just one key sequence. */)
9413 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9414 command_loop)
9415 Lisp_Object prompt, continue_echo, dont_downcase_last;
9416 Lisp_Object can_return_switch_frame, command_loop;
9418 Lisp_Object keybuf[30];
9419 register int i;
9420 struct gcpro gcpro1;
9421 int count = SPECPDL_INDEX ();
9423 if (!NILP (prompt))
9424 CHECK_STRING (prompt);
9425 QUIT;
9427 specbind (Qinput_method_exit_on_first_char,
9428 (NILP (command_loop) ? Qt : Qnil));
9429 specbind (Qinput_method_use_echo_area,
9430 (NILP (command_loop) ? Qt : Qnil));
9432 bzero (keybuf, sizeof keybuf);
9433 GCPRO1 (keybuf[0]);
9434 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9436 if (NILP (continue_echo))
9438 this_command_key_count = 0;
9439 this_command_key_count_reset = 0;
9440 this_single_command_key_start = 0;
9443 #ifdef HAVE_X_WINDOWS
9444 if (display_hourglass_p)
9445 cancel_hourglass ();
9446 #endif
9448 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9449 prompt, ! NILP (dont_downcase_last),
9450 ! NILP (can_return_switch_frame), 0);
9452 #if 0 /* The following is fine for code reading a key sequence and
9453 then proceeding with a lenghty computation, but it's not good
9454 for code reading keys in a loop, like an input method. */
9455 #ifdef HAVE_X_WINDOWS
9456 if (display_hourglass_p)
9457 start_hourglass ();
9458 #endif
9459 #endif
9461 if (i == -1)
9463 Vquit_flag = Qt;
9464 QUIT;
9466 UNGCPRO;
9467 return unbind_to (count, make_event_array (i, keybuf));
9470 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9471 Sread_key_sequence_vector, 1, 5, 0,
9472 doc: /* Like `read-key-sequence' but always return a vector. */)
9473 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9474 command_loop)
9475 Lisp_Object prompt, continue_echo, dont_downcase_last;
9476 Lisp_Object can_return_switch_frame, command_loop;
9478 Lisp_Object keybuf[30];
9479 register int i;
9480 struct gcpro gcpro1;
9481 int count = SPECPDL_INDEX ();
9483 if (!NILP (prompt))
9484 CHECK_STRING (prompt);
9485 QUIT;
9487 specbind (Qinput_method_exit_on_first_char,
9488 (NILP (command_loop) ? Qt : Qnil));
9489 specbind (Qinput_method_use_echo_area,
9490 (NILP (command_loop) ? Qt : Qnil));
9492 bzero (keybuf, sizeof keybuf);
9493 GCPRO1 (keybuf[0]);
9494 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9496 if (NILP (continue_echo))
9498 this_command_key_count = 0;
9499 this_command_key_count_reset = 0;
9500 this_single_command_key_start = 0;
9503 #ifdef HAVE_X_WINDOWS
9504 if (display_hourglass_p)
9505 cancel_hourglass ();
9506 #endif
9508 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9509 prompt, ! NILP (dont_downcase_last),
9510 ! NILP (can_return_switch_frame), 0);
9512 #ifdef HAVE_X_WINDOWS
9513 if (display_hourglass_p)
9514 start_hourglass ();
9515 #endif
9517 if (i == -1)
9519 Vquit_flag = Qt;
9520 QUIT;
9522 UNGCPRO;
9523 return unbind_to (count, Fvector (i, keybuf));
9526 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9527 doc: /* Execute CMD as an editor command.
9528 CMD must be a symbol that satisfies the `commandp' predicate.
9529 Optional second arg RECORD-FLAG non-nil
9530 means unconditionally put this command in `command-history'.
9531 Otherwise, that is done only if an arg is read using the minibuffer.
9532 The argument KEYS specifies the value to use instead of (this-command-keys)
9533 when reading the arguments; if it is nil, (this-command-keys) is used.
9534 The argument SPECIAL, if non-nil, means that this command is executing
9535 a special event, so ignore the prefix argument and don't clear it. */)
9536 (cmd, record_flag, keys, special)
9537 Lisp_Object cmd, record_flag, keys, special;
9539 register Lisp_Object final;
9540 register Lisp_Object tem;
9541 Lisp_Object prefixarg;
9542 struct backtrace backtrace;
9543 extern int debug_on_next_call;
9545 debug_on_next_call = 0;
9547 if (NILP (special))
9549 prefixarg = current_kboard->Vprefix_arg;
9550 Vcurrent_prefix_arg = prefixarg;
9551 current_kboard->Vprefix_arg = Qnil;
9553 else
9554 prefixarg = Qnil;
9556 if (SYMBOLP (cmd))
9558 tem = Fget (cmd, Qdisabled);
9559 if (!NILP (tem) && !NILP (Vrun_hooks))
9561 tem = Fsymbol_value (Qdisabled_command_hook);
9562 if (!NILP (tem))
9563 return call1 (Vrun_hooks, Qdisabled_command_hook);
9567 while (1)
9569 final = Findirect_function (cmd);
9571 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9573 struct gcpro gcpro1, gcpro2;
9575 GCPRO2 (cmd, prefixarg);
9576 do_autoload (final, cmd);
9577 UNGCPRO;
9579 else
9580 break;
9583 if (STRINGP (final) || VECTORP (final))
9585 /* If requested, place the macro in the command history. For
9586 other sorts of commands, call-interactively takes care of
9587 this. */
9588 if (!NILP (record_flag))
9590 Vcommand_history
9591 = Fcons (Fcons (Qexecute_kbd_macro,
9592 Fcons (final, Fcons (prefixarg, Qnil))),
9593 Vcommand_history);
9595 /* Don't keep command history around forever. */
9596 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9598 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9599 if (CONSP (tem))
9600 XSETCDR (tem, Qnil);
9604 return Fexecute_kbd_macro (final, prefixarg, Qnil);
9607 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9609 backtrace.next = backtrace_list;
9610 backtrace_list = &backtrace;
9611 backtrace.function = &Qcall_interactively;
9612 backtrace.args = &cmd;
9613 backtrace.nargs = 1;
9614 backtrace.evalargs = 0;
9616 tem = Fcall_interactively (cmd, record_flag, keys);
9618 backtrace_list = backtrace.next;
9619 return tem;
9621 return Qnil;
9626 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9627 1, 1, "P",
9628 doc: /* Read function name, then read its arguments and call it. */)
9629 (prefixarg)
9630 Lisp_Object prefixarg;
9632 Lisp_Object function;
9633 char buf[40];
9634 int saved_last_point_position;
9635 Lisp_Object saved_keys, saved_last_point_position_buffer;
9636 Lisp_Object bindings, value;
9637 struct gcpro gcpro1, gcpro2, gcpro3;
9639 saved_keys = Fvector (this_command_key_count,
9640 XVECTOR (this_command_keys)->contents);
9641 saved_last_point_position_buffer = last_point_position_buffer;
9642 saved_last_point_position = last_point_position;
9643 buf[0] = 0;
9644 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
9646 if (EQ (prefixarg, Qminus))
9647 strcpy (buf, "- ");
9648 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9649 strcpy (buf, "C-u ");
9650 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9652 if (sizeof (int) == sizeof (EMACS_INT))
9653 sprintf (buf, "%d ", XINT (XCAR (prefixarg)));
9654 else if (sizeof (long) == sizeof (EMACS_INT))
9655 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9656 else
9657 abort ();
9659 else if (INTEGERP (prefixarg))
9661 if (sizeof (int) == sizeof (EMACS_INT))
9662 sprintf (buf, "%d ", XINT (prefixarg));
9663 else if (sizeof (long) == sizeof (EMACS_INT))
9664 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9665 else
9666 abort ();
9669 /* This isn't strictly correct if execute-extended-command
9670 is bound to anything else. Perhaps it should use
9671 this_command_keys? */
9672 strcat (buf, "M-x ");
9674 /* Prompt with buf, and then read a string, completing from and
9675 restricting to the set of all defined commands. Don't provide
9676 any initial input. Save the command read on the extended-command
9677 history list. */
9678 function = Fcompleting_read (build_string (buf),
9679 Vobarray, Qcommandp,
9680 Qt, Qnil, Qextended_command_history, Qnil,
9681 Qnil);
9683 if (STRINGP (function) && SCHARS (function) == 0)
9684 error ("No command name given");
9686 /* Set this_command_keys to the concatenation of saved_keys and
9687 function, followed by a RET. */
9689 Lisp_Object *keys;
9690 int i;
9692 this_command_key_count = 0;
9693 this_command_key_count_reset = 0;
9694 this_single_command_key_start = 0;
9696 keys = XVECTOR (saved_keys)->contents;
9697 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9698 add_command_key (keys[i]);
9700 for (i = 0; i < SCHARS (function); i++)
9701 add_command_key (Faref (function, make_number (i)));
9703 add_command_key (make_number ('\015'));
9706 last_point_position = saved_last_point_position;
9707 last_point_position_buffer = saved_last_point_position_buffer;
9709 UNGCPRO;
9711 function = Fintern (function, Qnil);
9712 current_kboard->Vprefix_arg = prefixarg;
9713 Vthis_command = function;
9714 real_this_command = function;
9716 /* If enabled, show which key runs this command. */
9717 if (!NILP (Vsuggest_key_bindings)
9718 && NILP (Vexecuting_macro)
9719 && SYMBOLP (function))
9720 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9721 Qt, Qnil, Qnil);
9722 else
9723 bindings = Qnil;
9725 value = Qnil;
9726 GCPRO2 (bindings, value);
9727 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9729 /* If the command has a key binding, print it now. */
9730 if (!NILP (bindings)
9731 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9732 Qmouse_movement)))
9734 /* But first wait, and skip the message if there is input. */
9735 int delay_time;
9736 if (!NILP (echo_area_buffer[0]))
9737 /* This command displayed something in the echo area;
9738 so wait a few seconds, then display our suggestion message. */
9739 delay_time = (NUMBERP (Vsuggest_key_bindings)
9740 ? XINT (Vsuggest_key_bindings) : 2);
9741 else
9742 /* This command left the echo area empty,
9743 so display our message immediately. */
9744 delay_time = 0;
9746 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
9747 && ! CONSP (Vunread_command_events))
9749 Lisp_Object binding;
9750 char *newmessage;
9751 int message_p = push_message ();
9752 int count = SPECPDL_INDEX ();
9754 record_unwind_protect (pop_message_unwind, Qnil);
9755 binding = Fkey_description (bindings);
9757 newmessage
9758 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
9759 + SBYTES (binding)
9760 + 100);
9761 sprintf (newmessage, "You can run the command `%s' with %s",
9762 SDATA (SYMBOL_NAME (function)),
9763 SDATA (binding));
9764 message2_nolog (newmessage,
9765 strlen (newmessage),
9766 STRING_MULTIBYTE (binding));
9767 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9768 ? Vsuggest_key_bindings : make_number (2)),
9769 Qnil, Qnil))
9770 && message_p)
9771 restore_message ();
9773 unbind_to (count, Qnil);
9777 RETURN_UNGCPRO (value);
9781 /* Return nonzero if input events are pending. */
9784 detect_input_pending ()
9786 if (!input_pending)
9787 get_input_pending (&input_pending, 0);
9789 return input_pending;
9792 /* Return nonzero if input events are pending, and run any pending timers. */
9795 detect_input_pending_run_timers (do_display)
9796 int do_display;
9798 int old_timers_run = timers_run;
9800 if (!input_pending)
9801 get_input_pending (&input_pending, 1);
9803 if (old_timers_run != timers_run && do_display)
9805 redisplay_preserve_echo_area (8);
9806 /* The following fixes a bug when using lazy-lock with
9807 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9808 from an idle timer function. The symptom of the bug is that
9809 the cursor sometimes doesn't become visible until the next X
9810 event is processed. --gerd. */
9811 if (rif)
9812 rif->flush_display (NULL);
9815 return input_pending;
9818 /* This is called in some cases before a possible quit.
9819 It cases the next call to detect_input_pending to recompute input_pending.
9820 So calling this function unnecessarily can't do any harm. */
9822 void
9823 clear_input_pending ()
9825 input_pending = 0;
9828 /* Return nonzero if there are pending requeued events.
9829 This isn't used yet. The hope is to make wait_reading_process_input
9830 call it, and return if it runs Lisp code that unreads something.
9831 The problem is, kbd_buffer_get_event needs to be fixed to know what
9832 to do in that case. It isn't trivial. */
9835 requeued_events_pending_p ()
9837 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9841 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9842 doc: /* Return t if command input is currently available with no wait.
9843 Actually, the value is nil only if we can be sure that no input is available;
9844 if there is a doubt, the value is t. */)
9847 if (!NILP (Vunread_command_events) || unread_command_char != -1)
9848 return (Qt);
9850 get_filtered_input_pending (&input_pending, 1, 1);
9851 return input_pending > 0 ? Qt : Qnil;
9854 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
9855 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
9858 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
9859 Lisp_Object val;
9861 if (total_keys < NUM_RECENT_KEYS)
9862 return Fvector (total_keys, keys);
9863 else
9865 val = Fvector (NUM_RECENT_KEYS, keys);
9866 bcopy (keys + recent_keys_index,
9867 XVECTOR (val)->contents,
9868 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
9869 bcopy (keys,
9870 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
9871 recent_keys_index * sizeof (Lisp_Object));
9872 return val;
9876 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
9877 doc: /* Return the key sequence that invoked this command.
9878 However, if the command has called `read-key-sequence', it returns
9879 the last key sequence that has been read.
9880 The value is a string or a vector. */)
9883 return make_event_array (this_command_key_count,
9884 XVECTOR (this_command_keys)->contents);
9887 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
9888 doc: /* Return the key sequence that invoked this command, as a vector.
9889 However, if the command has called `read-key-sequence', it returns
9890 the last key sequence that has been read. */)
9893 return Fvector (this_command_key_count,
9894 XVECTOR (this_command_keys)->contents);
9897 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
9898 Sthis_single_command_keys, 0, 0, 0,
9899 doc: /* Return the key sequence that invoked this command.
9900 More generally, it returns the last key sequence read, either by
9901 the command loop or by `read-key-sequence'.
9902 Unlike `this-command-keys', this function's value
9903 does not include prefix arguments.
9904 The value is always a vector. */)
9907 return Fvector (this_command_key_count
9908 - this_single_command_key_start,
9909 (XVECTOR (this_command_keys)->contents
9910 + this_single_command_key_start));
9913 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
9914 Sthis_single_command_raw_keys, 0, 0, 0,
9915 doc: /* Return the raw events that were read for this command.
9916 More generally, it returns the last key sequence read, either by
9917 the command loop or by `read-key-sequence'.
9918 Unlike `this-single-command-keys', this function's value
9919 shows the events before all translations (except for input methods).
9920 The value is always a vector. */)
9923 return Fvector (raw_keybuf_count,
9924 (XVECTOR (raw_keybuf)->contents));
9927 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
9928 Sreset_this_command_lengths, 0, 0, 0,
9929 doc: /* Make the unread events replace the last command and echo.
9930 Used in `universal-argument-other-key'.
9932 `universal-argument-other-key' rereads the event just typed.
9933 It then gets translated through `function-key-map'.
9934 The translated event has to replace the real events,
9935 both in the value of (this-command-keys) and in echoing.
9936 To achieve this, `universal-argument-other-key' calls
9937 `reset-this-command-lengths', which discards the record of reading
9938 these events the first time. */)
9941 this_command_key_count = before_command_key_count;
9942 if (this_command_key_count < this_single_command_key_start)
9943 this_single_command_key_start = this_command_key_count;
9945 echo_truncate (before_command_echo_length);
9947 /* Cause whatever we put into unread-command-events
9948 to echo as if it were being freshly read from the keyboard. */
9949 this_command_key_count_reset = 1;
9951 return Qnil;
9954 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
9955 Sclear_this_command_keys, 0, 1, 0,
9956 doc: /* Clear out the vector that `this-command-keys' returns.
9957 Also clear the record of the last 100 events, unless optional arg
9958 KEEP-RECORD is non-nil. */)
9959 (keep_record)
9960 Lisp_Object keep_record;
9962 int i;
9964 this_command_key_count = 0;
9965 this_command_key_count_reset = 0;
9967 if (NILP (keep_record))
9969 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
9970 XVECTOR (recent_keys)->contents[i] = Qnil;
9971 total_keys = 0;
9972 recent_keys_index = 0;
9974 return Qnil;
9977 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
9978 doc: /* Return the current depth in recursive edits. */)
9981 Lisp_Object temp;
9982 XSETFASTINT (temp, command_loop_level + minibuf_level);
9983 return temp;
9986 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
9987 "FOpen dribble file: ",
9988 doc: /* Start writing all keyboard characters to a dribble file called FILE.
9989 If FILE is nil, close any open dribble file. */)
9990 (file)
9991 Lisp_Object file;
9993 if (dribble)
9995 fclose (dribble);
9996 dribble = 0;
9998 if (!NILP (file))
10000 file = Fexpand_file_name (file, Qnil);
10001 dribble = fopen (SDATA (file), "w");
10002 if (dribble == 0)
10003 report_file_error ("Opening dribble", Fcons (file, Qnil));
10005 return Qnil;
10008 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10009 doc: /* Discard the contents of the terminal input buffer.
10010 Also end any kbd macro being defined. */)
10013 if (!NILP (current_kboard->defining_kbd_macro))
10015 /* Discard the last command from the macro. */
10016 Fcancel_kbd_macro_events ();
10017 end_kbd_macro ();
10020 update_mode_lines++;
10022 Vunread_command_events = Qnil;
10023 unread_command_char = -1;
10025 discard_tty_input ();
10027 kbd_fetch_ptr = kbd_store_ptr;
10028 Ffillarray (kbd_buffer_gcpro, Qnil);
10029 input_pending = 0;
10031 return Qnil;
10034 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10035 doc: /* Stop Emacs and return to superior process. You can resume later.
10036 If `cannot-suspend' is non-nil, or if the system doesn't support job
10037 control, run a subshell instead.
10039 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10040 to be read as terminal input by Emacs's parent, after suspension.
10042 Before suspending, run the normal hook `suspend-hook'.
10043 After resumption run the normal hook `suspend-resume-hook'.
10045 Some operating systems cannot stop the Emacs process and resume it later.
10046 On such systems, Emacs starts a subshell instead of suspending. */)
10047 (stuffstring)
10048 Lisp_Object stuffstring;
10050 int count = SPECPDL_INDEX ();
10051 int old_height, old_width;
10052 int width, height;
10053 struct gcpro gcpro1;
10055 if (!NILP (stuffstring))
10056 CHECK_STRING (stuffstring);
10058 /* Run the functions in suspend-hook. */
10059 if (!NILP (Vrun_hooks))
10060 call1 (Vrun_hooks, intern ("suspend-hook"));
10062 GCPRO1 (stuffstring);
10063 get_frame_size (&old_width, &old_height);
10064 reset_sys_modes ();
10065 /* sys_suspend can get an error if it tries to fork a subshell
10066 and the system resources aren't available for that. */
10067 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
10068 Qnil);
10069 stuff_buffered_input (stuffstring);
10070 if (cannot_suspend)
10071 sys_subshell ();
10072 else
10073 sys_suspend ();
10074 unbind_to (count, Qnil);
10076 /* Check if terminal/window size has changed.
10077 Note that this is not useful when we are running directly
10078 with a window system; but suspend should be disabled in that case. */
10079 get_frame_size (&width, &height);
10080 if (width != old_width || height != old_height)
10081 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10083 /* Run suspend-resume-hook. */
10084 if (!NILP (Vrun_hooks))
10085 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10087 UNGCPRO;
10088 return Qnil;
10091 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10092 Then in any case stuff anything Emacs has read ahead and not used. */
10094 void
10095 stuff_buffered_input (stuffstring)
10096 Lisp_Object stuffstring;
10098 /* stuff_char works only in BSD, versions 4.2 and up. */
10099 #ifdef BSD_SYSTEM
10100 #ifndef BSD4_1
10101 register unsigned char *p;
10103 if (STRINGP (stuffstring))
10105 register int count;
10107 p = SDATA (stuffstring);
10108 count = SBYTES (stuffstring);
10109 while (count-- > 0)
10110 stuff_char (*p++);
10111 stuff_char ('\n');
10114 /* Anything we have read ahead, put back for the shell to read. */
10115 /* ?? What should this do when we have multiple keyboards??
10116 Should we ignore anything that was typed in at the "wrong" kboard? */
10117 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10119 int idx;
10121 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10122 kbd_fetch_ptr = kbd_buffer;
10123 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10124 stuff_char (kbd_fetch_ptr->code);
10126 kbd_fetch_ptr->kind = NO_EVENT;
10127 idx = 2 * (kbd_fetch_ptr - kbd_buffer);
10128 ASET (kbd_buffer_gcpro, idx, Qnil);
10129 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
10132 input_pending = 0;
10133 #endif
10134 #endif /* BSD_SYSTEM and not BSD4_1 */
10137 void
10138 set_waiting_for_input (time_to_clear)
10139 EMACS_TIME *time_to_clear;
10141 input_available_clear_time = time_to_clear;
10143 /* Tell interrupt_signal to throw back to read_char, */
10144 waiting_for_input = 1;
10146 /* If interrupt_signal was called before and buffered a C-g,
10147 make it run again now, to avoid timing error. */
10148 if (!NILP (Vquit_flag))
10149 quit_throw_to_read_char ();
10152 void
10153 clear_waiting_for_input ()
10155 /* Tell interrupt_signal not to throw back to read_char, */
10156 waiting_for_input = 0;
10157 input_available_clear_time = 0;
10160 /* This routine is called at interrupt level in response to C-g.
10162 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10163 is called from kbd_buffer_store_event, in handling SIGIO or
10164 SIGTINT.
10166 If `waiting_for_input' is non zero, then unless `echoing' is
10167 nonzero, immediately throw back to read_char.
10169 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10170 eval to throw, when it gets a chance. If quit-flag is already
10171 non-nil, it stops the job right away. */
10173 static SIGTYPE
10174 interrupt_signal (signalnum) /* If we don't have an argument, */
10175 int signalnum; /* some compilers complain in signal calls. */
10177 char c;
10178 /* Must preserve main program's value of errno. */
10179 int old_errno = errno;
10180 struct frame *sf = SELECTED_FRAME ();
10182 #if defined (USG) && !defined (POSIX_SIGNALS)
10183 if (!read_socket_hook && NILP (Vwindow_system))
10185 /* USG systems forget handlers when they are used;
10186 must reestablish each time */
10187 signal (SIGINT, interrupt_signal);
10188 signal (SIGQUIT, interrupt_signal);
10190 #endif /* USG */
10192 cancel_echoing ();
10194 if (!NILP (Vquit_flag)
10195 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
10197 /* If SIGINT isn't blocked, don't let us be interrupted by
10198 another SIGINT, it might be harmful due to non-reentrancy
10199 in I/O functions. */
10200 sigblock (sigmask (SIGINT));
10202 fflush (stdout);
10203 reset_sys_modes ();
10205 #ifdef SIGTSTP /* Support possible in later USG versions */
10207 * On systems which can suspend the current process and return to the original
10208 * shell, this command causes the user to end up back at the shell.
10209 * The "Auto-save" and "Abort" questions are not asked until
10210 * the user elects to return to emacs, at which point he can save the current
10211 * job and either dump core or continue.
10213 sys_suspend ();
10214 #else
10215 #ifdef VMS
10216 if (sys_suspend () == -1)
10218 printf ("Not running as a subprocess;\n");
10219 printf ("you can continue or abort.\n");
10221 #else /* not VMS */
10222 /* Perhaps should really fork an inferior shell?
10223 But that would not provide any way to get back
10224 to the original shell, ever. */
10225 printf ("No support for stopping a process on this operating system;\n");
10226 printf ("you can continue or abort.\n");
10227 #endif /* not VMS */
10228 #endif /* not SIGTSTP */
10229 #ifdef MSDOS
10230 /* We must remain inside the screen area when the internal terminal
10231 is used. Note that [Enter] is not echoed by dos. */
10232 cursor_to (0, 0);
10233 #endif
10234 /* It doesn't work to autosave while GC is in progress;
10235 the code used for auto-saving doesn't cope with the mark bit. */
10236 if (!gc_in_progress)
10238 printf ("Auto-save? (y or n) ");
10239 fflush (stdout);
10240 if (((c = getchar ()) & ~040) == 'Y')
10242 Fdo_auto_save (Qt, Qnil);
10243 #ifdef MSDOS
10244 printf ("\r\nAuto-save done");
10245 #else /* not MSDOS */
10246 printf ("Auto-save done\n");
10247 #endif /* not MSDOS */
10249 while (c != '\n') c = getchar ();
10251 else
10253 /* During GC, it must be safe to reenable quitting again. */
10254 Vinhibit_quit = Qnil;
10255 #ifdef MSDOS
10256 printf ("\r\n");
10257 #endif /* not MSDOS */
10258 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10259 printf ("but will instead do a real quit after garbage collection ends\r\n");
10260 fflush (stdout);
10263 #ifdef MSDOS
10264 printf ("\r\nAbort? (y or n) ");
10265 #else /* not MSDOS */
10266 #ifdef VMS
10267 printf ("Abort (and enter debugger)? (y or n) ");
10268 #else /* not VMS */
10269 printf ("Abort (and dump core)? (y or n) ");
10270 #endif /* not VMS */
10271 #endif /* not MSDOS */
10272 fflush (stdout);
10273 if (((c = getchar ()) & ~040) == 'Y')
10274 abort ();
10275 while (c != '\n') c = getchar ();
10276 #ifdef MSDOS
10277 printf ("\r\nContinuing...\r\n");
10278 #else /* not MSDOS */
10279 printf ("Continuing...\n");
10280 #endif /* not MSDOS */
10281 fflush (stdout);
10282 init_sys_modes ();
10283 sigfree ();
10285 else
10287 /* If executing a function that wants to be interrupted out of
10288 and the user has not deferred quitting by binding `inhibit-quit'
10289 then quit right away. */
10290 if (immediate_quit && NILP (Vinhibit_quit))
10292 struct gl_state_s saved;
10293 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10295 immediate_quit = 0;
10296 sigfree ();
10297 saved = gl_state;
10298 GCPRO4 (saved.object, saved.global_code,
10299 saved.current_syntax_table, saved.old_prop);
10300 Fsignal (Qquit, Qnil);
10301 gl_state = saved;
10302 UNGCPRO;
10304 else
10305 /* Else request quit when it's safe */
10306 Vquit_flag = Qt;
10309 if (waiting_for_input && !echoing)
10310 quit_throw_to_read_char ();
10312 errno = old_errno;
10315 /* Handle a C-g by making read_char return C-g. */
10317 void
10318 quit_throw_to_read_char ()
10320 sigfree ();
10321 /* Prevent another signal from doing this before we finish. */
10322 clear_waiting_for_input ();
10323 input_pending = 0;
10325 Vunread_command_events = Qnil;
10326 unread_command_char = -1;
10328 #if 0 /* Currently, sit_for is called from read_char without turning
10329 off polling. And that can call set_waiting_for_input.
10330 It seems to be harmless. */
10331 #ifdef POLL_FOR_INPUT
10332 /* May be > 1 if in recursive minibuffer. */
10333 if (poll_suppress_count == 0)
10334 abort ();
10335 #endif
10336 #endif
10337 if (FRAMEP (internal_last_event_frame)
10338 && !EQ (internal_last_event_frame, selected_frame))
10339 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10340 0, 0);
10342 _longjmp (getcjmp, 1);
10345 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10346 doc: /* Set mode of reading keyboard input.
10347 First arg INTERRUPT non-nil means use input interrupts;
10348 nil means use CBREAK mode.
10349 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10350 (no effect except in CBREAK mode).
10351 Third arg META t means accept 8-bit input (for a Meta key).
10352 META nil means ignore the top bit, on the assumption it is parity.
10353 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10354 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10355 See also `current-input-mode'. */)
10356 (interrupt, flow, meta, quit)
10357 Lisp_Object interrupt, flow, meta, quit;
10359 if (!NILP (quit)
10360 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10361 error ("set-input-mode: QUIT must be an ASCII character");
10363 #ifdef POLL_FOR_INPUT
10364 stop_polling ();
10365 #endif
10367 #ifndef DOS_NT
10368 /* this causes startup screen to be restored and messes with the mouse */
10369 reset_sys_modes ();
10370 #endif
10372 #ifdef SIGIO
10373 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10374 if (read_socket_hook)
10376 /* When using X, don't give the user a real choice,
10377 because we haven't implemented the mechanisms to support it. */
10378 #ifdef NO_SOCK_SIGIO
10379 interrupt_input = 0;
10380 #else /* not NO_SOCK_SIGIO */
10381 interrupt_input = 1;
10382 #endif /* NO_SOCK_SIGIO */
10384 else
10385 interrupt_input = !NILP (interrupt);
10386 #else /* not SIGIO */
10387 interrupt_input = 0;
10388 #endif /* not SIGIO */
10390 /* Our VMS input only works by interrupts, as of now. */
10391 #ifdef VMS
10392 interrupt_input = 1;
10393 #endif
10395 flow_control = !NILP (flow);
10396 if (NILP (meta))
10397 meta_key = 0;
10398 else if (EQ (meta, Qt))
10399 meta_key = 1;
10400 else
10401 meta_key = 2;
10402 if (!NILP (quit))
10403 /* Don't let this value be out of range. */
10404 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10406 #ifndef DOS_NT
10407 init_sys_modes ();
10408 #endif
10410 #ifdef POLL_FOR_INPUT
10411 poll_suppress_count = 1;
10412 start_polling ();
10413 #endif
10414 return Qnil;
10417 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10418 doc: /* Return information about the way Emacs currently reads keyboard input.
10419 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10420 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10421 nil, Emacs is using CBREAK mode.
10422 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10423 terminal; this does not apply if Emacs uses interrupt-driven input.
10424 META is t if accepting 8-bit input with 8th bit as Meta flag.
10425 META nil means ignoring the top bit, on the assumption it is parity.
10426 META is neither t nor nil if accepting 8-bit input and using
10427 all 8 bits as the character code.
10428 QUIT is the character Emacs currently uses to quit.
10429 The elements of this list correspond to the arguments of
10430 `set-input-mode'. */)
10433 Lisp_Object val[4];
10435 val[0] = interrupt_input ? Qt : Qnil;
10436 val[1] = flow_control ? Qt : Qnil;
10437 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10438 XSETFASTINT (val[3], quit_char);
10440 return Flist (sizeof (val) / sizeof (val[0]), val);
10445 * Set up a new kboard object with reasonable initial values.
10447 void
10448 init_kboard (kb)
10449 KBOARD *kb;
10451 kb->Voverriding_terminal_local_map = Qnil;
10452 kb->Vlast_command = Qnil;
10453 kb->Vreal_last_command = Qnil;
10454 kb->Vprefix_arg = Qnil;
10455 kb->Vlast_prefix_arg = Qnil;
10456 kb->kbd_queue = Qnil;
10457 kb->kbd_queue_has_data = 0;
10458 kb->immediate_echo = 0;
10459 kb->echo_string = Qnil;
10460 kb->echo_after_prompt = -1;
10461 kb->kbd_macro_buffer = 0;
10462 kb->kbd_macro_bufsize = 0;
10463 kb->defining_kbd_macro = Qnil;
10464 kb->Vlast_kbd_macro = Qnil;
10465 kb->reference_count = 0;
10466 kb->Vsystem_key_alist = Qnil;
10467 kb->system_key_syms = Qnil;
10468 kb->Vdefault_minibuffer_frame = Qnil;
10472 * Destroy the contents of a kboard object, but not the object itself.
10473 * We use this just before deleting it, or if we're going to initialize
10474 * it a second time.
10476 static void
10477 wipe_kboard (kb)
10478 KBOARD *kb;
10480 if (kb->kbd_macro_buffer)
10481 xfree (kb->kbd_macro_buffer);
10484 #ifdef MULTI_KBOARD
10486 /* Free KB and memory referenced from it. */
10488 void
10489 delete_kboard (kb)
10490 KBOARD *kb;
10492 KBOARD **kbp;
10494 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10495 if (*kbp == NULL)
10496 abort ();
10497 *kbp = kb->next_kboard;
10499 /* Prevent a dangling reference to KB. */
10500 if (kb == current_kboard
10501 && FRAMEP (selected_frame)
10502 && FRAME_LIVE_P (XFRAME (selected_frame)))
10504 current_kboard = XFRAME (selected_frame)->kboard;
10505 if (current_kboard == kb)
10506 abort ();
10509 wipe_kboard (kb);
10510 xfree (kb);
10513 #endif /* MULTI_KBOARD */
10515 void
10516 init_keyboard ()
10518 /* This is correct before outermost invocation of the editor loop */
10519 command_loop_level = -1;
10520 immediate_quit = 0;
10521 quit_char = Ctl ('g');
10522 Vunread_command_events = Qnil;
10523 unread_command_char = -1;
10524 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10525 total_keys = 0;
10526 recent_keys_index = 0;
10527 kbd_fetch_ptr = kbd_buffer;
10528 kbd_store_ptr = kbd_buffer;
10529 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10530 #ifdef HAVE_MOUSE
10531 do_mouse_tracking = Qnil;
10532 #endif
10533 input_pending = 0;
10535 /* This means that command_loop_1 won't try to select anything the first
10536 time through. */
10537 internal_last_event_frame = Qnil;
10538 Vlast_event_frame = internal_last_event_frame;
10540 #ifdef MULTI_KBOARD
10541 current_kboard = initial_kboard;
10542 #endif
10543 wipe_kboard (current_kboard);
10544 init_kboard (current_kboard);
10546 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
10548 signal (SIGINT, interrupt_signal);
10549 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10550 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10551 SIGQUIT and we can't tell which one it will give us. */
10552 signal (SIGQUIT, interrupt_signal);
10553 #endif /* HAVE_TERMIO */
10555 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10556 #ifdef SIGIO
10557 if (!noninteractive)
10558 signal (SIGIO, input_available_signal);
10559 #endif /* SIGIO */
10561 /* Use interrupt input by default, if it works and noninterrupt input
10562 has deficiencies. */
10564 #ifdef INTERRUPT_INPUT
10565 interrupt_input = 1;
10566 #else
10567 interrupt_input = 0;
10568 #endif
10570 /* Our VMS input only works by interrupts, as of now. */
10571 #ifdef VMS
10572 interrupt_input = 1;
10573 #endif
10575 sigfree ();
10576 dribble = 0;
10578 if (keyboard_init_hook)
10579 (*keyboard_init_hook) ();
10581 #ifdef POLL_FOR_INPUT
10582 poll_suppress_count = 1;
10583 start_polling ();
10584 #endif
10586 #ifdef MAC_OSX
10587 /* At least provide an escape route since C-g doesn't work. */
10588 signal (SIGINT, interrupt_signal);
10589 #endif
10592 /* This type's only use is in syms_of_keyboard, to initialize the
10593 event header symbols and put properties on them. */
10594 struct event_head {
10595 Lisp_Object *var;
10596 char *name;
10597 Lisp_Object *kind;
10600 struct event_head head_table[] = {
10601 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10602 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10603 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10604 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10605 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10606 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
10607 /* `select-window' should be handled just like `switch-frame'
10608 in read_key_sequence. */
10609 {&Qselect_window, "select-window", &Qswitch_frame}
10612 void
10613 syms_of_keyboard ()
10615 Vpre_help_message = Qnil;
10616 staticpro (&Vpre_help_message);
10618 Vlispy_mouse_stem = build_string ("mouse");
10619 staticpro (&Vlispy_mouse_stem);
10621 /* Tool-bars. */
10622 QCimage = intern (":image");
10623 staticpro (&QCimage);
10625 staticpro (&Qhelp_echo);
10626 Qhelp_echo = intern ("help-echo");
10628 staticpro (&item_properties);
10629 item_properties = Qnil;
10631 staticpro (&tool_bar_item_properties);
10632 tool_bar_item_properties = Qnil;
10633 staticpro (&tool_bar_items_vector);
10634 tool_bar_items_vector = Qnil;
10636 staticpro (&real_this_command);
10637 real_this_command = Qnil;
10639 Qtimer_event_handler = intern ("timer-event-handler");
10640 staticpro (&Qtimer_event_handler);
10642 Qdisabled_command_hook = intern ("disabled-command-hook");
10643 staticpro (&Qdisabled_command_hook);
10645 Qself_insert_command = intern ("self-insert-command");
10646 staticpro (&Qself_insert_command);
10648 Qforward_char = intern ("forward-char");
10649 staticpro (&Qforward_char);
10651 Qbackward_char = intern ("backward-char");
10652 staticpro (&Qbackward_char);
10654 Qdisabled = intern ("disabled");
10655 staticpro (&Qdisabled);
10657 Qundefined = intern ("undefined");
10658 staticpro (&Qundefined);
10660 Qpre_command_hook = intern ("pre-command-hook");
10661 staticpro (&Qpre_command_hook);
10663 Qpost_command_hook = intern ("post-command-hook");
10664 staticpro (&Qpost_command_hook);
10666 Qpost_command_idle_hook = intern ("post-command-idle-hook");
10667 staticpro (&Qpost_command_idle_hook);
10669 Qdeferred_action_function = intern ("deferred-action-function");
10670 staticpro (&Qdeferred_action_function);
10672 Qcommand_hook_internal = intern ("command-hook-internal");
10673 staticpro (&Qcommand_hook_internal);
10675 Qfunction_key = intern ("function-key");
10676 staticpro (&Qfunction_key);
10677 Qmouse_click = intern ("mouse-click");
10678 staticpro (&Qmouse_click);
10679 #if defined(WINDOWSNT) || defined(MAC_OSX)
10680 Qmouse_wheel = intern ("mouse-wheel");
10681 staticpro (&Qmouse_wheel);
10682 #endif
10683 #ifdef WINDOWSNT
10684 Qlanguage_change = intern ("language-change");
10685 staticpro (&Qlanguage_change);
10686 #endif
10687 Qdrag_n_drop = intern ("drag-n-drop");
10688 staticpro (&Qdrag_n_drop);
10690 Qsave_session = intern ("save-session");
10691 staticpro(&Qsave_session);
10693 Qusr1_signal = intern ("usr1-signal");
10694 staticpro (&Qusr1_signal);
10695 Qusr2_signal = intern ("usr2-signal");
10696 staticpro (&Qusr2_signal);
10698 Qmenu_enable = intern ("menu-enable");
10699 staticpro (&Qmenu_enable);
10700 Qmenu_alias = intern ("menu-alias");
10701 staticpro (&Qmenu_alias);
10702 QCenable = intern (":enable");
10703 staticpro (&QCenable);
10704 QCvisible = intern (":visible");
10705 staticpro (&QCvisible);
10706 QChelp = intern (":help");
10707 staticpro (&QChelp);
10708 QCfilter = intern (":filter");
10709 staticpro (&QCfilter);
10710 QCbutton = intern (":button");
10711 staticpro (&QCbutton);
10712 QCkeys = intern (":keys");
10713 staticpro (&QCkeys);
10714 QCkey_sequence = intern (":key-sequence");
10715 staticpro (&QCkey_sequence);
10716 QCtoggle = intern (":toggle");
10717 staticpro (&QCtoggle);
10718 QCradio = intern (":radio");
10719 staticpro (&QCradio);
10721 Qmode_line = intern ("mode-line");
10722 staticpro (&Qmode_line);
10723 Qvertical_line = intern ("vertical-line");
10724 staticpro (&Qvertical_line);
10725 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10726 staticpro (&Qvertical_scroll_bar);
10727 Qmenu_bar = intern ("menu-bar");
10728 staticpro (&Qmenu_bar);
10730 Qabove_handle = intern ("above-handle");
10731 staticpro (&Qabove_handle);
10732 Qhandle = intern ("handle");
10733 staticpro (&Qhandle);
10734 Qbelow_handle = intern ("below-handle");
10735 staticpro (&Qbelow_handle);
10736 Qup = intern ("up");
10737 staticpro (&Qup);
10738 Qdown = intern ("down");
10739 staticpro (&Qdown);
10740 Qtop = intern ("top");
10741 staticpro (&Qtop);
10742 Qbottom = intern ("bottom");
10743 staticpro (&Qbottom);
10744 Qend_scroll = intern ("end-scroll");
10745 staticpro (&Qend_scroll);
10746 Qratio = intern ("ratio");
10747 staticpro (&Qratio);
10749 Qevent_kind = intern ("event-kind");
10750 staticpro (&Qevent_kind);
10751 Qevent_symbol_elements = intern ("event-symbol-elements");
10752 staticpro (&Qevent_symbol_elements);
10753 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
10754 staticpro (&Qevent_symbol_element_mask);
10755 Qmodifier_cache = intern ("modifier-cache");
10756 staticpro (&Qmodifier_cache);
10758 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
10759 staticpro (&Qrecompute_lucid_menubar);
10760 Qactivate_menubar_hook = intern ("activate-menubar-hook");
10761 staticpro (&Qactivate_menubar_hook);
10763 Qpolling_period = intern ("polling-period");
10764 staticpro (&Qpolling_period);
10766 Qinput_method_function = intern ("input-method-function");
10767 staticpro (&Qinput_method_function);
10769 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
10770 staticpro (&Qinput_method_exit_on_first_char);
10771 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
10772 staticpro (&Qinput_method_use_echo_area);
10774 Fset (Qinput_method_exit_on_first_char, Qnil);
10775 Fset (Qinput_method_use_echo_area, Qnil);
10777 last_point_position_buffer = Qnil;
10780 struct event_head *p;
10782 for (p = head_table;
10783 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
10784 p++)
10786 *p->var = intern (p->name);
10787 staticpro (p->var);
10788 Fput (*p->var, Qevent_kind, *p->kind);
10789 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
10793 button_down_location = Fmake_vector (make_number (1), Qnil);
10794 staticpro (&button_down_location);
10795 mouse_syms = Fmake_vector (make_number (1), Qnil);
10796 staticpro (&mouse_syms);
10799 int i;
10800 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
10802 modifier_symbols = Fmake_vector (make_number (len), Qnil);
10803 for (i = 0; i < len; i++)
10804 if (modifier_names[i])
10805 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
10806 staticpro (&modifier_symbols);
10809 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
10810 staticpro (&recent_keys);
10812 this_command_keys = Fmake_vector (make_number (40), Qnil);
10813 staticpro (&this_command_keys);
10815 raw_keybuf = Fmake_vector (make_number (30), Qnil);
10816 staticpro (&raw_keybuf);
10818 Qextended_command_history = intern ("extended-command-history");
10819 Fset (Qextended_command_history, Qnil);
10820 staticpro (&Qextended_command_history);
10822 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10823 staticpro (&kbd_buffer_gcpro);
10825 accent_key_syms = Qnil;
10826 staticpro (&accent_key_syms);
10828 func_key_syms = Qnil;
10829 staticpro (&func_key_syms);
10831 #if defined(WINDOWSNT) || defined(MAC_OSX)
10832 mouse_wheel_syms = Qnil;
10833 staticpro (&mouse_wheel_syms);
10834 drag_n_drop_syms = Qnil;
10835 staticpro (&drag_n_drop_syms);
10836 #endif
10838 unread_switch_frame = Qnil;
10839 staticpro (&unread_switch_frame);
10841 internal_last_event_frame = Qnil;
10842 staticpro (&internal_last_event_frame);
10844 read_key_sequence_cmd = Qnil;
10845 staticpro (&read_key_sequence_cmd);
10847 menu_bar_one_keymap_changed_items = Qnil;
10848 staticpro (&menu_bar_one_keymap_changed_items);
10850 defsubr (&Sevent_convert_list);
10851 defsubr (&Sread_key_sequence);
10852 defsubr (&Sread_key_sequence_vector);
10853 defsubr (&Srecursive_edit);
10854 #ifdef HAVE_MOUSE
10855 defsubr (&Strack_mouse);
10856 #endif
10857 defsubr (&Sinput_pending_p);
10858 defsubr (&Scommand_execute);
10859 defsubr (&Srecent_keys);
10860 defsubr (&Sthis_command_keys);
10861 defsubr (&Sthis_command_keys_vector);
10862 defsubr (&Sthis_single_command_keys);
10863 defsubr (&Sthis_single_command_raw_keys);
10864 defsubr (&Sreset_this_command_lengths);
10865 defsubr (&Sclear_this_command_keys);
10866 defsubr (&Ssuspend_emacs);
10867 defsubr (&Sabort_recursive_edit);
10868 defsubr (&Sexit_recursive_edit);
10869 defsubr (&Srecursion_depth);
10870 defsubr (&Stop_level);
10871 defsubr (&Sdiscard_input);
10872 defsubr (&Sopen_dribble_file);
10873 defsubr (&Sset_input_mode);
10874 defsubr (&Scurrent_input_mode);
10875 defsubr (&Sexecute_extended_command);
10877 DEFVAR_LISP ("last-command-char", &last_command_char,
10878 doc: /* Last input event that was part of a command. */);
10880 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
10881 doc: /* Last input event that was part of a command. */);
10883 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
10884 doc: /* Last input event in a command, except for mouse menu events.
10885 Mouse menus give back keys that don't look like mouse events;
10886 this variable holds the actual mouse event that led to the menu,
10887 so that you can determine whether the command was run by mouse or not. */);
10889 DEFVAR_LISP ("last-input-char", &last_input_char,
10890 doc: /* Last input event. */);
10892 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
10893 doc: /* Last input event. */);
10895 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
10896 doc: /* List of events to be read as the command input.
10897 These events are processed first, before actual keyboard input. */);
10898 Vunread_command_events = Qnil;
10900 DEFVAR_INT ("unread-command-char", &unread_command_char,
10901 doc: /* If not -1, an object to be read as next command input event. */);
10903 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
10904 doc: /* List of events to be processed as input by input methods.
10905 These events are processed after `unread-command-events', but
10906 before actual keyboard input. */);
10907 Vunread_post_input_method_events = Qnil;
10909 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
10910 doc: /* List of events to be processed as input by input methods.
10911 These events are processed after `unread-command-events', but
10912 before actual keyboard input. */);
10913 Vunread_input_method_events = Qnil;
10915 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
10916 doc: /* Meta-prefix character code.
10917 Meta-foo as command input turns into this character followed by foo. */);
10918 XSETINT (meta_prefix_char, 033);
10920 DEFVAR_KBOARD ("last-command", Vlast_command,
10921 doc: /* The last command executed.
10922 Normally a symbol with a function definition, but can be whatever was found
10923 in the keymap, or whatever the variable `this-command' was set to by that
10924 command.
10926 The value `mode-exit' is special; it means that the previous command
10927 read an event that told it to exit, and it did so and unread that event.
10928 In other words, the present command is the event that made the previous
10929 command exit.
10931 The value `kill-region' is special; it means that the previous command
10932 was a kill command. */);
10934 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
10935 doc: /* Same as `last-command', but never altered by Lisp code. */);
10937 DEFVAR_LISP ("this-command", &Vthis_command,
10938 doc: /* The command now being executed.
10939 The command can set this variable; whatever is put here
10940 will be in `last-command' during the following command. */);
10941 Vthis_command = Qnil;
10943 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
10944 doc: /* The command bound to the current key sequence before remapping.
10945 It equals `this-command' if the original command was not remapped through
10946 any of the active keymaps. Otherwise, the value of `this-command' is the
10947 result of looking up the original command in the active keymaps. */);
10948 Vthis_original_command = Qnil;
10950 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
10951 doc: /* *Number of input events between auto-saves.
10952 Zero means disable autosaving due to number of characters typed. */);
10953 auto_save_interval = 300;
10955 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
10956 doc: /* *Number of seconds idle time before auto-save.
10957 Zero or nil means disable auto-saving due to idleness.
10958 After auto-saving due to this many seconds of idle time,
10959 Emacs also does a garbage collection if that seems to be warranted. */);
10960 XSETFASTINT (Vauto_save_timeout, 30);
10962 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
10963 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
10964 The value may be integer or floating point. */);
10965 Vecho_keystrokes = make_number (1);
10967 DEFVAR_INT ("polling-period", &polling_period,
10968 doc: /* *Interval between polling for input during Lisp execution.
10969 The reason for polling is to make C-g work to stop a running program.
10970 Polling is needed only when using X windows and SIGIO does not work.
10971 Polling is automatically disabled in all other cases. */);
10972 polling_period = 2;
10974 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
10975 doc: /* *Maximum time between mouse clicks to make a double-click.
10976 Measured in milliseconds. nil means disable double-click recognition;
10977 t means double-clicks have no time limit and are detected
10978 by position only. */);
10979 Vdouble_click_time = make_number (500);
10981 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
10982 doc: /* *Maximum mouse movement between clicks to make a double-click.
10983 On window-system frames, value is the number of pixels the mouse may have
10984 moved horizontally or vertically between two clicks to make a double-click.
10985 On non window-system frames, value is interpreted in units of 1/8 characters
10986 instead of pixels.
10988 This variable is also the threshold for motion of the mouse
10989 to count as a drag. */);
10990 double_click_fuzz = 3;
10992 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
10993 doc: /* *Non-nil means inhibit local map menu bar menus. */);
10994 inhibit_local_menu_bar_menus = 0;
10996 DEFVAR_INT ("num-input-keys", &num_input_keys,
10997 doc: /* Number of complete key sequences read as input so far.
10998 This includes key sequences read from keyboard macros.
10999 The number is effectively the number of interactive command invocations. */);
11000 num_input_keys = 0;
11002 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
11003 doc: /* Number of input events read from the keyboard so far.
11004 This does not include events generated by keyboard macros. */);
11005 num_nonmacro_input_events = 0;
11007 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
11008 doc: /* The frame in which the most recently read event occurred.
11009 If the last event came from a keyboard macro, this is set to `macro'. */);
11010 Vlast_event_frame = Qnil;
11012 /* This variable is set up in sysdep.c. */
11013 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
11014 doc: /* The ERASE character as set by the user with stty. */);
11016 DEFVAR_LISP ("help-char", &Vhelp_char,
11017 doc: /* Character to recognize as meaning Help.
11018 When it is read, do `(eval help-form)', and display result if it's a string.
11019 If the value of `help-form' is nil, this char can be read normally. */);
11020 XSETINT (Vhelp_char, Ctl ('H'));
11022 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
11023 doc: /* List of input events to recognize as meaning Help.
11024 These work just like the value of `help-char' (see that). */);
11025 Vhelp_event_list = Qnil;
11027 DEFVAR_LISP ("help-form", &Vhelp_form,
11028 doc: /* Form to execute when character `help-char' is read.
11029 If the form returns a string, that string is displayed.
11030 If `help-form' is nil, the help char is not recognized. */);
11031 Vhelp_form = Qnil;
11033 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
11034 doc: /* Command to run when `help-char' character follows a prefix key.
11035 This command is used only when there is no actual binding
11036 for that character after that prefix key. */);
11037 Vprefix_help_command = Qnil;
11039 DEFVAR_LISP ("top-level", &Vtop_level,
11040 doc: /* Form to evaluate when Emacs starts up.
11041 Useful to set before you dump a modified Emacs. */);
11042 Vtop_level = Qnil;
11044 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11045 doc: /* Translate table for keyboard input, or nil.
11046 Each character is looked up in this string and the contents used instead.
11047 The value may be a string, a vector, or a char-table.
11048 If it is a string or vector of length N,
11049 character codes N and up are untranslated.
11050 In a vector or a char-table, an element which is nil means "no translation".
11052 This is applied to the characters supplied to input methods, not their
11053 output. See also `translation-table-for-input'. */);
11054 Vkeyboard_translate_table = Qnil;
11056 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
11057 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11058 \(Even if the operating system has support for stopping a process.\) */);
11059 cannot_suspend = 0;
11061 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
11062 doc: /* Non-nil means prompt with menus when appropriate.
11063 This is done when reading from a keymap that has a prompt string,
11064 for elements that have prompt strings.
11065 The menu is displayed on the screen
11066 if X menus were enabled at configuration
11067 time and the previous event was a mouse click prefix key.
11068 Otherwise, menu prompting uses the echo area. */);
11069 menu_prompting = 1;
11071 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
11072 doc: /* Character to see next line of menu prompt.
11073 Type this character while in a menu prompt to rotate around the lines of it. */);
11074 XSETINT (menu_prompt_more_char, ' ');
11076 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
11077 doc: /* A mask of additional modifier keys to use with every keyboard character.
11078 Emacs applies the modifiers of the character stored here to each keyboard
11079 character it reads. For example, after evaluating the expression
11080 (setq extra-keyboard-modifiers ?\\C-x)
11081 all input characters will have the control modifier applied to them.
11083 Note that the character ?\\C-@, equivalent to the integer zero, does
11084 not count as a control character; rather, it counts as a character
11085 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11086 cancels any modification. */);
11087 extra_keyboard_modifiers = 0;
11089 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
11090 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11091 The command loop sets this to nil before each command,
11092 and tests the value when the command returns.
11093 Buffer modification stores t in this variable. */);
11094 Vdeactivate_mark = Qnil;
11096 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
11097 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
11098 Vcommand_hook_internal = Qnil;
11100 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
11101 doc: /* Normal hook run before each command is executed.
11102 If an unhandled error happens in running this hook,
11103 the hook value is set to nil, since otherwise the error
11104 might happen repeatedly and make Emacs nonfunctional. */);
11105 Vpre_command_hook = Qnil;
11107 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
11108 doc: /* Normal hook run after each command is executed.
11109 If an unhandled error happens in running this hook,
11110 the hook value is set to nil, since otherwise the error
11111 might happen repeatedly and make Emacs nonfunctional. */);
11112 Vpost_command_hook = Qnil;
11114 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
11115 doc: /* Normal hook run after each command is executed, if idle.
11116 Errors running the hook are caught and ignored. */);
11117 Vpost_command_idle_hook = Qnil;
11119 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
11120 doc: /* Delay time before running `post-command-idle-hook'.
11121 This is measured in microseconds. */);
11122 post_command_idle_delay = 100000;
11124 #if 0
11125 DEFVAR_LISP ("echo-area-clear-hook", ...,
11126 doc: /* Normal hook run when clearing the echo area. */);
11127 #endif
11128 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11129 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
11131 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
11132 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11133 Vlucid_menu_bar_dirty_flag = Qnil;
11135 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
11136 doc: /* List of menu bar items to move to the end of the menu bar.
11137 The elements of the list are event types that may have menu bar bindings. */);
11138 Vmenu_bar_final_items = Qnil;
11140 DEFVAR_KBOARD ("overriding-terminal-local-map",
11141 Voverriding_terminal_local_map,
11142 doc: /* Per-terminal keymap that overrides all other local keymaps.
11143 If this variable is non-nil, it is used as a keymap instead of the
11144 buffer's local map, and the minor mode keymaps and text property keymaps.
11145 This variable is intended to let commands such as `universal-argument'
11146 set up a different keymap for reading the next command. */);
11148 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
11149 doc: /* Keymap that overrides all other local keymaps.
11150 If this variable is non-nil, it is used as a keymap instead of the
11151 buffer's local map, and the minor mode keymaps and text property keymaps. */);
11152 Voverriding_local_map = Qnil;
11154 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
11155 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11156 Otherwise, the menu bar continues to reflect the buffer's local map
11157 and the minor mode maps regardless of `overriding-local-map'. */);
11158 Voverriding_local_map_menu_flag = Qnil;
11160 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
11161 doc: /* Keymap defining bindings for special events to execute at low level. */);
11162 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11164 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11165 doc: /* *Non-nil means generate motion events for mouse motion. */);
11167 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11168 doc: /* Alist of system-specific X windows key symbols.
11169 Each element should have the form (N . SYMBOL) where N is the
11170 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11171 and SYMBOL is its name. */);
11173 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
11174 doc: /* List of deferred actions to be performed at a later time.
11175 The precise format isn't relevant here; we just check whether it is nil. */);
11176 Vdeferred_action_list = Qnil;
11178 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
11179 doc: /* Function to call to handle deferred actions, after each command.
11180 This function is called with no arguments after each command
11181 whenever `deferred-action-list' is non-nil. */);
11182 Vdeferred_action_function = Qnil;
11184 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
11185 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11186 The value can be a length of time to show the message for.
11187 If the value is non-nil and not a number, we wait 2 seconds. */);
11188 Vsuggest_key_bindings = Qt;
11190 DEFVAR_LISP ("timer-list", &Vtimer_list,
11191 doc: /* List of active absolute time timers in order of increasing time. */);
11192 Vtimer_list = Qnil;
11194 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
11195 doc: /* List of active idle-time timers in order of increasing time. */);
11196 Vtimer_idle_list = Qnil;
11198 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
11199 doc: /* If non-nil, the function that implements the current input method.
11200 It's called with one argument, a printing character that was just read.
11201 \(That means a character with code 040...0176.)
11202 Typically this function uses `read-event' to read additional events.
11203 When it does so, it should first bind `input-method-function' to nil
11204 so it will not be called recursively.
11206 The function should return a list of zero or more events
11207 to be used as input. If it wants to put back some events
11208 to be reconsidered, separately, by the input method,
11209 it can add them to the beginning of `unread-command-events'.
11211 The input method function can find in `input-method-previous-method'
11212 the previous echo area message.
11214 The input method function should refer to the variables
11215 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11216 for guidance on what to do. */);
11217 Vinput_method_function = Qnil;
11219 DEFVAR_LISP ("input-method-previous-message",
11220 &Vinput_method_previous_message,
11221 doc: /* When `input-method-function' is called, hold the previous echo area message.
11222 This variable exists because `read-event' clears the echo area
11223 before running the input method. It is nil if there was no message. */);
11224 Vinput_method_previous_message = Qnil;
11226 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
11227 doc: /* If non-nil, the function that implements the display of help.
11228 It's called with one argument, the help string to display. */);
11229 Vshow_help_function = Qnil;
11231 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
11232 doc: /* If non-nil, suppress point adjustment after executing a command.
11234 After a command is executed, if point is moved into a region that has
11235 special properties (e.g. composition, display), we adjust point to
11236 the boundary of the region. But, several special commands sets this
11237 variable to non-nil, then we suppress the point adjustment.
11239 This variable is set to nil before reading a command, and is checked
11240 just after executing the command. */);
11241 Vdisable_point_adjustment = Qnil;
11243 DEFVAR_LISP ("global-disable-point-adjustment",
11244 &Vglobal_disable_point_adjustment,
11245 doc: /* *If non-nil, always suppress point adjustment.
11247 The default value is nil, in which case, point adjustment are
11248 suppressed only after special commands that set
11249 `disable-point-adjustment' (which see) to non-nil. */);
11250 Vglobal_disable_point_adjustment = Qnil;
11252 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings,
11253 doc: /* Non-nil means updating menu bindings is allowed.
11254 A value of nil means menu bindings should not be updated.
11255 Used during Emacs' startup. */);
11256 update_menu_bindings = 1;
11258 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
11259 doc: /* *How long to display an echo-area message when the minibuffer is active.
11260 If the value is not a number, such messages don't time out. */);
11261 Vminibuffer_message_timeout = make_number (2);
11264 void
11265 keys_of_keyboard ()
11267 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11268 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11269 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11270 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11271 initial_define_key (meta_map, 'x', "execute-extended-command");
11273 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11274 "handle-delete-frame");
11275 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11276 "ignore-event");
11277 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11278 "ignore-event");
11279 /* Handling it at such a low-level causes read_key_sequence to get
11280 * confused because it doesn't realize that the current_buffer was
11281 * changed by read_char.
11283 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11284 * "handle-select-window"); */
11285 initial_define_lispy_key (Vspecial_event_map, "save-session",
11286 "handle-save-session");