Inline setter functions for hash table members.
[emacs.git] / src / keyboard.c
blob868d0c8d2c1277f0fae563c94342a463b2215a7e
1 /* Keyboard and mouse input; editor command loop.
3 Copyright (C) 1985-1989, 1993-1997, 1999-2012 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 3 of the License, or
10 (at your option) 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. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
22 #define KEYBOARD_INLINE EXTERN_INLINE
24 #include <signal.h>
25 #include <stdio.h>
26 #include <setjmp.h>
27 #include "lisp.h"
28 #include "termchar.h"
29 #include "termopts.h"
30 #include "frame.h"
31 #include "termhooks.h"
32 #include "macros.h"
33 #include "keyboard.h"
34 #include "window.h"
35 #include "commands.h"
36 #include "character.h"
37 #include "buffer.h"
38 #include "disptab.h"
39 #include "dispextern.h"
40 #include "syntax.h"
41 #include "intervals.h"
42 #include "keymap.h"
43 #include "blockinput.h"
44 #include "puresize.h"
45 #include "systime.h"
46 #include "atimer.h"
47 #include "process.h"
48 #include <errno.h>
50 #ifdef HAVE_PTHREAD
51 #include <pthread.h>
52 #endif
53 #ifdef MSDOS
54 #include "msdos.h"
55 #include <time.h>
56 #else /* not MSDOS */
57 #include <sys/ioctl.h>
58 #endif /* not MSDOS */
60 #include "syssignal.h"
62 #include <sys/types.h>
63 #include <unistd.h>
64 #include <fcntl.h>
66 /* This is to get the definitions of the XK_ symbols. */
67 #ifdef HAVE_X_WINDOWS
68 #include "xterm.h"
69 #endif
71 #ifdef HAVE_NTGUI
72 #include "w32term.h"
73 #endif /* HAVE_NTGUI */
75 #ifdef HAVE_NS
76 #include "nsterm.h"
77 #endif
79 /* Variables for blockinput.h: */
81 /* Non-zero if interrupt input is blocked right now. */
82 volatile int interrupt_input_blocked;
84 /* Nonzero means an input interrupt has arrived
85 during the current critical section. */
86 int interrupt_input_pending;
88 /* This var should be (interrupt_input_pending || pending_atimers).
89 The QUIT macro checks this instead of interrupt_input_pending and
90 pending_atimers separately, to reduce code size. So, any code that
91 changes interrupt_input_pending or pending_atimers should update
92 this too. */
93 #ifdef SYNC_INPUT
94 int pending_signals;
95 #endif
97 #define KBD_BUFFER_SIZE 4096
99 KBOARD *initial_kboard;
100 KBOARD *current_kboard;
101 KBOARD *all_kboards;
103 /* Nonzero in the single-kboard state, 0 in the any-kboard state. */
104 static int single_kboard;
106 /* Non-nil disable property on a command means
107 do not execute it; call disabled-command-function's value instead. */
108 Lisp_Object Qdisabled;
109 static Lisp_Object Qdisabled_command_function;
111 #define NUM_RECENT_KEYS (300)
113 /* Index for storing next element into recent_keys. */
114 static int recent_keys_index;
116 /* Total number of elements stored into recent_keys. */
117 static int total_keys;
119 /* This vector holds the last NUM_RECENT_KEYS keystrokes. */
120 static Lisp_Object recent_keys;
122 /* Vector holding the key sequence that invoked the current command.
123 It is reused for each command, and it may be longer than the current
124 sequence; this_command_key_count indicates how many elements
125 actually mean something.
126 It's easier to staticpro a single Lisp_Object than an array. */
127 Lisp_Object this_command_keys;
128 ptrdiff_t this_command_key_count;
130 /* 1 after calling Freset_this_command_lengths.
131 Usually it is 0. */
132 static int this_command_key_count_reset;
134 /* This vector is used as a buffer to record the events that were actually read
135 by read_key_sequence. */
136 static Lisp_Object raw_keybuf;
137 static int raw_keybuf_count;
139 #define GROW_RAW_KEYBUF \
140 if (raw_keybuf_count == ASIZE (raw_keybuf)) \
141 raw_keybuf = larger_vector (raw_keybuf, 1, -1)
143 /* Number of elements of this_command_keys
144 that precede this key sequence. */
145 static ptrdiff_t this_single_command_key_start;
147 /* Record values of this_command_key_count and echo_length ()
148 before this command was read. */
149 static ptrdiff_t before_command_key_count;
150 static ptrdiff_t before_command_echo_length;
152 /* For longjmp to where kbd input is being done. */
154 static jmp_buf getcjmp;
156 /* True while doing kbd input. */
157 int waiting_for_input;
159 /* True while displaying for echoing. Delays C-g throwing. */
161 static int echoing;
163 /* Non-null means we can start echoing at the next input pause even
164 though there is something in the echo area. */
166 static struct kboard *ok_to_echo_at_next_pause;
168 /* The kboard last echoing, or null for none. Reset to 0 in
169 cancel_echoing. If non-null, and a current echo area message
170 exists, and echo_message_buffer is eq to the current message
171 buffer, we know that the message comes from echo_kboard. */
173 struct kboard *echo_kboard;
175 /* The buffer used for echoing. Set in echo_now, reset in
176 cancel_echoing. */
178 Lisp_Object echo_message_buffer;
180 /* Nonzero means C-g should cause immediate error-signal. */
181 int immediate_quit;
183 /* Character that causes a quit. Normally C-g.
185 If we are running on an ordinary terminal, this must be an ordinary
186 ASCII char, since we want to make it our interrupt character.
188 If we are not running on an ordinary terminal, it still needs to be
189 an ordinary ASCII char. This character needs to be recognized in
190 the input interrupt handler. At this point, the keystroke is
191 represented as a struct input_event, while the desired quit
192 character is specified as a lispy event. The mapping from struct
193 input_events to lispy events cannot run in an interrupt handler,
194 and the reverse mapping is difficult for anything but ASCII
195 keystrokes.
197 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
198 ASCII character. */
199 int quit_char;
201 /* Current depth in recursive edits. */
202 EMACS_INT command_loop_level;
204 /* If not Qnil, this is a switch-frame event which we decided to put
205 off until the end of a key sequence. This should be read as the
206 next command input, after any unread_command_events.
208 read_key_sequence uses this to delay switch-frame events until the
209 end of the key sequence; Fread_char uses it to put off switch-frame
210 events until a non-ASCII event is acceptable as input. */
211 Lisp_Object unread_switch_frame;
213 /* Last size recorded for a current buffer which is not a minibuffer. */
214 static ptrdiff_t last_non_minibuf_size;
216 /* Total number of times read_char has returned, modulo UINTMAX_MAX + 1. */
217 uintmax_t num_input_events;
219 /* Value of num_nonmacro_input_events as of last auto save. */
221 static EMACS_INT last_auto_save;
223 /* The value of point when the last command was started. */
224 static ptrdiff_t last_point_position;
226 /* The buffer that was current when the last command was started. */
227 static Lisp_Object last_point_position_buffer;
229 /* The window that was selected when the last command was started. */
230 static Lisp_Object last_point_position_window;
232 /* The frame in which the last input event occurred, or Qmacro if the
233 last event came from a macro. We use this to determine when to
234 generate switch-frame events. This may be cleared by functions
235 like Fselect_frame, to make sure that a switch-frame event is
236 generated by the next character. */
237 Lisp_Object internal_last_event_frame;
239 /* The timestamp of the last input event we received from the X server.
240 X Windows wants this for selection ownership. */
241 Time last_event_timestamp;
243 static Lisp_Object Qx_set_selection, Qhandle_switch_frame;
244 static Lisp_Object Qhandle_select_window;
245 Lisp_Object QPRIMARY;
247 static Lisp_Object Qself_insert_command;
248 static Lisp_Object Qforward_char;
249 static Lisp_Object Qbackward_char;
250 Lisp_Object Qundefined;
251 static Lisp_Object Qtimer_event_handler;
253 /* read_key_sequence stores here the command definition of the
254 key sequence that it reads. */
255 static Lisp_Object read_key_sequence_cmd;
256 static Lisp_Object read_key_sequence_remapped;
258 static Lisp_Object Qinput_method_function;
260 static Lisp_Object Qdeactivate_mark;
262 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
264 static Lisp_Object Qecho_area_clear_hook;
266 /* Hooks to run before and after each command. */
267 static Lisp_Object Qpre_command_hook;
268 static Lisp_Object Qpost_command_hook;
270 static Lisp_Object Qdeferred_action_function;
272 static Lisp_Object Qdelayed_warnings_hook;
274 static Lisp_Object Qinput_method_exit_on_first_char;
275 static Lisp_Object Qinput_method_use_echo_area;
277 static Lisp_Object Qhelp_form_show;
279 /* File in which we write all commands we read. */
280 static FILE *dribble;
282 /* Nonzero if input is available. */
283 int input_pending;
285 /* Circular buffer for pre-read keyboard input. */
287 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
289 /* Pointer to next available character in kbd_buffer.
290 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
291 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
292 next available char is in kbd_buffer[0]. */
293 static struct input_event *kbd_fetch_ptr;
295 /* Pointer to next place to store character in kbd_buffer. This
296 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
297 character should go in kbd_buffer[0]. */
298 static struct input_event * volatile kbd_store_ptr;
300 /* The above pair of variables forms a "queue empty" flag. When we
301 enqueue a non-hook event, we increment kbd_store_ptr. When we
302 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
303 there is input available if the two pointers are not equal.
305 Why not just have a flag set and cleared by the enqueuing and
306 dequeuing functions? Such a flag could be screwed up by interrupts
307 at inopportune times. */
309 /* Symbols to head events. */
310 static Lisp_Object Qmouse_movement;
311 static Lisp_Object Qscroll_bar_movement;
312 Lisp_Object Qswitch_frame;
313 static Lisp_Object Qdelete_frame;
314 static Lisp_Object Qiconify_frame;
315 static Lisp_Object Qmake_frame_visible;
316 static Lisp_Object Qselect_window;
317 Lisp_Object Qhelp_echo;
319 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
320 static Lisp_Object Qmouse_fixup_help_message;
321 #endif
323 /* Symbols to denote kinds of events. */
324 static Lisp_Object Qfunction_key;
325 Lisp_Object Qmouse_click;
326 #if defined (WINDOWSNT)
327 Lisp_Object Qlanguage_change;
328 #endif
329 static Lisp_Object Qdrag_n_drop;
330 static Lisp_Object Qsave_session;
331 #ifdef HAVE_DBUS
332 static Lisp_Object Qdbus_event;
333 #endif
334 static Lisp_Object Qconfig_changed_event;
336 /* Lisp_Object Qmouse_movement; - also an event header */
338 /* Properties of event headers. */
339 Lisp_Object Qevent_kind;
340 static Lisp_Object Qevent_symbol_elements;
342 /* Menu and tool bar item parts. */
343 static Lisp_Object Qmenu_enable;
344 static Lisp_Object QCenable, QCvisible, QChelp, QCkeys, QCkey_sequence;
345 Lisp_Object QCfilter;
347 /* Non-nil disable property on a command means
348 do not execute it; call disabled-command-function's value instead. */
349 Lisp_Object QCtoggle, QCradio;
350 static Lisp_Object QCbutton, QClabel;
352 static Lisp_Object QCvert_only;
354 /* An event header symbol HEAD may have a property named
355 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
356 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
357 mask of modifiers applied to it. If present, this is used to help
358 speed up parse_modifiers. */
359 Lisp_Object Qevent_symbol_element_mask;
361 /* An unmodified event header BASE may have a property named
362 Qmodifier_cache, which is an alist mapping modifier masks onto
363 modified versions of BASE. If present, this helps speed up
364 apply_modifiers. */
365 static Lisp_Object Qmodifier_cache;
367 /* Symbols to use for parts of windows. */
368 Lisp_Object Qmode_line;
369 Lisp_Object Qvertical_line;
370 static Lisp_Object Qvertical_scroll_bar;
371 Lisp_Object Qmenu_bar;
373 static Lisp_Object recursive_edit_unwind (Lisp_Object buffer);
374 static Lisp_Object command_loop (void);
375 static Lisp_Object Qextended_command_history;
376 EMACS_TIME timer_check (void);
378 static void record_menu_key (Lisp_Object c);
379 static void echo_now (void);
380 static ptrdiff_t echo_length (void);
382 static Lisp_Object Qpolling_period;
384 /* Incremented whenever a timer is run. */
385 int timers_run;
387 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
388 happens. */
389 EMACS_TIME *input_available_clear_time;
391 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
392 Default is 1 if INTERRUPT_INPUT is defined. */
393 int interrupt_input;
395 /* Nonzero while interrupts are temporarily deferred during redisplay. */
396 int interrupts_deferred;
398 /* Allow configure to inhibit use of FIONREAD. */
399 #ifdef BROKEN_FIONREAD
400 #undef FIONREAD
401 #endif
403 /* We are unable to use interrupts if FIONREAD is not available,
404 so flush SIGIO so we won't try. */
405 #if !defined (FIONREAD)
406 #ifdef SIGIO
407 #undef SIGIO
408 #endif
409 #endif
411 /* If we support a window system, turn on the code to poll periodically
412 to detect C-g. It isn't actually used when doing interrupt input. */
413 #if defined (HAVE_WINDOW_SYSTEM) && !defined (USE_ASYNC_EVENTS)
414 #define POLL_FOR_INPUT
415 #endif
417 /* The time when Emacs started being idle. */
419 static EMACS_TIME timer_idleness_start_time;
421 /* After Emacs stops being idle, this saves the last value
422 of timer_idleness_start_time from when it was idle. */
424 static EMACS_TIME timer_last_idleness_start_time;
427 /* Global variable declarations. */
429 /* Flags for readable_events. */
430 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
431 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
432 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
434 /* Function for init_keyboard to call with no args (if nonzero). */
435 static void (*keyboard_init_hook) (void);
437 static int read_avail_input (int);
438 static void get_input_pending (int *, int);
439 static int readable_events (int);
440 static Lisp_Object read_char_x_menu_prompt (ptrdiff_t, Lisp_Object *,
441 Lisp_Object, int *);
442 static Lisp_Object read_char_minibuf_menu_prompt (int, ptrdiff_t,
443 Lisp_Object *);
444 static Lisp_Object make_lispy_event (struct input_event *);
445 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
446 static Lisp_Object make_lispy_movement (struct frame *, Lisp_Object,
447 enum scroll_bar_part,
448 Lisp_Object, Lisp_Object,
449 Time);
450 #endif
451 static Lisp_Object modify_event_symbol (ptrdiff_t, int, Lisp_Object,
452 Lisp_Object, const char *const *,
453 Lisp_Object *, ptrdiff_t);
454 static Lisp_Object make_lispy_switch_frame (Lisp_Object);
455 static int help_char_p (Lisp_Object);
456 static void save_getcjmp (jmp_buf);
457 static void restore_getcjmp (jmp_buf);
458 static Lisp_Object apply_modifiers (int, Lisp_Object);
459 static void clear_event (struct input_event *);
460 static Lisp_Object restore_kboard_configuration (Lisp_Object);
461 static void interrupt_signal (int signalnum);
462 #ifdef SIGIO
463 static void input_available_signal (int signo);
464 #endif
465 static void handle_interrupt (void);
466 static _Noreturn void quit_throw_to_read_char (int);
467 static void process_special_events (void);
468 static void timer_start_idle (void);
469 static void timer_stop_idle (void);
470 static void timer_resume_idle (void);
471 static void handle_user_signal (int);
472 static char *find_user_signal_name (int);
473 static int store_user_signal_events (void);
475 /* These setters are used only in this file, so they can be private. */
476 static inline void
477 kset_echo_string (struct kboard *kb, Lisp_Object val)
479 kb->INTERNAL_FIELD (echo_string) = val;
481 static inline void
482 kset_kbd_queue (struct kboard *kb, Lisp_Object val)
484 kb->INTERNAL_FIELD (kbd_queue) = val;
486 static inline void
487 kset_keyboard_translate_table (struct kboard *kb, Lisp_Object val)
489 kb->INTERNAL_FIELD (Vkeyboard_translate_table) = val;
491 static inline void
492 kset_last_prefix_arg (struct kboard *kb, Lisp_Object val)
494 kb->INTERNAL_FIELD (Vlast_prefix_arg) = val;
496 static inline void
497 kset_last_repeatable_command (struct kboard *kb, Lisp_Object val)
499 kb->INTERNAL_FIELD (Vlast_repeatable_command) = val;
501 static inline void
502 kset_local_function_key_map (struct kboard *kb, Lisp_Object val)
504 kb->INTERNAL_FIELD (Vlocal_function_key_map) = val;
506 static inline void
507 kset_overriding_terminal_local_map (struct kboard *kb, Lisp_Object val)
509 kb->INTERNAL_FIELD (Voverriding_terminal_local_map) = val;
511 static inline void
512 kset_real_last_command (struct kboard *kb, Lisp_Object val)
514 kb->INTERNAL_FIELD (Vreal_last_command) = val;
516 static inline void
517 kset_system_key_syms (struct kboard *kb, Lisp_Object val)
519 kb->INTERNAL_FIELD (system_key_syms) = val;
523 /* Add C to the echo string, if echoing is going on.
524 C can be a character, which is printed prettily ("M-C-x" and all that
525 jazz), or a symbol, whose name is printed. */
527 static void
528 echo_char (Lisp_Object c)
530 if (current_kboard->immediate_echo)
532 int size = KEY_DESCRIPTION_SIZE + 100;
533 char *buffer = alloca (size);
534 char *ptr = buffer;
535 Lisp_Object echo_string;
537 echo_string = KVAR (current_kboard, echo_string);
539 /* If someone has passed us a composite event, use its head symbol. */
540 c = EVENT_HEAD (c);
542 if (INTEGERP (c))
544 ptr = push_key_description (XINT (c), ptr, 1);
546 else if (SYMBOLP (c))
548 Lisp_Object name = SYMBOL_NAME (c);
549 int nbytes = SBYTES (name);
551 if (size - (ptr - buffer) < nbytes)
553 int offset = ptr - buffer;
554 size = max (2 * size, size + nbytes);
555 buffer = alloca (size);
556 ptr = buffer + offset;
559 ptr += copy_text (SDATA (name), (unsigned char *) ptr, nbytes,
560 STRING_MULTIBYTE (name), 1);
563 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
564 && help_char_p (c))
566 const char *text = " (Type ? for further options)";
567 int len = strlen (text);
569 if (size - (ptr - buffer) < len)
571 int offset = ptr - buffer;
572 size += len;
573 buffer = alloca (size);
574 ptr = buffer + offset;
577 memcpy (ptr, text, len);
578 ptr += len;
581 /* Replace a dash from echo_dash with a space, otherwise
582 add a space at the end as a separator between keys. */
583 if (STRINGP (echo_string)
584 && SCHARS (echo_string) > 1)
586 Lisp_Object last_char, prev_char, idx;
588 idx = make_number (SCHARS (echo_string) - 2);
589 prev_char = Faref (echo_string, idx);
591 idx = make_number (SCHARS (echo_string) - 1);
592 last_char = Faref (echo_string, idx);
594 /* We test PREV_CHAR to make sure this isn't the echoing
595 of a minus-sign. */
596 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
597 Faset (echo_string, idx, make_number (' '));
598 else
599 echo_string = concat2 (echo_string, build_string (" "));
601 else if (STRINGP (echo_string))
602 echo_string = concat2 (echo_string, build_string (" "));
604 kset_echo_string
605 (current_kboard,
606 concat2 (echo_string, make_string (buffer, ptr - buffer)));
608 echo_now ();
612 /* Temporarily add a dash to the end of the echo string if it's not
613 empty, so that it serves as a mini-prompt for the very next character. */
615 static void
616 echo_dash (void)
618 /* Do nothing if not echoing at all. */
619 if (NILP (KVAR (current_kboard, echo_string)))
620 return;
622 if (this_command_key_count == 0)
623 return;
625 if (!current_kboard->immediate_echo
626 && SCHARS (KVAR (current_kboard, echo_string)) == 0)
627 return;
629 /* Do nothing if we just printed a prompt. */
630 if (current_kboard->echo_after_prompt
631 == SCHARS (KVAR (current_kboard, echo_string)))
632 return;
634 /* Do nothing if we have already put a dash at the end. */
635 if (SCHARS (KVAR (current_kboard, echo_string)) > 1)
637 Lisp_Object last_char, prev_char, idx;
639 idx = make_number (SCHARS (KVAR (current_kboard, echo_string)) - 2);
640 prev_char = Faref (KVAR (current_kboard, echo_string), idx);
642 idx = make_number (SCHARS (KVAR (current_kboard, echo_string)) - 1);
643 last_char = Faref (KVAR (current_kboard, echo_string), idx);
645 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
646 return;
649 /* Put a dash at the end of the buffer temporarily,
650 but make it go away when the next character is added. */
651 kset_echo_string
652 (current_kboard,
653 concat2 (KVAR (current_kboard, echo_string), build_string ("-")));
654 echo_now ();
657 /* Display the current echo string, and begin echoing if not already
658 doing so. */
660 static void
661 echo_now (void)
663 if (!current_kboard->immediate_echo)
665 ptrdiff_t i;
666 current_kboard->immediate_echo = 1;
668 for (i = 0; i < this_command_key_count; i++)
670 Lisp_Object c;
672 /* Set before_command_echo_length to the value that would
673 have been saved before the start of this subcommand in
674 command_loop_1, if we had already been echoing then. */
675 if (i == this_single_command_key_start)
676 before_command_echo_length = echo_length ();
678 c = AREF (this_command_keys, i);
679 if (! (EVENT_HAS_PARAMETERS (c)
680 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
681 echo_char (c);
684 /* Set before_command_echo_length to the value that would
685 have been saved before the start of this subcommand in
686 command_loop_1, if we had already been echoing then. */
687 if (this_command_key_count == this_single_command_key_start)
688 before_command_echo_length = echo_length ();
690 /* Put a dash at the end to invite the user to type more. */
691 echo_dash ();
694 echoing = 1;
695 message3_nolog (KVAR (current_kboard, echo_string),
696 SBYTES (KVAR (current_kboard, echo_string)),
697 STRING_MULTIBYTE (KVAR (current_kboard, echo_string)));
698 echoing = 0;
700 /* Record in what buffer we echoed, and from which kboard. */
701 echo_message_buffer = echo_area_buffer[0];
702 echo_kboard = current_kboard;
704 if (waiting_for_input && !NILP (Vquit_flag))
705 quit_throw_to_read_char (0);
708 /* Turn off echoing, for the start of a new command. */
710 void
711 cancel_echoing (void)
713 current_kboard->immediate_echo = 0;
714 current_kboard->echo_after_prompt = -1;
715 kset_echo_string (current_kboard, Qnil);
716 ok_to_echo_at_next_pause = NULL;
717 echo_kboard = NULL;
718 echo_message_buffer = Qnil;
721 /* Return the length of the current echo string. */
723 static ptrdiff_t
724 echo_length (void)
726 return (STRINGP (KVAR (current_kboard, echo_string))
727 ? SCHARS (KVAR (current_kboard, echo_string))
728 : 0);
731 /* Truncate the current echo message to its first LEN chars.
732 This and echo_char get used by read_key_sequence when the user
733 switches frames while entering a key sequence. */
735 static void
736 echo_truncate (ptrdiff_t nchars)
738 if (STRINGP (KVAR (current_kboard, echo_string)))
739 kset_echo_string (current_kboard,
740 Fsubstring (KVAR (current_kboard, echo_string),
741 make_number (0), make_number (nchars)));
742 truncate_echo_area (nchars);
746 /* Functions for manipulating this_command_keys. */
747 static void
748 add_command_key (Lisp_Object key)
750 #if 0 /* Not needed after we made Freset_this_command_lengths
751 do the job immediately. */
752 /* If reset-this-command-length was called recently, obey it now.
753 See the doc string of that function for an explanation of why. */
754 if (before_command_restore_flag)
756 this_command_key_count = before_command_key_count_1;
757 if (this_command_key_count < this_single_command_key_start)
758 this_single_command_key_start = this_command_key_count;
759 echo_truncate (before_command_echo_length_1);
760 before_command_restore_flag = 0;
762 #endif
764 if (this_command_key_count >= ASIZE (this_command_keys))
765 this_command_keys = larger_vector (this_command_keys, 1, -1);
767 ASET (this_command_keys, this_command_key_count, key);
768 ++this_command_key_count;
772 Lisp_Object
773 recursive_edit_1 (void)
775 ptrdiff_t count = SPECPDL_INDEX ();
776 Lisp_Object val;
778 if (command_loop_level > 0)
780 specbind (Qstandard_output, Qt);
781 specbind (Qstandard_input, Qt);
784 #ifdef HAVE_WINDOW_SYSTEM
785 /* The command loop has started an hourglass timer, so we have to
786 cancel it here, otherwise it will fire because the recursive edit
787 can take some time. Do not check for display_hourglass_p here,
788 because it could already be nil. */
789 cancel_hourglass ();
790 #endif
792 /* This function may have been called from a debugger called from
793 within redisplay, for instance by Edebugging a function called
794 from fontification-functions. We want to allow redisplay in
795 the debugging session.
797 The recursive edit is left with a `(throw exit ...)'. The `exit'
798 tag is not caught anywhere in redisplay, i.e. when we leave the
799 recursive edit, the original redisplay leading to the recursive
800 edit will be unwound. The outcome should therefore be safe. */
801 specbind (Qinhibit_redisplay, Qnil);
802 redisplaying_p = 0;
804 val = command_loop ();
805 if (EQ (val, Qt))
806 Fsignal (Qquit, Qnil);
807 /* Handle throw from read_minibuf when using minibuffer
808 while it's active but we're in another window. */
809 if (STRINGP (val))
810 xsignal1 (Qerror, val);
812 return unbind_to (count, Qnil);
815 /* When an auto-save happens, record the "time", and don't do again soon. */
817 void
818 record_auto_save (void)
820 last_auto_save = num_nonmacro_input_events;
823 /* Make an auto save happen as soon as possible at command level. */
825 #ifdef SIGDANGER
826 void
827 force_auto_save_soon (void)
829 last_auto_save = - auto_save_interval - 1;
831 record_asynch_buffer_change ();
833 #endif
835 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
836 doc: /* Invoke the editor command loop recursively.
837 To get out of the recursive edit, a command can do `(throw 'exit nil)';
838 that tells this function to return.
839 Alternatively, `(throw 'exit t)' makes this function signal an error.
840 This function is called by the editor initialization to begin editing. */)
841 (void)
843 ptrdiff_t count = SPECPDL_INDEX ();
844 Lisp_Object buffer;
846 /* If we enter while input is blocked, don't lock up here.
847 This may happen through the debugger during redisplay. */
848 if (INPUT_BLOCKED_P)
849 return Qnil;
851 command_loop_level++;
852 update_mode_lines = 1;
854 if (command_loop_level
855 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
856 buffer = Fcurrent_buffer ();
857 else
858 buffer = Qnil;
860 /* If we leave recursive_edit_1 below with a `throw' for instance,
861 like it is done in the splash screen display, we have to
862 make sure that we restore single_kboard as command_loop_1
863 would have done if it were left normally. */
864 if (command_loop_level > 0)
865 temporarily_switch_to_single_kboard (SELECTED_FRAME ());
866 record_unwind_protect (recursive_edit_unwind, buffer);
868 recursive_edit_1 ();
869 return unbind_to (count, Qnil);
872 Lisp_Object
873 recursive_edit_unwind (Lisp_Object buffer)
875 if (BUFFERP (buffer))
876 Fset_buffer (buffer);
878 command_loop_level--;
879 update_mode_lines = 1;
880 return Qnil;
884 #if 0 /* These two functions are now replaced with
885 temporarily_switch_to_single_kboard. */
886 static void
887 any_kboard_state ()
889 #if 0 /* Theory: if there's anything in Vunread_command_events,
890 it will right away be read by read_key_sequence,
891 and then if we do switch KBOARDS, it will go into the side
892 queue then. So we don't need to do anything special here -- rms. */
893 if (CONSP (Vunread_command_events))
895 current_kboard->kbd_queue
896 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
897 current_kboard->kbd_queue_has_data = 1;
899 Vunread_command_events = Qnil;
900 #endif
901 single_kboard = 0;
904 /* Switch to the single-kboard state, making current_kboard
905 the only KBOARD from which further input is accepted. */
907 void
908 single_kboard_state ()
910 single_kboard = 1;
912 #endif
914 /* If we're in single_kboard state for kboard KBOARD,
915 get out of it. */
917 void
918 not_single_kboard_state (KBOARD *kboard)
920 if (kboard == current_kboard)
921 single_kboard = 0;
924 /* Maintain a stack of kboards, so other parts of Emacs
925 can switch temporarily to the kboard of a given frame
926 and then revert to the previous status. */
928 struct kboard_stack
930 KBOARD *kboard;
931 struct kboard_stack *next;
934 static struct kboard_stack *kboard_stack;
936 void
937 push_kboard (struct kboard *k)
939 struct kboard_stack *p = xmalloc (sizeof *p);
941 p->next = kboard_stack;
942 p->kboard = current_kboard;
943 kboard_stack = p;
945 current_kboard = k;
948 void
949 pop_kboard (void)
951 struct terminal *t;
952 struct kboard_stack *p = kboard_stack;
953 int found = 0;
954 for (t = terminal_list; t; t = t->next_terminal)
956 if (t->kboard == p->kboard)
958 current_kboard = p->kboard;
959 found = 1;
960 break;
963 if (!found)
965 /* The terminal we remembered has been deleted. */
966 current_kboard = FRAME_KBOARD (SELECTED_FRAME ());
967 single_kboard = 0;
969 kboard_stack = p->next;
970 xfree (p);
973 /* Switch to single_kboard mode, making current_kboard the only KBOARD
974 from which further input is accepted. If F is non-nil, set its
975 KBOARD as the current keyboard.
977 This function uses record_unwind_protect to return to the previous
978 state later.
980 If Emacs is already in single_kboard mode, and F's keyboard is
981 locked, then this function will throw an error. */
983 void
984 temporarily_switch_to_single_kboard (struct frame *f)
986 int was_locked = single_kboard;
987 if (was_locked)
989 if (f != NULL && FRAME_KBOARD (f) != current_kboard)
990 /* We can not switch keyboards while in single_kboard mode.
991 In rare cases, Lisp code may call `recursive-edit' (or
992 `read-minibuffer' or `y-or-n-p') after it switched to a
993 locked frame. For example, this is likely to happen
994 when server.el connects to a new terminal while Emacs is in
995 single_kboard mode. It is best to throw an error instead
996 of presenting the user with a frozen screen. */
997 error ("Terminal %d is locked, cannot read from it",
998 FRAME_TERMINAL (f)->id);
999 else
1000 /* This call is unnecessary, but helps
1001 `restore_kboard_configuration' discover if somebody changed
1002 `current_kboard' behind our back. */
1003 push_kboard (current_kboard);
1005 else if (f != NULL)
1006 current_kboard = FRAME_KBOARD (f);
1007 single_kboard = 1;
1008 record_unwind_protect (restore_kboard_configuration,
1009 (was_locked ? Qt : Qnil));
1012 #if 0 /* This function is not needed anymore. */
1013 void
1014 record_single_kboard_state ()
1016 if (single_kboard)
1017 push_kboard (current_kboard);
1018 record_unwind_protect (restore_kboard_configuration,
1019 (single_kboard ? Qt : Qnil));
1021 #endif
1023 static Lisp_Object
1024 restore_kboard_configuration (Lisp_Object was_locked)
1026 if (NILP (was_locked))
1027 single_kboard = 0;
1028 else
1030 struct kboard *prev = current_kboard;
1031 single_kboard = 1;
1032 pop_kboard ();
1033 /* The pop should not change the kboard. */
1034 if (single_kboard && current_kboard != prev)
1035 abort ();
1037 return Qnil;
1041 /* Handle errors that are not handled at inner levels
1042 by printing an error message and returning to the editor command loop. */
1044 static Lisp_Object
1045 cmd_error (Lisp_Object data)
1047 Lisp_Object old_level, old_length;
1048 char macroerror[sizeof "After..kbd macro iterations: "
1049 + INT_STRLEN_BOUND (EMACS_INT)];
1051 #ifdef HAVE_WINDOW_SYSTEM
1052 if (display_hourglass_p)
1053 cancel_hourglass ();
1054 #endif
1056 if (!NILP (executing_kbd_macro))
1058 if (executing_kbd_macro_iterations == 1)
1059 sprintf (macroerror, "After 1 kbd macro iteration: ");
1060 else
1061 sprintf (macroerror, "After %"pI"d kbd macro iterations: ",
1062 executing_kbd_macro_iterations);
1064 else
1065 *macroerror = 0;
1067 Vstandard_output = Qt;
1068 Vstandard_input = Qt;
1069 Vexecuting_kbd_macro = Qnil;
1070 executing_kbd_macro = Qnil;
1071 kset_prefix_arg (current_kboard, Qnil);
1072 kset_last_prefix_arg (current_kboard, Qnil);
1073 cancel_echoing ();
1075 /* Avoid unquittable loop if data contains a circular list. */
1076 old_level = Vprint_level;
1077 old_length = Vprint_length;
1078 XSETFASTINT (Vprint_level, 10);
1079 XSETFASTINT (Vprint_length, 10);
1080 cmd_error_internal (data, macroerror);
1081 Vprint_level = old_level;
1082 Vprint_length = old_length;
1084 Vquit_flag = Qnil;
1086 Vinhibit_quit = Qnil;
1087 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1088 if (command_loop_level == 0 && minibuf_level == 0)
1089 any_kboard_state ();
1090 #endif
1092 return make_number (0);
1095 /* Take actions on handling an error. DATA is the data that describes
1096 the error.
1098 CONTEXT is a C-string containing ASCII characters only which
1099 describes the context in which the error happened. If we need to
1100 generalize CONTEXT to allow multibyte characters, make it a Lisp
1101 string. */
1103 void
1104 cmd_error_internal (Lisp_Object data, const char *context)
1106 struct frame *sf = SELECTED_FRAME ();
1108 /* The immediate context is not interesting for Quits,
1109 since they are asynchronous. */
1110 if (EQ (XCAR (data), Qquit))
1111 Vsignaling_function = Qnil;
1113 Vquit_flag = Qnil;
1114 Vinhibit_quit = Qt;
1116 /* Use user's specified output function if any. */
1117 if (!NILP (Vcommand_error_function))
1118 call3 (Vcommand_error_function, data,
1119 context ? build_string (context) : empty_unibyte_string,
1120 Vsignaling_function);
1121 /* If the window system or terminal frame hasn't been initialized
1122 yet, or we're not interactive, write the message to stderr and exit. */
1123 else if (!sf->glyphs_initialized_p
1124 /* The initial frame is a special non-displaying frame. It
1125 will be current in daemon mode when there are no frames
1126 to display, and in non-daemon mode before the real frame
1127 has finished initializing. If an error is thrown in the
1128 latter case while creating the frame, then the frame
1129 will never be displayed, so the safest thing to do is
1130 write to stderr and quit. In daemon mode, there are
1131 many other potential errors that do not prevent frames
1132 from being created, so continuing as normal is better in
1133 that case. */
1134 || (!IS_DAEMON && FRAME_INITIAL_P (sf))
1135 || noninteractive)
1137 print_error_message (data, Qexternal_debugging_output,
1138 context, Vsignaling_function);
1139 Fterpri (Qexternal_debugging_output);
1140 Fkill_emacs (make_number (-1));
1142 else
1144 clear_message (1, 0);
1145 Fdiscard_input ();
1146 message_log_maybe_newline ();
1147 bitch_at_user ();
1149 print_error_message (data, Qt, context, Vsignaling_function);
1152 Vsignaling_function = Qnil;
1155 Lisp_Object command_loop_1 (void);
1156 static Lisp_Object command_loop_2 (Lisp_Object);
1157 static Lisp_Object top_level_1 (Lisp_Object);
1159 /* Entry to editor-command-loop.
1160 This level has the catches for exiting/returning to editor command loop.
1161 It returns nil to exit recursive edit, t to abort it. */
1163 Lisp_Object
1164 command_loop (void)
1166 if (command_loop_level > 0 || minibuf_level > 0)
1168 Lisp_Object val;
1169 val = internal_catch (Qexit, command_loop_2, Qnil);
1170 executing_kbd_macro = Qnil;
1171 return val;
1173 else
1174 while (1)
1176 internal_catch (Qtop_level, top_level_1, Qnil);
1177 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1178 /* Reset single_kboard in case top-level set it while
1179 evaluating an -f option, or we are stuck there for some
1180 other reason. */
1181 any_kboard_state ();
1182 #endif
1183 internal_catch (Qtop_level, command_loop_2, Qnil);
1184 executing_kbd_macro = Qnil;
1186 /* End of file in -batch run causes exit here. */
1187 if (noninteractive)
1188 Fkill_emacs (Qt);
1192 /* Here we catch errors in execution of commands within the
1193 editing loop, and reenter the editing loop.
1194 When there is an error, cmd_error runs and returns a non-nil
1195 value to us. A value of nil means that command_loop_1 itself
1196 returned due to end of file (or end of kbd macro). */
1198 Lisp_Object
1199 command_loop_2 (Lisp_Object ignore)
1201 register Lisp_Object val;
1204 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1205 while (!NILP (val));
1207 return Qnil;
1210 static Lisp_Object
1211 top_level_2 (void)
1213 return Feval (Vtop_level, Qnil);
1216 Lisp_Object
1217 top_level_1 (Lisp_Object ignore)
1219 /* On entry to the outer level, run the startup file */
1220 if (!NILP (Vtop_level))
1221 internal_condition_case (top_level_2, Qerror, cmd_error);
1222 else if (!NILP (Vpurify_flag))
1223 message ("Bare impure Emacs (standard Lisp code not loaded)");
1224 else
1225 message ("Bare Emacs (standard Lisp code not loaded)");
1226 return Qnil;
1229 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1230 doc: /* Exit all recursive editing levels.
1231 This also exits all active minibuffers. */)
1232 (void)
1234 #ifdef HAVE_WINDOW_SYSTEM
1235 if (display_hourglass_p)
1236 cancel_hourglass ();
1237 #endif
1239 /* Unblock input if we enter with input blocked. This may happen if
1240 redisplay traps e.g. during tool-bar update with input blocked. */
1241 while (INPUT_BLOCKED_P)
1242 UNBLOCK_INPUT;
1244 Fthrow (Qtop_level, Qnil);
1247 static _Noreturn void
1248 user_error (const char *msg)
1250 xsignal1 (Quser_error, build_string (msg));
1253 _Noreturn
1254 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1255 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1256 (void)
1258 if (command_loop_level > 0 || minibuf_level > 0)
1259 Fthrow (Qexit, Qnil);
1261 user_error ("No recursive edit is in progress");
1264 _Noreturn
1265 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1266 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1267 (void)
1269 if (command_loop_level > 0 || minibuf_level > 0)
1270 Fthrow (Qexit, Qt);
1272 user_error ("No recursive edit is in progress");
1275 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1277 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1278 of this function. */
1280 static Lisp_Object
1281 tracking_off (Lisp_Object old_value)
1283 do_mouse_tracking = old_value;
1284 if (NILP (old_value))
1286 /* Redisplay may have been preempted because there was input
1287 available, and it assumes it will be called again after the
1288 input has been processed. If the only input available was
1289 the sort that we have just disabled, then we need to call
1290 redisplay. */
1291 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
1293 redisplay_preserve_echo_area (6);
1294 get_input_pending (&input_pending,
1295 READABLE_EVENTS_DO_TIMERS_NOW);
1298 return Qnil;
1301 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1302 doc: /* Evaluate BODY with mouse movement events enabled.
1303 Within a `track-mouse' form, mouse motion generates input events that
1304 you can read with `read-event'.
1305 Normally, mouse motion is ignored.
1306 usage: (track-mouse BODY...) */)
1307 (Lisp_Object args)
1309 ptrdiff_t count = SPECPDL_INDEX ();
1310 Lisp_Object val;
1312 record_unwind_protect (tracking_off, do_mouse_tracking);
1314 do_mouse_tracking = Qt;
1316 val = Fprogn (args);
1317 return unbind_to (count, val);
1320 /* If mouse has moved on some frame, return one of those frames.
1322 Return 0 otherwise.
1324 If ignore_mouse_drag_p is non-zero, ignore (implicit) mouse movement
1325 after resizing the tool-bar window. */
1327 #if !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS
1328 static
1329 #endif
1330 int ignore_mouse_drag_p;
1332 static FRAME_PTR
1333 some_mouse_moved (void)
1335 Lisp_Object tail, frame;
1337 if (ignore_mouse_drag_p)
1339 /* ignore_mouse_drag_p = 0; */
1340 return 0;
1343 FOR_EACH_FRAME (tail, frame)
1345 if (XFRAME (frame)->mouse_moved)
1346 return XFRAME (frame);
1349 return 0;
1352 #endif /* HAVE_MOUSE || HAVE_GPM */
1354 /* This is the actual command reading loop,
1355 sans error-handling encapsulation. */
1357 static int read_key_sequence (Lisp_Object *, int, Lisp_Object,
1358 int, int, int);
1359 void safe_run_hooks (Lisp_Object);
1360 static void adjust_point_for_property (ptrdiff_t, int);
1362 /* Cancel hourglass from protect_unwind.
1363 ARG is not used. */
1364 #ifdef HAVE_WINDOW_SYSTEM
1365 static Lisp_Object
1366 cancel_hourglass_unwind (Lisp_Object arg)
1368 cancel_hourglass ();
1369 return Qnil;
1371 #endif
1373 /* The last boundary auto-added to buffer-undo-list. */
1374 Lisp_Object last_undo_boundary;
1376 /* FIXME: This is wrong rather than test window-system, we should call
1377 a new set-selection, which will then dispatch to x-set-selection, or
1378 tty-set-selection, or w32-set-selection, ... */
1380 Lisp_Object
1381 command_loop_1 (void)
1383 Lisp_Object cmd;
1384 Lisp_Object keybuf[30];
1385 int i;
1386 EMACS_INT prev_modiff = 0;
1387 struct buffer *prev_buffer = NULL;
1388 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1389 int was_locked = single_kboard;
1390 #endif
1391 int already_adjusted = 0;
1393 kset_prefix_arg (current_kboard, Qnil);
1394 kset_last_prefix_arg (current_kboard, Qnil);
1395 Vdeactivate_mark = Qnil;
1396 waiting_for_input = 0;
1397 cancel_echoing ();
1399 this_command_key_count = 0;
1400 this_command_key_count_reset = 0;
1401 this_single_command_key_start = 0;
1403 if (NILP (Vmemory_full))
1405 /* Make sure this hook runs after commands that get errors and
1406 throw to top level. */
1407 /* Note that the value cell will never directly contain nil
1408 if the symbol is a local variable. */
1409 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1410 safe_run_hooks (Qpost_command_hook);
1412 /* If displaying a message, resize the echo area window to fit
1413 that message's size exactly. */
1414 if (!NILP (echo_area_buffer[0]))
1415 resize_echo_area_exactly ();
1417 /* If there are warnings waiting, process them. */
1418 if (!NILP (Vdelayed_warnings_list))
1419 safe_run_hooks (Qdelayed_warnings_hook);
1421 if (!NILP (Vdeferred_action_list))
1422 safe_run_hooks (Qdeferred_action_function);
1425 /* Do this after running Vpost_command_hook, for consistency. */
1426 kset_last_command (current_kboard, Vthis_command);
1427 kset_real_last_command (current_kboard, Vreal_this_command);
1428 if (!CONSP (last_command_event))
1429 kset_last_repeatable_command (current_kboard, Vreal_this_command);
1431 while (1)
1433 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1434 Fkill_emacs (Qnil);
1436 /* Make sure the current window's buffer is selected. */
1437 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1438 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1440 /* Display any malloc warning that just came out. Use while because
1441 displaying one warning can cause another. */
1443 while (pending_malloc_warning)
1444 display_malloc_warning ();
1446 Vdeactivate_mark = Qnil;
1448 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1450 /* Don't ignore mouse movements for more than a single command
1451 loop. (This flag is set in xdisp.c whenever the tool bar is
1452 resized, because the resize moves text up or down, and would
1453 generate false mouse drag events if we don't ignore them.) */
1454 ignore_mouse_drag_p = 0;
1455 #endif
1457 /* If minibuffer on and echo area in use,
1458 wait a short time and redraw minibuffer. */
1460 if (minibuf_level
1461 && !NILP (echo_area_buffer[0])
1462 && EQ (minibuf_window, echo_area_window)
1463 && NUMBERP (Vminibuffer_message_timeout))
1465 /* Bind inhibit-quit to t so that C-g gets read in
1466 rather than quitting back to the minibuffer. */
1467 ptrdiff_t count = SPECPDL_INDEX ();
1468 specbind (Qinhibit_quit, Qt);
1470 sit_for (Vminibuffer_message_timeout, 0, 2);
1472 /* Clear the echo area. */
1473 message2 (0, 0, 0);
1474 safe_run_hooks (Qecho_area_clear_hook);
1476 unbind_to (count, Qnil);
1478 /* If a C-g came in before, treat it as input now. */
1479 if (!NILP (Vquit_flag))
1481 Vquit_flag = Qnil;
1482 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1486 #if 0
1487 /* Select the frame that the last event came from. Usually,
1488 switch-frame events will take care of this, but if some lisp
1489 code swallows a switch-frame event, we'll fix things up here.
1490 Is this a good idea? */
1491 if (FRAMEP (internal_last_event_frame)
1492 && !EQ (internal_last_event_frame, selected_frame))
1493 Fselect_frame (internal_last_event_frame, Qnil);
1494 #endif
1495 /* If it has changed current-menubar from previous value,
1496 really recompute the menubar from the value. */
1497 if (! NILP (Vlucid_menu_bar_dirty_flag)
1498 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1499 call0 (Qrecompute_lucid_menubar);
1501 before_command_key_count = this_command_key_count;
1502 before_command_echo_length = echo_length ();
1504 Vthis_command = Qnil;
1505 Vreal_this_command = Qnil;
1506 Vthis_original_command = Qnil;
1507 Vthis_command_keys_shift_translated = Qnil;
1509 /* Read next key sequence; i gets its length. */
1510 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1511 Qnil, 0, 1, 1);
1513 /* A filter may have run while we were reading the input. */
1514 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1515 Fkill_emacs (Qnil);
1516 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1517 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1519 ++num_input_keys;
1521 /* Now we have read a key sequence of length I,
1522 or else I is 0 and we found end of file. */
1524 if (i == 0) /* End of file -- happens only in */
1525 return Qnil; /* a kbd macro, at the end. */
1526 /* -1 means read_key_sequence got a menu that was rejected.
1527 Just loop around and read another command. */
1528 if (i == -1)
1530 cancel_echoing ();
1531 this_command_key_count = 0;
1532 this_command_key_count_reset = 0;
1533 this_single_command_key_start = 0;
1534 goto finalize;
1537 last_command_event = keybuf[i - 1];
1539 /* If the previous command tried to force a specific window-start,
1540 forget about that, in case this command moves point far away
1541 from that position. But also throw away beg_unchanged and
1542 end_unchanged information in that case, so that redisplay will
1543 update the whole window properly. */
1544 if (XWINDOW (selected_window)->force_start)
1546 struct buffer *b;
1547 XWINDOW (selected_window)->force_start = 0;
1548 b = XBUFFER (XWINDOW (selected_window)->buffer);
1549 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1552 cmd = read_key_sequence_cmd;
1553 if (!NILP (Vexecuting_kbd_macro))
1555 if (!NILP (Vquit_flag))
1557 Vexecuting_kbd_macro = Qt;
1558 QUIT; /* Make some noise. */
1559 /* Will return since macro now empty. */
1563 /* Do redisplay processing after this command except in special
1564 cases identified below. */
1565 prev_buffer = current_buffer;
1566 prev_modiff = MODIFF;
1567 last_point_position = PT;
1568 last_point_position_window = selected_window;
1569 XSETBUFFER (last_point_position_buffer, prev_buffer);
1571 /* By default, we adjust point to a boundary of a region that
1572 has such a property that should be treated intangible
1573 (e.g. composition, display). But, some commands will set
1574 this variable differently. */
1575 Vdisable_point_adjustment = Qnil;
1577 /* Process filters and timers may have messed with deactivate-mark.
1578 reset it before we execute the command. */
1579 Vdeactivate_mark = Qnil;
1581 /* Remap command through active keymaps. */
1582 Vthis_original_command = cmd;
1583 if (!NILP (read_key_sequence_remapped))
1584 cmd = read_key_sequence_remapped;
1586 /* Execute the command. */
1588 Vthis_command = cmd;
1589 Vreal_this_command = cmd;
1590 safe_run_hooks (Qpre_command_hook);
1592 already_adjusted = 0;
1594 if (NILP (Vthis_command))
1596 /* nil means key is undefined. */
1597 Lisp_Object keys = Fvector (i, keybuf);
1598 keys = Fkey_description (keys, Qnil);
1599 bitch_at_user ();
1600 message_with_string ("%s is undefined", keys, 0);
1601 kset_defining_kbd_macro (current_kboard, Qnil);
1602 update_mode_lines = 1;
1603 /* If this is a down-mouse event, don't reset prefix-arg;
1604 pass it to the command run by the up event. */
1605 if (EVENT_HAS_PARAMETERS (last_command_event))
1607 Lisp_Object breakdown
1608 = parse_modifiers (EVENT_HEAD (last_command_event));
1609 int modifiers = XINT (XCAR (XCDR (breakdown)));
1610 if (!(modifiers & down_modifier))
1611 kset_prefix_arg (current_kboard, Qnil);
1613 else
1614 kset_prefix_arg (current_kboard, Qnil);
1616 else
1618 /* Here for a command that isn't executed directly. */
1620 #ifdef HAVE_WINDOW_SYSTEM
1621 ptrdiff_t scount = SPECPDL_INDEX ();
1623 if (display_hourglass_p
1624 && NILP (Vexecuting_kbd_macro))
1626 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1627 start_hourglass ();
1629 #endif
1631 if (NILP (KVAR (current_kboard, Vprefix_arg))) /* FIXME: Why? --Stef */
1633 Lisp_Object undo = BVAR (current_buffer, undo_list);
1634 Fundo_boundary ();
1635 last_undo_boundary
1636 = (EQ (undo, BVAR (current_buffer, undo_list))
1637 ? Qnil : BVAR (current_buffer, undo_list));
1639 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1641 #ifdef HAVE_WINDOW_SYSTEM
1642 /* Do not check display_hourglass_p here, because
1643 Fcommand_execute could change it, but we should cancel
1644 hourglass cursor anyway.
1645 But don't cancel the hourglass within a macro
1646 just because a command in the macro finishes. */
1647 if (NILP (Vexecuting_kbd_macro))
1648 unbind_to (scount, Qnil);
1649 #endif
1651 kset_last_prefix_arg (current_kboard, Vcurrent_prefix_arg);
1653 safe_run_hooks (Qpost_command_hook);
1655 /* If displaying a message, resize the echo area window to fit
1656 that message's size exactly. */
1657 if (!NILP (echo_area_buffer[0]))
1658 resize_echo_area_exactly ();
1660 /* If there are warnings waiting, process them. */
1661 if (!NILP (Vdelayed_warnings_list))
1662 safe_run_hooks (Qdelayed_warnings_hook);
1664 safe_run_hooks (Qdeferred_action_function);
1666 /* If there is a prefix argument,
1667 1) We don't want Vlast_command to be ``universal-argument''
1668 (that would be dumb), so don't set Vlast_command,
1669 2) we want to leave echoing on so that the prefix will be
1670 echoed as part of this key sequence, so don't call
1671 cancel_echoing, and
1672 3) we want to leave this_command_key_count non-zero, so that
1673 read_char will realize that it is re-reading a character, and
1674 not echo it a second time.
1676 If the command didn't actually create a prefix arg,
1677 but is merely a frame event that is transparent to prefix args,
1678 then the above doesn't apply. */
1679 if (NILP (KVAR (current_kboard, Vprefix_arg))
1680 || CONSP (last_command_event))
1682 kset_last_command (current_kboard, Vthis_command);
1683 kset_real_last_command (current_kboard, Vreal_this_command);
1684 if (!CONSP (last_command_event))
1685 kset_last_repeatable_command (current_kboard, Vreal_this_command);
1686 cancel_echoing ();
1687 this_command_key_count = 0;
1688 this_command_key_count_reset = 0;
1689 this_single_command_key_start = 0;
1692 if (!NILP (BVAR (current_buffer, mark_active))
1693 && !NILP (Vrun_hooks))
1695 /* In Emacs 22, setting transient-mark-mode to `only' was a
1696 way of turning it on for just one command. This usage is
1697 obsolete, but support it anyway. */
1698 if (EQ (Vtransient_mark_mode, Qidentity))
1699 Vtransient_mark_mode = Qnil;
1700 else if (EQ (Vtransient_mark_mode, Qonly))
1701 Vtransient_mark_mode = Qidentity;
1703 if (!NILP (Vdeactivate_mark))
1704 /* If `select-active-regions' is non-nil, this call to
1705 `deactivate-mark' also sets the PRIMARY selection. */
1706 call0 (Qdeactivate_mark);
1707 else
1709 /* Even if not deactivating the mark, set PRIMARY if
1710 `select-active-regions' is non-nil. */
1711 if (!NILP (Fwindow_system (Qnil))
1712 /* Even if mark_active is non-nil, the actual buffer
1713 marker may not have been set yet (Bug#7044). */
1714 && XMARKER (BVAR (current_buffer, mark))->buffer
1715 && (EQ (Vselect_active_regions, Qonly)
1716 ? EQ (CAR_SAFE (Vtransient_mark_mode), Qonly)
1717 : (!NILP (Vselect_active_regions)
1718 && !NILP (Vtransient_mark_mode)))
1719 && NILP (Fmemq (Vthis_command,
1720 Vselection_inhibit_update_commands)))
1722 ptrdiff_t beg =
1723 XINT (Fmarker_position (BVAR (current_buffer, mark)));
1724 ptrdiff_t end = PT;
1725 if (beg < end)
1726 call2 (Qx_set_selection, QPRIMARY,
1727 make_buffer_string (beg, end, 0));
1728 else if (beg > end)
1729 call2 (Qx_set_selection, QPRIMARY,
1730 make_buffer_string (end, beg, 0));
1731 /* Don't set empty selections. */
1734 if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1736 Lisp_Object hook = intern ("activate-mark-hook");
1737 Frun_hooks (1, &hook);
1741 Vsaved_region_selection = Qnil;
1744 finalize:
1746 if (current_buffer == prev_buffer
1747 && last_point_position != PT
1748 && NILP (Vdisable_point_adjustment)
1749 && NILP (Vglobal_disable_point_adjustment))
1751 if (last_point_position > BEGV
1752 && last_point_position < ZV
1753 && (composition_adjust_point (last_point_position,
1754 last_point_position)
1755 != last_point_position))
1756 /* The last point was temporarily set within a grapheme
1757 cluster to prevent automatic composition. To recover
1758 the automatic composition, we must update the
1759 display. */
1760 windows_or_buffers_changed++;
1761 if (!already_adjusted)
1762 adjust_point_for_property (last_point_position,
1763 MODIFF != prev_modiff);
1766 /* Install chars successfully executed in kbd macro. */
1768 if (!NILP (KVAR (current_kboard, defining_kbd_macro))
1769 && NILP (KVAR (current_kboard, Vprefix_arg)))
1770 finalize_kbd_macro_chars ();
1771 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1772 if (!was_locked)
1773 any_kboard_state ();
1774 #endif
1778 /* Adjust point to a boundary of a region that has such a property
1779 that should be treated intangible. For the moment, we check
1780 `composition', `display' and `invisible' properties.
1781 LAST_PT is the last position of point. */
1783 static void
1784 adjust_point_for_property (ptrdiff_t last_pt, int modified)
1786 ptrdiff_t beg, end;
1787 Lisp_Object val, overlay, tmp;
1788 /* When called after buffer modification, we should temporarily
1789 suppress the point adjustment for automatic composition so that a
1790 user can keep inserting another character at point or keep
1791 deleting characters around point. */
1792 int check_composition = ! modified, check_display = 1, check_invisible = 1;
1793 ptrdiff_t orig_pt = PT;
1795 /* FIXME: cycling is probably not necessary because these properties
1796 can't be usefully combined anyway. */
1797 while (check_composition || check_display || check_invisible)
1799 /* FIXME: check `intangible'. */
1800 if (check_composition
1801 && PT > BEGV && PT < ZV
1802 && (beg = composition_adjust_point (last_pt, PT)) != PT)
1804 SET_PT (beg);
1805 check_display = check_invisible = 1;
1807 check_composition = 0;
1808 if (check_display
1809 && PT > BEGV && PT < ZV
1810 && !NILP (val = get_char_property_and_overlay
1811 (make_number (PT), Qdisplay, Qnil, &overlay))
1812 && display_prop_intangible_p (val, overlay, PT, PT_BYTE)
1813 && (!OVERLAYP (overlay)
1814 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
1815 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
1816 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
1817 && (beg < PT /* && end > PT <- It's always the case. */
1818 || (beg <= PT && STRINGP (val) && SCHARS (val) == 0)))
1820 eassert (end > PT);
1821 SET_PT (PT < last_pt
1822 ? (STRINGP (val) && SCHARS (val) == 0
1823 ? max (beg - 1, BEGV)
1824 : beg)
1825 : end);
1826 check_composition = check_invisible = 1;
1828 check_display = 0;
1829 if (check_invisible && PT > BEGV && PT < ZV)
1831 int inv, ellipsis = 0;
1832 beg = end = PT;
1834 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1835 while (end < ZV
1836 #if 0
1837 /* FIXME: We should stop if we find a spot between
1838 two runs of `invisible' where inserted text would
1839 be visible. This is important when we have two
1840 invisible boundaries that enclose an area: if the
1841 area is empty, we need this test in order to make
1842 it possible to place point in the middle rather
1843 than skip both boundaries. However, this code
1844 also stops anywhere in a non-sticky text-property,
1845 which breaks (e.g.) Org mode. */
1846 && (val = get_pos_property (make_number (end),
1847 Qinvisible, Qnil),
1848 TEXT_PROP_MEANS_INVISIBLE (val))
1849 #endif
1850 && !NILP (val = get_char_property_and_overlay
1851 (make_number (end), Qinvisible, Qnil, &overlay))
1852 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1854 ellipsis = ellipsis || inv > 1
1855 || (OVERLAYP (overlay)
1856 && (!NILP (Foverlay_get (overlay, Qafter_string))
1857 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1858 tmp = Fnext_single_char_property_change
1859 (make_number (end), Qinvisible, Qnil, Qnil);
1860 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
1862 while (beg > BEGV
1863 #if 0
1864 && (val = get_pos_property (make_number (beg),
1865 Qinvisible, Qnil),
1866 TEXT_PROP_MEANS_INVISIBLE (val))
1867 #endif
1868 && !NILP (val = get_char_property_and_overlay
1869 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
1870 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1872 ellipsis = ellipsis || inv > 1
1873 || (OVERLAYP (overlay)
1874 && (!NILP (Foverlay_get (overlay, Qafter_string))
1875 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1876 tmp = Fprevious_single_char_property_change
1877 (make_number (beg), Qinvisible, Qnil, Qnil);
1878 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
1881 /* Move away from the inside area. */
1882 if (beg < PT && end > PT)
1884 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
1885 /* We haven't moved yet (so we don't need to fear
1886 infinite-looping) and we were outside the range
1887 before (so either end of the range still corresponds
1888 to a move in the right direction): pretend we moved
1889 less than we actually did, so that we still have
1890 more freedom below in choosing which end of the range
1891 to go to. */
1892 ? (orig_pt = -1, PT < last_pt ? end : beg)
1893 /* We either have moved already or the last point
1894 was already in the range: we don't get to choose
1895 which end of the range we have to go to. */
1896 : (PT < last_pt ? beg : end));
1897 check_composition = check_display = 1;
1899 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
1900 the point to something other than its argument, due to
1901 point-motion hooks, intangibility, etc. */
1902 eassert (PT == beg || PT == end);
1903 #endif
1905 /* Pretend the area doesn't exist if the buffer is not
1906 modified. */
1907 if (!modified && !ellipsis && beg < end)
1909 if (last_pt == beg && PT == end && end < ZV)
1910 (check_composition = check_display = 1, SET_PT (end + 1));
1911 else if (last_pt == end && PT == beg && beg > BEGV)
1912 (check_composition = check_display = 1, SET_PT (beg - 1));
1913 else if (PT == ((PT < last_pt) ? beg : end))
1914 /* We've already moved as far as we can. Trying to go
1915 to the other end would mean moving backwards and thus
1916 could lead to an infinite loop. */
1918 else if (val = get_pos_property (make_number (PT),
1919 Qinvisible, Qnil),
1920 TEXT_PROP_MEANS_INVISIBLE (val)
1921 && (val = get_pos_property
1922 (make_number (PT == beg ? end : beg),
1923 Qinvisible, Qnil),
1924 !TEXT_PROP_MEANS_INVISIBLE (val)))
1925 (check_composition = check_display = 1,
1926 SET_PT (PT == beg ? end : beg));
1929 check_invisible = 0;
1933 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1935 static Lisp_Object
1936 safe_run_hooks_1 (void)
1938 eassert (CONSP (Vinhibit_quit));
1939 return call0 (XCDR (Vinhibit_quit));
1942 /* Subroutine for safe_run_hooks: handle an error by clearing out the function
1943 from the hook. */
1945 static Lisp_Object
1946 safe_run_hooks_error (Lisp_Object error_data)
1948 Lisp_Object hook
1949 = CONSP (Vinhibit_quit) ? XCAR (Vinhibit_quit) : Vinhibit_quit;
1950 Lisp_Object fun = CONSP (Vinhibit_quit) ? XCDR (Vinhibit_quit) : Qnil;
1951 Lisp_Object args[4];
1952 args[0] = build_string ("Error in %s (%s): %S");
1953 args[1] = hook;
1954 args[2] = fun;
1955 args[3] = error_data;
1956 Fmessage (4, args);
1957 if (SYMBOLP (hook))
1959 Lisp_Object val;
1960 int found = 0;
1961 Lisp_Object newval = Qnil;
1962 for (val = find_symbol_value (hook); CONSP (val); val = XCDR (val))
1963 if (EQ (fun, XCAR (val)))
1964 found = 1;
1965 else
1966 newval = Fcons (XCAR (val), newval);
1967 if (found)
1968 return Fset (hook, Fnreverse (newval));
1969 /* Not found in the local part of the hook. Let's look at the global
1970 part. */
1971 newval = Qnil;
1972 for (val = (NILP (Fdefault_boundp (hook)) ? Qnil
1973 : Fdefault_value (hook));
1974 CONSP (val); val = XCDR (val))
1975 if (EQ (fun, XCAR (val)))
1976 found = 1;
1977 else
1978 newval = Fcons (XCAR (val), newval);
1979 if (found)
1980 return Fset_default (hook, Fnreverse (newval));
1982 return Qnil;
1985 static Lisp_Object
1986 safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Object *args)
1988 eassert (nargs == 1);
1989 if (CONSP (Vinhibit_quit))
1990 XSETCDR (Vinhibit_quit, args[0]);
1991 else
1992 Vinhibit_quit = Fcons (Vinhibit_quit, args[0]);
1994 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1995 return Qnil;
1998 /* If we get an error while running the hook, cause the hook variable
1999 to be nil. Also inhibit quits, so that C-g won't cause the hook
2000 to mysteriously evaporate. */
2002 void
2003 safe_run_hooks (Lisp_Object hook)
2005 /* FIXME: our `internal_condition_case' does not provide any way to pass data
2006 to its body or to its handlers other than via globals such as
2007 dynamically-bound variables ;-) */
2008 ptrdiff_t count = SPECPDL_INDEX ();
2009 specbind (Qinhibit_quit, hook);
2011 run_hook_with_args (1, &hook, safe_run_hook_funcall);
2013 unbind_to (count, Qnil);
2017 /* Nonzero means polling for input is temporarily suppressed. */
2019 int poll_suppress_count;
2021 /* Asynchronous timer for polling. */
2023 static struct atimer *poll_timer;
2026 #ifdef POLL_FOR_INPUT
2028 /* Poll for input, so that we catch a C-g if it comes in. This
2029 function is called from x_make_frame_visible, see comment
2030 there. */
2032 void
2033 poll_for_input_1 (void)
2035 /* Tell ns_read_socket() it is being called asynchronously so it can avoid
2036 doing anything dangerous. */
2037 #ifdef HAVE_NS
2038 ++handling_signal;
2039 #endif
2040 if (interrupt_input_blocked == 0
2041 && !waiting_for_input)
2042 read_avail_input (0);
2043 #ifdef HAVE_NS
2044 --handling_signal;
2045 #endif
2048 /* Timer callback function for poll_timer. TIMER is equal to
2049 poll_timer. */
2051 static void
2052 poll_for_input (struct atimer *timer)
2054 if (poll_suppress_count == 0)
2056 #ifdef SYNC_INPUT
2057 interrupt_input_pending = 1;
2058 pending_signals = 1;
2059 #else
2060 poll_for_input_1 ();
2061 #endif
2065 #endif /* POLL_FOR_INPUT */
2067 /* Begin signals to poll for input, if they are appropriate.
2068 This function is called unconditionally from various places. */
2070 void
2071 start_polling (void)
2073 #ifdef POLL_FOR_INPUT
2074 /* XXX This condition was (read_socket_hook && !interrupt_input),
2075 but read_socket_hook is not global anymore. Let's pretend that
2076 it's always set. */
2077 if (!interrupt_input)
2079 /* Turn alarm handling on unconditionally. It might have
2080 been turned off in process.c. */
2081 turn_on_atimers (1);
2083 /* If poll timer doesn't exist, are we need one with
2084 a different interval, start a new one. */
2085 if (poll_timer == NULL
2086 || EMACS_SECS (poll_timer->interval) != polling_period)
2088 time_t period = max (1, min (polling_period, TYPE_MAXIMUM (time_t)));
2089 EMACS_TIME interval = make_emacs_time (period, 0);
2091 if (poll_timer)
2092 cancel_atimer (poll_timer);
2094 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2095 poll_for_input, NULL);
2098 /* Let the timer's callback function poll for input
2099 if this becomes zero. */
2100 --poll_suppress_count;
2102 #endif
2105 /* Nonzero if we are using polling to handle input asynchronously. */
2108 input_polling_used (void)
2110 #ifdef POLL_FOR_INPUT
2111 /* XXX This condition was (read_socket_hook && !interrupt_input),
2112 but read_socket_hook is not global anymore. Let's pretend that
2113 it's always set. */
2114 return !interrupt_input;
2115 #else
2116 return 0;
2117 #endif
2120 /* Turn off polling. */
2122 void
2123 stop_polling (void)
2125 #ifdef POLL_FOR_INPUT
2126 /* XXX This condition was (read_socket_hook && !interrupt_input),
2127 but read_socket_hook is not global anymore. Let's pretend that
2128 it's always set. */
2129 if (!interrupt_input)
2130 ++poll_suppress_count;
2131 #endif
2134 /* Set the value of poll_suppress_count to COUNT
2135 and start or stop polling accordingly. */
2137 void
2138 set_poll_suppress_count (int count)
2140 #ifdef POLL_FOR_INPUT
2141 if (count == 0 && poll_suppress_count != 0)
2143 poll_suppress_count = 1;
2144 start_polling ();
2146 else if (count != 0 && poll_suppress_count == 0)
2148 stop_polling ();
2150 poll_suppress_count = count;
2151 #endif
2154 /* Bind polling_period to a value at least N.
2155 But don't decrease it. */
2157 void
2158 bind_polling_period (int n)
2160 #ifdef POLL_FOR_INPUT
2161 EMACS_INT new = polling_period;
2163 if (n > new)
2164 new = n;
2166 stop_other_atimers (poll_timer);
2167 stop_polling ();
2168 specbind (Qpolling_period, make_number (new));
2169 /* Start a new alarm with the new period. */
2170 start_polling ();
2171 #endif
2174 /* Apply the control modifier to CHARACTER. */
2177 make_ctrl_char (int c)
2179 /* Save the upper bits here. */
2180 int upper = c & ~0177;
2182 if (! ASCII_BYTE_P (c))
2183 return c |= ctrl_modifier;
2185 c &= 0177;
2187 /* Everything in the columns containing the upper-case letters
2188 denotes a control character. */
2189 if (c >= 0100 && c < 0140)
2191 int oc = c;
2192 c &= ~0140;
2193 /* Set the shift modifier for a control char
2194 made from a shifted letter. But only for letters! */
2195 if (oc >= 'A' && oc <= 'Z')
2196 c |= shift_modifier;
2199 /* The lower-case letters denote control characters too. */
2200 else if (c >= 'a' && c <= 'z')
2201 c &= ~0140;
2203 /* Include the bits for control and shift
2204 only if the basic ASCII code can't indicate them. */
2205 else if (c >= ' ')
2206 c |= ctrl_modifier;
2208 /* Replace the high bits. */
2209 c |= (upper & ~ctrl_modifier);
2211 return c;
2214 /* Display the help-echo property of the character after the mouse pointer.
2215 Either show it in the echo area, or call show-help-function to display
2216 it by other means (maybe in a tooltip).
2218 If HELP is nil, that means clear the previous help echo.
2220 If HELP is a string, display that string. If HELP is a function,
2221 call it with OBJECT and POS as arguments; the function should
2222 return a help string or nil for none. For all other types of HELP,
2223 evaluate it to obtain a string.
2225 WINDOW is the window in which the help was generated, if any.
2226 It is nil if not in a window.
2228 If OBJECT is a buffer, POS is the position in the buffer where the
2229 `help-echo' text property was found.
2231 If OBJECT is an overlay, that overlay has a `help-echo' property,
2232 and POS is the position in the overlay's buffer under the mouse.
2234 If OBJECT is a string (an overlay string or a string displayed with
2235 the `display' property). POS is the position in that string under
2236 the mouse.
2238 Note: this function may only be called with HELP nil or a string
2239 from X code running asynchronously. */
2241 void
2242 show_help_echo (Lisp_Object help, Lisp_Object window, Lisp_Object object,
2243 Lisp_Object pos)
2245 if (!NILP (help) && !STRINGP (help))
2247 if (FUNCTIONP (help))
2248 help = safe_call (4, help, window, object, pos);
2249 else
2250 help = safe_eval (help);
2252 if (!STRINGP (help))
2253 return;
2256 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
2257 if (!noninteractive && STRINGP (help))
2259 /* The mouse-fixup-help-message Lisp function can call
2260 mouse_position_hook, which resets the mouse_moved flags.
2261 This causes trouble if we are trying to read a mouse motion
2262 event (i.e., if we are inside a `track-mouse' form), so we
2263 restore the mouse_moved flag. */
2264 FRAME_PTR f = NILP (do_mouse_tracking) ? NULL : some_mouse_moved ();
2265 help = call1 (Qmouse_fixup_help_message, help);
2266 if (f)
2267 f->mouse_moved = 1;
2269 #endif
2271 if (STRINGP (help) || NILP (help))
2273 if (!NILP (Vshow_help_function))
2274 call1 (Vshow_help_function, help);
2275 help_echo_showing_p = STRINGP (help);
2281 /* Input of single characters from keyboard */
2283 static Lisp_Object kbd_buffer_get_event (KBOARD **kbp, int *used_mouse_menu,
2284 EMACS_TIME *end_time);
2285 static void record_char (Lisp_Object c);
2287 static Lisp_Object help_form_saved_window_configs;
2288 static Lisp_Object
2289 read_char_help_form_unwind (Lisp_Object arg)
2291 Lisp_Object window_config = XCAR (help_form_saved_window_configs);
2292 help_form_saved_window_configs = XCDR (help_form_saved_window_configs);
2293 if (!NILP (window_config))
2294 Fset_window_configuration (window_config);
2295 return Qnil;
2298 #define STOP_POLLING \
2299 do { if (! polling_stopped_here) stop_polling (); \
2300 polling_stopped_here = 1; } while (0)
2302 #define RESUME_POLLING \
2303 do { if (polling_stopped_here) start_polling (); \
2304 polling_stopped_here = 0; } while (0)
2306 /* read a character from the keyboard; call the redisplay if needed */
2307 /* commandflag 0 means do not autosave, but do redisplay.
2308 -1 means do not redisplay, but do autosave.
2309 1 means do both. */
2311 /* The arguments MAPS and NMAPS are for menu prompting.
2312 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2314 PREV_EVENT is the previous input event, or nil if we are reading
2315 the first event of a key sequence (or not reading a key sequence).
2316 If PREV_EVENT is t, that is a "magic" value that says
2317 not to run input methods, but in other respects to act as if
2318 not reading a key sequence.
2320 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2321 if we used a mouse menu to read the input, or zero otherwise. If
2322 USED_MOUSE_MENU is null, we don't dereference it.
2324 Value is -2 when we find input on another keyboard. A second call
2325 to read_char will read it.
2327 If END_TIME is non-null, it is a pointer to an EMACS_TIME
2328 specifying the maximum time to wait until. If no input arrives by
2329 that time, stop waiting and return nil.
2331 Value is t if we showed a menu and the user rejected it. */
2333 Lisp_Object
2334 read_char (int commandflag, ptrdiff_t nmaps, Lisp_Object *maps,
2335 Lisp_Object prev_event,
2336 int *used_mouse_menu, EMACS_TIME *end_time)
2338 volatile Lisp_Object c;
2339 ptrdiff_t jmpcount;
2340 jmp_buf local_getcjmp;
2341 jmp_buf save_jump;
2342 volatile int key_already_recorded = 0;
2343 Lisp_Object tem, save;
2344 volatile Lisp_Object previous_echo_area_message;
2345 volatile Lisp_Object also_record;
2346 volatile int reread;
2347 struct gcpro gcpro1, gcpro2;
2348 int volatile polling_stopped_here = 0;
2349 struct kboard *orig_kboard = current_kboard;
2351 also_record = Qnil;
2353 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2354 before_command_key_count = this_command_key_count;
2355 before_command_echo_length = echo_length ();
2356 #endif
2357 c = Qnil;
2358 previous_echo_area_message = Qnil;
2360 GCPRO2 (c, previous_echo_area_message);
2362 retry:
2364 reread = 0;
2365 if (CONSP (Vunread_post_input_method_events))
2367 c = XCAR (Vunread_post_input_method_events);
2368 Vunread_post_input_method_events
2369 = XCDR (Vunread_post_input_method_events);
2371 /* Undo what read_char_x_menu_prompt did when it unread
2372 additional keys returned by Fx_popup_menu. */
2373 if (CONSP (c)
2374 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2375 && NILP (XCDR (c)))
2376 c = XCAR (c);
2378 reread = 1;
2379 goto reread_first;
2382 if (unread_command_char != -1)
2384 XSETINT (c, unread_command_char);
2385 unread_command_char = -1;
2387 reread = 1;
2388 goto reread_first;
2391 if (CONSP (Vunread_command_events))
2393 int was_disabled = 0;
2395 c = XCAR (Vunread_command_events);
2396 Vunread_command_events = XCDR (Vunread_command_events);
2398 reread = 1;
2400 /* Undo what sit-for did when it unread additional keys
2401 inside universal-argument. */
2403 if (CONSP (c)
2404 && EQ (XCAR (c), Qt))
2406 reread = 0;
2407 c = XCDR (c);
2410 /* Undo what read_char_x_menu_prompt did when it unread
2411 additional keys returned by Fx_popup_menu. */
2412 if (CONSP (c)
2413 && EQ (XCDR (c), Qdisabled)
2414 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2416 was_disabled = 1;
2417 c = XCAR (c);
2420 /* If the queued event is something that used the mouse,
2421 set used_mouse_menu accordingly. */
2422 if (used_mouse_menu
2423 /* Also check was_disabled so last-nonmenu-event won't return
2424 a bad value when submenus are involved. (Bug#447) */
2425 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar) || was_disabled))
2426 *used_mouse_menu = 1;
2428 goto reread_for_input_method;
2431 if (CONSP (Vunread_input_method_events))
2433 c = XCAR (Vunread_input_method_events);
2434 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2436 /* Undo what read_char_x_menu_prompt did when it unread
2437 additional keys returned by Fx_popup_menu. */
2438 if (CONSP (c)
2439 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2440 && NILP (XCDR (c)))
2441 c = XCAR (c);
2442 reread = 1;
2443 goto reread_for_input_method;
2446 this_command_key_count_reset = 0;
2448 if (!NILP (Vexecuting_kbd_macro))
2450 /* We set this to Qmacro; since that's not a frame, nobody will
2451 try to switch frames on us, and the selected window will
2452 remain unchanged.
2454 Since this event came from a macro, it would be misleading to
2455 leave internal_last_event_frame set to wherever the last
2456 real event came from. Normally, a switch-frame event selects
2457 internal_last_event_frame after each command is read, but
2458 events read from a macro should never cause a new frame to be
2459 selected. */
2460 Vlast_event_frame = internal_last_event_frame = Qmacro;
2462 /* Exit the macro if we are at the end.
2463 Also, some things replace the macro with t
2464 to force an early exit. */
2465 if (EQ (Vexecuting_kbd_macro, Qt)
2466 || executing_kbd_macro_index >= XFASTINT (Flength (Vexecuting_kbd_macro)))
2468 XSETINT (c, -1);
2469 goto exit;
2472 c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index));
2473 if (STRINGP (Vexecuting_kbd_macro)
2474 && (XFASTINT (c) & 0x80) && (XFASTINT (c) <= 0xff))
2475 XSETFASTINT (c, CHAR_META | (XFASTINT (c) & ~0x80));
2477 executing_kbd_macro_index++;
2479 goto from_macro;
2482 if (!NILP (unread_switch_frame))
2484 c = unread_switch_frame;
2485 unread_switch_frame = Qnil;
2487 /* This event should make it into this_command_keys, and get echoed
2488 again, so we do not set `reread'. */
2489 goto reread_first;
2492 /* if redisplay was requested */
2493 if (commandflag >= 0)
2495 int echo_current = EQ (echo_message_buffer, echo_area_buffer[0]);
2497 /* If there is pending input, process any events which are not
2498 user-visible, such as X selection_request events. */
2499 if (input_pending
2500 || detect_input_pending_run_timers (0))
2501 swallow_events (0); /* may clear input_pending */
2503 /* Redisplay if no pending input. */
2504 while (!input_pending)
2506 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2507 redisplay_preserve_echo_area (5);
2508 else
2509 redisplay ();
2511 if (!input_pending)
2512 /* Normal case: no input arrived during redisplay. */
2513 break;
2515 /* Input arrived and pre-empted redisplay.
2516 Process any events which are not user-visible. */
2517 swallow_events (0);
2518 /* If that cleared input_pending, try again to redisplay. */
2521 /* Prevent the redisplay we just did
2522 from messing up echoing of the input after the prompt. */
2523 if (commandflag == 0 && echo_current)
2524 echo_message_buffer = echo_area_buffer[0];
2528 /* Message turns off echoing unless more keystrokes turn it on again.
2530 The code in 20.x for the condition was
2532 1. echo_area_glyphs && *echo_area_glyphs
2533 2. && echo_area_glyphs != current_kboard->echobuf
2534 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2536 (1) means there's a current message displayed
2538 (2) means it's not the message from echoing from the current
2539 kboard.
2541 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2542 is set to a non-null value. This is done in read_char and it is
2543 set to echo_area_glyphs after a call to echo_char. That means
2544 ok_to_echo_at_next_pause is either null or
2545 current_kboard->echobuf with the appropriate current_kboard at
2546 that time.
2548 So, condition (3) means in clear text ok_to_echo_at_next_pause
2549 must be either null, or the current message isn't from echoing at
2550 all, or it's from echoing from a different kboard than the
2551 current one. */
2553 if (/* There currently is something in the echo area. */
2554 !NILP (echo_area_buffer[0])
2555 && (/* And it's either not from echoing. */
2556 !EQ (echo_area_buffer[0], echo_message_buffer)
2557 /* Or it's an echo from a different kboard. */
2558 || echo_kboard != current_kboard
2559 /* Or we explicitly allow overwriting whatever there is. */
2560 || ok_to_echo_at_next_pause == NULL))
2561 cancel_echoing ();
2562 else
2563 echo_dash ();
2565 /* Try reading a character via menu prompting in the minibuf.
2566 Try this before the sit-for, because the sit-for
2567 would do the wrong thing if we are supposed to do
2568 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2569 after a mouse event so don't try a minibuf menu. */
2570 c = Qnil;
2571 if (nmaps > 0 && INTERACTIVE
2572 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2573 /* Don't bring up a menu if we already have another event. */
2574 && NILP (Vunread_command_events)
2575 && unread_command_char < 0
2576 && !detect_input_pending_run_timers (0))
2578 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2580 if (INTEGERP (c) && XINT (c) == -2)
2581 return c; /* wrong_kboard_jmpbuf */
2583 if (! NILP (c))
2585 key_already_recorded = 1;
2586 goto non_reread_1;
2590 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2591 We will do that below, temporarily for short sections of code,
2592 when appropriate. local_getcjmp must be in effect
2593 around any call to sit_for or kbd_buffer_get_event;
2594 it *must not* be in effect when we call redisplay. */
2596 jmpcount = SPECPDL_INDEX ();
2597 if (_setjmp (local_getcjmp))
2599 /* Handle quits while reading the keyboard. */
2600 /* We must have saved the outer value of getcjmp here,
2601 so restore it now. */
2602 restore_getcjmp (save_jump);
2603 unbind_to (jmpcount, Qnil);
2604 XSETINT (c, quit_char);
2605 internal_last_event_frame = selected_frame;
2606 Vlast_event_frame = internal_last_event_frame;
2607 /* If we report the quit char as an event,
2608 don't do so more than once. */
2609 if (!NILP (Vinhibit_quit))
2610 Vquit_flag = Qnil;
2613 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2614 if (kb != current_kboard)
2616 Lisp_Object last = KVAR (kb, kbd_queue);
2617 /* We shouldn't get here if we were in single-kboard mode! */
2618 if (single_kboard)
2619 abort ();
2620 if (CONSP (last))
2622 while (CONSP (XCDR (last)))
2623 last = XCDR (last);
2624 if (!NILP (XCDR (last)))
2625 abort ();
2627 if (!CONSP (last))
2628 kset_kbd_queue (kb, Fcons (c, Qnil));
2629 else
2630 XSETCDR (last, Fcons (c, Qnil));
2631 kb->kbd_queue_has_data = 1;
2632 current_kboard = kb;
2633 /* This is going to exit from read_char
2634 so we had better get rid of this frame's stuff. */
2635 UNGCPRO;
2636 return make_number (-2); /* wrong_kboard_jmpbuf */
2639 goto non_reread;
2642 /* Start idle timers if no time limit is supplied. We don't do it
2643 if a time limit is supplied to avoid an infinite recursion in the
2644 situation where an idle timer calls `sit-for'. */
2646 if (!end_time)
2647 timer_start_idle ();
2649 /* If in middle of key sequence and minibuffer not active,
2650 start echoing if enough time elapses. */
2652 if (minibuf_level == 0
2653 && !end_time
2654 && !current_kboard->immediate_echo
2655 && this_command_key_count > 0
2656 && ! noninteractive
2657 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2658 && NILP (Fzerop (Vecho_keystrokes))
2659 && (/* No message. */
2660 NILP (echo_area_buffer[0])
2661 /* Or empty message. */
2662 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2663 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2664 /* Or already echoing from same kboard. */
2665 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2666 /* Or not echoing before and echoing allowed. */
2667 || (!echo_kboard && ok_to_echo_at_next_pause)))
2669 /* After a mouse event, start echoing right away.
2670 This is because we are probably about to display a menu,
2671 and we don't want to delay before doing so. */
2672 if (EVENT_HAS_PARAMETERS (prev_event))
2673 echo_now ();
2674 else
2676 Lisp_Object tem0;
2678 save_getcjmp (save_jump);
2679 restore_getcjmp (local_getcjmp);
2680 tem0 = sit_for (Vecho_keystrokes, 1, 1);
2681 restore_getcjmp (save_jump);
2682 if (EQ (tem0, Qt)
2683 && ! CONSP (Vunread_command_events))
2684 echo_now ();
2688 /* Maybe auto save due to number of keystrokes. */
2690 if (commandflag != 0
2691 && auto_save_interval > 0
2692 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2693 && !detect_input_pending_run_timers (0))
2695 Fdo_auto_save (Qnil, Qnil);
2696 /* Hooks can actually change some buffers in auto save. */
2697 redisplay ();
2700 /* Try reading using an X menu.
2701 This is never confused with reading using the minibuf
2702 because the recursive call of read_char in read_char_minibuf_menu_prompt
2703 does not pass on any keymaps. */
2705 if (nmaps > 0 && INTERACTIVE
2706 && !NILP (prev_event)
2707 && EVENT_HAS_PARAMETERS (prev_event)
2708 && !EQ (XCAR (prev_event), Qmenu_bar)
2709 && !EQ (XCAR (prev_event), Qtool_bar)
2710 /* Don't bring up a menu if we already have another event. */
2711 && NILP (Vunread_command_events)
2712 && unread_command_char < 0)
2714 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2716 /* Now that we have read an event, Emacs is not idle. */
2717 if (!end_time)
2718 timer_stop_idle ();
2720 goto exit;
2723 /* Maybe autosave and/or garbage collect due to idleness. */
2725 if (INTERACTIVE && NILP (c))
2727 int delay_level;
2728 ptrdiff_t buffer_size;
2730 /* Slow down auto saves logarithmically in size of current buffer,
2731 and garbage collect while we're at it. */
2732 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2733 last_non_minibuf_size = Z - BEG;
2734 buffer_size = (last_non_minibuf_size >> 8) + 1;
2735 delay_level = 0;
2736 while (buffer_size > 64)
2737 delay_level++, buffer_size -= buffer_size >> 2;
2738 if (delay_level < 4) delay_level = 4;
2739 /* delay_level is 4 for files under around 50k, 7 at 100k,
2740 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2742 /* Auto save if enough time goes by without input. */
2743 if (commandflag != 0
2744 && num_nonmacro_input_events > last_auto_save
2745 && INTEGERP (Vauto_save_timeout)
2746 && XINT (Vauto_save_timeout) > 0)
2748 Lisp_Object tem0;
2749 EMACS_INT timeout = (delay_level
2750 * min (XFASTINT (Vauto_save_timeout) / 4,
2751 MOST_POSITIVE_FIXNUM / delay_level));
2752 save_getcjmp (save_jump);
2753 restore_getcjmp (local_getcjmp);
2754 tem0 = sit_for (make_number (timeout), 1, 1);
2755 restore_getcjmp (save_jump);
2757 if (EQ (tem0, Qt)
2758 && ! CONSP (Vunread_command_events))
2760 Fdo_auto_save (Qnil, Qnil);
2761 redisplay ();
2765 /* If there is still no input available, ask for GC. */
2766 if (!detect_input_pending_run_timers (0))
2767 maybe_gc ();
2770 /* Notify the caller if an autosave hook, or a timer, sentinel or
2771 filter in the sit_for calls above have changed the current
2772 kboard. This could happen if they use the minibuffer or start a
2773 recursive edit, like the fancy splash screen in server.el's
2774 filter. If this longjmp wasn't here, read_key_sequence would
2775 interpret the next key sequence using the wrong translation
2776 tables and function keymaps. */
2777 if (NILP (c) && current_kboard != orig_kboard)
2779 UNGCPRO;
2780 return make_number (-2); /* wrong_kboard_jmpbuf */
2783 /* If this has become non-nil here, it has been set by a timer
2784 or sentinel or filter. */
2785 if (CONSP (Vunread_command_events))
2787 c = XCAR (Vunread_command_events);
2788 Vunread_command_events = XCDR (Vunread_command_events);
2791 /* Read something from current KBOARD's side queue, if possible. */
2793 if (NILP (c))
2795 if (current_kboard->kbd_queue_has_data)
2797 if (!CONSP (KVAR (current_kboard, kbd_queue)))
2798 abort ();
2799 c = XCAR (KVAR (current_kboard, kbd_queue));
2800 kset_kbd_queue (current_kboard,
2801 XCDR (KVAR (current_kboard, kbd_queue)));
2802 if (NILP (KVAR (current_kboard, kbd_queue)))
2803 current_kboard->kbd_queue_has_data = 0;
2804 input_pending = readable_events (0);
2805 if (EVENT_HAS_PARAMETERS (c)
2806 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2807 internal_last_event_frame = XCAR (XCDR (c));
2808 Vlast_event_frame = internal_last_event_frame;
2812 /* If current_kboard's side queue is empty check the other kboards.
2813 If one of them has data that we have not yet seen here,
2814 switch to it and process the data waiting for it.
2816 Note: if the events queued up for another kboard
2817 have already been seen here, and therefore are not a complete command,
2818 the kbd_queue_has_data field is 0, so we skip that kboard here.
2819 That's to avoid an infinite loop switching between kboards here. */
2820 if (NILP (c) && !single_kboard)
2822 KBOARD *kb;
2823 for (kb = all_kboards; kb; kb = kb->next_kboard)
2824 if (kb->kbd_queue_has_data)
2826 current_kboard = kb;
2827 /* This is going to exit from read_char
2828 so we had better get rid of this frame's stuff. */
2829 UNGCPRO;
2830 return make_number (-2); /* wrong_kboard_jmpbuf */
2834 wrong_kboard:
2836 STOP_POLLING;
2838 /* Finally, we read from the main queue,
2839 and if that gives us something we can't use yet, we put it on the
2840 appropriate side queue and try again. */
2842 if (NILP (c))
2844 KBOARD *kb IF_LINT (= NULL);
2846 if (end_time && EMACS_TIME_LE (*end_time, current_emacs_time ()))
2847 goto exit;
2849 /* Actually read a character, waiting if necessary. */
2850 save_getcjmp (save_jump);
2851 restore_getcjmp (local_getcjmp);
2852 if (!end_time)
2853 timer_start_idle ();
2854 c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time);
2855 restore_getcjmp (save_jump);
2857 if (! NILP (c) && (kb != current_kboard))
2859 Lisp_Object last = KVAR (kb, kbd_queue);
2860 if (CONSP (last))
2862 while (CONSP (XCDR (last)))
2863 last = XCDR (last);
2864 if (!NILP (XCDR (last)))
2865 abort ();
2867 if (!CONSP (last))
2868 kset_kbd_queue (kb, Fcons (c, Qnil));
2869 else
2870 XSETCDR (last, Fcons (c, Qnil));
2871 kb->kbd_queue_has_data = 1;
2872 c = Qnil;
2873 if (single_kboard)
2874 goto wrong_kboard;
2875 current_kboard = kb;
2876 /* This is going to exit from read_char
2877 so we had better get rid of this frame's stuff. */
2878 UNGCPRO;
2879 return make_number (-2);
2883 /* Terminate Emacs in batch mode if at eof. */
2884 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2885 Fkill_emacs (make_number (1));
2887 if (INTEGERP (c))
2889 /* Add in any extra modifiers, where appropriate. */
2890 if ((extra_keyboard_modifiers & CHAR_CTL)
2891 || ((extra_keyboard_modifiers & 0177) < ' '
2892 && (extra_keyboard_modifiers & 0177) != 0))
2893 XSETINT (c, make_ctrl_char (XINT (c)));
2895 /* Transfer any other modifier bits directly from
2896 extra_keyboard_modifiers to c. Ignore the actual character code
2897 in the low 16 bits of extra_keyboard_modifiers. */
2898 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2901 non_reread:
2903 if (!end_time)
2904 timer_stop_idle ();
2905 RESUME_POLLING;
2907 if (NILP (c))
2909 if (commandflag >= 0
2910 && !input_pending && !detect_input_pending_run_timers (0))
2911 redisplay ();
2913 goto wrong_kboard;
2916 non_reread_1:
2918 /* Buffer switch events are only for internal wakeups
2919 so don't show them to the user.
2920 Also, don't record a key if we already did. */
2921 if (BUFFERP (c) || key_already_recorded)
2922 goto exit;
2924 /* Process special events within read_char
2925 and loop around to read another event. */
2926 save = Vquit_flag;
2927 Vquit_flag = Qnil;
2928 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2929 Vquit_flag = save;
2931 if (!NILP (tem))
2933 struct buffer *prev_buffer = current_buffer;
2934 #if 0 /* This shouldn't be necessary anymore. --lorentey */
2935 int was_locked = single_kboard;
2936 ptrdiff_t count = SPECPDL_INDEX ();
2937 record_single_kboard_state ();
2938 #endif
2940 last_input_event = c;
2941 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_event), Qt);
2943 if (CONSP (c) && EQ (XCAR (c), Qselect_window) && !end_time)
2944 /* We stopped being idle for this event; undo that. This
2945 prevents automatic window selection (under
2946 mouse_autoselect_window from acting as a real input event, for
2947 example banishing the mouse under mouse-avoidance-mode. */
2948 timer_resume_idle ();
2950 #if 0 /* This shouldn't be necessary anymore. --lorentey */
2951 /* Resume allowing input from any kboard, if that was true before. */
2952 if (!was_locked)
2953 any_kboard_state ();
2954 unbind_to (count, Qnil);
2955 #endif
2957 if (current_buffer != prev_buffer)
2959 /* The command may have changed the keymaps. Pretend there
2960 is input in another keyboard and return. This will
2961 recalculate keymaps. */
2962 c = make_number (-2);
2963 goto exit;
2965 else
2966 goto retry;
2969 /* Handle things that only apply to characters. */
2970 if (INTEGERP (c))
2972 /* If kbd_buffer_get_event gave us an EOF, return that. */
2973 if (XINT (c) == -1)
2974 goto exit;
2976 if ((STRINGP (KVAR (current_kboard, Vkeyboard_translate_table))
2977 && UNSIGNED_CMP (XFASTINT (c), <,
2978 SCHARS (KVAR (current_kboard,
2979 Vkeyboard_translate_table))))
2980 || (VECTORP (KVAR (current_kboard, Vkeyboard_translate_table))
2981 && UNSIGNED_CMP (XFASTINT (c), <,
2982 ASIZE (KVAR (current_kboard,
2983 Vkeyboard_translate_table))))
2984 || (CHAR_TABLE_P (KVAR (current_kboard, Vkeyboard_translate_table))
2985 && CHARACTERP (c)))
2987 Lisp_Object d;
2988 d = Faref (KVAR (current_kboard, Vkeyboard_translate_table), c);
2989 /* nil in keyboard-translate-table means no translation. */
2990 if (!NILP (d))
2991 c = d;
2995 /* If this event is a mouse click in the menu bar,
2996 return just menu-bar for now. Modify the mouse click event
2997 so we won't do this twice, then queue it up. */
2998 if (EVENT_HAS_PARAMETERS (c)
2999 && CONSP (XCDR (c))
3000 && CONSP (EVENT_START (c))
3001 && CONSP (XCDR (EVENT_START (c))))
3003 Lisp_Object posn;
3005 posn = POSN_POSN (EVENT_START (c));
3006 /* Handle menu-bar events:
3007 insert the dummy prefix event `menu-bar'. */
3008 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
3010 /* Change menu-bar to (menu-bar) as the event "position". */
3011 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
3013 also_record = c;
3014 Vunread_command_events = Fcons (c, Vunread_command_events);
3015 c = posn;
3019 /* Store these characters into recent_keys, the dribble file if any,
3020 and the keyboard macro being defined, if any. */
3021 record_char (c);
3022 if (! NILP (also_record))
3023 record_char (also_record);
3025 /* Wipe the echo area.
3026 But first, if we are about to use an input method,
3027 save the echo area contents for it to refer to. */
3028 if (INTEGERP (c)
3029 && ! NILP (Vinput_method_function)
3030 && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127)
3032 previous_echo_area_message = Fcurrent_message ();
3033 Vinput_method_previous_message = previous_echo_area_message;
3036 /* Now wipe the echo area, except for help events which do their
3037 own stuff with the echo area. */
3038 if (!CONSP (c)
3039 || (!(EQ (Qhelp_echo, XCAR (c)))
3040 && !(EQ (Qswitch_frame, XCAR (c)))
3041 /* Don't wipe echo area for select window events: These might
3042 get delayed via `mouse-autoselect-window' (Bug#11304). */
3043 && !(EQ (Qselect_window, XCAR (c)))))
3045 if (!NILP (echo_area_buffer[0]))
3047 safe_run_hooks (Qecho_area_clear_hook);
3048 clear_message (1, 0);
3052 reread_for_input_method:
3053 from_macro:
3054 /* Pass this to the input method, if appropriate. */
3055 if (INTEGERP (c)
3056 && ! NILP (Vinput_method_function)
3057 /* Don't run the input method within a key sequence,
3058 after the first event of the key sequence. */
3059 && NILP (prev_event)
3060 && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127)
3062 Lisp_Object keys;
3063 ptrdiff_t key_count;
3064 int key_count_reset;
3065 struct gcpro gcpro1;
3066 ptrdiff_t count = SPECPDL_INDEX ();
3068 /* Save the echo status. */
3069 int saved_immediate_echo = current_kboard->immediate_echo;
3070 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
3071 Lisp_Object saved_echo_string = KVAR (current_kboard, echo_string);
3072 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
3074 #if 0
3075 if (before_command_restore_flag)
3077 this_command_key_count = before_command_key_count_1;
3078 if (this_command_key_count < this_single_command_key_start)
3079 this_single_command_key_start = this_command_key_count;
3080 echo_truncate (before_command_echo_length_1);
3081 before_command_restore_flag = 0;
3083 #endif
3085 /* Save the this_command_keys status. */
3086 key_count = this_command_key_count;
3087 key_count_reset = this_command_key_count_reset;
3089 if (key_count > 0)
3090 keys = Fcopy_sequence (this_command_keys);
3091 else
3092 keys = Qnil;
3093 GCPRO1 (keys);
3095 /* Clear out this_command_keys. */
3096 this_command_key_count = 0;
3097 this_command_key_count_reset = 0;
3099 /* Now wipe the echo area. */
3100 if (!NILP (echo_area_buffer[0]))
3101 safe_run_hooks (Qecho_area_clear_hook);
3102 clear_message (1, 0);
3103 echo_truncate (0);
3105 /* If we are not reading a key sequence,
3106 never use the echo area. */
3107 if (maps == 0)
3109 specbind (Qinput_method_use_echo_area, Qt);
3112 /* Call the input method. */
3113 tem = call1 (Vinput_method_function, c);
3115 tem = unbind_to (count, tem);
3117 /* Restore the saved echoing state
3118 and this_command_keys state. */
3119 this_command_key_count = key_count;
3120 this_command_key_count_reset = key_count_reset;
3121 if (key_count > 0)
3122 this_command_keys = keys;
3124 cancel_echoing ();
3125 ok_to_echo_at_next_pause = saved_ok_to_echo;
3126 kset_echo_string (current_kboard, saved_echo_string);
3127 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3128 if (saved_immediate_echo)
3129 echo_now ();
3131 UNGCPRO;
3133 /* The input method can return no events. */
3134 if (! CONSP (tem))
3136 /* Bring back the previous message, if any. */
3137 if (! NILP (previous_echo_area_message))
3138 message_with_string ("%s", previous_echo_area_message, 0);
3139 goto retry;
3141 /* It returned one event or more. */
3142 c = XCAR (tem);
3143 Vunread_post_input_method_events
3144 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3147 reread_first:
3149 /* Display help if not echoing. */
3150 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3152 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3153 Lisp_Object help, object, position, window, htem;
3155 htem = Fcdr (XCDR (c));
3156 help = Fcar (htem);
3157 htem = Fcdr (htem);
3158 window = Fcar (htem);
3159 htem = Fcdr (htem);
3160 object = Fcar (htem);
3161 htem = Fcdr (htem);
3162 position = Fcar (htem);
3164 show_help_echo (help, window, object, position);
3166 /* We stopped being idle for this event; undo that. */
3167 if (!end_time)
3168 timer_resume_idle ();
3169 goto retry;
3172 if ((! reread || this_command_key_count == 0
3173 || this_command_key_count_reset)
3174 && !end_time)
3177 /* Don't echo mouse motion events. */
3178 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3179 && NILP (Fzerop (Vecho_keystrokes))
3180 && ! (EVENT_HAS_PARAMETERS (c)
3181 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3183 echo_char (c);
3184 if (! NILP (also_record))
3185 echo_char (also_record);
3186 /* Once we reread a character, echoing can happen
3187 the next time we pause to read a new one. */
3188 ok_to_echo_at_next_pause = current_kboard;
3191 /* Record this character as part of the current key. */
3192 add_command_key (c);
3193 if (! NILP (also_record))
3194 add_command_key (also_record);
3197 last_input_event = c;
3198 num_input_events++;
3200 /* Process the help character specially if enabled */
3201 if (!NILP (Vhelp_form) && help_char_p (c))
3203 ptrdiff_t count = SPECPDL_INDEX ();
3205 help_form_saved_window_configs
3206 = Fcons (Fcurrent_window_configuration (Qnil),
3207 help_form_saved_window_configs);
3208 record_unwind_protect (read_char_help_form_unwind, Qnil);
3209 call0 (Qhelp_form_show);
3211 cancel_echoing ();
3214 c = read_char (0, 0, 0, Qnil, 0, NULL);
3215 if (EVENT_HAS_PARAMETERS (c)
3216 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_click))
3217 XSETCAR (help_form_saved_window_configs, Qnil);
3219 while (BUFFERP (c));
3220 /* Remove the help from the frame */
3221 unbind_to (count, Qnil);
3223 redisplay ();
3224 if (EQ (c, make_number (040)))
3226 cancel_echoing ();
3228 c = read_char (0, 0, 0, Qnil, 0, NULL);
3229 while (BUFFERP (c));
3233 exit:
3234 RESUME_POLLING;
3235 RETURN_UNGCPRO (c);
3238 /* Record a key that came from a mouse menu.
3239 Record it for echoing, for this-command-keys, and so on. */
3241 static void
3242 record_menu_key (Lisp_Object c)
3244 /* Wipe the echo area. */
3245 clear_message (1, 0);
3247 record_char (c);
3249 #if 0
3250 before_command_key_count = this_command_key_count;
3251 before_command_echo_length = echo_length ();
3252 #endif
3254 /* Don't echo mouse motion events. */
3255 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3256 && NILP (Fzerop (Vecho_keystrokes)))
3258 echo_char (c);
3260 /* Once we reread a character, echoing can happen
3261 the next time we pause to read a new one. */
3262 ok_to_echo_at_next_pause = 0;
3265 /* Record this character as part of the current key. */
3266 add_command_key (c);
3268 /* Re-reading in the middle of a command */
3269 last_input_event = c;
3270 num_input_events++;
3273 /* Return 1 if should recognize C as "the help character". */
3275 static int
3276 help_char_p (Lisp_Object c)
3278 Lisp_Object tail;
3280 if (EQ (c, Vhelp_char))
3281 return 1;
3282 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3283 if (EQ (c, XCAR (tail)))
3284 return 1;
3285 return 0;
3288 /* Record the input event C in various ways. */
3290 static void
3291 record_char (Lisp_Object c)
3293 int recorded = 0;
3295 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3297 /* To avoid filling recent_keys with help-echo and mouse-movement
3298 events, we filter out repeated help-echo events, only store the
3299 first and last in a series of mouse-movement events, and don't
3300 store repeated help-echo events which are only separated by
3301 mouse-movement events. */
3303 Lisp_Object ev1, ev2, ev3;
3304 int ix1, ix2, ix3;
3306 if ((ix1 = recent_keys_index - 1) < 0)
3307 ix1 = NUM_RECENT_KEYS - 1;
3308 ev1 = AREF (recent_keys, ix1);
3310 if ((ix2 = ix1 - 1) < 0)
3311 ix2 = NUM_RECENT_KEYS - 1;
3312 ev2 = AREF (recent_keys, ix2);
3314 if ((ix3 = ix2 - 1) < 0)
3315 ix3 = NUM_RECENT_KEYS - 1;
3316 ev3 = AREF (recent_keys, ix3);
3318 if (EQ (XCAR (c), Qhelp_echo))
3320 /* Don't record `help-echo' in recent_keys unless it shows some help
3321 message, and a different help than the previously recorded
3322 event. */
3323 Lisp_Object help, last_help;
3325 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3326 if (!STRINGP (help))
3327 recorded = 1;
3328 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3329 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3330 recorded = 1;
3331 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3332 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3333 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3334 recorded = -1;
3335 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3336 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3337 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3338 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3339 recorded = -2;
3341 else if (EQ (XCAR (c), Qmouse_movement))
3343 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3344 So additional mouse movement events replace the last element. */
3345 Lisp_Object last_window, window;
3347 window = Fcar_safe (Fcar_safe (XCDR (c)));
3348 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3349 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3350 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3351 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3353 ASET (recent_keys, ix1, c);
3354 recorded = 1;
3358 else
3359 store_kbd_macro_char (c);
3361 if (!recorded)
3363 total_keys += total_keys < NUM_RECENT_KEYS;
3364 ASET (recent_keys, recent_keys_index, c);
3365 if (++recent_keys_index >= NUM_RECENT_KEYS)
3366 recent_keys_index = 0;
3368 else if (recorded < 0)
3370 /* We need to remove one or two events from recent_keys.
3371 To do this, we simply put nil at those events and move the
3372 recent_keys_index backwards over those events. Usually,
3373 users will never see those nil events, as they will be
3374 overwritten by the command keys entered to see recent_keys
3375 (e.g. C-h l). */
3377 while (recorded++ < 0 && total_keys > 0)
3379 if (total_keys < NUM_RECENT_KEYS)
3380 total_keys--;
3381 if (--recent_keys_index < 0)
3382 recent_keys_index = NUM_RECENT_KEYS - 1;
3383 ASET (recent_keys, recent_keys_index, Qnil);
3387 num_nonmacro_input_events++;
3389 /* Write c to the dribble file. If c is a lispy event, write
3390 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3391 If you, dear reader, have a better idea, you've got the source. :-) */
3392 if (dribble)
3394 BLOCK_INPUT;
3395 if (INTEGERP (c))
3397 if (XUINT (c) < 0x100)
3398 putc (XUINT (c), dribble);
3399 else
3400 fprintf (dribble, " 0x%"pI"x", XUINT (c));
3402 else
3404 Lisp_Object dribblee;
3406 /* If it's a structured event, take the event header. */
3407 dribblee = EVENT_HEAD (c);
3409 if (SYMBOLP (dribblee))
3411 putc ('<', dribble);
3412 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3413 SBYTES (SYMBOL_NAME (dribblee)),
3414 dribble);
3415 putc ('>', dribble);
3419 fflush (dribble);
3420 UNBLOCK_INPUT;
3424 /* Copy out or in the info on where C-g should throw to.
3425 This is used when running Lisp code from within get_char,
3426 in case get_char is called recursively.
3427 See read_process_output. */
3429 static void
3430 save_getcjmp (jmp_buf temp)
3432 memcpy (temp, getcjmp, sizeof getcjmp);
3435 static void
3436 restore_getcjmp (jmp_buf temp)
3438 memcpy (getcjmp, temp, sizeof getcjmp);
3441 /* Low level keyboard/mouse input.
3442 kbd_buffer_store_event places events in kbd_buffer, and
3443 kbd_buffer_get_event retrieves them. */
3445 /* Return true if there are any events in the queue that read-char
3446 would return. If this returns false, a read-char would block. */
3447 static int
3448 readable_events (int flags)
3450 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3451 timer_check ();
3453 /* If the buffer contains only FOCUS_IN_EVENT events, and
3454 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3455 if (kbd_fetch_ptr != kbd_store_ptr)
3457 if (flags & (READABLE_EVENTS_FILTER_EVENTS
3458 #ifdef USE_TOOLKIT_SCROLL_BARS
3459 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3460 #endif
3463 struct input_event *event;
3465 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3466 ? kbd_fetch_ptr
3467 : kbd_buffer);
3471 if (!(
3472 #ifdef USE_TOOLKIT_SCROLL_BARS
3473 (flags & READABLE_EVENTS_FILTER_EVENTS) &&
3474 #endif
3475 event->kind == FOCUS_IN_EVENT)
3476 #ifdef USE_TOOLKIT_SCROLL_BARS
3477 && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3478 && event->kind == SCROLL_BAR_CLICK_EVENT
3479 && event->part == scroll_bar_handle
3480 && event->modifiers == 0)
3481 #endif
3483 return 1;
3484 event++;
3485 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3486 event = kbd_buffer;
3488 while (event != kbd_store_ptr);
3490 else
3491 return 1;
3494 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
3495 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3496 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3497 return 1;
3498 #endif
3499 if (single_kboard)
3501 if (current_kboard->kbd_queue_has_data)
3502 return 1;
3504 else
3506 KBOARD *kb;
3507 for (kb = all_kboards; kb; kb = kb->next_kboard)
3508 if (kb->kbd_queue_has_data)
3509 return 1;
3511 return 0;
3514 /* Set this for debugging, to have a way to get out */
3515 int stop_character EXTERNALLY_VISIBLE;
3517 static KBOARD *
3518 event_to_kboard (struct input_event *event)
3520 Lisp_Object frame;
3521 frame = event->frame_or_window;
3522 if (CONSP (frame))
3523 frame = XCAR (frame);
3524 else if (WINDOWP (frame))
3525 frame = WINDOW_FRAME (XWINDOW (frame));
3527 /* There are still some events that don't set this field.
3528 For now, just ignore the problem.
3529 Also ignore dead frames here. */
3530 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3531 return 0;
3532 else
3533 return FRAME_KBOARD (XFRAME (frame));
3536 #ifdef subprocesses
3537 /* Return the number of slots occupied in kbd_buffer. */
3539 static int
3540 kbd_buffer_nr_stored (void)
3542 return kbd_fetch_ptr == kbd_store_ptr
3544 : (kbd_fetch_ptr < kbd_store_ptr
3545 ? kbd_store_ptr - kbd_fetch_ptr
3546 : ((kbd_buffer + KBD_BUFFER_SIZE) - kbd_fetch_ptr
3547 + (kbd_store_ptr - kbd_buffer)));
3549 #endif /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3551 void
3552 kbd_buffer_store_event (register struct input_event *event)
3554 kbd_buffer_store_event_hold (event, 0);
3557 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3559 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3560 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3561 Else, if EVENT is a quit event, store the quit event
3562 in HOLD_QUIT, and return (thus ignoring further events).
3564 This is used in read_avail_input to postpone the processing
3565 of the quit event until all subsequent input events have been
3566 parsed (and discarded).
3569 void
3570 kbd_buffer_store_event_hold (register struct input_event *event,
3571 struct input_event *hold_quit)
3573 if (event->kind == NO_EVENT)
3574 abort ();
3576 if (hold_quit && hold_quit->kind != NO_EVENT)
3577 return;
3579 if (event->kind == ASCII_KEYSTROKE_EVENT)
3581 register int c = event->code & 0377;
3583 if (event->modifiers & ctrl_modifier)
3584 c = make_ctrl_char (c);
3586 c |= (event->modifiers
3587 & (meta_modifier | alt_modifier
3588 | hyper_modifier | super_modifier));
3590 if (c == quit_char)
3592 KBOARD *kb = FRAME_KBOARD (XFRAME (event->frame_or_window));
3593 struct input_event *sp;
3595 if (single_kboard && kb != current_kboard)
3597 kset_kbd_queue
3598 (kb, Fcons (make_lispy_switch_frame (event->frame_or_window),
3599 Fcons (make_number (c), Qnil)));
3600 kb->kbd_queue_has_data = 1;
3601 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3603 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3604 sp = kbd_buffer;
3606 if (event_to_kboard (sp) == kb)
3608 sp->kind = NO_EVENT;
3609 sp->frame_or_window = Qnil;
3610 sp->arg = Qnil;
3613 return;
3616 if (hold_quit)
3618 memcpy (hold_quit, event, sizeof (*event));
3619 return;
3622 /* If this results in a quit_char being returned to Emacs as
3623 input, set Vlast_event_frame properly. If this doesn't
3624 get returned to Emacs as an event, the next event read
3625 will set Vlast_event_frame again, so this is safe to do. */
3627 Lisp_Object focus;
3629 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3630 if (NILP (focus))
3631 focus = event->frame_or_window;
3632 internal_last_event_frame = focus;
3633 Vlast_event_frame = focus;
3636 last_event_timestamp = event->timestamp;
3637 handle_interrupt ();
3638 return;
3641 if (c && c == stop_character)
3643 sys_suspend ();
3644 return;
3647 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3648 Just ignore the second one. */
3649 else if (event->kind == BUFFER_SWITCH_EVENT
3650 && kbd_fetch_ptr != kbd_store_ptr
3651 && ((kbd_store_ptr == kbd_buffer
3652 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3653 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3654 return;
3656 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3657 kbd_store_ptr = kbd_buffer;
3659 /* Don't let the very last slot in the buffer become full,
3660 since that would make the two pointers equal,
3661 and that is indistinguishable from an empty buffer.
3662 Discard the event if it would fill the last slot. */
3663 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3665 *kbd_store_ptr = *event;
3666 ++kbd_store_ptr;
3667 #ifdef subprocesses
3668 if (kbd_buffer_nr_stored () > KBD_BUFFER_SIZE/2 && ! kbd_on_hold_p ())
3670 /* Don't read keyboard input until we have processed kbd_buffer.
3671 This happens when pasting text longer than KBD_BUFFER_SIZE/2. */
3672 hold_keyboard_input ();
3673 #ifdef SIGIO
3674 if (!noninteractive)
3675 signal (SIGIO, SIG_IGN);
3676 #endif
3677 stop_polling ();
3679 #endif /* subprocesses */
3682 /* If we're inside while-no-input, and this event qualifies
3683 as input, set quit-flag to cause an interrupt. */
3684 if (!NILP (Vthrow_on_input)
3685 && event->kind != FOCUS_IN_EVENT
3686 && event->kind != HELP_EVENT
3687 && event->kind != DEICONIFY_EVENT)
3689 Vquit_flag = Vthrow_on_input;
3690 /* If we're inside a function that wants immediate quits,
3691 do it now. */
3692 if (immediate_quit && NILP (Vinhibit_quit))
3694 immediate_quit = 0;
3695 sigfree ();
3696 QUIT;
3702 /* Put an input event back in the head of the event queue. */
3704 void
3705 kbd_buffer_unget_event (register struct input_event *event)
3707 if (kbd_fetch_ptr == kbd_buffer)
3708 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3710 /* Don't let the very last slot in the buffer become full, */
3711 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3713 --kbd_fetch_ptr;
3714 *kbd_fetch_ptr = *event;
3719 /* Generate a HELP_EVENT input_event and store it in the keyboard
3720 buffer.
3722 HELP is the help form.
3724 FRAME and WINDOW are the frame and window where the help is
3725 generated. OBJECT is the Lisp object where the help was found (a
3726 buffer, a string, an overlay, or nil if neither from a string nor
3727 from a buffer). POS is the position within OBJECT where the help
3728 was found. */
3730 void
3731 gen_help_event (Lisp_Object help, Lisp_Object frame, Lisp_Object window,
3732 Lisp_Object object, ptrdiff_t pos)
3734 struct input_event event;
3736 EVENT_INIT (event);
3738 event.kind = HELP_EVENT;
3739 event.frame_or_window = frame;
3740 event.arg = object;
3741 event.x = WINDOWP (window) ? window : frame;
3742 event.y = help;
3743 event.code = pos;
3744 kbd_buffer_store_event (&event);
3748 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3750 void
3751 kbd_buffer_store_help_event (Lisp_Object frame, Lisp_Object help)
3753 struct input_event event;
3755 event.kind = HELP_EVENT;
3756 event.frame_or_window = frame;
3757 event.arg = Qnil;
3758 event.x = Qnil;
3759 event.y = help;
3760 event.code = 0;
3761 kbd_buffer_store_event (&event);
3765 /* Discard any mouse events in the event buffer by setting them to
3766 NO_EVENT. */
3767 void
3768 discard_mouse_events (void)
3770 struct input_event *sp;
3771 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3773 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3774 sp = kbd_buffer;
3776 if (sp->kind == MOUSE_CLICK_EVENT
3777 || sp->kind == WHEEL_EVENT
3778 || sp->kind == HORIZ_WHEEL_EVENT
3779 #ifdef HAVE_GPM
3780 || sp->kind == GPM_CLICK_EVENT
3781 #endif
3782 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3784 sp->kind = NO_EVENT;
3790 /* Return non-zero if there are any real events waiting in the event
3791 buffer, not counting `NO_EVENT's.
3793 If DISCARD is non-zero, discard NO_EVENT events at the front of
3794 the input queue, possibly leaving the input queue empty if there
3795 are no real input events. */
3798 kbd_buffer_events_waiting (int discard)
3800 struct input_event *sp;
3802 for (sp = kbd_fetch_ptr;
3803 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3804 ++sp)
3806 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3807 sp = kbd_buffer;
3810 if (discard)
3811 kbd_fetch_ptr = sp;
3813 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3817 /* Clear input event EVENT. */
3819 static inline void
3820 clear_event (struct input_event *event)
3822 event->kind = NO_EVENT;
3826 /* Read one event from the event buffer, waiting if necessary.
3827 The value is a Lisp object representing the event.
3828 The value is nil for an event that should be ignored,
3829 or that was handled here.
3830 We always read and discard one event. */
3832 static Lisp_Object
3833 kbd_buffer_get_event (KBOARD **kbp,
3834 int *used_mouse_menu,
3835 EMACS_TIME *end_time)
3837 Lisp_Object obj;
3839 #ifdef subprocesses
3840 if (kbd_on_hold_p () && kbd_buffer_nr_stored () < KBD_BUFFER_SIZE/4)
3842 /* Start reading input again, we have processed enough so we can
3843 accept new events again. */
3844 unhold_keyboard_input ();
3845 #ifdef SIGIO
3846 if (!noninteractive)
3847 signal (SIGIO, input_available_signal);
3848 #endif /* SIGIO */
3849 start_polling ();
3851 #endif /* subprocesses */
3853 #ifndef HAVE_DBUS /* We want to read D-Bus events in batch mode. */
3854 if (noninteractive
3855 /* In case we are running as a daemon, only do this before
3856 detaching from the terminal. */
3857 || (IS_DAEMON && daemon_pipe[1] >= 0))
3859 int c = getchar ();
3860 XSETINT (obj, c);
3861 *kbp = current_kboard;
3862 return obj;
3864 #endif /* ! HAVE_DBUS */
3866 /* Wait until there is input available. */
3867 for (;;)
3869 /* Break loop if there's an unread command event. Needed in
3870 moused window autoselection which uses a timer to insert such
3871 events. */
3872 if (CONSP (Vunread_command_events))
3873 break;
3875 if (kbd_fetch_ptr != kbd_store_ptr)
3876 break;
3877 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
3878 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3879 break;
3880 #endif
3882 /* If the quit flag is set, then read_char will return
3883 quit_char, so that counts as "available input." */
3884 if (!NILP (Vquit_flag))
3885 quit_throw_to_read_char (0);
3887 /* One way or another, wait until input is available; then, if
3888 interrupt handlers have not read it, read it now. */
3890 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3891 #ifdef SIGIO
3892 gobble_input (0);
3893 #endif /* SIGIO */
3894 if (kbd_fetch_ptr != kbd_store_ptr)
3895 break;
3896 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
3897 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3898 break;
3899 #endif
3900 if (end_time)
3902 EMACS_TIME now = current_emacs_time ();
3903 if (EMACS_TIME_LE (*end_time, now))
3904 return Qnil; /* Finished waiting. */
3905 else
3907 EMACS_TIME duration = sub_emacs_time (*end_time, now);
3908 wait_reading_process_output (min (EMACS_SECS (duration),
3909 WAIT_READING_MAX),
3910 EMACS_NSECS (duration),
3911 -1, 1, Qnil, NULL, 0);
3914 else
3915 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0);
3917 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3918 /* Pass 1 for EXPECT since we just waited to have input. */
3919 read_avail_input (1);
3922 if (CONSP (Vunread_command_events))
3924 Lisp_Object first;
3925 first = XCAR (Vunread_command_events);
3926 Vunread_command_events = XCDR (Vunread_command_events);
3927 *kbp = current_kboard;
3928 return first;
3931 /* At this point, we know that there is a readable event available
3932 somewhere. If the event queue is empty, then there must be a
3933 mouse movement enabled and available. */
3934 if (kbd_fetch_ptr != kbd_store_ptr)
3936 struct input_event *event;
3938 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3939 ? kbd_fetch_ptr
3940 : kbd_buffer);
3942 last_event_timestamp = event->timestamp;
3944 *kbp = event_to_kboard (event);
3945 if (*kbp == 0)
3946 *kbp = current_kboard; /* Better than returning null ptr? */
3948 obj = Qnil;
3950 /* These two kinds of events get special handling
3951 and don't actually appear to the command loop.
3952 We return nil for them. */
3953 if (event->kind == SELECTION_REQUEST_EVENT
3954 || event->kind == SELECTION_CLEAR_EVENT)
3956 #ifdef HAVE_X11
3957 struct input_event copy;
3959 /* Remove it from the buffer before processing it,
3960 since otherwise swallow_events will see it
3961 and process it again. */
3962 copy = *event;
3963 kbd_fetch_ptr = event + 1;
3964 input_pending = readable_events (0);
3965 x_handle_selection_event (&copy);
3966 #else
3967 /* We're getting selection request events, but we don't have
3968 a window system. */
3969 abort ();
3970 #endif
3973 #if defined (HAVE_NS)
3974 else if (event->kind == NS_TEXT_EVENT)
3976 if (event->code == KEY_NS_PUT_WORKING_TEXT)
3977 obj = Fcons (intern ("ns-put-working-text"), Qnil);
3978 else
3979 obj = Fcons (intern ("ns-unput-working-text"), Qnil);
3980 kbd_fetch_ptr = event + 1;
3981 if (used_mouse_menu)
3982 *used_mouse_menu = 1;
3984 #endif
3986 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
3987 || defined (HAVE_NS)
3988 else if (event->kind == DELETE_WINDOW_EVENT)
3990 /* Make an event (delete-frame (FRAME)). */
3991 obj = Fcons (event->frame_or_window, Qnil);
3992 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
3993 kbd_fetch_ptr = event + 1;
3995 #endif
3996 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
3997 || defined (HAVE_NS)
3998 else if (event->kind == ICONIFY_EVENT)
4000 /* Make an event (iconify-frame (FRAME)). */
4001 obj = Fcons (event->frame_or_window, Qnil);
4002 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
4003 kbd_fetch_ptr = event + 1;
4005 else if (event->kind == DEICONIFY_EVENT)
4007 /* Make an event (make-frame-visible (FRAME)). */
4008 obj = Fcons (event->frame_or_window, Qnil);
4009 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
4010 kbd_fetch_ptr = event + 1;
4012 #endif
4013 else if (event->kind == BUFFER_SWITCH_EVENT)
4015 /* The value doesn't matter here; only the type is tested. */
4016 XSETBUFFER (obj, current_buffer);
4017 kbd_fetch_ptr = event + 1;
4019 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4020 || defined (HAVE_NS) || defined (USE_GTK)
4021 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
4023 kbd_fetch_ptr = event + 1;
4024 input_pending = readable_events (0);
4025 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
4026 x_activate_menubar (XFRAME (event->frame_or_window));
4028 #endif
4029 #if defined (WINDOWSNT)
4030 else if (event->kind == LANGUAGE_CHANGE_EVENT)
4032 /* Make an event (language-change (FRAME CODEPAGE LANGUAGE-ID)). */
4033 obj = Fcons (Qlanguage_change,
4034 list3 (event->frame_or_window,
4035 make_number (event->code),
4036 make_number (event->modifiers)));
4037 kbd_fetch_ptr = event + 1;
4039 #endif
4040 else if (event->kind == SAVE_SESSION_EVENT)
4042 obj = Fcons (Qsave_session, Fcons (event->arg, Qnil));
4043 kbd_fetch_ptr = event + 1;
4045 /* Just discard these, by returning nil.
4046 With MULTI_KBOARD, these events are used as placeholders
4047 when we need to randomly delete events from the queue.
4048 (They shouldn't otherwise be found in the buffer,
4049 but on some machines it appears they do show up
4050 even without MULTI_KBOARD.) */
4051 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4052 mouse events during a popup-menu call. */
4053 else if (event->kind == NO_EVENT)
4054 kbd_fetch_ptr = event + 1;
4055 else if (event->kind == HELP_EVENT)
4057 Lisp_Object object, position, help, frame, window;
4059 frame = event->frame_or_window;
4060 object = event->arg;
4061 position = make_number (event->code);
4062 window = event->x;
4063 help = event->y;
4064 clear_event (event);
4066 kbd_fetch_ptr = event + 1;
4067 if (!WINDOWP (window))
4068 window = Qnil;
4069 obj = Fcons (Qhelp_echo,
4070 list5 (frame, help, window, object, position));
4072 else if (event->kind == FOCUS_IN_EVENT)
4074 /* Notification of a FocusIn event. The frame receiving the
4075 focus is in event->frame_or_window. Generate a
4076 switch-frame event if necessary. */
4077 Lisp_Object frame, focus;
4079 frame = event->frame_or_window;
4080 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4081 if (FRAMEP (focus))
4082 frame = focus;
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;
4088 kbd_fetch_ptr = event + 1;
4090 #ifdef HAVE_DBUS
4091 else if (event->kind == DBUS_EVENT)
4093 obj = make_lispy_event (event);
4094 kbd_fetch_ptr = event + 1;
4096 #endif
4097 else if (event->kind == CONFIG_CHANGED_EVENT)
4099 obj = make_lispy_event (event);
4100 kbd_fetch_ptr = event + 1;
4102 else
4104 /* If this event is on a different frame, return a switch-frame this
4105 time, and leave the event in the queue for next time. */
4106 Lisp_Object frame;
4107 Lisp_Object focus;
4109 frame = event->frame_or_window;
4110 if (CONSP (frame))
4111 frame = XCAR (frame);
4112 else if (WINDOWP (frame))
4113 frame = WINDOW_FRAME (XWINDOW (frame));
4115 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4116 if (! NILP (focus))
4117 frame = focus;
4119 if (! EQ (frame, internal_last_event_frame)
4120 && !EQ (frame, selected_frame))
4121 obj = make_lispy_switch_frame (frame);
4122 internal_last_event_frame = frame;
4124 /* If we didn't decide to make a switch-frame event, go ahead
4125 and build a real event from the queue entry. */
4127 if (NILP (obj))
4129 obj = make_lispy_event (event);
4131 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4132 || defined (HAVE_NS) || defined (USE_GTK)
4133 /* If this was a menu selection, then set the flag to inhibit
4134 writing to last_nonmenu_event. Don't do this if the event
4135 we're returning is (menu-bar), though; that indicates the
4136 beginning of the menu sequence, and we might as well leave
4137 that as the `event with parameters' for this selection. */
4138 if (used_mouse_menu
4139 && !EQ (event->frame_or_window, event->arg)
4140 && (event->kind == MENU_BAR_EVENT
4141 || event->kind == TOOL_BAR_EVENT))
4142 *used_mouse_menu = 1;
4143 #endif
4144 #ifdef HAVE_NS
4145 /* certain system events are non-key events */
4146 if (used_mouse_menu
4147 && event->kind == NS_NONKEY_EVENT)
4148 *used_mouse_menu = 1;
4149 #endif
4151 /* Wipe out this event, to catch bugs. */
4152 clear_event (event);
4153 kbd_fetch_ptr = event + 1;
4157 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
4158 /* Try generating a mouse motion event. */
4159 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4161 FRAME_PTR f = some_mouse_moved ();
4162 Lisp_Object bar_window;
4163 enum scroll_bar_part part;
4164 Lisp_Object x, y;
4165 Time t;
4167 *kbp = current_kboard;
4168 /* Note that this uses F to determine which terminal to look at.
4169 If there is no valid info, it does not store anything
4170 so x remains nil. */
4171 x = Qnil;
4173 /* XXX Can f or mouse_position_hook be NULL here? */
4174 if (f && FRAME_TERMINAL (f)->mouse_position_hook)
4175 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, 0, &bar_window,
4176 &part, &x, &y, &t);
4178 obj = Qnil;
4180 /* Decide if we should generate a switch-frame event. Don't
4181 generate switch-frame events for motion outside of all Emacs
4182 frames. */
4183 if (!NILP (x) && f)
4185 Lisp_Object frame;
4187 frame = FRAME_FOCUS_FRAME (f);
4188 if (NILP (frame))
4189 XSETFRAME (frame, f);
4191 if (! EQ (frame, internal_last_event_frame)
4192 && !EQ (frame, selected_frame))
4193 obj = make_lispy_switch_frame (frame);
4194 internal_last_event_frame = frame;
4197 /* If we didn't decide to make a switch-frame event, go ahead and
4198 return a mouse-motion event. */
4199 if (!NILP (x) && NILP (obj))
4200 obj = make_lispy_movement (f, bar_window, part, x, y, t);
4202 #endif /* HAVE_MOUSE || HAVE GPM */
4203 else
4204 /* We were promised by the above while loop that there was
4205 something for us to read! */
4206 abort ();
4208 input_pending = readable_events (0);
4210 Vlast_event_frame = internal_last_event_frame;
4212 return (obj);
4215 /* Process any non-user-visible events (currently X selection events),
4216 without reading any user-visible events. */
4218 static void
4219 process_special_events (void)
4221 struct input_event *event;
4223 for (event = kbd_fetch_ptr; event != kbd_store_ptr; ++event)
4225 if (event == kbd_buffer + KBD_BUFFER_SIZE)
4227 event = kbd_buffer;
4228 if (event == kbd_store_ptr)
4229 break;
4232 /* If we find a stored X selection request, handle it now. */
4233 if (event->kind == SELECTION_REQUEST_EVENT
4234 || event->kind == SELECTION_CLEAR_EVENT)
4236 #ifdef HAVE_X11
4238 /* Remove the event from the fifo buffer before processing;
4239 otherwise swallow_events called recursively could see it
4240 and process it again. To do this, we move the events
4241 between kbd_fetch_ptr and EVENT one slot to the right,
4242 cyclically. */
4244 struct input_event copy = *event;
4245 struct input_event *beg
4246 = (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
4247 ? kbd_buffer : kbd_fetch_ptr;
4249 if (event > beg)
4250 memmove (beg + 1, beg, (event - beg) * sizeof (struct input_event));
4251 else if (event < beg)
4253 if (event > kbd_buffer)
4254 memmove (kbd_buffer + 1, kbd_buffer,
4255 (event - kbd_buffer) * sizeof (struct input_event));
4256 *kbd_buffer = *(kbd_buffer + KBD_BUFFER_SIZE - 1);
4257 if (beg < kbd_buffer + KBD_BUFFER_SIZE - 1)
4258 memmove (beg + 1, beg,
4259 (kbd_buffer + KBD_BUFFER_SIZE - 1 - beg)
4260 * sizeof (struct input_event));
4263 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
4264 kbd_fetch_ptr = kbd_buffer + 1;
4265 else
4266 kbd_fetch_ptr++;
4268 /* X wants last_event_timestamp for selection ownership. */
4269 last_event_timestamp = copy.timestamp;
4270 input_pending = readable_events (0);
4271 x_handle_selection_event (&copy);
4272 #else
4273 /* We're getting selection request events, but we don't have
4274 a window system. */
4275 abort ();
4276 #endif
4281 /* Process any events that are not user-visible, run timer events that
4282 are ripe, and return, without reading any user-visible events. */
4284 void
4285 swallow_events (int do_display)
4287 int old_timers_run;
4289 process_special_events ();
4291 old_timers_run = timers_run;
4292 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
4294 if (timers_run != old_timers_run && do_display)
4295 redisplay_preserve_echo_area (7);
4298 /* Record the start of when Emacs is idle,
4299 for the sake of running idle-time timers. */
4301 static void
4302 timer_start_idle (void)
4304 Lisp_Object timers;
4306 /* If we are already in the idle state, do nothing. */
4307 if (EMACS_TIME_VALID_P (timer_idleness_start_time))
4308 return;
4310 timer_idleness_start_time = current_emacs_time ();
4311 timer_last_idleness_start_time = timer_idleness_start_time;
4313 /* Mark all idle-time timers as once again candidates for running. */
4314 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4316 Lisp_Object timer;
4318 timer = XCAR (timers);
4320 if (!VECTORP (timer) || ASIZE (timer) != 9)
4321 continue;
4322 ASET (timer, 0, Qnil);
4326 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4328 static void
4329 timer_stop_idle (void)
4331 timer_idleness_start_time = invalid_emacs_time ();
4334 /* Resume idle timer from last idle start time. */
4336 static void
4337 timer_resume_idle (void)
4339 if (EMACS_TIME_VALID_P (timer_idleness_start_time))
4340 return;
4342 timer_idleness_start_time = timer_last_idleness_start_time;
4345 /* This is only for debugging. */
4346 struct input_event last_timer_event EXTERNALLY_VISIBLE;
4348 /* List of elisp functions to call, delayed because they were generated in
4349 a context where Elisp could not be safely run (e.g. redisplay, signal,
4350 ...). Each element has the form (FUN . ARGS). */
4351 Lisp_Object pending_funcalls;
4353 /* If TIMER is a valid timer, return nonzero and place its value into
4354 *RESULT. Otherwise return zero. */
4355 static int
4356 decode_timer (Lisp_Object timer, EMACS_TIME *result)
4358 Lisp_Object *vector;
4360 if (! (VECTORP (timer) && ASIZE (timer) == 9))
4361 return 0;
4362 vector = XVECTOR (timer)->contents;
4363 if (! NILP (vector[0]))
4364 return 0;
4366 return decode_time_components (vector[1], vector[2], vector[3], vector[4],
4367 result, 0);
4371 /* Check whether a timer has fired. To prevent larger problems we simply
4372 disregard elements that are not proper timers. Do not make a circular
4373 timer list for the time being.
4375 Returns the time to wait until the next timer fires. If a
4376 timer is triggering now, return zero.
4377 If no timer is active, return -1.
4379 If a timer is ripe, we run it, with quitting turned off.
4380 In that case we return 0 to indicate that a new timer_check_2 call
4381 should be done. */
4383 static EMACS_TIME
4384 timer_check_2 (void)
4386 EMACS_TIME nexttime;
4387 EMACS_TIME now;
4388 EMACS_TIME idleness_now;
4389 Lisp_Object timers, idle_timers, chosen_timer;
4390 struct gcpro gcpro1, gcpro2, gcpro3;
4392 nexttime = invalid_emacs_time ();
4394 /* Always consider the ordinary timers. */
4395 timers = Vtimer_list;
4396 /* Consider the idle timers only if Emacs is idle. */
4397 if (EMACS_TIME_VALID_P (timer_idleness_start_time))
4398 idle_timers = Vtimer_idle_list;
4399 else
4400 idle_timers = Qnil;
4401 chosen_timer = Qnil;
4402 GCPRO3 (timers, idle_timers, chosen_timer);
4404 /* First run the code that was delayed. */
4405 while (CONSP (pending_funcalls))
4407 Lisp_Object funcall = XCAR (pending_funcalls);
4408 pending_funcalls = XCDR (pending_funcalls);
4409 safe_call2 (Qapply, XCAR (funcall), XCDR (funcall));
4412 if (CONSP (timers) || CONSP (idle_timers))
4414 now = current_emacs_time ();
4415 idleness_now = (EMACS_TIME_VALID_P (timer_idleness_start_time)
4416 ? sub_emacs_time (now, timer_idleness_start_time)
4417 : make_emacs_time (0, 0));
4420 while (CONSP (timers) || CONSP (idle_timers))
4422 Lisp_Object *vector;
4423 Lisp_Object timer = Qnil, idle_timer = Qnil;
4424 EMACS_TIME timer_time, idle_timer_time;
4425 EMACS_TIME difference;
4426 EMACS_TIME timer_difference = invalid_emacs_time ();
4427 EMACS_TIME idle_timer_difference = invalid_emacs_time ();
4428 int ripe, timer_ripe = 0, idle_timer_ripe = 0;
4430 /* Set TIMER and TIMER_DIFFERENCE
4431 based on the next ordinary timer.
4432 TIMER_DIFFERENCE is the distance in time from NOW to when
4433 this timer becomes ripe (negative if it's already ripe).
4434 Skip past invalid timers and timers already handled. */
4435 if (CONSP (timers))
4437 timer = XCAR (timers);
4438 if (! decode_timer (timer, &timer_time))
4440 timers = XCDR (timers);
4441 continue;
4444 timer_ripe = EMACS_TIME_LE (timer_time, now);
4445 timer_difference = (timer_ripe
4446 ? sub_emacs_time (now, timer_time)
4447 : sub_emacs_time (timer_time, now));
4450 /* Likewise for IDLE_TIMER and IDLE_TIMER_DIFFERENCE
4451 based on the next idle timer. */
4452 if (CONSP (idle_timers))
4454 idle_timer = XCAR (idle_timers);
4455 if (! decode_timer (idle_timer, &idle_timer_time))
4457 idle_timers = XCDR (idle_timers);
4458 continue;
4461 idle_timer_ripe = EMACS_TIME_LE (idle_timer_time, idleness_now);
4462 idle_timer_difference =
4463 (idle_timer_ripe
4464 ? sub_emacs_time (idleness_now, idle_timer_time)
4465 : sub_emacs_time (idle_timer_time, idleness_now));
4468 /* Decide which timer is the next timer,
4469 and set CHOSEN_TIMER, DIFFERENCE, and RIPE accordingly.
4470 Also step down the list where we found that timer. */
4472 if (EMACS_TIME_VALID_P (timer_difference)
4473 && (! EMACS_TIME_VALID_P (idle_timer_difference)
4474 || idle_timer_ripe < timer_ripe
4475 || (idle_timer_ripe == timer_ripe
4476 && (timer_ripe
4477 ? EMACS_TIME_LT (idle_timer_difference,
4478 timer_difference)
4479 : EMACS_TIME_LT (timer_difference,
4480 idle_timer_difference)))))
4482 chosen_timer = timer;
4483 timers = XCDR (timers);
4484 difference = timer_difference;
4485 ripe = timer_ripe;
4487 else
4489 chosen_timer = idle_timer;
4490 idle_timers = XCDR (idle_timers);
4491 difference = idle_timer_difference;
4492 ripe = idle_timer_ripe;
4495 /* If timer is ripe, run it if it hasn't been run. */
4496 if (ripe)
4498 vector = XVECTOR (chosen_timer)->contents;
4499 if (NILP (vector[0]))
4501 ptrdiff_t count = SPECPDL_INDEX ();
4502 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4504 /* Mark the timer as triggered to prevent problems if the lisp
4505 code fails to reschedule it right. */
4506 vector[0] = Qt;
4508 specbind (Qinhibit_quit, Qt);
4510 call1 (Qtimer_event_handler, chosen_timer);
4511 Vdeactivate_mark = old_deactivate_mark;
4512 timers_run++;
4513 unbind_to (count, Qnil);
4515 /* Since we have handled the event,
4516 we don't need to tell the caller to wake up and do it. */
4517 /* But the caller must still wait for the next timer, so
4518 return 0 to indicate that. */
4521 nexttime = make_emacs_time (0, 0);
4522 break;
4524 else
4525 /* When we encounter a timer that is still waiting,
4526 return the amount of time to wait before it is ripe. */
4528 UNGCPRO;
4529 return difference;
4533 /* No timers are pending in the future. */
4534 /* Return 0 if we generated an event, and -1 if not. */
4535 UNGCPRO;
4536 return nexttime;
4540 /* Check whether a timer has fired. To prevent larger problems we simply
4541 disregard elements that are not proper timers. Do not make a circular
4542 timer list for the time being.
4544 Returns the time to wait until the next timer fires.
4545 If no timer is active, return an invalid value.
4547 As long as any timer is ripe, we run it. */
4549 EMACS_TIME
4550 timer_check (void)
4552 EMACS_TIME nexttime;
4556 nexttime = timer_check_2 ();
4558 while (EMACS_SECS (nexttime) == 0 && EMACS_NSECS (nexttime) == 0);
4560 return nexttime;
4563 DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0,
4564 doc: /* Return the current length of Emacs idleness, or nil.
4565 The value when Emacs is idle is a list of four integers (HIGH LOW USEC PSEC)
4566 in the same style as (current-time).
4568 The value when Emacs is not idle is nil.
4570 NSEC is a multiple of the system clock resolution. */)
4571 (void)
4573 if (EMACS_TIME_VALID_P (timer_idleness_start_time))
4574 return make_lisp_time (sub_emacs_time (current_emacs_time (),
4575 timer_idleness_start_time));
4577 return Qnil;
4580 /* Caches for modify_event_symbol. */
4581 static Lisp_Object accent_key_syms;
4582 static Lisp_Object func_key_syms;
4583 static Lisp_Object mouse_syms;
4584 static Lisp_Object wheel_syms;
4585 static Lisp_Object drag_n_drop_syms;
4587 /* This is a list of keysym codes for special "accent" characters.
4588 It parallels lispy_accent_keys. */
4590 static const int lispy_accent_codes[] =
4592 #ifdef XK_dead_circumflex
4593 XK_dead_circumflex,
4594 #else
4596 #endif
4597 #ifdef XK_dead_grave
4598 XK_dead_grave,
4599 #else
4601 #endif
4602 #ifdef XK_dead_tilde
4603 XK_dead_tilde,
4604 #else
4606 #endif
4607 #ifdef XK_dead_diaeresis
4608 XK_dead_diaeresis,
4609 #else
4611 #endif
4612 #ifdef XK_dead_macron
4613 XK_dead_macron,
4614 #else
4616 #endif
4617 #ifdef XK_dead_degree
4618 XK_dead_degree,
4619 #else
4621 #endif
4622 #ifdef XK_dead_acute
4623 XK_dead_acute,
4624 #else
4626 #endif
4627 #ifdef XK_dead_cedilla
4628 XK_dead_cedilla,
4629 #else
4631 #endif
4632 #ifdef XK_dead_breve
4633 XK_dead_breve,
4634 #else
4636 #endif
4637 #ifdef XK_dead_ogonek
4638 XK_dead_ogonek,
4639 #else
4641 #endif
4642 #ifdef XK_dead_caron
4643 XK_dead_caron,
4644 #else
4646 #endif
4647 #ifdef XK_dead_doubleacute
4648 XK_dead_doubleacute,
4649 #else
4651 #endif
4652 #ifdef XK_dead_abovedot
4653 XK_dead_abovedot,
4654 #else
4656 #endif
4657 #ifdef XK_dead_abovering
4658 XK_dead_abovering,
4659 #else
4661 #endif
4662 #ifdef XK_dead_iota
4663 XK_dead_iota,
4664 #else
4666 #endif
4667 #ifdef XK_dead_belowdot
4668 XK_dead_belowdot,
4669 #else
4671 #endif
4672 #ifdef XK_dead_voiced_sound
4673 XK_dead_voiced_sound,
4674 #else
4676 #endif
4677 #ifdef XK_dead_semivoiced_sound
4678 XK_dead_semivoiced_sound,
4679 #else
4681 #endif
4682 #ifdef XK_dead_hook
4683 XK_dead_hook,
4684 #else
4686 #endif
4687 #ifdef XK_dead_horn
4688 XK_dead_horn,
4689 #else
4691 #endif
4694 /* This is a list of Lisp names for special "accent" characters.
4695 It parallels lispy_accent_codes. */
4697 static const char *const lispy_accent_keys[] =
4699 "dead-circumflex",
4700 "dead-grave",
4701 "dead-tilde",
4702 "dead-diaeresis",
4703 "dead-macron",
4704 "dead-degree",
4705 "dead-acute",
4706 "dead-cedilla",
4707 "dead-breve",
4708 "dead-ogonek",
4709 "dead-caron",
4710 "dead-doubleacute",
4711 "dead-abovedot",
4712 "dead-abovering",
4713 "dead-iota",
4714 "dead-belowdot",
4715 "dead-voiced-sound",
4716 "dead-semivoiced-sound",
4717 "dead-hook",
4718 "dead-horn",
4721 #ifdef HAVE_NTGUI
4722 #define FUNCTION_KEY_OFFSET 0x0
4724 const char *const lispy_function_keys[] =
4726 0, /* 0 */
4728 0, /* VK_LBUTTON 0x01 */
4729 0, /* VK_RBUTTON 0x02 */
4730 "cancel", /* VK_CANCEL 0x03 */
4731 0, /* VK_MBUTTON 0x04 */
4733 0, 0, 0, /* 0x05 .. 0x07 */
4735 "backspace", /* VK_BACK 0x08 */
4736 "tab", /* VK_TAB 0x09 */
4738 0, 0, /* 0x0A .. 0x0B */
4740 "clear", /* VK_CLEAR 0x0C */
4741 "return", /* VK_RETURN 0x0D */
4743 0, 0, /* 0x0E .. 0x0F */
4745 0, /* VK_SHIFT 0x10 */
4746 0, /* VK_CONTROL 0x11 */
4747 0, /* VK_MENU 0x12 */
4748 "pause", /* VK_PAUSE 0x13 */
4749 "capslock", /* VK_CAPITAL 0x14 */
4750 "kana", /* VK_KANA/VK_HANGUL 0x15 */
4751 0, /* 0x16 */
4752 "junja", /* VK_JUNJA 0x17 */
4753 "final", /* VK_FINAL 0x18 */
4754 "kanji", /* VK_KANJI/VK_HANJA 0x19 */
4755 0, /* 0x1A */
4756 "escape", /* VK_ESCAPE 0x1B */
4757 "convert", /* VK_CONVERT 0x1C */
4758 "non-convert", /* VK_NONCONVERT 0x1D */
4759 "accept", /* VK_ACCEPT 0x1E */
4760 "mode-change", /* VK_MODECHANGE 0x1F */
4761 0, /* VK_SPACE 0x20 */
4762 "prior", /* VK_PRIOR 0x21 */
4763 "next", /* VK_NEXT 0x22 */
4764 "end", /* VK_END 0x23 */
4765 "home", /* VK_HOME 0x24 */
4766 "left", /* VK_LEFT 0x25 */
4767 "up", /* VK_UP 0x26 */
4768 "right", /* VK_RIGHT 0x27 */
4769 "down", /* VK_DOWN 0x28 */
4770 "select", /* VK_SELECT 0x29 */
4771 "print", /* VK_PRINT 0x2A */
4772 "execute", /* VK_EXECUTE 0x2B */
4773 "snapshot", /* VK_SNAPSHOT 0x2C */
4774 "insert", /* VK_INSERT 0x2D */
4775 "delete", /* VK_DELETE 0x2E */
4776 "help", /* VK_HELP 0x2F */
4778 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4780 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4782 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4784 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4786 0, 0, 0, 0, 0, 0, 0, 0, 0,
4787 0, 0, 0, 0, 0, 0, 0, 0, 0,
4788 0, 0, 0, 0, 0, 0, 0, 0,
4790 "lwindow", /* VK_LWIN 0x5B */
4791 "rwindow", /* VK_RWIN 0x5C */
4792 "apps", /* VK_APPS 0x5D */
4793 0, /* 0x5E */
4794 "sleep",
4795 "kp-0", /* VK_NUMPAD0 0x60 */
4796 "kp-1", /* VK_NUMPAD1 0x61 */
4797 "kp-2", /* VK_NUMPAD2 0x62 */
4798 "kp-3", /* VK_NUMPAD3 0x63 */
4799 "kp-4", /* VK_NUMPAD4 0x64 */
4800 "kp-5", /* VK_NUMPAD5 0x65 */
4801 "kp-6", /* VK_NUMPAD6 0x66 */
4802 "kp-7", /* VK_NUMPAD7 0x67 */
4803 "kp-8", /* VK_NUMPAD8 0x68 */
4804 "kp-9", /* VK_NUMPAD9 0x69 */
4805 "kp-multiply", /* VK_MULTIPLY 0x6A */
4806 "kp-add", /* VK_ADD 0x6B */
4807 "kp-separator", /* VK_SEPARATOR 0x6C */
4808 "kp-subtract", /* VK_SUBTRACT 0x6D */
4809 "kp-decimal", /* VK_DECIMAL 0x6E */
4810 "kp-divide", /* VK_DIVIDE 0x6F */
4811 "f1", /* VK_F1 0x70 */
4812 "f2", /* VK_F2 0x71 */
4813 "f3", /* VK_F3 0x72 */
4814 "f4", /* VK_F4 0x73 */
4815 "f5", /* VK_F5 0x74 */
4816 "f6", /* VK_F6 0x75 */
4817 "f7", /* VK_F7 0x76 */
4818 "f8", /* VK_F8 0x77 */
4819 "f9", /* VK_F9 0x78 */
4820 "f10", /* VK_F10 0x79 */
4821 "f11", /* VK_F11 0x7A */
4822 "f12", /* VK_F12 0x7B */
4823 "f13", /* VK_F13 0x7C */
4824 "f14", /* VK_F14 0x7D */
4825 "f15", /* VK_F15 0x7E */
4826 "f16", /* VK_F16 0x7F */
4827 "f17", /* VK_F17 0x80 */
4828 "f18", /* VK_F18 0x81 */
4829 "f19", /* VK_F19 0x82 */
4830 "f20", /* VK_F20 0x83 */
4831 "f21", /* VK_F21 0x84 */
4832 "f22", /* VK_F22 0x85 */
4833 "f23", /* VK_F23 0x86 */
4834 "f24", /* VK_F24 0x87 */
4836 0, 0, 0, 0, /* 0x88 .. 0x8B */
4837 0, 0, 0, 0, /* 0x8C .. 0x8F */
4839 "kp-numlock", /* VK_NUMLOCK 0x90 */
4840 "scroll", /* VK_SCROLL 0x91 */
4841 /* Not sure where the following block comes from.
4842 Windows headers have NEC and Fujitsu specific keys in
4843 this block, but nothing generic. */
4844 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4845 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4846 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4847 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4848 "kp-end", /* VK_NUMPAD_END 0x96 */
4849 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4850 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4851 "kp-up", /* VK_NUMPAD_UP 0x99 */
4852 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4853 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4854 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4855 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4857 0, 0, /* 0x9E .. 0x9F */
4860 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4861 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4862 * No other API or message will distinguish left and right keys this way.
4863 * 0xA0 .. 0xA5
4865 0, 0, 0, 0, 0, 0,
4867 /* Multimedia keys. These are handled as WM_APPCOMMAND, which allows us
4868 to enable them selectively, and gives access to a few more functions.
4869 See lispy_multimedia_keys below. */
4870 0, 0, 0, 0, 0, 0, 0, /* 0xA6 .. 0xAC Browser */
4871 0, 0, 0, /* 0xAD .. 0xAF Volume */
4872 0, 0, 0, 0, /* 0xB0 .. 0xB3 Media */
4873 0, 0, 0, 0, /* 0xB4 .. 0xB7 Apps */
4875 /* 0xB8 .. 0xC0 "OEM" keys - all seem to be punctuation. */
4876 0, 0, 0, 0, 0, 0, 0, 0, 0,
4878 /* 0xC1 - 0xDA unallocated, 0xDB-0xDF more OEM keys */
4879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4880 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4882 0, /* 0xE0 */
4883 "ax", /* VK_OEM_AX 0xE1 */
4884 0, /* VK_OEM_102 0xE2 */
4885 "ico-help", /* VK_ICO_HELP 0xE3 */
4886 "ico-00", /* VK_ICO_00 0xE4 */
4887 0, /* VK_PROCESSKEY 0xE5 - used by IME */
4888 "ico-clear", /* VK_ICO_CLEAR 0xE6 */
4889 0, /* VK_PACKET 0xE7 - used to pass Unicode chars */
4890 0, /* 0xE8 */
4891 "reset", /* VK_OEM_RESET 0xE9 */
4892 "jump", /* VK_OEM_JUMP 0xEA */
4893 "oem-pa1", /* VK_OEM_PA1 0xEB */
4894 "oem-pa2", /* VK_OEM_PA2 0xEC */
4895 "oem-pa3", /* VK_OEM_PA3 0xED */
4896 "wsctrl", /* VK_OEM_WSCTRL 0xEE */
4897 "cusel", /* VK_OEM_CUSEL 0xEF */
4898 "oem-attn", /* VK_OEM_ATTN 0xF0 */
4899 "finish", /* VK_OEM_FINISH 0xF1 */
4900 "copy", /* VK_OEM_COPY 0xF2 */
4901 "auto", /* VK_OEM_AUTO 0xF3 */
4902 "enlw", /* VK_OEM_ENLW 0xF4 */
4903 "backtab", /* VK_OEM_BACKTAB 0xF5 */
4904 "attn", /* VK_ATTN 0xF6 */
4905 "crsel", /* VK_CRSEL 0xF7 */
4906 "exsel", /* VK_EXSEL 0xF8 */
4907 "ereof", /* VK_EREOF 0xF9 */
4908 "play", /* VK_PLAY 0xFA */
4909 "zoom", /* VK_ZOOM 0xFB */
4910 "noname", /* VK_NONAME 0xFC */
4911 "pa1", /* VK_PA1 0xFD */
4912 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4913 0 /* 0xFF */
4916 /* Some of these duplicate the "Media keys" on newer keyboards,
4917 but they are delivered to the application in a different way. */
4918 static const char *const lispy_multimedia_keys[] =
4921 "browser-back",
4922 "browser-forward",
4923 "browser-refresh",
4924 "browser-stop",
4925 "browser-search",
4926 "browser-favorites",
4927 "browser-home",
4928 "volume-mute",
4929 "volume-down",
4930 "volume-up",
4931 "media-next",
4932 "media-previous",
4933 "media-stop",
4934 "media-play-pause",
4935 "mail",
4936 "media-select",
4937 "app-1",
4938 "app-2",
4939 "bass-down",
4940 "bass-boost",
4941 "bass-up",
4942 "treble-down",
4943 "treble-up",
4944 "mic-volume-mute",
4945 "mic-volume-down",
4946 "mic-volume-up",
4947 "help",
4948 "find",
4949 "new",
4950 "open",
4951 "close",
4952 "save",
4953 "print",
4954 "undo",
4955 "redo",
4956 "copy",
4957 "cut",
4958 "paste",
4959 "mail-reply",
4960 "mail-forward",
4961 "mail-send",
4962 "spell-check",
4963 "toggle-dictate-command",
4964 "mic-toggle",
4965 "correction-list",
4966 "media-play",
4967 "media-pause",
4968 "media-record",
4969 "media-fast-forward",
4970 "media-rewind",
4971 "media-channel-up",
4972 "media-channel-down"
4975 #else /* not HAVE_NTGUI */
4977 /* This should be dealt with in XTread_socket now, and that doesn't
4978 depend on the client system having the Kana syms defined. See also
4979 the XK_kana_A case below. */
4980 #if 0
4981 #ifdef XK_kana_A
4982 static const char *const lispy_kana_keys[] =
4984 /* X Keysym value */
4985 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4986 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4987 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4988 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4989 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4990 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4991 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4992 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4993 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4994 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4995 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4996 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4997 "kana-i", "kana-u", "kana-e", "kana-o",
4998 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4999 "prolongedsound", "kana-A", "kana-I", "kana-U",
5000 "kana-E", "kana-O", "kana-KA", "kana-KI",
5001 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
5002 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
5003 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
5004 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
5005 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
5006 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
5007 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
5008 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
5009 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
5010 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
5011 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
5012 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
5014 #endif /* XK_kana_A */
5015 #endif /* 0 */
5017 #define FUNCTION_KEY_OFFSET 0xff00
5019 /* You'll notice that this table is arranged to be conveniently
5020 indexed by X Windows keysym values. */
5021 static const char *const lispy_function_keys[] =
5023 /* X Keysym value */
5025 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
5026 "backspace", "tab", "linefeed", "clear",
5027 0, "return", 0, 0,
5028 0, 0, 0, "pause", /* 0xff10...1f */
5029 0, 0, 0, 0, 0, 0, 0, "escape",
5030 0, 0, 0, 0,
5031 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
5032 "romaji", "hiragana", "katakana", "hiragana-katakana",
5033 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
5034 "massyo", "kana-lock", "kana-shift", "eisu-shift",
5035 "eisu-toggle", /* 0xff30...3f */
5036 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5037 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
5039 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
5040 "down", "prior", "next", "end",
5041 "begin", 0, 0, 0, 0, 0, 0, 0,
5042 "select", /* 0xff60 */ /* IsMiscFunctionKey */
5043 "print",
5044 "execute",
5045 "insert",
5046 0, /* 0xff64 */
5047 "undo",
5048 "redo",
5049 "menu",
5050 "find",
5051 "cancel",
5052 "help",
5053 "break", /* 0xff6b */
5055 0, 0, 0, 0,
5056 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
5057 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
5058 "kp-space", /* 0xff80 */ /* IsKeypadKey */
5059 0, 0, 0, 0, 0, 0, 0, 0,
5060 "kp-tab", /* 0xff89 */
5061 0, 0, 0,
5062 "kp-enter", /* 0xff8d */
5063 0, 0, 0,
5064 "kp-f1", /* 0xff91 */
5065 "kp-f2",
5066 "kp-f3",
5067 "kp-f4",
5068 "kp-home", /* 0xff95 */
5069 "kp-left",
5070 "kp-up",
5071 "kp-right",
5072 "kp-down",
5073 "kp-prior", /* kp-page-up */
5074 "kp-next", /* kp-page-down */
5075 "kp-end",
5076 "kp-begin",
5077 "kp-insert",
5078 "kp-delete",
5079 0, /* 0xffa0 */
5080 0, 0, 0, 0, 0, 0, 0, 0, 0,
5081 "kp-multiply", /* 0xffaa */
5082 "kp-add",
5083 "kp-separator",
5084 "kp-subtract",
5085 "kp-decimal",
5086 "kp-divide", /* 0xffaf */
5087 "kp-0", /* 0xffb0 */
5088 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5089 0, /* 0xffba */
5090 0, 0,
5091 "kp-equal", /* 0xffbd */
5092 "f1", /* 0xffbe */ /* IsFunctionKey */
5093 "f2",
5094 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5095 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5096 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5097 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5098 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5099 0, 0, 0, 0, 0, 0, 0, 0,
5100 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5101 0, 0, 0, 0, 0, 0, 0, "delete"
5104 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5105 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5107 static const char *const iso_lispy_function_keys[] =
5109 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5110 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5111 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5112 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5113 "iso-lefttab", /* 0xfe20 */
5114 "iso-move-line-up", "iso-move-line-down",
5115 "iso-partial-line-up", "iso-partial-line-down",
5116 "iso-partial-space-left", "iso-partial-space-right",
5117 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5118 "iso-release-margin-left", "iso-release-margin-right",
5119 "iso-release-both-margins",
5120 "iso-fast-cursor-left", "iso-fast-cursor-right",
5121 "iso-fast-cursor-up", "iso-fast-cursor-down",
5122 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5123 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5126 #endif /* not HAVE_NTGUI */
5128 static Lisp_Object Vlispy_mouse_stem;
5130 static const char *const lispy_wheel_names[] =
5132 "wheel-up", "wheel-down", "wheel-left", "wheel-right"
5135 /* drag-n-drop events are generated when a set of selected files are
5136 dragged from another application and dropped onto an Emacs window. */
5137 static const char *const lispy_drag_n_drop_names[] =
5139 "drag-n-drop"
5142 /* Scroll bar parts. */
5143 static Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
5144 Lisp_Object Qup, Qdown, Qbottom;
5145 static Lisp_Object Qend_scroll;
5146 Lisp_Object Qtop;
5147 static Lisp_Object Qratio;
5149 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
5150 static Lisp_Object *const scroll_bar_parts[] = {
5151 &Qabove_handle, &Qhandle, &Qbelow_handle,
5152 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
5155 /* A vector, indexed by button number, giving the down-going location
5156 of currently depressed buttons, both scroll bar and non-scroll bar.
5158 The elements have the form
5159 (BUTTON-NUMBER MODIFIER-MASK . REST)
5160 where REST is the cdr of a position as it would be reported in the event.
5162 The make_lispy_event function stores positions here to tell the
5163 difference between click and drag events, and to store the starting
5164 location to be included in drag events. */
5166 static Lisp_Object button_down_location;
5168 /* Information about the most recent up-going button event: Which
5169 button, what location, and what time. */
5171 static int last_mouse_button;
5172 static int last_mouse_x;
5173 static int last_mouse_y;
5174 static Time button_down_time;
5176 /* The number of clicks in this multiple-click. */
5178 static int double_click_count;
5180 /* X and Y are frame-relative coordinates for a click or wheel event.
5181 Return a Lisp-style event list. */
5183 static Lisp_Object
5184 make_lispy_position (struct frame *f, Lisp_Object x, Lisp_Object y,
5185 Time t)
5187 enum window_part part;
5188 Lisp_Object posn = Qnil;
5189 Lisp_Object extra_info = Qnil;
5190 /* Coordinate pixel positions to return. */
5191 int xret = 0, yret = 0;
5192 /* The window under frame pixel coordinates (x,y) */
5193 Lisp_Object window = f
5194 ? window_from_coordinates (f, XINT (x), XINT (y), &part, 0)
5195 : Qnil;
5197 if (WINDOWP (window))
5199 /* It's a click in window WINDOW at frame coordinates (X,Y) */
5200 struct window *w = XWINDOW (window);
5201 Lisp_Object string_info = Qnil;
5202 ptrdiff_t textpos = -1;
5203 int col = -1, row = -1;
5204 int dx = -1, dy = -1;
5205 int width = -1, height = -1;
5206 Lisp_Object object = Qnil;
5208 /* Pixel coordinates relative to the window corner. */
5209 int wx = XINT (x) - WINDOW_LEFT_EDGE_X (w);
5210 int wy = XINT (y) - WINDOW_TOP_EDGE_Y (w);
5212 /* For text area clicks, return X, Y relative to the corner of
5213 this text area. Note that dX, dY etc are set below, by
5214 buffer_posn_from_coords. */
5215 if (part == ON_TEXT)
5217 xret = XINT (x) - window_box_left (w, TEXT_AREA);
5218 yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5220 /* For mode line and header line clicks, return X, Y relative to
5221 the left window edge. Use mode_line_string to look for a
5222 string on the click position. */
5223 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5225 Lisp_Object string;
5226 ptrdiff_t charpos;
5228 posn = (part == ON_MODE_LINE) ? Qmode_line : Qheader_line;
5229 /* Note that mode_line_string takes COL, ROW as pixels and
5230 converts them to characters. */
5231 col = wx;
5232 row = wy;
5233 string = mode_line_string (w, part, &col, &row, &charpos,
5234 &object, &dx, &dy, &width, &height);
5235 if (STRINGP (string))
5236 string_info = Fcons (string, make_number (charpos));
5237 textpos = (w == XWINDOW (selected_window)
5238 && current_buffer == XBUFFER (w->buffer))
5239 ? PT : XMARKER (w->pointm)->charpos;
5241 xret = wx;
5242 yret = wy;
5244 /* For fringes and margins, Y is relative to the area's (and the
5245 window's) top edge, while X is meaningless. */
5246 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5248 Lisp_Object string;
5249 ptrdiff_t charpos;
5251 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5252 col = wx;
5253 row = wy;
5254 string = marginal_area_string (w, part, &col, &row, &charpos,
5255 &object, &dx, &dy, &width, &height);
5256 if (STRINGP (string))
5257 string_info = Fcons (string, make_number (charpos));
5258 yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5260 else if (part == ON_LEFT_FRINGE)
5262 posn = Qleft_fringe;
5263 col = 0;
5264 dx = wx
5265 - (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5266 ? 0 : window_box_width (w, LEFT_MARGIN_AREA));
5267 dy = yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5269 else if (part == ON_RIGHT_FRINGE)
5271 posn = Qright_fringe;
5272 col = 0;
5273 dx = wx
5274 - window_box_width (w, LEFT_MARGIN_AREA)
5275 - window_box_width (w, TEXT_AREA)
5276 - (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5277 ? window_box_width (w, RIGHT_MARGIN_AREA)
5278 : 0);
5279 dy = yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5281 else if (part == ON_VERTICAL_BORDER)
5283 posn = Qvertical_line;
5284 width = 1;
5285 dx = 0;
5286 dy = yret = wy;
5288 /* Nothing special for part == ON_SCROLL_BAR. */
5290 /* For clicks in the text area, fringes, or margins, call
5291 buffer_posn_from_coords to extract TEXTPOS, the buffer
5292 position nearest to the click. */
5293 if (textpos < 0)
5295 Lisp_Object string2, object2 = Qnil;
5296 struct display_pos p;
5297 int dx2, dy2;
5298 int width2, height2;
5299 /* The pixel X coordinate passed to buffer_posn_from_coords
5300 is the X coordinate relative to the text area for
5301 text-area and right-margin clicks, zero otherwise. */
5302 int x2
5303 = (part == ON_TEXT) ? xret
5304 : (part == ON_RIGHT_FRINGE || part == ON_RIGHT_MARGIN)
5305 ? (XINT (x) - window_box_left (w, TEXT_AREA))
5306 : 0;
5307 int y2 = wy;
5309 string2 = buffer_posn_from_coords (w, &x2, &y2, &p,
5310 &object2, &dx2, &dy2,
5311 &width2, &height2);
5312 textpos = CHARPOS (p.pos);
5313 if (col < 0) col = x2;
5314 if (row < 0) row = y2;
5315 if (dx < 0) dx = dx2;
5316 if (dy < 0) dy = dy2;
5317 if (width < 0) width = width2;
5318 if (height < 0) height = height2;
5320 if (NILP (posn))
5322 posn = make_number (textpos);
5323 if (STRINGP (string2))
5324 string_info = Fcons (string2,
5325 make_number (CHARPOS (p.string_pos)));
5327 if (NILP (object))
5328 object = object2;
5331 #ifdef HAVE_WINDOW_SYSTEM
5332 if (IMAGEP (object))
5334 Lisp_Object image_map, hotspot;
5335 if ((image_map = Fplist_get (XCDR (object), QCmap),
5336 !NILP (image_map))
5337 && (hotspot = find_hot_spot (image_map, dx, dy),
5338 CONSP (hotspot))
5339 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5340 posn = XCAR (hotspot);
5342 #endif
5344 /* Object info */
5345 extra_info
5346 = list3 (object,
5347 Fcons (make_number (dx), make_number (dy)),
5348 Fcons (make_number (width), make_number (height)));
5350 /* String info */
5351 extra_info = Fcons (string_info,
5352 Fcons (make_number (textpos),
5353 Fcons (Fcons (make_number (col),
5354 make_number (row)),
5355 extra_info)));
5357 else if (f != 0)
5358 XSETFRAME (window, f);
5359 else
5360 window = Qnil;
5362 return Fcons (window,
5363 Fcons (posn,
5364 Fcons (Fcons (make_number (xret),
5365 make_number (yret)),
5366 Fcons (make_number (t),
5367 extra_info))));
5370 /* Given a struct input_event, build the lisp event which represents
5371 it. If EVENT is 0, build a mouse movement event from the mouse
5372 movement buffer, which should have a movement event in it.
5374 Note that events must be passed to this function in the order they
5375 are received; this function stores the location of button presses
5376 in order to build drag events when the button is released. */
5378 static Lisp_Object
5379 make_lispy_event (struct input_event *event)
5381 int i;
5383 switch (event->kind)
5385 /* A simple keystroke. */
5386 case ASCII_KEYSTROKE_EVENT:
5387 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5389 Lisp_Object lispy_c;
5390 EMACS_INT c = event->code;
5391 if (event->kind == ASCII_KEYSTROKE_EVENT)
5393 c &= 0377;
5394 eassert (c == event->code);
5395 /* Turn ASCII characters into control characters
5396 when proper. */
5397 if (event->modifiers & ctrl_modifier)
5399 c = make_ctrl_char (c);
5400 event->modifiers &= ~ctrl_modifier;
5404 /* Add in the other modifier bits. The shift key was taken care
5405 of by the X code. */
5406 c |= (event->modifiers
5407 & (meta_modifier | alt_modifier
5408 | hyper_modifier | super_modifier | ctrl_modifier));
5409 /* Distinguish Shift-SPC from SPC. */
5410 if ((event->code) == 040
5411 && event->modifiers & shift_modifier)
5412 c |= shift_modifier;
5413 button_down_time = 0;
5414 XSETFASTINT (lispy_c, c);
5415 return lispy_c;
5418 #ifdef HAVE_NS
5419 /* NS_NONKEY_EVENTs are just like NON_ASCII_KEYSTROKE_EVENTs,
5420 except that they are non-key events (last-nonmenu-event is nil). */
5421 case NS_NONKEY_EVENT:
5422 #endif
5424 /* A function key. The symbol may need to have modifier prefixes
5425 tacked onto it. */
5426 case NON_ASCII_KEYSTROKE_EVENT:
5427 button_down_time = 0;
5429 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5430 if (event->code == lispy_accent_codes[i])
5431 return modify_event_symbol (i,
5432 event->modifiers,
5433 Qfunction_key, Qnil,
5434 lispy_accent_keys, &accent_key_syms,
5435 (sizeof (lispy_accent_keys)
5436 / sizeof (lispy_accent_keys[0])));
5438 #if 0
5439 #ifdef XK_kana_A
5440 if (event->code >= 0x400 && event->code < 0x500)
5441 return modify_event_symbol (event->code - 0x400,
5442 event->modifiers & ~shift_modifier,
5443 Qfunction_key, Qnil,
5444 lispy_kana_keys, &func_key_syms,
5445 (sizeof (lispy_kana_keys)
5446 / sizeof (lispy_kana_keys[0])));
5447 #endif /* XK_kana_A */
5448 #endif /* 0 */
5450 #ifdef ISO_FUNCTION_KEY_OFFSET
5451 if (event->code < FUNCTION_KEY_OFFSET
5452 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5453 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5454 event->modifiers,
5455 Qfunction_key, Qnil,
5456 iso_lispy_function_keys, &func_key_syms,
5457 (sizeof (iso_lispy_function_keys)
5458 / sizeof (iso_lispy_function_keys[0])));
5459 #endif
5461 /* Handle system-specific or unknown keysyms. */
5462 if (event->code & (1 << 28)
5463 || event->code - FUNCTION_KEY_OFFSET < 0
5464 || (event->code - FUNCTION_KEY_OFFSET
5465 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5466 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5468 /* We need to use an alist rather than a vector as the cache
5469 since we can't make a vector long enough. */
5470 if (NILP (KVAR (current_kboard, system_key_syms)))
5471 kset_system_key_syms (current_kboard, Fcons (Qnil, Qnil));
5472 return modify_event_symbol (event->code,
5473 event->modifiers,
5474 Qfunction_key,
5475 KVAR (current_kboard, Vsystem_key_alist),
5476 0, &KVAR (current_kboard, system_key_syms),
5477 PTRDIFF_MAX);
5480 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5481 event->modifiers,
5482 Qfunction_key, Qnil,
5483 lispy_function_keys, &func_key_syms,
5484 (sizeof (lispy_function_keys)
5485 / sizeof (lispy_function_keys[0])));
5487 #ifdef WINDOWSNT
5488 case MULTIMEDIA_KEY_EVENT:
5489 if (event->code < (sizeof (lispy_multimedia_keys)
5490 / sizeof (lispy_multimedia_keys[0]))
5491 && event->code > 0 && lispy_multimedia_keys[event->code])
5493 return modify_event_symbol (event->code, event->modifiers,
5494 Qfunction_key, Qnil,
5495 lispy_multimedia_keys, &func_key_syms,
5496 (sizeof (lispy_multimedia_keys)
5497 / sizeof (lispy_multimedia_keys[0])));
5499 return Qnil;
5500 #endif
5502 #ifdef HAVE_MOUSE
5503 /* A mouse click. Figure out where it is, decide whether it's
5504 a press, click or drag, and build the appropriate structure. */
5505 case MOUSE_CLICK_EVENT:
5506 #ifndef USE_TOOLKIT_SCROLL_BARS
5507 case SCROLL_BAR_CLICK_EVENT:
5508 #endif
5510 int button = event->code;
5511 int is_double;
5512 Lisp_Object position;
5513 Lisp_Object *start_pos_ptr;
5514 Lisp_Object start_pos;
5516 position = Qnil;
5518 /* Build the position as appropriate for this mouse click. */
5519 if (event->kind == MOUSE_CLICK_EVENT)
5521 struct frame *f = XFRAME (event->frame_or_window);
5522 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5523 int row, column;
5524 #endif
5526 /* Ignore mouse events that were made on frame that
5527 have been deleted. */
5528 if (! FRAME_LIVE_P (f))
5529 return Qnil;
5531 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5532 /* EVENT->x and EVENT->y are frame-relative pixel
5533 coordinates at this place. Under old redisplay, COLUMN
5534 and ROW are set to frame relative glyph coordinates
5535 which are then used to determine whether this click is
5536 in a menu (non-toolkit version). */
5537 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5538 &column, &row, NULL, 1);
5540 /* In the non-toolkit version, clicks on the menu bar
5541 are ordinary button events in the event buffer.
5542 Distinguish them, and invoke the menu.
5544 (In the toolkit version, the toolkit handles the menu bar
5545 and Emacs doesn't know about it until after the user
5546 makes a selection.) */
5547 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5548 && (event->modifiers & down_modifier))
5550 Lisp_Object items, item;
5552 /* Find the menu bar item under `column'. */
5553 item = Qnil;
5554 items = FRAME_MENU_BAR_ITEMS (f);
5555 for (i = 0; i < ASIZE (items); i += 4)
5557 Lisp_Object pos, string;
5558 string = AREF (items, i + 1);
5559 pos = AREF (items, i + 3);
5560 if (NILP (string))
5561 break;
5562 if (column >= XINT (pos)
5563 && column < XINT (pos) + SCHARS (string))
5565 item = AREF (items, i);
5566 break;
5570 /* ELisp manual 2.4b says (x y) are window relative but
5571 code says they are frame-relative. */
5572 position
5573 = Fcons (event->frame_or_window,
5574 Fcons (Qmenu_bar,
5575 Fcons (Fcons (event->x, event->y),
5576 Fcons (make_number (event->timestamp),
5577 Qnil))));
5579 return Fcons (item, Fcons (position, Qnil));
5581 #endif /* not USE_X_TOOLKIT && not USE_GTK && not HAVE_NS */
5583 position = make_lispy_position (f, event->x, event->y,
5584 event->timestamp);
5586 #ifndef USE_TOOLKIT_SCROLL_BARS
5587 else
5589 /* It's a scrollbar click. */
5590 Lisp_Object window;
5591 Lisp_Object portion_whole;
5592 Lisp_Object part;
5594 window = event->frame_or_window;
5595 portion_whole = Fcons (event->x, event->y);
5596 part = *scroll_bar_parts[(int) event->part];
5598 position
5599 = Fcons (window,
5600 Fcons (Qvertical_scroll_bar,
5601 Fcons (portion_whole,
5602 Fcons (make_number (event->timestamp),
5603 Fcons (part, Qnil)))));
5605 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5607 if (button >= ASIZE (button_down_location))
5609 ptrdiff_t incr = button - ASIZE (button_down_location) + 1;
5610 button_down_location = larger_vector (button_down_location,
5611 incr, -1);
5612 mouse_syms = larger_vector (mouse_syms, incr, -1);
5615 start_pos_ptr = aref_addr (button_down_location, button);
5616 start_pos = *start_pos_ptr;
5617 *start_pos_ptr = Qnil;
5620 /* On window-system frames, use the value of
5621 double-click-fuzz as is. On other frames, interpret it
5622 as a multiple of 1/8 characters. */
5623 struct frame *f;
5624 int fuzz;
5626 if (WINDOWP (event->frame_or_window))
5627 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5628 else if (FRAMEP (event->frame_or_window))
5629 f = XFRAME (event->frame_or_window);
5630 else
5631 abort ();
5633 if (FRAME_WINDOW_P (f))
5634 fuzz = double_click_fuzz;
5635 else
5636 fuzz = double_click_fuzz / 8;
5638 is_double = (button == last_mouse_button
5639 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5640 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5641 && button_down_time != 0
5642 && (EQ (Vdouble_click_time, Qt)
5643 || (NATNUMP (Vdouble_click_time)
5644 && (event->timestamp - button_down_time
5645 < XFASTINT (Vdouble_click_time)))));
5648 last_mouse_button = button;
5649 last_mouse_x = XINT (event->x);
5650 last_mouse_y = XINT (event->y);
5652 /* If this is a button press, squirrel away the location, so
5653 we can decide later whether it was a click or a drag. */
5654 if (event->modifiers & down_modifier)
5656 if (is_double)
5658 double_click_count++;
5659 event->modifiers |= ((double_click_count > 2)
5660 ? triple_modifier
5661 : double_modifier);
5663 else
5664 double_click_count = 1;
5665 button_down_time = event->timestamp;
5666 *start_pos_ptr = Fcopy_alist (position);
5667 ignore_mouse_drag_p = 0;
5670 /* Now we're releasing a button - check the co-ordinates to
5671 see if this was a click or a drag. */
5672 else if (event->modifiers & up_modifier)
5674 /* If we did not see a down before this up, ignore the up.
5675 Probably this happened because the down event chose a
5676 menu item. It would be an annoyance to treat the
5677 release of the button that chose the menu item as a
5678 separate event. */
5680 if (!CONSP (start_pos))
5681 return Qnil;
5683 event->modifiers &= ~up_modifier;
5686 Lisp_Object new_down, down;
5687 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5689 /* The third element of every position
5690 should be the (x,y) pair. */
5691 down = Fcar (Fcdr (Fcdr (start_pos)));
5692 new_down = Fcar (Fcdr (Fcdr (position)));
5694 if (CONSP (down)
5695 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5697 xdiff = XINT (XCAR (new_down)) - XINT (XCAR (down));
5698 ydiff = XINT (XCDR (new_down)) - XINT (XCDR (down));
5701 if (ignore_mouse_drag_p)
5703 event->modifiers |= click_modifier;
5704 ignore_mouse_drag_p = 0;
5706 else if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5707 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5708 /* Maybe the mouse has moved a lot, caused scrolling, and
5709 eventually ended up at the same screen position (but
5710 not buffer position) in which case it is a drag, not
5711 a click. */
5712 /* FIXME: OTOH if the buffer position has changed
5713 because of a timer or process filter rather than
5714 because of mouse movement, it should be considered as
5715 a click. But mouse-drag-region completely ignores
5716 this case and it hasn't caused any real problem, so
5717 it's probably OK to ignore it as well. */
5718 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5719 /* Mouse hasn't moved (much). */
5720 event->modifiers |= click_modifier;
5721 else
5723 button_down_time = 0;
5724 event->modifiers |= drag_modifier;
5727 /* Don't check is_double; treat this as multiple
5728 if the down-event was multiple. */
5729 if (double_click_count > 1)
5730 event->modifiers |= ((double_click_count > 2)
5731 ? triple_modifier
5732 : double_modifier);
5735 else
5736 /* Every mouse event should either have the down_modifier or
5737 the up_modifier set. */
5738 abort ();
5741 /* Get the symbol we should use for the mouse click. */
5742 Lisp_Object head;
5744 head = modify_event_symbol (button,
5745 event->modifiers,
5746 Qmouse_click, Vlispy_mouse_stem,
5747 NULL,
5748 &mouse_syms,
5749 ASIZE (mouse_syms));
5750 if (event->modifiers & drag_modifier)
5751 return Fcons (head,
5752 Fcons (start_pos,
5753 Fcons (position,
5754 Qnil)));
5755 else if (event->modifiers & (double_modifier | triple_modifier))
5756 return Fcons (head,
5757 Fcons (position,
5758 Fcons (make_number (double_click_count),
5759 Qnil)));
5760 else
5761 return Fcons (head,
5762 Fcons (position,
5763 Qnil));
5767 case WHEEL_EVENT:
5768 case HORIZ_WHEEL_EVENT:
5770 Lisp_Object position;
5771 Lisp_Object head;
5773 /* Build the position as appropriate for this mouse click. */
5774 struct frame *f = XFRAME (event->frame_or_window);
5776 /* Ignore wheel events that were made on frame that have been
5777 deleted. */
5778 if (! FRAME_LIVE_P (f))
5779 return Qnil;
5781 position = make_lispy_position (f, event->x, event->y,
5782 event->timestamp);
5784 /* Set double or triple modifiers to indicate the wheel speed. */
5786 /* On window-system frames, use the value of
5787 double-click-fuzz as is. On other frames, interpret it
5788 as a multiple of 1/8 characters. */
5789 struct frame *fr;
5790 int fuzz;
5791 int symbol_num;
5792 int is_double;
5794 if (WINDOWP (event->frame_or_window))
5795 fr = XFRAME (XWINDOW (event->frame_or_window)->frame);
5796 else if (FRAMEP (event->frame_or_window))
5797 fr = XFRAME (event->frame_or_window);
5798 else
5799 abort ();
5801 fuzz = FRAME_WINDOW_P (fr)
5802 ? double_click_fuzz : double_click_fuzz / 8;
5804 if (event->modifiers & up_modifier)
5806 /* Emit a wheel-up event. */
5807 event->modifiers &= ~up_modifier;
5808 symbol_num = 0;
5810 else if (event->modifiers & down_modifier)
5812 /* Emit a wheel-down event. */
5813 event->modifiers &= ~down_modifier;
5814 symbol_num = 1;
5816 else
5817 /* Every wheel event should either have the down_modifier or
5818 the up_modifier set. */
5819 abort ();
5821 if (event->kind == HORIZ_WHEEL_EVENT)
5822 symbol_num += 2;
5824 is_double = (last_mouse_button == - (1 + symbol_num)
5825 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5826 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5827 && button_down_time != 0
5828 && (EQ (Vdouble_click_time, Qt)
5829 || (NATNUMP (Vdouble_click_time)
5830 && (event->timestamp - button_down_time
5831 < XFASTINT (Vdouble_click_time)))));
5832 if (is_double)
5834 double_click_count++;
5835 event->modifiers |= ((double_click_count > 2)
5836 ? triple_modifier
5837 : double_modifier);
5839 else
5841 double_click_count = 1;
5842 event->modifiers |= click_modifier;
5845 button_down_time = event->timestamp;
5846 /* Use a negative value to distinguish wheel from mouse button. */
5847 last_mouse_button = - (1 + symbol_num);
5848 last_mouse_x = XINT (event->x);
5849 last_mouse_y = XINT (event->y);
5851 /* Get the symbol we should use for the wheel event. */
5852 head = modify_event_symbol (symbol_num,
5853 event->modifiers,
5854 Qmouse_click,
5855 Qnil,
5856 lispy_wheel_names,
5857 &wheel_syms,
5858 ASIZE (wheel_syms));
5861 if (event->modifiers & (double_modifier | triple_modifier))
5862 return Fcons (head,
5863 Fcons (position,
5864 Fcons (make_number (double_click_count),
5865 Qnil)));
5866 else
5867 return Fcons (head,
5868 Fcons (position,
5869 Qnil));
5873 #ifdef USE_TOOLKIT_SCROLL_BARS
5875 /* We don't have down and up events if using toolkit scroll bars,
5876 so make this always a click event. Store in the `part' of
5877 the Lisp event a symbol which maps to the following actions:
5879 `above_handle' page up
5880 `below_handle' page down
5881 `up' line up
5882 `down' line down
5883 `top' top of buffer
5884 `bottom' bottom of buffer
5885 `handle' thumb has been dragged.
5886 `end-scroll' end of interaction with scroll bar
5888 The incoming input_event contains in its `part' member an
5889 index of type `enum scroll_bar_part' which we can use as an
5890 index in scroll_bar_parts to get the appropriate symbol. */
5892 case SCROLL_BAR_CLICK_EVENT:
5894 Lisp_Object position, head, window, portion_whole, part;
5896 window = event->frame_or_window;
5897 portion_whole = Fcons (event->x, event->y);
5898 part = *scroll_bar_parts[(int) event->part];
5900 position
5901 = Fcons (window,
5902 Fcons (Qvertical_scroll_bar,
5903 Fcons (portion_whole,
5904 Fcons (make_number (event->timestamp),
5905 Fcons (part, Qnil)))));
5907 /* Always treat scroll bar events as clicks. */
5908 event->modifiers |= click_modifier;
5909 event->modifiers &= ~up_modifier;
5911 if (event->code >= ASIZE (mouse_syms))
5912 mouse_syms = larger_vector (mouse_syms,
5913 event->code - ASIZE (mouse_syms) + 1,
5914 -1);
5916 /* Get the symbol we should use for the mouse click. */
5917 head = modify_event_symbol (event->code,
5918 event->modifiers,
5919 Qmouse_click,
5920 Vlispy_mouse_stem,
5921 NULL, &mouse_syms,
5922 ASIZE (mouse_syms));
5923 return Fcons (head, Fcons (position, Qnil));
5926 #endif /* USE_TOOLKIT_SCROLL_BARS */
5928 case DRAG_N_DROP_EVENT:
5930 FRAME_PTR f;
5931 Lisp_Object head, position;
5932 Lisp_Object files;
5934 f = XFRAME (event->frame_or_window);
5935 files = event->arg;
5937 /* Ignore mouse events that were made on frames that
5938 have been deleted. */
5939 if (! FRAME_LIVE_P (f))
5940 return Qnil;
5942 position = make_lispy_position (f, event->x, event->y,
5943 event->timestamp);
5945 head = modify_event_symbol (0, event->modifiers,
5946 Qdrag_n_drop, Qnil,
5947 lispy_drag_n_drop_names,
5948 &drag_n_drop_syms, 1);
5949 return Fcons (head,
5950 Fcons (position,
5951 Fcons (files,
5952 Qnil)));
5954 #endif /* HAVE_MOUSE */
5956 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
5957 || defined (HAVE_NS) || defined (USE_GTK)
5958 case MENU_BAR_EVENT:
5959 if (EQ (event->arg, event->frame_or_window))
5960 /* This is the prefix key. We translate this to
5961 `(menu_bar)' because the code in keyboard.c for menu
5962 events, which we use, relies on this. */
5963 return Fcons (Qmenu_bar, Qnil);
5964 return event->arg;
5965 #endif
5967 case SELECT_WINDOW_EVENT:
5968 /* Make an event (select-window (WINDOW)). */
5969 return Fcons (Qselect_window,
5970 Fcons (Fcons (event->frame_or_window, Qnil),
5971 Qnil));
5973 case TOOL_BAR_EVENT:
5974 if (EQ (event->arg, event->frame_or_window))
5975 /* This is the prefix key. We translate this to
5976 `(tool_bar)' because the code in keyboard.c for tool bar
5977 events, which we use, relies on this. */
5978 return Fcons (Qtool_bar, Qnil);
5979 else if (SYMBOLP (event->arg))
5980 return apply_modifiers (event->modifiers, event->arg);
5981 return event->arg;
5983 case USER_SIGNAL_EVENT:
5984 /* A user signal. */
5986 char *name = find_user_signal_name (event->code);
5987 if (!name)
5988 abort ();
5989 return intern (name);
5992 case SAVE_SESSION_EVENT:
5993 return Qsave_session;
5995 #ifdef HAVE_DBUS
5996 case DBUS_EVENT:
5998 return Fcons (Qdbus_event, event->arg);
6000 #endif /* HAVE_DBUS */
6002 case CONFIG_CHANGED_EVENT:
6003 return Fcons (Qconfig_changed_event,
6004 Fcons (event->arg,
6005 Fcons (event->frame_or_window, Qnil)));
6006 #ifdef HAVE_GPM
6007 case GPM_CLICK_EVENT:
6009 FRAME_PTR f = XFRAME (event->frame_or_window);
6010 Lisp_Object head, position;
6011 Lisp_Object *start_pos_ptr;
6012 Lisp_Object start_pos;
6013 int button = event->code;
6015 if (button >= ASIZE (button_down_location))
6017 ptrdiff_t incr = button - ASIZE (button_down_location) + 1;
6018 button_down_location = larger_vector (button_down_location,
6019 incr, -1);
6020 mouse_syms = larger_vector (mouse_syms, incr, -1);
6023 start_pos_ptr = aref_addr (button_down_location, button);
6024 start_pos = *start_pos_ptr;
6026 position = make_lispy_position (f, event->x, event->y,
6027 event->timestamp);
6029 if (event->modifiers & down_modifier)
6030 *start_pos_ptr = Fcopy_alist (position);
6031 else if (event->modifiers & (up_modifier | drag_modifier))
6033 if (!CONSP (start_pos))
6034 return Qnil;
6035 event->modifiers &= ~up_modifier;
6038 head = modify_event_symbol (button,
6039 event->modifiers,
6040 Qmouse_click, Vlispy_mouse_stem,
6041 NULL,
6042 &mouse_syms,
6043 ASIZE (mouse_syms));
6045 if (event->modifiers & drag_modifier)
6046 return Fcons (head,
6047 Fcons (start_pos,
6048 Fcons (position,
6049 Qnil)));
6050 else if (event->modifiers & double_modifier)
6051 return Fcons (head,
6052 Fcons (position,
6053 Fcons (make_number (2),
6054 Qnil)));
6055 else if (event->modifiers & triple_modifier)
6056 return Fcons (head,
6057 Fcons (position,
6058 Fcons (make_number (3),
6059 Qnil)));
6060 else
6061 return Fcons (head,
6062 Fcons (position,
6063 Qnil));
6065 #endif /* HAVE_GPM */
6067 /* The 'kind' field of the event is something we don't recognize. */
6068 default:
6069 abort ();
6073 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
6075 static Lisp_Object
6076 make_lispy_movement (FRAME_PTR frame, Lisp_Object bar_window, enum scroll_bar_part part,
6077 Lisp_Object x, Lisp_Object y, Time t)
6079 /* Is it a scroll bar movement? */
6080 if (frame && ! NILP (bar_window))
6082 Lisp_Object part_sym;
6084 part_sym = *scroll_bar_parts[(int) part];
6085 return Fcons (Qscroll_bar_movement,
6086 Fcons (list5 (bar_window,
6087 Qvertical_scroll_bar,
6088 Fcons (x, y),
6089 make_number (t),
6090 part_sym),
6091 Qnil));
6093 /* Or is it an ordinary mouse movement? */
6094 else
6096 Lisp_Object position;
6097 position = make_lispy_position (frame, x, y, t);
6098 return list2 (Qmouse_movement, position);
6102 #endif /* HAVE_MOUSE || HAVE GPM */
6104 /* Construct a switch frame event. */
6105 static Lisp_Object
6106 make_lispy_switch_frame (Lisp_Object frame)
6108 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
6111 /* Manipulating modifiers. */
6113 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6115 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6116 SYMBOL's name of the end of the modifiers; the string from this
6117 position is the unmodified symbol name.
6119 This doesn't use any caches. */
6121 static int
6122 parse_modifiers_uncached (Lisp_Object symbol, ptrdiff_t *modifier_end)
6124 Lisp_Object name;
6125 ptrdiff_t i;
6126 int modifiers;
6128 CHECK_SYMBOL (symbol);
6130 modifiers = 0;
6131 name = SYMBOL_NAME (symbol);
6133 for (i = 0; i < SBYTES (name) - 1; )
6135 ptrdiff_t this_mod_end = 0;
6136 int this_mod = 0;
6138 /* See if the name continues with a modifier word.
6139 Check that the word appears, but don't check what follows it.
6140 Set this_mod and this_mod_end to record what we find. */
6142 switch (SREF (name, i))
6144 #define SINGLE_LETTER_MOD(BIT) \
6145 (this_mod_end = i + 1, this_mod = BIT)
6147 case 'A':
6148 SINGLE_LETTER_MOD (alt_modifier);
6149 break;
6151 case 'C':
6152 SINGLE_LETTER_MOD (ctrl_modifier);
6153 break;
6155 case 'H':
6156 SINGLE_LETTER_MOD (hyper_modifier);
6157 break;
6159 case 'M':
6160 SINGLE_LETTER_MOD (meta_modifier);
6161 break;
6163 case 'S':
6164 SINGLE_LETTER_MOD (shift_modifier);
6165 break;
6167 case 's':
6168 SINGLE_LETTER_MOD (super_modifier);
6169 break;
6171 #undef SINGLE_LETTER_MOD
6173 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6174 if (i + LEN + 1 <= SBYTES (name) \
6175 && ! memcmp (SDATA (name) + i, NAME, LEN)) \
6177 this_mod_end = i + LEN; \
6178 this_mod = BIT; \
6181 case 'd':
6182 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6183 MULTI_LETTER_MOD (down_modifier, "down", 4);
6184 MULTI_LETTER_MOD (double_modifier, "double", 6);
6185 break;
6187 case 't':
6188 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6189 break;
6190 #undef MULTI_LETTER_MOD
6194 /* If we found no modifier, stop looking for them. */
6195 if (this_mod_end == 0)
6196 break;
6198 /* Check there is a dash after the modifier, so that it
6199 really is a modifier. */
6200 if (this_mod_end >= SBYTES (name)
6201 || SREF (name, this_mod_end) != '-')
6202 break;
6204 /* This modifier is real; look for another. */
6205 modifiers |= this_mod;
6206 i = this_mod_end + 1;
6209 /* Should we include the `click' modifier? */
6210 if (! (modifiers & (down_modifier | drag_modifier
6211 | double_modifier | triple_modifier))
6212 && i + 7 == SBYTES (name)
6213 && memcmp (SDATA (name) + i, "mouse-", 6) == 0
6214 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6215 modifiers |= click_modifier;
6217 if (! (modifiers & (double_modifier | triple_modifier))
6218 && i + 6 < SBYTES (name)
6219 && memcmp (SDATA (name) + i, "wheel-", 6) == 0)
6220 modifiers |= click_modifier;
6222 if (modifier_end)
6223 *modifier_end = i;
6225 return modifiers;
6228 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6229 prepended to the string BASE[0..BASE_LEN-1].
6230 This doesn't use any caches. */
6231 static Lisp_Object
6232 apply_modifiers_uncached (int modifiers, char *base, int base_len, int base_len_byte)
6234 /* Since BASE could contain nulls, we can't use intern here; we have
6235 to use Fintern, which expects a genuine Lisp_String, and keeps a
6236 reference to it. */
6237 char new_mods[sizeof "A-C-H-M-S-s-down-drag-double-triple-"];
6238 int mod_len;
6241 char *p = new_mods;
6243 /* Only the event queue may use the `up' modifier; it should always
6244 be turned into a click or drag event before presented to lisp code. */
6245 if (modifiers & up_modifier)
6246 abort ();
6248 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6249 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6250 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6251 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6252 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6253 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6254 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
6255 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
6256 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
6257 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
6258 /* The click modifier is denoted by the absence of other modifiers. */
6260 *p = '\0';
6262 mod_len = p - new_mods;
6266 Lisp_Object new_name;
6268 new_name = make_uninit_multibyte_string (mod_len + base_len,
6269 mod_len + base_len_byte);
6270 memcpy (SDATA (new_name), new_mods, mod_len);
6271 memcpy (SDATA (new_name) + mod_len, base, base_len_byte);
6273 return Fintern (new_name, Qnil);
6278 static const char *const modifier_names[] =
6280 "up", "down", "drag", "click", "double", "triple", 0, 0,
6281 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6282 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6284 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6286 static Lisp_Object modifier_symbols;
6288 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6289 static Lisp_Object
6290 lispy_modifier_list (int modifiers)
6292 Lisp_Object modifier_list;
6293 int i;
6295 modifier_list = Qnil;
6296 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6297 if (modifiers & (1<<i))
6298 modifier_list = Fcons (AREF (modifier_symbols, i),
6299 modifier_list);
6301 return modifier_list;
6305 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6306 where UNMODIFIED is the unmodified form of SYMBOL,
6307 MASK is the set of modifiers present in SYMBOL's name.
6308 This is similar to parse_modifiers_uncached, but uses the cache in
6309 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6310 Qevent_symbol_elements property. */
6312 #define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTERBITS) - 1))
6314 Lisp_Object
6315 parse_modifiers (Lisp_Object symbol)
6317 Lisp_Object elements;
6319 if (INTEGERP (symbol))
6320 return (Fcons (make_number (KEY_TO_CHAR (symbol)),
6321 Fcons (make_number (XINT (symbol) & CHAR_MODIFIER_MASK),
6322 Qnil)));
6323 else if (!SYMBOLP (symbol))
6324 return Qnil;
6326 elements = Fget (symbol, Qevent_symbol_element_mask);
6327 if (CONSP (elements))
6328 return elements;
6329 else
6331 ptrdiff_t end;
6332 int modifiers = parse_modifiers_uncached (symbol, &end);
6333 Lisp_Object unmodified;
6334 Lisp_Object mask;
6336 unmodified = Fintern (make_string (SSDATA (SYMBOL_NAME (symbol)) + end,
6337 SBYTES (SYMBOL_NAME (symbol)) - end),
6338 Qnil);
6340 if (modifiers & ~INTMASK)
6341 abort ();
6342 XSETFASTINT (mask, modifiers);
6343 elements = Fcons (unmodified, Fcons (mask, Qnil));
6345 /* Cache the parsing results on SYMBOL. */
6346 Fput (symbol, Qevent_symbol_element_mask,
6347 elements);
6348 Fput (symbol, Qevent_symbol_elements,
6349 Fcons (unmodified, lispy_modifier_list (modifiers)));
6351 /* Since we know that SYMBOL is modifiers applied to unmodified,
6352 it would be nice to put that in unmodified's cache.
6353 But we can't, since we're not sure that parse_modifiers is
6354 canonical. */
6356 return elements;
6360 DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,
6361 Sevent_symbol_parse_modifiers, 1, 1, 0,
6362 doc: /* Parse the event symbol. For internal use. */)
6363 (Lisp_Object symbol)
6365 /* Fill the cache if needed. */
6366 parse_modifiers (symbol);
6367 /* Ignore the result (which is stored on Qevent_symbol_element_mask)
6368 and use the Lispier representation stored on Qevent_symbol_elements
6369 instead. */
6370 return Fget (symbol, Qevent_symbol_elements);
6373 /* Apply the modifiers MODIFIERS to the symbol BASE.
6374 BASE must be unmodified.
6376 This is like apply_modifiers_uncached, but uses BASE's
6377 Qmodifier_cache property, if present. It also builds
6378 Qevent_symbol_elements properties, since it has that info anyway.
6380 apply_modifiers copies the value of BASE's Qevent_kind property to
6381 the modified symbol. */
6382 static Lisp_Object
6383 apply_modifiers (int modifiers, Lisp_Object base)
6385 Lisp_Object cache, idx, entry, new_symbol;
6387 /* Mask out upper bits. We don't know where this value's been. */
6388 modifiers &= INTMASK;
6390 if (INTEGERP (base))
6391 return make_number (XINT (base) | modifiers);
6393 /* The click modifier never figures into cache indices. */
6394 cache = Fget (base, Qmodifier_cache);
6395 XSETFASTINT (idx, (modifiers & ~click_modifier));
6396 entry = assq_no_quit (idx, cache);
6398 if (CONSP (entry))
6399 new_symbol = XCDR (entry);
6400 else
6402 /* We have to create the symbol ourselves. */
6403 new_symbol = apply_modifiers_uncached (modifiers,
6404 SSDATA (SYMBOL_NAME (base)),
6405 SCHARS (SYMBOL_NAME (base)),
6406 SBYTES (SYMBOL_NAME (base)));
6408 /* Add the new symbol to the base's cache. */
6409 entry = Fcons (idx, new_symbol);
6410 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6412 /* We have the parsing info now for free, so we could add it to
6413 the caches:
6414 XSETFASTINT (idx, modifiers);
6415 Fput (new_symbol, Qevent_symbol_element_mask,
6416 Fcons (base, Fcons (idx, Qnil)));
6417 Fput (new_symbol, Qevent_symbol_elements,
6418 Fcons (base, lispy_modifier_list (modifiers)));
6419 Sadly, this is only correct if `base' is indeed a base event,
6420 which is not necessarily the case. -stef */
6423 /* Make sure this symbol is of the same kind as BASE.
6425 You'd think we could just set this once and for all when we
6426 intern the symbol above, but reorder_modifiers may call us when
6427 BASE's property isn't set right; we can't assume that just
6428 because it has a Qmodifier_cache property it must have its
6429 Qevent_kind set right as well. */
6430 if (NILP (Fget (new_symbol, Qevent_kind)))
6432 Lisp_Object kind;
6434 kind = Fget (base, Qevent_kind);
6435 if (! NILP (kind))
6436 Fput (new_symbol, Qevent_kind, kind);
6439 return new_symbol;
6443 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6444 return a symbol with the modifiers placed in the canonical order.
6445 Canonical order is alphabetical, except for down and drag, which
6446 always come last. The 'click' modifier is never written out.
6448 Fdefine_key calls this to make sure that (for example) C-M-foo
6449 and M-C-foo end up being equivalent in the keymap. */
6451 Lisp_Object
6452 reorder_modifiers (Lisp_Object symbol)
6454 /* It's hopefully okay to write the code this way, since everything
6455 will soon be in caches, and no consing will be done at all. */
6456 Lisp_Object parsed;
6458 parsed = parse_modifiers (symbol);
6459 return apply_modifiers (XFASTINT (XCAR (XCDR (parsed))),
6460 XCAR (parsed));
6464 /* For handling events, we often want to produce a symbol whose name
6465 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6466 to some base, like the name of a function key or mouse button.
6467 modify_event_symbol produces symbols of this sort.
6469 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6470 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6471 in the table.
6473 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6474 into symbol names, or a string specifying a name stem used to
6475 construct a symbol name or the form `STEM-N', where N is the decimal
6476 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6477 non-nil; otherwise NAME_TABLE is used.
6479 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6480 persist between calls to modify_event_symbol that it can use to
6481 store a cache of the symbols it's generated for this NAME_TABLE
6482 before. The object stored there may be a vector or an alist.
6484 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6486 MODIFIERS is a set of modifier bits (as given in struct input_events)
6487 whose prefixes should be applied to the symbol name.
6489 SYMBOL_KIND is the value to be placed in the event_kind property of
6490 the returned symbol.
6492 The symbols we create are supposed to have an
6493 `event-symbol-elements' property, which lists the modifiers present
6494 in the symbol's name. */
6496 static Lisp_Object
6497 modify_event_symbol (ptrdiff_t symbol_num, int modifiers, Lisp_Object symbol_kind,
6498 Lisp_Object name_alist_or_stem, const char *const *name_table,
6499 Lisp_Object *symbol_table, ptrdiff_t table_size)
6501 Lisp_Object value;
6502 Lisp_Object symbol_int;
6504 /* Get rid of the "vendor-specific" bit here. */
6505 XSETINT (symbol_int, symbol_num & 0xffffff);
6507 /* Is this a request for a valid symbol? */
6508 if (symbol_num < 0 || symbol_num >= table_size)
6509 return Qnil;
6511 if (CONSP (*symbol_table))
6512 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6514 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6515 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6516 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6517 we've never used that symbol before. */
6518 else
6520 if (! VECTORP (*symbol_table)
6521 || ASIZE (*symbol_table) != table_size)
6523 Lisp_Object size;
6525 XSETFASTINT (size, table_size);
6526 *symbol_table = Fmake_vector (size, Qnil);
6529 value = AREF (*symbol_table, symbol_num);
6532 /* Have we already used this symbol before? */
6533 if (NILP (value))
6535 /* No; let's create it. */
6536 if (CONSP (name_alist_or_stem))
6537 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6538 else if (STRINGP (name_alist_or_stem))
6540 char *buf;
6541 ptrdiff_t len = (SBYTES (name_alist_or_stem)
6542 + sizeof "-" + INT_STRLEN_BOUND (EMACS_INT));
6543 USE_SAFE_ALLOCA;
6544 buf = SAFE_ALLOCA (len);
6545 esprintf (buf, "%s-%"pI"d", SDATA (name_alist_or_stem),
6546 XINT (symbol_int) + 1);
6547 value = intern (buf);
6548 SAFE_FREE ();
6550 else if (name_table != 0 && name_table[symbol_num])
6551 value = intern (name_table[symbol_num]);
6553 #ifdef HAVE_WINDOW_SYSTEM
6554 if (NILP (value))
6556 char *name = x_get_keysym_name (symbol_num);
6557 if (name)
6558 value = intern (name);
6560 #endif
6562 if (NILP (value))
6564 char buf[sizeof "key-" + INT_STRLEN_BOUND (EMACS_INT)];
6565 sprintf (buf, "key-%"pD"d", symbol_num);
6566 value = intern (buf);
6569 if (CONSP (*symbol_table))
6570 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6571 else
6572 ASET (*symbol_table, symbol_num, value);
6574 /* Fill in the cache entries for this symbol; this also
6575 builds the Qevent_symbol_elements property, which the user
6576 cares about. */
6577 apply_modifiers (modifiers & click_modifier, value);
6578 Fput (value, Qevent_kind, symbol_kind);
6581 /* Apply modifiers to that symbol. */
6582 return apply_modifiers (modifiers, value);
6585 /* Convert a list that represents an event type,
6586 such as (ctrl meta backspace), into the usual representation of that
6587 event type as a number or a symbol. */
6589 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6590 doc: /* Convert the event description list EVENT-DESC to an event type.
6591 EVENT-DESC should contain one base event type (a character or symbol)
6592 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6593 drag, down, double or triple). The base must be last.
6594 The return value is an event type (a character or symbol) which
6595 has the same base event type and all the specified modifiers. */)
6596 (Lisp_Object event_desc)
6598 Lisp_Object base;
6599 int modifiers = 0;
6600 Lisp_Object rest;
6602 base = Qnil;
6603 rest = event_desc;
6604 while (CONSP (rest))
6606 Lisp_Object elt;
6607 int this = 0;
6609 elt = XCAR (rest);
6610 rest = XCDR (rest);
6612 /* Given a symbol, see if it is a modifier name. */
6613 if (SYMBOLP (elt) && CONSP (rest))
6614 this = parse_solitary_modifier (elt);
6616 if (this != 0)
6617 modifiers |= this;
6618 else if (!NILP (base))
6619 error ("Two bases given in one event");
6620 else
6621 base = elt;
6625 /* Let the symbol A refer to the character A. */
6626 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6627 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6629 if (INTEGERP (base))
6631 /* Turn (shift a) into A. */
6632 if ((modifiers & shift_modifier) != 0
6633 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6635 XSETINT (base, XINT (base) - ('a' - 'A'));
6636 modifiers &= ~shift_modifier;
6639 /* Turn (control a) into C-a. */
6640 if (modifiers & ctrl_modifier)
6641 return make_number ((modifiers & ~ctrl_modifier)
6642 | make_ctrl_char (XINT (base)));
6643 else
6644 return make_number (modifiers | XINT (base));
6646 else if (SYMBOLP (base))
6647 return apply_modifiers (modifiers, base);
6648 else
6650 error ("Invalid base event");
6651 return Qnil;
6655 /* Try to recognize SYMBOL as a modifier name.
6656 Return the modifier flag bit, or 0 if not recognized. */
6659 parse_solitary_modifier (Lisp_Object symbol)
6661 Lisp_Object name = SYMBOL_NAME (symbol);
6663 switch (SREF (name, 0))
6665 #define SINGLE_LETTER_MOD(BIT) \
6666 if (SBYTES (name) == 1) \
6667 return BIT;
6669 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6670 if (LEN == SBYTES (name) \
6671 && ! memcmp (SDATA (name), NAME, LEN)) \
6672 return BIT;
6674 case 'A':
6675 SINGLE_LETTER_MOD (alt_modifier);
6676 break;
6678 case 'a':
6679 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6680 break;
6682 case 'C':
6683 SINGLE_LETTER_MOD (ctrl_modifier);
6684 break;
6686 case 'c':
6687 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6688 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6689 break;
6691 case 'H':
6692 SINGLE_LETTER_MOD (hyper_modifier);
6693 break;
6695 case 'h':
6696 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6697 break;
6699 case 'M':
6700 SINGLE_LETTER_MOD (meta_modifier);
6701 break;
6703 case 'm':
6704 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6705 break;
6707 case 'S':
6708 SINGLE_LETTER_MOD (shift_modifier);
6709 break;
6711 case 's':
6712 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6713 MULTI_LETTER_MOD (super_modifier, "super", 5);
6714 SINGLE_LETTER_MOD (super_modifier);
6715 break;
6717 case 'd':
6718 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6719 MULTI_LETTER_MOD (down_modifier, "down", 4);
6720 MULTI_LETTER_MOD (double_modifier, "double", 6);
6721 break;
6723 case 't':
6724 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6725 break;
6727 #undef SINGLE_LETTER_MOD
6728 #undef MULTI_LETTER_MOD
6731 return 0;
6734 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6735 Such a list is not valid as an event,
6736 but it can be a Lucid-style event type list. */
6739 lucid_event_type_list_p (Lisp_Object object)
6741 Lisp_Object tail;
6743 if (! CONSP (object))
6744 return 0;
6746 if (EQ (XCAR (object), Qhelp_echo)
6747 || EQ (XCAR (object), Qvertical_line)
6748 || EQ (XCAR (object), Qmode_line)
6749 || EQ (XCAR (object), Qheader_line))
6750 return 0;
6752 for (tail = object; CONSP (tail); tail = XCDR (tail))
6754 Lisp_Object elt;
6755 elt = XCAR (tail);
6756 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6757 return 0;
6760 return NILP (tail);
6763 /* Store into *addr a value nonzero if terminal input chars are available.
6764 Serves the purpose of ioctl (0, FIONREAD, addr)
6765 but works even if FIONREAD does not exist.
6766 (In fact, this may actually read some input.)
6768 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6769 timer events that are ripe.
6770 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6771 events (FOCUS_IN_EVENT).
6772 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6773 movements and toolkit scroll bar thumb drags. */
6775 static void
6776 get_input_pending (int *addr, int flags)
6778 /* First of all, have we already counted some input? */
6779 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6781 /* If input is being read as it arrives, and we have none, there is none. */
6782 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6783 return;
6785 /* Try to read some input and see how much we get. */
6786 gobble_input (0);
6787 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6790 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6792 void
6793 gobble_input (int expected)
6795 #ifdef SIGIO
6796 if (interrupt_input)
6798 SIGMASKTYPE mask;
6799 mask = sigblock (sigmask (SIGIO));
6800 read_avail_input (expected);
6801 sigsetmask (mask);
6803 else
6804 #ifdef POLL_FOR_INPUT
6805 /* XXX This condition was (read_socket_hook && !interrupt_input),
6806 but read_socket_hook is not global anymore. Let's pretend that
6807 it's always set. */
6808 if (!interrupt_input && poll_suppress_count == 0)
6810 SIGMASKTYPE mask;
6811 mask = sigblock (sigmask (SIGALRM));
6812 read_avail_input (expected);
6813 sigsetmask (mask);
6815 else
6816 #endif
6817 #endif
6818 read_avail_input (expected);
6821 /* Put a BUFFER_SWITCH_EVENT in the buffer
6822 so that read_key_sequence will notice the new current buffer. */
6824 void
6825 record_asynch_buffer_change (void)
6827 struct input_event event;
6828 Lisp_Object tem;
6829 EVENT_INIT (event);
6831 event.kind = BUFFER_SWITCH_EVENT;
6832 event.frame_or_window = Qnil;
6833 event.arg = Qnil;
6835 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6836 The purpose of the event is to make read_key_sequence look up the
6837 keymaps again. If we aren't in read_key_sequence, we don't need one,
6838 and the event could cause trouble by messing up (input-pending-p).
6839 Note: Fwaiting_for_user_input_p always returns nil when async
6840 subprocesses aren't supported. */
6841 tem = Fwaiting_for_user_input_p ();
6842 if (NILP (tem))
6843 return;
6845 /* Make sure no interrupt happens while storing the event. */
6846 #ifdef SIGIO
6847 if (interrupt_input)
6849 SIGMASKTYPE mask;
6850 mask = sigblock (sigmask (SIGIO));
6851 kbd_buffer_store_event (&event);
6852 sigsetmask (mask);
6854 else
6855 #endif
6857 stop_polling ();
6858 kbd_buffer_store_event (&event);
6859 start_polling ();
6863 /* Read any terminal input already buffered up by the system
6864 into the kbd_buffer, but do not wait.
6866 EXPECTED should be nonzero if the caller knows there is some input.
6868 Returns the number of keyboard chars read, or -1 meaning
6869 this is a bad time to try to read input. */
6871 static int
6872 read_avail_input (int expected)
6874 int nread = 0;
6875 int err = 0;
6876 struct terminal *t;
6878 /* Store pending user signal events, if any. */
6879 if (store_user_signal_events ())
6880 expected = 0;
6882 /* Loop through the available terminals, and call their input hooks. */
6883 t = terminal_list;
6884 while (t)
6886 struct terminal *next = t->next_terminal;
6888 if (t->read_socket_hook)
6890 int nr;
6891 struct input_event hold_quit;
6893 EVENT_INIT (hold_quit);
6894 hold_quit.kind = NO_EVENT;
6896 /* No need for FIONREAD or fcntl; just say don't wait. */
6897 while (nr = (*t->read_socket_hook) (t, expected, &hold_quit), nr > 0)
6899 nread += nr;
6900 expected = 0;
6903 if (nr == -1) /* Not OK to read input now. */
6905 err = 1;
6907 else if (nr == -2) /* Non-transient error. */
6909 /* The terminal device terminated; it should be closed. */
6911 /* Kill Emacs if this was our last terminal. */
6912 if (!terminal_list->next_terminal)
6913 /* Formerly simply reported no input, but that
6914 sometimes led to a failure of Emacs to terminate.
6915 SIGHUP seems appropriate if we can't reach the
6916 terminal. */
6917 /* ??? Is it really right to send the signal just to
6918 this process rather than to the whole process
6919 group? Perhaps on systems with FIONREAD Emacs is
6920 alone in its group. */
6921 kill (getpid (), SIGHUP);
6923 /* XXX Is calling delete_terminal safe here? It calls delete_frame. */
6925 Lisp_Object tmp;
6926 XSETTERMINAL (tmp, t);
6927 Fdelete_terminal (tmp, Qnoelisp);
6931 if (hold_quit.kind != NO_EVENT)
6932 kbd_buffer_store_event (&hold_quit);
6935 t = next;
6938 if (err && !nread)
6939 nread = -1;
6941 frame_make_pointer_visible ();
6943 return nread;
6946 static void
6947 decode_keyboard_code (struct tty_display_info *tty,
6948 struct coding_system *coding,
6949 unsigned char *buf, int nbytes)
6951 unsigned char *src = buf;
6952 const unsigned char *p;
6953 int i;
6955 if (nbytes == 0)
6956 return;
6957 if (tty->meta_key != 2)
6958 for (i = 0; i < nbytes; i++)
6959 buf[i] &= ~0x80;
6960 if (coding->carryover_bytes > 0)
6962 src = alloca (coding->carryover_bytes + nbytes);
6963 memcpy (src, coding->carryover, coding->carryover_bytes);
6964 memcpy (src + coding->carryover_bytes, buf, nbytes);
6965 nbytes += coding->carryover_bytes;
6967 coding->destination = alloca (nbytes * 4);
6968 coding->dst_bytes = nbytes * 4;
6969 decode_coding_c_string (coding, src, nbytes, Qnil);
6970 if (coding->produced_char == 0)
6971 return;
6972 for (i = 0, p = coding->destination; i < coding->produced_char; i++)
6974 struct input_event event_buf;
6976 EVENT_INIT (event_buf);
6977 event_buf.code = STRING_CHAR_ADVANCE (p);
6978 event_buf.kind =
6979 (ASCII_CHAR_P (event_buf.code)
6980 ? ASCII_KEYSTROKE_EVENT : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6981 /* See the comment in tty_read_avail_input. */
6982 event_buf.frame_or_window = tty->top_frame;
6983 event_buf.arg = Qnil;
6984 kbd_buffer_store_event (&event_buf);
6988 /* This is the tty way of reading available input.
6990 Note that each terminal device has its own `struct terminal' object,
6991 and so this function is called once for each individual termcap
6992 terminal. The first parameter indicates which terminal to read from. */
6995 tty_read_avail_input (struct terminal *terminal,
6996 int expected,
6997 struct input_event *hold_quit)
6999 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
7000 the kbd_buffer can really hold. That may prevent loss
7001 of characters on some systems when input is stuffed at us. */
7002 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
7003 int n_to_read, i;
7004 struct tty_display_info *tty = terminal->display_info.tty;
7005 int nread = 0;
7006 #ifdef subprocesses
7007 int buffer_free = KBD_BUFFER_SIZE - kbd_buffer_nr_stored () - 1;
7009 if (kbd_on_hold_p () || buffer_free <= 0)
7010 return 0;
7011 #endif /* subprocesses */
7013 if (!terminal->name) /* Don't read from a dead terminal. */
7014 return 0;
7016 if (terminal->type != output_termcap
7017 && terminal->type != output_msdos_raw)
7018 abort ();
7020 /* XXX I think the following code should be moved to separate hook
7021 functions in system-dependent files. */
7022 #ifdef WINDOWSNT
7023 return 0;
7024 #else /* not WINDOWSNT */
7025 if (! tty->term_initted) /* In case we get called during bootstrap. */
7026 return 0;
7028 if (! tty->input)
7029 return 0; /* The terminal is suspended. */
7031 #ifdef MSDOS
7032 n_to_read = dos_keysns ();
7033 if (n_to_read == 0)
7034 return 0;
7036 cbuf[0] = dos_keyread ();
7037 nread = 1;
7039 #else /* not MSDOS */
7040 #ifdef HAVE_GPM
7041 if (gpm_tty == tty)
7043 Gpm_Event event;
7044 struct input_event gpm_hold_quit;
7045 int gpm, fd = gpm_fd;
7047 EVENT_INIT (gpm_hold_quit);
7048 gpm_hold_quit.kind = NO_EVENT;
7050 /* gpm==1 if event received.
7051 gpm==0 if the GPM daemon has closed the connection, in which case
7052 Gpm_GetEvent closes gpm_fd and clears it to -1, which is why
7053 we save it in `fd' so close_gpm can remove it from the
7054 select masks.
7055 gpm==-1 if a protocol error or EWOULDBLOCK; the latter is normal. */
7056 while (gpm = Gpm_GetEvent (&event), gpm == 1) {
7057 nread += handle_one_term_event (tty, &event, &gpm_hold_quit);
7059 if (gpm == 0)
7060 /* Presumably the GPM daemon has closed the connection. */
7061 close_gpm (fd);
7062 if (gpm_hold_quit.kind != NO_EVENT)
7063 kbd_buffer_store_event (&gpm_hold_quit);
7064 if (nread)
7065 return nread;
7067 #endif /* HAVE_GPM */
7069 /* Determine how many characters we should *try* to read. */
7070 #ifdef FIONREAD
7071 /* Find out how much input is available. */
7072 if (ioctl (fileno (tty->input), FIONREAD, &n_to_read) < 0)
7074 if (! noninteractive)
7075 return -2; /* Close this terminal. */
7076 else
7077 n_to_read = 0;
7079 if (n_to_read == 0)
7080 return 0;
7081 if (n_to_read > sizeof cbuf)
7082 n_to_read = sizeof cbuf;
7083 #else /* no FIONREAD */
7084 #if defined (USG) || defined (CYGWIN)
7085 /* Read some input if available, but don't wait. */
7086 n_to_read = sizeof cbuf;
7087 fcntl (fileno (tty->input), F_SETFL, O_NDELAY);
7088 #else
7089 you lose;
7090 #endif
7091 #endif
7093 #ifdef subprocesses
7094 /* Don't read more than we can store. */
7095 if (n_to_read > buffer_free)
7096 n_to_read = buffer_free;
7097 #endif /* subprocesses */
7099 /* Now read; for one reason or another, this will not block.
7100 NREAD is set to the number of chars read. */
7103 nread = emacs_read (fileno (tty->input), (char *) cbuf, n_to_read);
7104 /* POSIX infers that processes which are not in the session leader's
7105 process group won't get SIGHUP's at logout time. BSDI adheres to
7106 this part standard and returns -1 from read (0) with errno==EIO
7107 when the control tty is taken away.
7108 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
7109 if (nread == -1 && errno == EIO)
7110 return -2; /* Close this terminal. */
7111 #if defined (AIX) && defined (_BSD)
7112 /* The kernel sometimes fails to deliver SIGHUP for ptys.
7113 This looks incorrect, but it isn't, because _BSD causes
7114 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
7115 and that causes a value other than 0 when there is no input. */
7116 if (nread == 0)
7117 return -2; /* Close this terminal. */
7118 #endif
7120 while (
7121 /* We used to retry the read if it was interrupted.
7122 But this does the wrong thing when O_NDELAY causes
7123 an EAGAIN error. Does anybody know of a situation
7124 where a retry is actually needed? */
7125 #if 0
7126 nread < 0 && (errno == EAGAIN
7127 #ifdef EFAULT
7128 || errno == EFAULT
7129 #endif
7130 #ifdef EBADSLT
7131 || errno == EBADSLT
7132 #endif
7134 #else
7136 #endif
7139 #ifndef FIONREAD
7140 #if defined (USG) || defined (CYGWIN)
7141 fcntl (fileno (tty->input), F_SETFL, 0);
7142 #endif /* USG or CYGWIN */
7143 #endif /* no FIONREAD */
7145 if (nread <= 0)
7146 return nread;
7148 #endif /* not MSDOS */
7149 #endif /* not WINDOWSNT */
7151 if (TERMINAL_KEYBOARD_CODING (terminal)->common_flags
7152 & CODING_REQUIRE_DECODING_MASK)
7154 struct coding_system *coding = TERMINAL_KEYBOARD_CODING (terminal);
7155 int from;
7157 /* Decode the key sequence except for those with meta
7158 modifiers. */
7159 for (i = from = 0; ; i++)
7160 if (i == nread || (tty->meta_key == 1 && (cbuf[i] & 0x80)))
7162 struct input_event buf;
7164 decode_keyboard_code (tty, coding, cbuf + from, i - from);
7165 if (i == nread)
7166 break;
7168 EVENT_INIT (buf);
7169 buf.kind = ASCII_KEYSTROKE_EVENT;
7170 buf.modifiers = meta_modifier;
7171 buf.code = cbuf[i] & ~0x80;
7172 /* See the comment below. */
7173 buf.frame_or_window = tty->top_frame;
7174 buf.arg = Qnil;
7175 kbd_buffer_store_event (&buf);
7176 from = i + 1;
7178 return nread;
7181 for (i = 0; i < nread; i++)
7183 struct input_event buf;
7184 EVENT_INIT (buf);
7185 buf.kind = ASCII_KEYSTROKE_EVENT;
7186 buf.modifiers = 0;
7187 if (tty->meta_key == 1 && (cbuf[i] & 0x80))
7188 buf.modifiers = meta_modifier;
7189 if (tty->meta_key != 2)
7190 cbuf[i] &= ~0x80;
7192 buf.code = cbuf[i];
7193 /* Set the frame corresponding to the active tty. Note that the
7194 value of selected_frame is not reliable here, redisplay tends
7195 to temporarily change it. */
7196 buf.frame_or_window = tty->top_frame;
7197 buf.arg = Qnil;
7199 kbd_buffer_store_event (&buf);
7200 /* Don't look at input that follows a C-g too closely.
7201 This reduces lossage due to autorepeat on C-g. */
7202 if (buf.kind == ASCII_KEYSTROKE_EVENT
7203 && buf.code == quit_char)
7204 break;
7207 return nread;
7210 #if defined SYNC_INPUT || defined SIGIO
7211 static void
7212 handle_async_input (void)
7214 interrupt_input_pending = 0;
7215 #ifdef SYNC_INPUT
7216 pending_signals = pending_atimers;
7217 #endif
7218 /* Tell ns_read_socket() it is being called asynchronously so it can avoid
7219 doing anything dangerous. */
7220 #ifdef HAVE_NS
7221 ++handling_signal;
7222 #endif
7223 while (1)
7225 int nread;
7226 nread = read_avail_input (1);
7227 /* -1 means it's not ok to read the input now.
7228 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
7229 0 means there was no keyboard input available. */
7230 if (nread <= 0)
7231 break;
7233 #ifdef HAVE_NS
7234 --handling_signal;
7235 #endif
7237 #endif /* SYNC_INPUT || SIGIO */
7239 #ifdef SYNC_INPUT
7240 void
7241 process_pending_signals (void)
7243 if (interrupt_input_pending)
7244 handle_async_input ();
7245 do_pending_atimers ();
7247 #endif
7249 #ifdef SIGIO /* for entire page */
7250 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7252 static void
7253 input_available_signal (int signo)
7255 /* Must preserve main program's value of errno. */
7256 int old_errno = errno;
7257 SIGNAL_THREAD_CHECK (signo);
7259 #ifdef SYNC_INPUT
7260 interrupt_input_pending = 1;
7261 pending_signals = 1;
7262 #endif
7264 if (input_available_clear_time)
7265 *input_available_clear_time = make_emacs_time (0, 0);
7267 #ifndef SYNC_INPUT
7268 handle_async_input ();
7269 #endif
7271 errno = old_errno;
7273 #endif /* SIGIO */
7275 /* Send ourselves a SIGIO.
7277 This function exists so that the UNBLOCK_INPUT macro in
7278 blockinput.h can have some way to take care of input we put off
7279 dealing with, without assuming that every file which uses
7280 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
7281 void
7282 reinvoke_input_signal (void)
7284 #ifdef SIGIO
7285 handle_async_input ();
7286 #endif
7291 /* User signal events. */
7293 struct user_signal_info
7295 /* Signal number. */
7296 int sig;
7298 /* Name of the signal. */
7299 char *name;
7301 /* Number of pending signals. */
7302 int npending;
7304 struct user_signal_info *next;
7307 /* List of user signals. */
7308 static struct user_signal_info *user_signals = NULL;
7310 void
7311 add_user_signal (int sig, const char *name)
7313 struct user_signal_info *p;
7315 for (p = user_signals; p; p = p->next)
7316 if (p->sig == sig)
7317 /* Already added. */
7318 return;
7320 p = xmalloc (sizeof *p);
7321 p->sig = sig;
7322 p->name = xstrdup (name);
7323 p->npending = 0;
7324 p->next = user_signals;
7325 user_signals = p;
7327 signal (sig, handle_user_signal);
7330 static void
7331 handle_user_signal (int sig)
7333 int old_errno = errno;
7334 struct user_signal_info *p;
7335 const char *special_event_name = NULL;
7337 SIGNAL_THREAD_CHECK (sig);
7339 if (SYMBOLP (Vdebug_on_event))
7340 special_event_name = SSDATA (SYMBOL_NAME (Vdebug_on_event));
7342 for (p = user_signals; p; p = p->next)
7343 if (p->sig == sig)
7345 if (special_event_name
7346 && strcmp (special_event_name, p->name) == 0)
7348 /* Enter the debugger in many ways. */
7349 debug_on_next_call = 1;
7350 debug_on_quit = 1;
7351 Vquit_flag = Qt;
7352 Vinhibit_quit = Qnil;
7354 /* Eat the event. */
7355 break;
7358 p->npending++;
7359 #ifdef SIGIO
7360 if (interrupt_input)
7361 kill (getpid (), SIGIO);
7362 else
7363 #endif
7365 /* Tell wait_reading_process_output that it needs to wake
7366 up and look around. */
7367 if (input_available_clear_time)
7368 *input_available_clear_time = make_emacs_time (0, 0);
7370 break;
7373 errno = old_errno;
7376 static char *
7377 find_user_signal_name (int sig)
7379 struct user_signal_info *p;
7381 for (p = user_signals; p; p = p->next)
7382 if (p->sig == sig)
7383 return p->name;
7385 return NULL;
7388 static int
7389 store_user_signal_events (void)
7391 struct user_signal_info *p;
7392 struct input_event buf;
7393 int nstored = 0;
7395 for (p = user_signals; p; p = p->next)
7396 if (p->npending > 0)
7398 SIGMASKTYPE mask;
7400 if (nstored == 0)
7402 memset (&buf, 0, sizeof buf);
7403 buf.kind = USER_SIGNAL_EVENT;
7404 buf.frame_or_window = selected_frame;
7406 nstored += p->npending;
7408 mask = sigblock (sigmask (p->sig));
7411 buf.code = p->sig;
7412 kbd_buffer_store_event (&buf);
7413 p->npending--;
7415 while (p->npending > 0);
7416 sigsetmask (mask);
7419 return nstored;
7423 static void menu_bar_item (Lisp_Object, Lisp_Object, Lisp_Object, void*);
7424 static Lisp_Object menu_bar_one_keymap_changed_items;
7426 /* These variables hold the vector under construction within
7427 menu_bar_items and its subroutines, and the current index
7428 for storing into that vector. */
7429 static Lisp_Object menu_bar_items_vector;
7430 static int menu_bar_items_index;
7433 static const char* separator_names[] = {
7434 "space",
7435 "no-line",
7436 "single-line",
7437 "double-line",
7438 "single-dashed-line",
7439 "double-dashed-line",
7440 "shadow-etched-in",
7441 "shadow-etched-out",
7442 "shadow-etched-in-dash",
7443 "shadow-etched-out-dash",
7444 "shadow-double-etched-in",
7445 "shadow-double-etched-out",
7446 "shadow-double-etched-in-dash",
7447 "shadow-double-etched-out-dash",
7451 /* Return non-zero if LABEL specifies a separator. */
7454 menu_separator_name_p (const char *label)
7456 if (!label)
7457 return 0;
7458 else if (strlen (label) > 3
7459 && memcmp (label, "--", 2) == 0
7460 && label[2] != '-')
7462 int i;
7463 label += 2;
7464 for (i = 0; separator_names[i]; ++i)
7465 if (strcmp (label, separator_names[i]) == 0)
7466 return 1;
7468 else
7470 /* It's a separator if it contains only dashes. */
7471 while (*label == '-')
7472 ++label;
7473 return (*label == 0);
7476 return 0;
7480 /* Return a vector of menu items for a menu bar, appropriate
7481 to the current buffer. Each item has three elements in the vector:
7482 KEY STRING MAPLIST.
7484 OLD is an old vector we can optionally reuse, or nil. */
7486 Lisp_Object
7487 menu_bar_items (Lisp_Object old)
7489 /* The number of keymaps we're scanning right now, and the number of
7490 keymaps we have allocated space for. */
7491 ptrdiff_t nmaps;
7493 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7494 in the current keymaps, or nil where it is not a prefix. */
7495 Lisp_Object *maps;
7497 Lisp_Object def, tail;
7499 ptrdiff_t mapno;
7500 Lisp_Object oquit;
7502 /* In order to build the menus, we need to call the keymap
7503 accessors. They all call QUIT. But this function is called
7504 during redisplay, during which a quit is fatal. So inhibit
7505 quitting while building the menus.
7506 We do this instead of specbind because (1) errors will clear it anyway
7507 and (2) this avoids risk of specpdl overflow. */
7508 oquit = Vinhibit_quit;
7509 Vinhibit_quit = Qt;
7511 if (!NILP (old))
7512 menu_bar_items_vector = old;
7513 else
7514 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
7515 menu_bar_items_index = 0;
7517 /* Build our list of keymaps.
7518 If we recognize a function key and replace its escape sequence in
7519 keybuf with its symbol, or if the sequence starts with a mouse
7520 click and we need to switch buffers, we jump back here to rebuild
7521 the initial keymaps from the current buffer. */
7523 Lisp_Object *tmaps;
7525 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7526 if (!NILP (Voverriding_local_map_menu_flag))
7528 /* Yes, use them (if non-nil) as well as the global map. */
7529 maps = alloca (3 * sizeof (maps[0]));
7530 nmaps = 0;
7531 if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
7532 maps[nmaps++] = KVAR (current_kboard, Voverriding_terminal_local_map);
7533 if (!NILP (Voverriding_local_map))
7534 maps[nmaps++] = Voverriding_local_map;
7536 else
7538 /* No, so use major and minor mode keymaps and keymap property.
7539 Note that menu-bar bindings in the local-map and keymap
7540 properties may not work reliable, as they are only
7541 recognized when the menu-bar (or mode-line) is updated,
7542 which does not normally happen after every command. */
7543 Lisp_Object tem;
7544 ptrdiff_t nminor;
7545 nminor = current_minor_maps (NULL, &tmaps);
7546 maps = alloca ((nminor + 3) * sizeof *maps);
7547 nmaps = 0;
7548 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7549 maps[nmaps++] = tem;
7550 memcpy (maps + nmaps, tmaps, nminor * sizeof (maps[0]));
7551 nmaps += nminor;
7552 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7554 maps[nmaps++] = current_global_map;
7557 /* Look up in each map the dummy prefix key `menu-bar'. */
7559 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7560 if (!NILP (maps[mapno]))
7562 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7563 0, 1);
7564 if (CONSP (def))
7566 menu_bar_one_keymap_changed_items = Qnil;
7567 map_keymap_canonical (def, menu_bar_item, Qnil, NULL);
7571 /* Move to the end those items that should be at the end. */
7573 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7575 int i;
7576 int end = menu_bar_items_index;
7578 for (i = 0; i < end; i += 4)
7579 if (EQ (XCAR (tail), AREF (menu_bar_items_vector, i)))
7581 Lisp_Object tem0, tem1, tem2, tem3;
7582 /* Move the item at index I to the end,
7583 shifting all the others forward. */
7584 tem0 = AREF (menu_bar_items_vector, i + 0);
7585 tem1 = AREF (menu_bar_items_vector, i + 1);
7586 tem2 = AREF (menu_bar_items_vector, i + 2);
7587 tem3 = AREF (menu_bar_items_vector, i + 3);
7588 if (end > i + 4)
7589 memmove (aref_addr (menu_bar_items_vector, i),
7590 aref_addr (menu_bar_items_vector, i + 4),
7591 (end - i - 4) * word_size);
7592 ASET (menu_bar_items_vector, end - 4, tem0);
7593 ASET (menu_bar_items_vector, end - 3, tem1);
7594 ASET (menu_bar_items_vector, end - 2, tem2);
7595 ASET (menu_bar_items_vector, end - 1, tem3);
7596 break;
7600 /* Add nil, nil, nil, nil at the end. */
7602 int i = menu_bar_items_index;
7603 if (i + 4 > ASIZE (menu_bar_items_vector))
7604 menu_bar_items_vector =
7605 larger_vector (menu_bar_items_vector, 4, -1);
7606 /* Add this item. */
7607 ASET (menu_bar_items_vector, i, Qnil); i++;
7608 ASET (menu_bar_items_vector, i, Qnil); i++;
7609 ASET (menu_bar_items_vector, i, Qnil); i++;
7610 ASET (menu_bar_items_vector, i, Qnil); i++;
7611 menu_bar_items_index = i;
7614 Vinhibit_quit = oquit;
7615 return menu_bar_items_vector;
7618 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7619 If there's already an item for KEY, add this DEF to it. */
7621 Lisp_Object item_properties;
7623 static void
7624 menu_bar_item (Lisp_Object key, Lisp_Object item, Lisp_Object dummy1, void *dummy2)
7626 struct gcpro gcpro1;
7627 int i;
7628 Lisp_Object tem;
7630 if (EQ (item, Qundefined))
7632 /* If a map has an explicit `undefined' as definition,
7633 discard any previously made menu bar item. */
7635 for (i = 0; i < menu_bar_items_index; i += 4)
7636 if (EQ (key, AREF (menu_bar_items_vector, i)))
7638 if (menu_bar_items_index > i + 4)
7639 memmove (aref_addr (menu_bar_items_vector, i),
7640 aref_addr (menu_bar_items_vector, i + 4),
7641 (menu_bar_items_index - i - 4) * word_size);
7642 menu_bar_items_index -= 4;
7646 /* If this keymap has already contributed to this KEY,
7647 don't contribute to it a second time. */
7648 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7649 if (!NILP (tem) || NILP (item))
7650 return;
7652 menu_bar_one_keymap_changed_items
7653 = Fcons (key, menu_bar_one_keymap_changed_items);
7655 /* We add to menu_bar_one_keymap_changed_items before doing the
7656 parse_menu_item, so that if it turns out it wasn't a menu item,
7657 it still correctly hides any further menu item. */
7658 GCPRO1 (key);
7659 i = parse_menu_item (item, 1);
7660 UNGCPRO;
7661 if (!i)
7662 return;
7664 item = AREF (item_properties, ITEM_PROPERTY_DEF);
7666 /* Find any existing item for this KEY. */
7667 for (i = 0; i < menu_bar_items_index; i += 4)
7668 if (EQ (key, AREF (menu_bar_items_vector, i)))
7669 break;
7671 /* If we did not find this KEY, add it at the end. */
7672 if (i == menu_bar_items_index)
7674 /* If vector is too small, get a bigger one. */
7675 if (i + 4 > ASIZE (menu_bar_items_vector))
7676 menu_bar_items_vector = larger_vector (menu_bar_items_vector, 4, -1);
7677 /* Add this item. */
7678 ASET (menu_bar_items_vector, i, key); i++;
7679 ASET (menu_bar_items_vector, i,
7680 AREF (item_properties, ITEM_PROPERTY_NAME)); i++;
7681 ASET (menu_bar_items_vector, i, Fcons (item, Qnil)); i++;
7682 ASET (menu_bar_items_vector, i, make_number (0)); i++;
7683 menu_bar_items_index = i;
7685 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7686 else
7688 Lisp_Object old;
7689 old = AREF (menu_bar_items_vector, i + 2);
7690 /* If the new and the old items are not both keymaps,
7691 the lookup will only find `item'. */
7692 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7693 ASET (menu_bar_items_vector, i + 2, item);
7697 /* This is used as the handler when calling menu_item_eval_property. */
7698 static Lisp_Object
7699 menu_item_eval_property_1 (Lisp_Object arg)
7701 /* If we got a quit from within the menu computation,
7702 quit all the way out of it. This takes care of C-] in the debugger. */
7703 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7704 Fsignal (Qquit, Qnil);
7706 return Qnil;
7709 static Lisp_Object
7710 eval_dyn (Lisp_Object form)
7712 return Feval (form, Qnil);
7715 /* Evaluate an expression and return the result (or nil if something
7716 went wrong). Used to evaluate dynamic parts of menu items. */
7717 Lisp_Object
7718 menu_item_eval_property (Lisp_Object sexpr)
7720 ptrdiff_t count = SPECPDL_INDEX ();
7721 Lisp_Object val;
7722 specbind (Qinhibit_redisplay, Qt);
7723 val = internal_condition_case_1 (eval_dyn, sexpr, Qerror,
7724 menu_item_eval_property_1);
7725 return unbind_to (count, val);
7728 /* This function parses a menu item and leaves the result in the
7729 vector item_properties.
7730 ITEM is a key binding, a possible menu item.
7731 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7732 top level.
7733 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7734 parse_menu_item returns true if the item is a menu item and false
7735 otherwise. */
7738 parse_menu_item (Lisp_Object item, int inmenubar)
7740 Lisp_Object def, tem, item_string, start;
7741 Lisp_Object filter;
7742 Lisp_Object keyhint;
7743 int i;
7745 filter = Qnil;
7746 keyhint = Qnil;
7748 if (!CONSP (item))
7749 return 0;
7751 /* Create item_properties vector if necessary. */
7752 if (NILP (item_properties))
7753 item_properties
7754 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7756 /* Initialize optional entries. */
7757 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7758 ASET (item_properties, i, Qnil);
7759 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7761 /* Save the item here to protect it from GC. */
7762 ASET (item_properties, ITEM_PROPERTY_ITEM, item);
7764 item_string = XCAR (item);
7766 start = item;
7767 item = XCDR (item);
7768 if (STRINGP (item_string))
7770 /* Old format menu item. */
7771 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
7773 /* Maybe help string. */
7774 if (CONSP (item) && STRINGP (XCAR (item)))
7776 ASET (item_properties, ITEM_PROPERTY_HELP, XCAR (item));
7777 start = item;
7778 item = XCDR (item);
7781 /* Maybe an obsolete key binding cache. */
7782 if (CONSP (item) && CONSP (XCAR (item))
7783 && (NILP (XCAR (XCAR (item)))
7784 || VECTORP (XCAR (XCAR (item)))))
7785 item = XCDR (item);
7787 /* This is the real definition--the function to run. */
7788 ASET (item_properties, ITEM_PROPERTY_DEF, item);
7790 /* Get enable property, if any. */
7791 if (SYMBOLP (item))
7793 tem = Fget (item, Qmenu_enable);
7794 if (!NILP (Venable_disabled_menus_and_buttons))
7795 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7796 else if (!NILP (tem))
7797 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
7800 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7802 /* New format menu item. */
7803 ASET (item_properties, ITEM_PROPERTY_NAME, XCAR (item));
7804 start = XCDR (item);
7805 if (CONSP (start))
7807 /* We have a real binding. */
7808 ASET (item_properties, ITEM_PROPERTY_DEF, XCAR (start));
7810 item = XCDR (start);
7811 /* Is there an obsolete cache list with key equivalences. */
7812 if (CONSP (item) && CONSP (XCAR (item)))
7813 item = XCDR (item);
7815 /* Parse properties. */
7816 while (CONSP (item) && CONSP (XCDR (item)))
7818 tem = XCAR (item);
7819 item = XCDR (item);
7821 if (EQ (tem, QCenable))
7823 if (!NILP (Venable_disabled_menus_and_buttons))
7824 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7825 else
7826 ASET (item_properties, ITEM_PROPERTY_ENABLE, XCAR (item));
7828 else if (EQ (tem, QCvisible))
7830 /* If got a visible property and that evaluates to nil
7831 then ignore this item. */
7832 tem = menu_item_eval_property (XCAR (item));
7833 if (NILP (tem))
7834 return 0;
7836 else if (EQ (tem, QChelp))
7837 ASET (item_properties, ITEM_PROPERTY_HELP, XCAR (item));
7838 else if (EQ (tem, QCfilter))
7839 filter = item;
7840 else if (EQ (tem, QCkey_sequence))
7842 tem = XCAR (item);
7843 if (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem))
7844 /* Be GC protected. Set keyhint to item instead of tem. */
7845 keyhint = item;
7847 else if (EQ (tem, QCkeys))
7849 tem = XCAR (item);
7850 if (CONSP (tem) || STRINGP (tem))
7851 ASET (item_properties, ITEM_PROPERTY_KEYEQ, tem);
7853 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7855 Lisp_Object type;
7856 tem = XCAR (item);
7857 type = XCAR (tem);
7858 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7860 ASET (item_properties, ITEM_PROPERTY_SELECTED,
7861 XCDR (tem));
7862 ASET (item_properties, ITEM_PROPERTY_TYPE, type);
7865 item = XCDR (item);
7868 else if (inmenubar || !NILP (start))
7869 return 0;
7871 else
7872 return 0; /* not a menu item */
7874 /* If item string is not a string, evaluate it to get string.
7875 If we don't get a string, skip this item. */
7876 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7877 if (!(STRINGP (item_string)))
7879 item_string = menu_item_eval_property (item_string);
7880 if (!STRINGP (item_string))
7881 return 0;
7882 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
7885 /* If got a filter apply it on definition. */
7886 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7887 if (!NILP (filter))
7889 def = menu_item_eval_property (list2 (XCAR (filter),
7890 list2 (Qquote, def)));
7892 ASET (item_properties, ITEM_PROPERTY_DEF, def);
7895 /* Enable or disable selection of item. */
7896 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7897 if (!EQ (tem, Qt))
7899 tem = menu_item_eval_property (tem);
7900 if (inmenubar && NILP (tem))
7901 return 0; /* Ignore disabled items in menu bar. */
7902 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
7905 /* If we got no definition, this item is just unselectable text which
7906 is OK in a submenu but not in the menubar. */
7907 if (NILP (def))
7908 return (!inmenubar);
7910 /* See if this is a separate pane or a submenu. */
7911 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7912 tem = get_keymap (def, 0, 1);
7913 /* For a subkeymap, just record its details and exit. */
7914 if (CONSP (tem))
7916 ASET (item_properties, ITEM_PROPERTY_MAP, tem);
7917 ASET (item_properties, ITEM_PROPERTY_DEF, tem);
7918 return 1;
7921 /* At the top level in the menu bar, do likewise for commands also.
7922 The menu bar does not display equivalent key bindings anyway.
7923 ITEM_PROPERTY_DEF is already set up properly. */
7924 if (inmenubar > 0)
7925 return 1;
7927 { /* This is a command. See if there is an equivalent key binding. */
7928 Lisp_Object keyeq = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7930 /* The previous code preferred :key-sequence to :keys, so we
7931 preserve this behavior. */
7932 if (STRINGP (keyeq) && !CONSP (keyhint))
7933 keyeq = concat2 (build_string (" "), Fsubstitute_command_keys (keyeq));
7934 else
7936 Lisp_Object prefix = keyeq;
7937 Lisp_Object keys = Qnil;
7939 if (CONSP (prefix))
7941 def = XCAR (prefix);
7942 prefix = XCDR (prefix);
7944 else
7945 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7947 if (CONSP (keyhint) && !NILP (XCAR (keyhint)))
7949 keys = XCAR (keyhint);
7950 tem = Fkey_binding (keys, Qnil, Qnil, Qnil);
7952 /* We have a suggested key. Is it bound to the command? */
7953 if (NILP (tem)
7954 || (!EQ (tem, def)
7955 /* If the command is an alias for another
7956 (such as lmenu.el set it up), check if the
7957 original command matches the cached command. */
7958 && !(SYMBOLP (def)
7959 && EQ (tem, XSYMBOL (def)->function))))
7960 keys = Qnil;
7963 if (NILP (keys))
7964 keys = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qnil);
7966 if (!NILP (keys))
7968 tem = Fkey_description (keys, Qnil);
7969 if (CONSP (prefix))
7971 if (STRINGP (XCAR (prefix)))
7972 tem = concat2 (XCAR (prefix), tem);
7973 if (STRINGP (XCDR (prefix)))
7974 tem = concat2 (tem, XCDR (prefix));
7976 keyeq = concat2 (build_string (" "), tem);
7977 /* keyeq = concat3(build_string(" ("),tem,build_string(")")); */
7979 else
7980 keyeq = Qnil;
7983 /* If we have an equivalent key binding, use that. */
7984 ASET (item_properties, ITEM_PROPERTY_KEYEQ, keyeq);
7987 /* Include this when menu help is implemented.
7988 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7989 if (!(NILP (tem) || STRINGP (tem)))
7991 tem = menu_item_eval_property (tem);
7992 if (!STRINGP (tem))
7993 tem = Qnil;
7994 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7998 /* Handle radio buttons or toggle boxes. */
7999 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
8000 if (!NILP (tem))
8001 ASET (item_properties, ITEM_PROPERTY_SELECTED,
8002 menu_item_eval_property (tem));
8004 return 1;
8009 /***********************************************************************
8010 Tool-bars
8011 ***********************************************************************/
8013 /* A vector holding tool bar items while they are parsed in function
8014 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
8015 in the vector. */
8017 static Lisp_Object tool_bar_items_vector;
8019 /* A vector holding the result of parse_tool_bar_item. Layout is like
8020 the one for a single item in tool_bar_items_vector. */
8022 static Lisp_Object tool_bar_item_properties;
8024 /* Next free index in tool_bar_items_vector. */
8026 static int ntool_bar_items;
8028 /* The symbols `:image' and `:rtl'. */
8030 static Lisp_Object QCimage;
8031 static Lisp_Object QCrtl;
8033 /* Function prototypes. */
8035 static void init_tool_bar_items (Lisp_Object);
8036 static void process_tool_bar_item (Lisp_Object, Lisp_Object, Lisp_Object, void*);
8037 static int parse_tool_bar_item (Lisp_Object, Lisp_Object);
8038 static void append_tool_bar_item (void);
8041 /* Return a vector of tool bar items for keymaps currently in effect.
8042 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
8043 tool bar items found. */
8045 Lisp_Object
8046 tool_bar_items (Lisp_Object reuse, int *nitems)
8048 Lisp_Object *maps;
8049 ptrdiff_t nmaps, i;
8050 Lisp_Object oquit;
8051 Lisp_Object *tmaps;
8053 *nitems = 0;
8055 /* In order to build the menus, we need to call the keymap
8056 accessors. They all call QUIT. But this function is called
8057 during redisplay, during which a quit is fatal. So inhibit
8058 quitting while building the menus. We do this instead of
8059 specbind because (1) errors will clear it anyway and (2) this
8060 avoids risk of specpdl overflow. */
8061 oquit = Vinhibit_quit;
8062 Vinhibit_quit = Qt;
8064 /* Initialize tool_bar_items_vector and protect it from GC. */
8065 init_tool_bar_items (reuse);
8067 /* Build list of keymaps in maps. Set nmaps to the number of maps
8068 to process. */
8070 /* Should overriding-terminal-local-map and overriding-local-map apply? */
8071 if (!NILP (Voverriding_local_map_menu_flag))
8073 /* Yes, use them (if non-nil) as well as the global map. */
8074 maps = alloca (3 * sizeof *maps);
8075 nmaps = 0;
8076 if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
8077 maps[nmaps++] = KVAR (current_kboard, Voverriding_terminal_local_map);
8078 if (!NILP (Voverriding_local_map))
8079 maps[nmaps++] = Voverriding_local_map;
8081 else
8083 /* No, so use major and minor mode keymaps and keymap property.
8084 Note that tool-bar bindings in the local-map and keymap
8085 properties may not work reliable, as they are only
8086 recognized when the tool-bar (or mode-line) is updated,
8087 which does not normally happen after every command. */
8088 Lisp_Object tem;
8089 ptrdiff_t nminor;
8090 nminor = current_minor_maps (NULL, &tmaps);
8091 maps = alloca ((nminor + 3) * sizeof *maps);
8092 nmaps = 0;
8093 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
8094 maps[nmaps++] = tem;
8095 memcpy (maps + nmaps, tmaps, nminor * sizeof (maps[0]));
8096 nmaps += nminor;
8097 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
8100 /* Add global keymap at the end. */
8101 maps[nmaps++] = current_global_map;
8103 /* Process maps in reverse order and look up in each map the prefix
8104 key `tool-bar'. */
8105 for (i = nmaps - 1; i >= 0; --i)
8106 if (!NILP (maps[i]))
8108 Lisp_Object keymap;
8110 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
8111 if (CONSP (keymap))
8112 map_keymap (keymap, process_tool_bar_item, Qnil, NULL, 1);
8115 Vinhibit_quit = oquit;
8116 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
8117 return tool_bar_items_vector;
8121 /* Process the definition of KEY which is DEF. */
8123 static void
8124 process_tool_bar_item (Lisp_Object key, Lisp_Object def, Lisp_Object data, void *args)
8126 int i;
8127 struct gcpro gcpro1, gcpro2;
8129 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
8130 eval. */
8131 GCPRO2 (key, def);
8133 if (EQ (def, Qundefined))
8135 /* If a map has an explicit `undefined' as definition,
8136 discard any previously made item. */
8137 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
8139 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
8141 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
8143 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
8144 memmove (v, v + TOOL_BAR_ITEM_NSLOTS,
8145 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
8146 * word_size));
8147 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
8148 break;
8152 else if (parse_tool_bar_item (key, def))
8153 /* Append a new tool bar item to tool_bar_items_vector. Accept
8154 more than one definition for the same key. */
8155 append_tool_bar_item ();
8157 UNGCPRO;
8160 /* Access slot with index IDX of vector tool_bar_item_properties. */
8161 #define PROP(IDX) AREF (tool_bar_item_properties, (IDX))
8162 static inline void
8163 set_prop (ptrdiff_t idx, Lisp_Object val)
8165 ASET (tool_bar_item_properties, idx, val);
8169 /* Parse a tool bar item specification ITEM for key KEY and return the
8170 result in tool_bar_item_properties. Value is zero if ITEM is
8171 invalid.
8173 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
8175 CAPTION is the caption of the item, If it's not a string, it is
8176 evaluated to get a string.
8178 BINDING is the tool bar item's binding. Tool-bar items with keymaps
8179 as binding are currently ignored.
8181 The following properties are recognized:
8183 - `:enable FORM'.
8185 FORM is evaluated and specifies whether the tool bar item is
8186 enabled or disabled.
8188 - `:visible FORM'
8190 FORM is evaluated and specifies whether the tool bar item is visible.
8192 - `:filter FUNCTION'
8194 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
8195 result is stored as the new binding.
8197 - `:button (TYPE SELECTED)'
8199 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8200 and specifies whether the button is selected (pressed) or not.
8202 - `:image IMAGES'
8204 IMAGES is either a single image specification or a vector of four
8205 image specifications. See enum tool_bar_item_images.
8207 - `:help HELP-STRING'.
8209 Gives a help string to display for the tool bar item.
8211 - `:label LABEL-STRING'.
8213 A text label to show with the tool bar button if labels are enabled. */
8215 static int
8216 parse_tool_bar_item (Lisp_Object key, Lisp_Object item)
8218 Lisp_Object filter = Qnil;
8219 Lisp_Object caption;
8220 int i, have_label = 0;
8222 /* Definition looks like `(menu-item CAPTION BINDING PROPS...)'.
8223 Rule out items that aren't lists, don't start with
8224 `menu-item' or whose rest following `tool-bar-item' is not a
8225 list. */
8226 if (!CONSP (item))
8227 return 0;
8229 /* As an exception, allow old-style menu separators. */
8230 if (STRINGP (XCAR (item)))
8231 item = Fcons (XCAR (item), Qnil);
8232 else if (!EQ (XCAR (item), Qmenu_item)
8233 || (item = XCDR (item), !CONSP (item)))
8234 return 0;
8236 /* Create tool_bar_item_properties vector if necessary. Reset it to
8237 defaults. */
8238 if (VECTORP (tool_bar_item_properties))
8240 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
8241 set_prop (i, Qnil);
8243 else
8244 tool_bar_item_properties
8245 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
8247 /* Set defaults. */
8248 set_prop (TOOL_BAR_ITEM_KEY, key);
8249 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qt);
8251 /* Get the caption of the item. If the caption is not a string,
8252 evaluate it to get a string. If we don't get a string, skip this
8253 item. */
8254 caption = XCAR (item);
8255 if (!STRINGP (caption))
8257 caption = menu_item_eval_property (caption);
8258 if (!STRINGP (caption))
8259 return 0;
8261 set_prop (TOOL_BAR_ITEM_CAPTION, caption);
8263 /* If the rest following the caption is not a list, the menu item is
8264 either a separator, or invalid. */
8265 item = XCDR (item);
8266 if (!CONSP (item))
8268 if (menu_separator_name_p (SSDATA (caption)))
8270 set_prop (TOOL_BAR_ITEM_TYPE, Qt);
8271 #if !defined (USE_GTK) && !defined (HAVE_NS)
8272 /* If we use build_desired_tool_bar_string to render the
8273 tool bar, the separator is rendered as an image. */
8274 PROP (TOOL_BAR_ITEM_IMAGES)
8275 = menu_item_eval_property (Vtool_bar_separator_image_expression);
8276 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qnil;
8277 PROP (TOOL_BAR_ITEM_SELECTED_P) = Qnil;
8278 PROP (TOOL_BAR_ITEM_CAPTION) = Qnil;
8279 #endif
8280 return 1;
8282 return 0;
8285 /* Store the binding. */
8286 set_prop (TOOL_BAR_ITEM_BINDING, XCAR (item));
8287 item = XCDR (item);
8289 /* Ignore cached key binding, if any. */
8290 if (CONSP (item) && CONSP (XCAR (item)))
8291 item = XCDR (item);
8293 /* Process the rest of the properties. */
8294 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
8296 Lisp_Object ikey, value;
8298 ikey = XCAR (item);
8299 value = XCAR (XCDR (item));
8301 if (EQ (ikey, QCenable))
8303 /* `:enable FORM'. */
8304 if (!NILP (Venable_disabled_menus_and_buttons))
8305 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qt);
8306 else
8307 set_prop (TOOL_BAR_ITEM_ENABLED_P, value);
8309 else if (EQ (ikey, QCvisible))
8311 /* `:visible FORM'. If got a visible property and that
8312 evaluates to nil then ignore this item. */
8313 if (NILP (menu_item_eval_property (value)))
8314 return 0;
8316 else if (EQ (ikey, QChelp))
8317 /* `:help HELP-STRING'. */
8318 set_prop (TOOL_BAR_ITEM_HELP, value);
8319 else if (EQ (ikey, QCvert_only))
8320 /* `:vert-only t/nil'. */
8321 set_prop (TOOL_BAR_ITEM_VERT_ONLY, value);
8322 else if (EQ (ikey, QClabel))
8324 const char *bad_label = "!!?GARBLED ITEM?!!";
8325 /* `:label LABEL-STRING'. */
8326 set_prop (TOOL_BAR_ITEM_LABEL,
8327 STRINGP (value) ? value : build_string (bad_label));
8328 have_label = 1;
8330 else if (EQ (ikey, QCfilter))
8331 /* ':filter FORM'. */
8332 filter = value;
8333 else if (EQ (ikey, QCbutton) && CONSP (value))
8335 /* `:button (TYPE . SELECTED)'. */
8336 Lisp_Object type, selected;
8338 type = XCAR (value);
8339 selected = XCDR (value);
8340 if (EQ (type, QCtoggle) || EQ (type, QCradio))
8342 set_prop (TOOL_BAR_ITEM_SELECTED_P, selected);
8343 set_prop (TOOL_BAR_ITEM_TYPE, type);
8346 else if (EQ (ikey, QCimage)
8347 && (CONSP (value)
8348 || (VECTORP (value) && ASIZE (value) == 4)))
8349 /* Value is either a single image specification or a vector
8350 of 4 such specifications for the different button states. */
8351 set_prop (TOOL_BAR_ITEM_IMAGES, value);
8352 else if (EQ (ikey, QCrtl))
8353 /* ':rtl STRING' */
8354 set_prop (TOOL_BAR_ITEM_RTL_IMAGE, value);
8358 if (!have_label)
8360 /* Try to make one from caption and key. */
8361 Lisp_Object tkey = PROP (TOOL_BAR_ITEM_KEY);
8362 Lisp_Object tcapt = PROP (TOOL_BAR_ITEM_CAPTION);
8363 const char *label = SYMBOLP (tkey) ? SSDATA (SYMBOL_NAME (tkey)) : "";
8364 const char *capt = STRINGP (tcapt) ? SSDATA (tcapt) : "";
8365 ptrdiff_t max_lbl =
8366 2 * max (0, min (tool_bar_max_label_size, STRING_BYTES_BOUND / 2));
8367 char *buf = xmalloc (max_lbl + 1);
8368 Lisp_Object new_lbl;
8369 ptrdiff_t caption_len = strlen (capt);
8371 if (caption_len <= max_lbl && capt[0] != '\0')
8373 strcpy (buf, capt);
8374 while (caption_len > 0 && buf[caption_len - 1] == '.')
8375 caption_len--;
8376 buf[caption_len] = '\0';
8377 label = capt = buf;
8380 if (strlen (label) <= max_lbl && label[0] != '\0')
8382 ptrdiff_t j;
8383 if (label != buf)
8384 strcpy (buf, label);
8386 for (j = 0; buf[j] != '\0'; ++j)
8387 if (buf[j] == '-')
8388 buf[j] = ' ';
8389 label = buf;
8391 else
8392 label = "";
8394 new_lbl = Fupcase_initials (build_string (label));
8395 if (SCHARS (new_lbl) <= tool_bar_max_label_size)
8396 set_prop (TOOL_BAR_ITEM_LABEL, new_lbl);
8397 else
8398 set_prop (TOOL_BAR_ITEM_LABEL, empty_unibyte_string);
8399 xfree (buf);
8402 /* If got a filter apply it on binding. */
8403 if (!NILP (filter))
8404 set_prop (TOOL_BAR_ITEM_BINDING,
8405 (menu_item_eval_property
8406 (list2 (filter,
8407 list2 (Qquote,
8408 PROP (TOOL_BAR_ITEM_BINDING))))));
8410 /* See if the binding is a keymap. Give up if it is. */
8411 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
8412 return 0;
8414 /* Enable or disable selection of item. */
8415 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
8416 set_prop (TOOL_BAR_ITEM_ENABLED_P,
8417 menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P)));
8419 /* Handle radio buttons or toggle boxes. */
8420 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
8421 set_prop (TOOL_BAR_ITEM_SELECTED_P,
8422 menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P)));
8424 return 1;
8426 #undef PROP
8430 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8431 that can be reused. */
8433 static void
8434 init_tool_bar_items (Lisp_Object reuse)
8436 if (VECTORP (reuse))
8437 tool_bar_items_vector = reuse;
8438 else
8439 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
8440 ntool_bar_items = 0;
8444 /* Append parsed tool bar item properties from
8445 tool_bar_item_properties */
8447 static void
8448 append_tool_bar_item (void)
8450 Lisp_Object *to, *from;
8451 ptrdiff_t incr =
8452 (ntool_bar_items
8453 - (ASIZE (tool_bar_items_vector) - TOOL_BAR_ITEM_NSLOTS));
8455 /* Enlarge tool_bar_items_vector if necessary. */
8456 if (0 < incr)
8457 tool_bar_items_vector
8458 = larger_vector (tool_bar_items_vector, incr, -1);
8460 /* Append entries from tool_bar_item_properties to the end of
8461 tool_bar_items_vector. */
8462 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
8463 from = XVECTOR (tool_bar_item_properties)->contents;
8464 memcpy (to, from, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
8465 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
8472 /* Read a character using menus based on maps in the array MAPS.
8473 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
8474 Return t if we displayed a menu but the user rejected it.
8476 PREV_EVENT is the previous input event, or nil if we are reading
8477 the first event of a key sequence.
8479 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
8480 if we used a mouse menu to read the input, or zero otherwise. If
8481 USED_MOUSE_MENU is null, we don't dereference it.
8483 The prompting is done based on the prompt-string of the map
8484 and the strings associated with various map elements.
8486 This can be done with X menus or with menus put in the minibuf.
8487 These are done in different ways, depending on how the input will be read.
8488 Menus using X are done after auto-saving in read-char, getting the input
8489 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8490 and do auto-saving in the inner call of read_char. */
8492 static Lisp_Object
8493 read_char_x_menu_prompt (ptrdiff_t nmaps, Lisp_Object *maps,
8494 Lisp_Object prev_event, int *used_mouse_menu)
8496 #ifdef HAVE_MENUS
8497 ptrdiff_t mapno;
8498 #endif
8500 if (used_mouse_menu)
8501 *used_mouse_menu = 0;
8503 /* Use local over global Menu maps */
8505 if (! menu_prompting)
8506 return Qnil;
8508 /* Optionally disregard all but the global map. */
8509 if (inhibit_local_menu_bar_menus)
8511 maps += (nmaps - 1);
8512 nmaps = 1;
8515 #ifdef HAVE_MENUS
8516 /* If we got to this point via a mouse click,
8517 use a real menu for mouse selection. */
8518 if (EVENT_HAS_PARAMETERS (prev_event)
8519 && !EQ (XCAR (prev_event), Qmenu_bar)
8520 && !EQ (XCAR (prev_event), Qtool_bar))
8522 /* Display the menu and get the selection. */
8523 Lisp_Object *realmaps = alloca (nmaps * sizeof *realmaps);
8524 Lisp_Object value;
8525 ptrdiff_t nmaps1 = 0;
8527 /* Use the maps that are not nil. */
8528 for (mapno = 0; mapno < nmaps; mapno++)
8529 if (!NILP (maps[mapno]))
8530 realmaps[nmaps1++] = maps[mapno];
8532 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
8533 if (CONSP (value))
8535 Lisp_Object tem;
8537 record_menu_key (XCAR (value));
8539 /* If we got multiple events, unread all but
8540 the first.
8541 There is no way to prevent those unread events
8542 from showing up later in last_nonmenu_event.
8543 So turn symbol and integer events into lists,
8544 to indicate that they came from a mouse menu,
8545 so that when present in last_nonmenu_event
8546 they won't confuse things. */
8547 for (tem = XCDR (value); CONSP (tem); tem = XCDR (tem))
8549 record_menu_key (XCAR (tem));
8550 if (SYMBOLP (XCAR (tem))
8551 || INTEGERP (XCAR (tem)))
8552 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8555 /* If we got more than one event, put all but the first
8556 onto this list to be read later.
8557 Return just the first event now. */
8558 Vunread_command_events
8559 = nconc2 (XCDR (value), Vunread_command_events);
8560 value = XCAR (value);
8562 else if (NILP (value))
8563 value = Qt;
8564 if (used_mouse_menu)
8565 *used_mouse_menu = 1;
8566 return value;
8568 #endif /* HAVE_MENUS */
8569 return Qnil ;
8572 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8573 We make this bigger when necessary, and never free it. */
8574 static char *read_char_minibuf_menu_text;
8575 /* Size of that buffer. */
8576 static ptrdiff_t read_char_minibuf_menu_width;
8578 static Lisp_Object
8579 read_char_minibuf_menu_prompt (int commandflag,
8580 ptrdiff_t nmaps, Lisp_Object *maps)
8582 ptrdiff_t mapno;
8583 register Lisp_Object name;
8584 ptrdiff_t nlength;
8585 /* FIXME: Use the minibuffer's frame width. */
8586 ptrdiff_t width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8587 ptrdiff_t idx = -1;
8588 int nobindings = 1;
8589 Lisp_Object rest, vector;
8590 char *menu;
8592 vector = Qnil;
8593 name = Qnil;
8595 if (! menu_prompting)
8596 return Qnil;
8598 /* Get the menu name from the first map that has one (a prompt string). */
8599 for (mapno = 0; mapno < nmaps; mapno++)
8601 name = Fkeymap_prompt (maps[mapno]);
8602 if (!NILP (name))
8603 break;
8606 /* If we don't have any menus, just read a character normally. */
8607 if (!STRINGP (name))
8608 return Qnil;
8610 /* Make sure we have a big enough buffer for the menu text. */
8611 width = max (width, SBYTES (name));
8612 if (STRING_BYTES_BOUND - 4 < width)
8613 memory_full (SIZE_MAX);
8614 if (width + 4 > read_char_minibuf_menu_width)
8616 read_char_minibuf_menu_text
8617 = xrealloc (read_char_minibuf_menu_text, width + 4);
8618 read_char_minibuf_menu_width = width + 4;
8620 menu = read_char_minibuf_menu_text;
8622 /* Prompt string always starts with map's prompt, and a space. */
8623 strcpy (menu, SSDATA (name));
8624 nlength = SBYTES (name);
8625 menu[nlength++] = ':';
8626 menu[nlength++] = ' ';
8627 menu[nlength] = 0;
8629 /* Start prompting at start of first map. */
8630 mapno = 0;
8631 rest = maps[mapno];
8633 /* Present the documented bindings, a line at a time. */
8634 while (1)
8636 int notfirst = 0;
8637 ptrdiff_t i = nlength;
8638 Lisp_Object obj;
8639 Lisp_Object orig_defn_macro;
8641 /* Loop over elements of map. */
8642 while (i < width)
8644 Lisp_Object elt;
8646 /* If reached end of map, start at beginning of next map. */
8647 if (NILP (rest))
8649 mapno++;
8650 /* At end of last map, wrap around to first map if just starting,
8651 or end this line if already have something on it. */
8652 if (mapno == nmaps)
8654 mapno = 0;
8655 if (notfirst || nobindings) break;
8657 rest = maps[mapno];
8660 /* Look at the next element of the map. */
8661 if (idx >= 0)
8662 elt = AREF (vector, idx);
8663 else
8664 elt = Fcar_safe (rest);
8666 if (idx < 0 && VECTORP (elt))
8668 /* If we found a dense table in the keymap,
8669 advanced past it, but start scanning its contents. */
8670 rest = Fcdr_safe (rest);
8671 vector = elt;
8672 idx = 0;
8674 else
8676 /* An ordinary element. */
8677 Lisp_Object event, tem;
8679 if (idx < 0)
8681 event = Fcar_safe (elt); /* alist */
8682 elt = Fcdr_safe (elt);
8684 else
8686 XSETINT (event, idx); /* vector */
8689 /* Ignore the element if it has no prompt string. */
8690 if (INTEGERP (event) && parse_menu_item (elt, -1))
8692 /* 1 if the char to type matches the string. */
8693 int char_matches;
8694 Lisp_Object upcased_event, downcased_event;
8695 Lisp_Object desc = Qnil;
8696 Lisp_Object s
8697 = AREF (item_properties, ITEM_PROPERTY_NAME);
8699 upcased_event = Fupcase (event);
8700 downcased_event = Fdowncase (event);
8701 char_matches = (XINT (upcased_event) == SREF (s, 0)
8702 || XINT (downcased_event) == SREF (s, 0));
8703 if (! char_matches)
8704 desc = Fsingle_key_description (event, Qnil);
8706 #if 0 /* It is redundant to list the equivalent key bindings because
8707 the prefix is what the user has already typed. */
8709 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8710 if (!NILP (tem))
8711 /* Insert equivalent keybinding. */
8712 s = concat2 (s, tem);
8713 #endif
8715 = AREF (item_properties, ITEM_PROPERTY_TYPE);
8716 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8718 /* Insert button prefix. */
8719 Lisp_Object selected
8720 = AREF (item_properties, ITEM_PROPERTY_SELECTED);
8721 if (EQ (tem, QCradio))
8722 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8723 else
8724 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8725 s = concat2 (tem, s);
8729 /* If we have room for the prompt string, add it to this line.
8730 If this is the first on the line, always add it. */
8731 if ((SCHARS (s) + i + 2
8732 + (char_matches ? 0 : SCHARS (desc) + 3))
8733 < width
8734 || !notfirst)
8736 ptrdiff_t thiswidth;
8738 /* Punctuate between strings. */
8739 if (notfirst)
8741 strcpy (menu + i, ", ");
8742 i += 2;
8744 notfirst = 1;
8745 nobindings = 0 ;
8747 /* If the char to type doesn't match the string's
8748 first char, explicitly show what char to type. */
8749 if (! char_matches)
8751 /* Add as much of string as fits. */
8752 thiswidth = min (SCHARS (desc), width - i);
8753 memcpy (menu + i, SDATA (desc), thiswidth);
8754 i += thiswidth;
8755 strcpy (menu + i, " = ");
8756 i += 3;
8759 /* Add as much of string as fits. */
8760 thiswidth = min (SCHARS (s), width - i);
8761 memcpy (menu + i, SDATA (s), thiswidth);
8762 i += thiswidth;
8763 menu[i] = 0;
8765 else
8767 /* If this element does not fit, end the line now,
8768 and save the element for the next line. */
8769 strcpy (menu + i, "...");
8770 break;
8774 /* Move past this element. */
8775 if (idx >= 0 && idx + 1 >= ASIZE (vector))
8776 /* Handle reaching end of dense table. */
8777 idx = -1;
8778 if (idx >= 0)
8779 idx++;
8780 else
8781 rest = Fcdr_safe (rest);
8785 /* Prompt with that and read response. */
8786 message2_nolog (menu, strlen (menu),
8787 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
8789 /* Make believe its not a keyboard macro in case the help char
8790 is pressed. Help characters are not recorded because menu prompting
8791 is not used on replay.
8793 orig_defn_macro = KVAR (current_kboard, defining_kbd_macro);
8794 kset_defining_kbd_macro (current_kboard, Qnil);
8796 obj = read_char (commandflag, 0, 0, Qt, 0, NULL);
8797 while (BUFFERP (obj));
8798 kset_defining_kbd_macro (current_kboard, orig_defn_macro);
8800 if (!INTEGERP (obj))
8801 return obj;
8802 else if (XINT (obj) == -2)
8803 return obj;
8805 if (! EQ (obj, menu_prompt_more_char)
8806 && (!INTEGERP (menu_prompt_more_char)
8807 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8809 if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
8810 store_kbd_macro_char (obj);
8811 return obj;
8813 /* Help char - go round again */
8817 /* Reading key sequences. */
8819 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8820 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8821 keymap, or nil otherwise. Return the index of the first keymap in
8822 which KEY has any binding, or NMAPS if no map has a binding.
8824 If KEY is a meta ASCII character, treat it like meta-prefix-char
8825 followed by the corresponding non-meta character. Keymaps in
8826 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8827 NEXT.
8829 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8830 unmodified.
8832 NEXT may be the same array as CURRENT. */
8834 static int
8835 follow_key (Lisp_Object key, ptrdiff_t nmaps, Lisp_Object *current,
8836 Lisp_Object *defs, Lisp_Object *next)
8838 ptrdiff_t i, first_binding;
8840 first_binding = nmaps;
8841 for (i = nmaps - 1; i >= 0; i--)
8843 if (! NILP (current[i]))
8845 defs[i] = access_keymap (current[i], key, 1, 0, 1);
8846 if (! NILP (defs[i]))
8847 first_binding = i;
8849 else
8850 defs[i] = Qnil;
8853 /* Given the set of bindings we've found, produce the next set of maps. */
8854 if (first_binding < nmaps)
8855 for (i = 0; i < nmaps; i++)
8856 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8858 return first_binding;
8861 /* Structure used to keep track of partial application of key remapping
8862 such as Vfunction_key_map and Vkey_translation_map. */
8863 typedef struct keyremap
8865 /* This is the map originally specified for this use. */
8866 Lisp_Object parent;
8867 /* This is a submap reached by looking up, in PARENT,
8868 the events from START to END. */
8869 Lisp_Object map;
8870 /* Positions [START, END) in the key sequence buffer
8871 are the key that we have scanned so far.
8872 Those events are the ones that we will replace
8873 if PARENT maps them into a key sequence. */
8874 int start, end;
8875 } keyremap;
8877 /* Lookup KEY in MAP.
8878 MAP is a keymap mapping keys to key vectors or functions.
8879 If the mapping is a function and DO_FUNCTION is non-zero, then
8880 the function is called with PROMPT as parameter and its return
8881 value is used as the return value of this function (after checking
8882 that it is indeed a vector). */
8884 static Lisp_Object
8885 access_keymap_keyremap (Lisp_Object map, Lisp_Object key, Lisp_Object prompt,
8886 int do_funcall)
8888 Lisp_Object next;
8890 next = access_keymap (map, key, 1, 0, 1);
8892 /* Handle a symbol whose function definition is a keymap
8893 or an array. */
8894 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8895 && (ARRAYP (XSYMBOL (next)->function)
8896 || KEYMAPP (XSYMBOL (next)->function)))
8897 next = Fautoload_do_load (XSYMBOL (next)->function, next, Qnil);
8899 /* If the keymap gives a function, not an
8900 array, then call the function with one arg and use
8901 its value instead. */
8902 if (do_funcall && FUNCTIONP (next))
8904 Lisp_Object tem;
8905 tem = next;
8907 next = call1 (next, prompt);
8908 /* If the function returned something invalid,
8909 barf--don't ignore it.
8910 (To ignore it safely, we would need to gcpro a bunch of
8911 other variables.) */
8912 if (! (VECTORP (next) || STRINGP (next)))
8913 error ("Function %s returns invalid key sequence",
8914 SSDATA (SYMBOL_NAME (tem)));
8916 return next;
8919 /* Do one step of the key remapping used for function-key-map and
8920 key-translation-map:
8921 KEYBUF is the buffer holding the input events.
8922 BUFSIZE is its maximum size.
8923 FKEY is a pointer to the keyremap structure to use.
8924 INPUT is the index of the last element in KEYBUF.
8925 DOIT if non-zero says that the remapping can actually take place.
8926 DIFF is used to return the number of keys added/removed by the remapping.
8927 PARENT is the root of the keymap.
8928 PROMPT is the prompt to use if the remapping happens through a function.
8929 The return value is non-zero if the remapping actually took place. */
8931 static int
8932 keyremap_step (Lisp_Object *keybuf, int bufsize, volatile keyremap *fkey,
8933 int input, int doit, int *diff, Lisp_Object prompt)
8935 Lisp_Object next, key;
8937 key = keybuf[fkey->end++];
8939 if (KEYMAPP (fkey->parent))
8940 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8941 else
8942 next = Qnil;
8944 /* If keybuf[fkey->start..fkey->end] is bound in the
8945 map and we're in a position to do the key remapping, replace it with
8946 the binding and restart with fkey->start at the end. */
8947 if ((VECTORP (next) || STRINGP (next)) && doit)
8949 int len = XFASTINT (Flength (next));
8950 int i;
8952 *diff = len - (fkey->end - fkey->start);
8954 if (bufsize - input <= *diff)
8955 error ("Key sequence too long");
8957 /* Shift the keys that follow fkey->end. */
8958 if (*diff < 0)
8959 for (i = fkey->end; i < input; i++)
8960 keybuf[i + *diff] = keybuf[i];
8961 else if (*diff > 0)
8962 for (i = input - 1; i >= fkey->end; i--)
8963 keybuf[i + *diff] = keybuf[i];
8964 /* Overwrite the old keys with the new ones. */
8965 for (i = 0; i < len; i++)
8966 keybuf[fkey->start + i]
8967 = Faref (next, make_number (i));
8969 fkey->start = fkey->end += *diff;
8970 fkey->map = fkey->parent;
8972 return 1;
8975 fkey->map = get_keymap (next, 0, 1);
8977 /* If we no longer have a bound suffix, try a new position for
8978 fkey->start. */
8979 if (!CONSP (fkey->map))
8981 fkey->end = ++fkey->start;
8982 fkey->map = fkey->parent;
8984 return 0;
8987 static int
8988 test_undefined (Lisp_Object binding)
8990 return (EQ (binding, Qundefined)
8991 || (!NILP (binding) && SYMBOLP (binding)
8992 && EQ (Fcommand_remapping (binding, Qnil, Qnil), Qundefined)));
8995 /* Read a sequence of keys that ends with a non prefix character,
8996 storing it in KEYBUF, a buffer of size BUFSIZE.
8997 Prompt with PROMPT.
8998 Return the length of the key sequence stored.
8999 Return -1 if the user rejected a command menu.
9001 Echo starting immediately unless `prompt' is 0.
9003 Where a key sequence ends depends on the currently active keymaps.
9004 These include any minor mode keymaps active in the current buffer,
9005 the current buffer's local map, and the global map.
9007 If a key sequence has no other bindings, we check Vfunction_key_map
9008 to see if some trailing subsequence might be the beginning of a
9009 function key's sequence. If so, we try to read the whole function
9010 key, and substitute its symbolic name into the key sequence.
9012 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
9013 `double-' events into similar click events, if that would make them
9014 bound. We try to turn `triple-' events first into `double-' events,
9015 then into clicks.
9017 If we get a mouse click in a mode line, vertical divider, or other
9018 non-text area, we treat the click as if it were prefixed by the
9019 symbol denoting that area - `mode-line', `vertical-line', or
9020 whatever.
9022 If the sequence starts with a mouse click, we read the key sequence
9023 with respect to the buffer clicked on, not the current buffer.
9025 If the user switches frames in the midst of a key sequence, we put
9026 off the switch-frame event until later; the next call to
9027 read_char will return it.
9029 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
9030 from the selected window's buffer. */
9032 static int
9033 read_key_sequence (Lisp_Object *keybuf, int bufsize, Lisp_Object prompt,
9034 int dont_downcase_last, int can_return_switch_frame,
9035 int fix_current_buffer)
9037 Lisp_Object from_string;
9038 ptrdiff_t count = SPECPDL_INDEX ();
9040 /* How many keys there are in the current key sequence. */
9041 int t;
9043 /* The length of the echo buffer when we started reading, and
9044 the length of this_command_keys when we started reading. */
9045 ptrdiff_t echo_start IF_LINT (= 0);
9046 ptrdiff_t keys_start;
9048 /* The number of keymaps we're scanning right now, and the number of
9049 keymaps we have allocated space for. */
9050 ptrdiff_t nmaps;
9051 ptrdiff_t nmaps_allocated = 0;
9053 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
9054 the current keymaps. */
9055 Lisp_Object *defs = NULL;
9057 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
9058 in the current keymaps, or nil where it is not a prefix. */
9059 Lisp_Object *submaps = NULL;
9061 /* The local map to start out with at start of key sequence. */
9062 Lisp_Object orig_local_map;
9064 /* The map from the `keymap' property to start out with at start of
9065 key sequence. */
9066 Lisp_Object orig_keymap;
9068 /* 1 if we have already considered switching to the local-map property
9069 of the place where a mouse click occurred. */
9070 int localized_local_map = 0;
9072 /* The index in submaps[] of the first keymap that has a binding for
9073 this key sequence. In other words, the lowest i such that
9074 submaps[i] is non-nil. */
9075 ptrdiff_t first_binding;
9076 /* Index of the first key that has no binding.
9077 It is useless to try fkey.start larger than that. */
9078 int first_unbound;
9080 /* If t < mock_input, then KEYBUF[t] should be read as the next
9081 input key.
9083 We use this to recover after recognizing a function key. Once we
9084 realize that a suffix of the current key sequence is actually a
9085 function key's escape sequence, we replace the suffix with the
9086 function key's binding from Vfunction_key_map. Now keybuf
9087 contains a new and different key sequence, so the echo area,
9088 this_command_keys, and the submaps and defs arrays are wrong. In
9089 this situation, we set mock_input to t, set t to 0, and jump to
9090 restart_sequence; the loop will read keys from keybuf up until
9091 mock_input, thus rebuilding the state; and then it will resume
9092 reading characters from the keyboard. */
9093 int mock_input = 0;
9095 /* If the sequence is unbound in submaps[], then
9096 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
9097 and fkey.map is its binding.
9099 These might be > t, indicating that all function key scanning
9100 should hold off until t reaches them. We do this when we've just
9101 recognized a function key, to avoid searching for the function
9102 key's again in Vfunction_key_map. */
9103 keyremap fkey;
9105 /* Likewise, for key_translation_map and input-decode-map. */
9106 keyremap keytran, indec;
9108 /* Non-zero if we are trying to map a key by changing an upper-case
9109 letter to lower case, or a shifted function key to an unshifted
9110 one. */
9111 int shift_translated = 0;
9113 /* If we receive a `switch-frame' or `select-window' event in the middle of
9114 a key sequence, we put it off for later.
9115 While we're reading, we keep the event here. */
9116 Lisp_Object delayed_switch_frame;
9118 /* See the comment below... */
9119 #if defined (GOBBLE_FIRST_EVENT)
9120 Lisp_Object first_event;
9121 #endif
9123 Lisp_Object original_uppercase IF_LINT (= Qnil);
9124 int original_uppercase_position = -1;
9126 /* Gets around Microsoft compiler limitations. */
9127 int dummyflag = 0;
9129 struct buffer *starting_buffer;
9131 /* List of events for which a fake prefix key has been generated. */
9132 Lisp_Object fake_prefixed_keys = Qnil;
9134 #if defined (GOBBLE_FIRST_EVENT)
9135 int junk;
9136 #endif
9138 struct gcpro gcpro1;
9140 GCPRO1 (fake_prefixed_keys);
9141 raw_keybuf_count = 0;
9143 last_nonmenu_event = Qnil;
9145 delayed_switch_frame = Qnil;
9147 if (INTERACTIVE)
9149 if (!NILP (prompt))
9151 /* Install the string STR as the beginning of the string of
9152 echoing, so that it serves as a prompt for the next
9153 character. */
9154 kset_echo_string (current_kboard, prompt);
9155 current_kboard->echo_after_prompt = SCHARS (prompt);
9156 echo_now ();
9158 else if (cursor_in_echo_area
9159 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9160 && NILP (Fzerop (Vecho_keystrokes)))
9161 /* This doesn't put in a dash if the echo buffer is empty, so
9162 you don't always see a dash hanging out in the minibuffer. */
9163 echo_dash ();
9166 /* Record the initial state of the echo area and this_command_keys;
9167 we will need to restore them if we replay a key sequence. */
9168 if (INTERACTIVE)
9169 echo_start = echo_length ();
9170 keys_start = this_command_key_count;
9171 this_single_command_key_start = keys_start;
9173 #if defined (GOBBLE_FIRST_EVENT)
9174 /* This doesn't quite work, because some of the things that read_char
9175 does cannot safely be bypassed. It seems too risky to try to make
9176 this work right. */
9178 /* Read the first char of the sequence specially, before setting
9179 up any keymaps, in case a filter runs and switches buffers on us. */
9180 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
9181 &junk, NULL);
9182 #endif /* GOBBLE_FIRST_EVENT */
9184 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9185 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9186 from_string = Qnil;
9188 /* We jump here when we need to reinitialize fkey and keytran; this
9189 happens if we switch keyboards between rescans. */
9190 replay_entire_sequence:
9192 indec.map = indec.parent = KVAR (current_kboard, Vinput_decode_map);
9193 fkey.map = fkey.parent = KVAR (current_kboard, Vlocal_function_key_map);
9194 keytran.map = keytran.parent = Vkey_translation_map;
9195 indec.start = indec.end = 0;
9196 fkey.start = fkey.end = 0;
9197 keytran.start = keytran.end = 0;
9199 /* We jump here when the key sequence has been thoroughly changed, and
9200 we need to rescan it starting from the beginning. When we jump here,
9201 keybuf[0..mock_input] holds the sequence we should reread. */
9202 replay_sequence:
9204 starting_buffer = current_buffer;
9205 first_unbound = bufsize + 1;
9207 /* Build our list of keymaps.
9208 If we recognize a function key and replace its escape sequence in
9209 keybuf with its symbol, or if the sequence starts with a mouse
9210 click and we need to switch buffers, we jump back here to rebuild
9211 the initial keymaps from the current buffer. */
9212 nmaps = 0;
9214 if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
9216 if (2 > nmaps_allocated)
9218 submaps = alloca (2 * sizeof *submaps);
9219 defs = alloca (2 * sizeof *defs);
9220 nmaps_allocated = 2;
9222 submaps[nmaps++] = KVAR (current_kboard, Voverriding_terminal_local_map);
9224 else if (!NILP (Voverriding_local_map))
9226 if (2 > nmaps_allocated)
9228 submaps = alloca (2 * sizeof *submaps);
9229 defs = alloca (2 * sizeof *defs);
9230 nmaps_allocated = 2;
9232 submaps[nmaps++] = Voverriding_local_map;
9234 else
9236 ptrdiff_t nminor;
9237 ptrdiff_t total;
9238 Lisp_Object *maps;
9240 nminor = current_minor_maps (0, &maps);
9241 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
9243 if (total > nmaps_allocated)
9245 submaps = alloca (total * sizeof *submaps);
9246 defs = alloca (total * sizeof *defs);
9247 nmaps_allocated = total;
9250 if (!NILP (orig_keymap))
9251 submaps[nmaps++] = orig_keymap;
9253 memcpy (submaps + nmaps, maps, nminor * sizeof (submaps[0]));
9255 nmaps += nminor;
9257 submaps[nmaps++] = orig_local_map;
9259 submaps[nmaps++] = current_global_map;
9261 /* Find an accurate initial value for first_binding. */
9262 for (first_binding = 0; first_binding < nmaps; first_binding++)
9263 if (! NILP (submaps[first_binding]))
9264 break;
9266 /* Start from the beginning in keybuf. */
9267 t = 0;
9269 /* These are no-ops the first time through, but if we restart, they
9270 revert the echo area and this_command_keys to their original state. */
9271 this_command_key_count = keys_start;
9272 if (INTERACTIVE && t < mock_input)
9273 echo_truncate (echo_start);
9275 /* If the best binding for the current key sequence is a keymap, or
9276 we may be looking at a function key's escape sequence, keep on
9277 reading. */
9278 while (first_binding < nmaps
9279 /* Keep reading as long as there's a prefix binding. */
9280 ? !NILP (submaps[first_binding])
9281 /* Don't return in the middle of a possible function key sequence,
9282 if the only bindings we found were via case conversion.
9283 Thus, if ESC O a has a function-key-map translation
9284 and ESC o has a binding, don't return after ESC O,
9285 so that we can translate ESC O plus the next character. */
9286 : (/* indec.start < t || fkey.start < t || */ keytran.start < t))
9288 Lisp_Object key;
9289 int used_mouse_menu = 0;
9291 /* Where the last real key started. If we need to throw away a
9292 key that has expanded into more than one element of keybuf
9293 (say, a mouse click on the mode line which is being treated
9294 as [mode-line (mouse-...)], then we backtrack to this point
9295 of keybuf. */
9296 int last_real_key_start;
9298 /* These variables are analogous to echo_start and keys_start;
9299 while those allow us to restart the entire key sequence,
9300 echo_local_start and keys_local_start allow us to throw away
9301 just one key. */
9302 ptrdiff_t echo_local_start IF_LINT (= 0);
9303 int keys_local_start;
9304 ptrdiff_t local_first_binding;
9306 eassert (indec.end == t || (indec.end > t && indec.end <= mock_input));
9307 eassert (indec.start <= indec.end);
9308 eassert (fkey.start <= fkey.end);
9309 eassert (keytran.start <= keytran.end);
9310 /* key-translation-map is applied *after* function-key-map
9311 which is itself applied *after* input-decode-map. */
9312 eassert (fkey.end <= indec.start);
9313 eassert (keytran.end <= fkey.start);
9315 if (/* first_unbound < indec.start && first_unbound < fkey.start && */
9316 first_unbound < keytran.start)
9317 { /* The prefix upto first_unbound has no binding and has
9318 no translation left to do either, so we know it's unbound.
9319 If we don't stop now, we risk staying here indefinitely
9320 (if the user keeps entering fkey or keytran prefixes
9321 like C-c ESC ESC ESC ESC ...) */
9322 int i;
9323 for (i = first_unbound + 1; i < t; i++)
9324 keybuf[i - first_unbound - 1] = keybuf[i];
9325 mock_input = t - first_unbound - 1;
9326 indec.end = indec.start -= first_unbound + 1;
9327 indec.map = indec.parent;
9328 fkey.end = fkey.start -= first_unbound + 1;
9329 fkey.map = fkey.parent;
9330 keytran.end = keytran.start -= first_unbound + 1;
9331 keytran.map = keytran.parent;
9332 goto replay_sequence;
9335 if (t >= bufsize)
9336 error ("Key sequence too long");
9338 if (INTERACTIVE)
9339 echo_local_start = echo_length ();
9340 keys_local_start = this_command_key_count;
9341 local_first_binding = first_binding;
9343 replay_key:
9344 /* These are no-ops, unless we throw away a keystroke below and
9345 jumped back up to replay_key; in that case, these restore the
9346 variables to their original state, allowing us to replay the
9347 loop. */
9348 if (INTERACTIVE && t < mock_input)
9349 echo_truncate (echo_local_start);
9350 this_command_key_count = keys_local_start;
9351 first_binding = local_first_binding;
9353 /* By default, assume each event is "real". */
9354 last_real_key_start = t;
9356 /* Does mock_input indicate that we are re-reading a key sequence? */
9357 if (t < mock_input)
9359 key = keybuf[t];
9360 add_command_key (key);
9361 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9362 && NILP (Fzerop (Vecho_keystrokes)))
9363 echo_char (key);
9366 /* If not, we should actually read a character. */
9367 else
9370 KBOARD *interrupted_kboard = current_kboard;
9371 struct frame *interrupted_frame = SELECTED_FRAME ();
9372 key = read_char (NILP (prompt), nmaps,
9373 (Lisp_Object *) submaps, last_nonmenu_event,
9374 &used_mouse_menu, NULL);
9375 if ((INTEGERP (key) && XINT (key) == -2) /* wrong_kboard_jmpbuf */
9376 /* When switching to a new tty (with a new keyboard),
9377 read_char returns the new buffer, rather than -2
9378 (Bug#5095). This is because `terminal-init-xterm'
9379 calls read-char, which eats the wrong_kboard_jmpbuf
9380 return. Any better way to fix this? -- cyd */
9381 || (interrupted_kboard != current_kboard))
9383 int found = 0;
9384 struct kboard *k;
9386 for (k = all_kboards; k; k = k->next_kboard)
9387 if (k == interrupted_kboard)
9388 found = 1;
9390 if (!found)
9392 /* Don't touch interrupted_kboard when it's been
9393 deleted. */
9394 delayed_switch_frame = Qnil;
9395 goto replay_entire_sequence;
9398 if (!NILP (delayed_switch_frame))
9400 kset_kbd_queue
9401 (interrupted_kboard,
9402 Fcons (delayed_switch_frame,
9403 KVAR (interrupted_kboard, kbd_queue)));
9404 delayed_switch_frame = Qnil;
9407 while (t > 0)
9408 kset_kbd_queue
9409 (interrupted_kboard,
9410 Fcons (keybuf[--t], KVAR (interrupted_kboard, kbd_queue)));
9412 /* If the side queue is non-empty, ensure it begins with a
9413 switch-frame, so we'll replay it in the right context. */
9414 if (CONSP (KVAR (interrupted_kboard, kbd_queue))
9415 && (key = XCAR (KVAR (interrupted_kboard, kbd_queue)),
9416 !(EVENT_HAS_PARAMETERS (key)
9417 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
9418 Qswitch_frame))))
9420 Lisp_Object frame;
9421 XSETFRAME (frame, interrupted_frame);
9422 kset_kbd_queue
9423 (interrupted_kboard,
9424 Fcons (make_lispy_switch_frame (frame),
9425 KVAR (interrupted_kboard, kbd_queue)));
9427 mock_input = 0;
9428 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9429 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9430 goto replay_entire_sequence;
9434 /* read_char returns t when it shows a menu and the user rejects it.
9435 Just return -1. */
9436 if (EQ (key, Qt))
9438 unbind_to (count, Qnil);
9439 UNGCPRO;
9440 return -1;
9443 /* read_char returns -1 at the end of a macro.
9444 Emacs 18 handles this by returning immediately with a
9445 zero, so that's what we'll do. */
9446 if (INTEGERP (key) && XINT (key) == -1)
9448 t = 0;
9449 /* The Microsoft C compiler can't handle the goto that
9450 would go here. */
9451 dummyflag = 1;
9452 break;
9455 /* If the current buffer has been changed from under us, the
9456 keymap may have changed, so replay the sequence. */
9457 if (BUFFERP (key))
9459 timer_resume_idle ();
9461 mock_input = t;
9462 /* Reset the current buffer from the selected window
9463 in case something changed the former and not the latter.
9464 This is to be more consistent with the behavior
9465 of the command_loop_1. */
9466 if (fix_current_buffer)
9468 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9469 Fkill_emacs (Qnil);
9470 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
9471 Fset_buffer (XWINDOW (selected_window)->buffer);
9474 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9475 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9476 goto replay_sequence;
9479 /* If we have a quit that was typed in another frame, and
9480 quit_throw_to_read_char switched buffers,
9481 replay to get the right keymap. */
9482 if (INTEGERP (key)
9483 && XINT (key) == quit_char
9484 && current_buffer != starting_buffer)
9486 GROW_RAW_KEYBUF;
9487 ASET (raw_keybuf, raw_keybuf_count, key);
9488 raw_keybuf_count++;
9489 keybuf[t++] = key;
9490 mock_input = t;
9491 Vquit_flag = Qnil;
9492 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
9493 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9494 goto replay_sequence;
9497 Vquit_flag = Qnil;
9499 if (EVENT_HAS_PARAMETERS (key)
9500 /* Either a `switch-frame' or a `select-window' event. */
9501 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
9503 /* If we're at the beginning of a key sequence, and the caller
9504 says it's okay, go ahead and return this event. If we're
9505 in the midst of a key sequence, delay it until the end. */
9506 if (t > 0 || !can_return_switch_frame)
9508 delayed_switch_frame = key;
9509 goto replay_key;
9513 GROW_RAW_KEYBUF;
9514 ASET (raw_keybuf, raw_keybuf_count, key);
9515 raw_keybuf_count++;
9518 /* Clicks in non-text areas get prefixed by the symbol
9519 in their CHAR-ADDRESS field. For example, a click on
9520 the mode line is prefixed by the symbol `mode-line'.
9522 Furthermore, key sequences beginning with mouse clicks
9523 are read using the keymaps of the buffer clicked on, not
9524 the current buffer. So we may have to switch the buffer
9525 here.
9527 When we turn one event into two events, we must make sure
9528 that neither of the two looks like the original--so that,
9529 if we replay the events, they won't be expanded again.
9530 If not for this, such reexpansion could happen either here
9531 or when user programs play with this-command-keys. */
9532 if (EVENT_HAS_PARAMETERS (key))
9534 Lisp_Object kind;
9535 Lisp_Object string;
9537 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
9538 if (EQ (kind, Qmouse_click))
9540 Lisp_Object window, posn;
9542 window = POSN_WINDOW (EVENT_START (key));
9543 posn = POSN_POSN (EVENT_START (key));
9545 if (CONSP (posn)
9546 || (!NILP (fake_prefixed_keys)
9547 && !NILP (Fmemq (key, fake_prefixed_keys))))
9549 /* We're looking a second time at an event for which
9550 we generated a fake prefix key. Set
9551 last_real_key_start appropriately. */
9552 if (t > 0)
9553 last_real_key_start = t - 1;
9556 if (last_real_key_start == 0)
9558 /* Key sequences beginning with mouse clicks are
9559 read using the keymaps in the buffer clicked on,
9560 not the current buffer. If we're at the
9561 beginning of a key sequence, switch buffers. */
9562 if (WINDOWP (window)
9563 && BUFFERP (XWINDOW (window)->buffer)
9564 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
9566 ASET (raw_keybuf, raw_keybuf_count, key);
9567 raw_keybuf_count++;
9568 keybuf[t] = key;
9569 mock_input = t + 1;
9571 /* Arrange to go back to the original buffer once we're
9572 done reading the key sequence. Note that we can't
9573 use save_excursion_{save,restore} here, because they
9574 save point as well as the current buffer; we don't
9575 want to save point, because redisplay may change it,
9576 to accommodate a Fset_window_start or something. We
9577 don't want to do this at the top of the function,
9578 because we may get input from a subprocess which
9579 wants to change the selected window and stuff (say,
9580 emacsclient). */
9581 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
9583 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9584 Fkill_emacs (Qnil);
9585 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
9586 orig_local_map = get_local_map (PT, current_buffer,
9587 Qlocal_map);
9588 orig_keymap = get_local_map (PT, current_buffer,
9589 Qkeymap);
9590 goto replay_sequence;
9593 /* For a mouse click, get the local text-property keymap
9594 of the place clicked on, rather than point. */
9595 if (CONSP (XCDR (key))
9596 && ! localized_local_map)
9598 Lisp_Object map_here, start, pos;
9600 localized_local_map = 1;
9601 start = EVENT_START (key);
9603 if (CONSP (start) && POSN_INBUFFER_P (start))
9605 pos = POSN_BUFFER_POSN (start);
9606 if (INTEGERP (pos)
9607 && XINT (pos) >= BEGV
9608 && XINT (pos) <= ZV)
9610 map_here = get_local_map (XINT (pos),
9611 current_buffer,
9612 Qlocal_map);
9613 if (!EQ (map_here, orig_local_map))
9615 orig_local_map = map_here;
9616 ++localized_local_map;
9619 map_here = get_local_map (XINT (pos),
9620 current_buffer,
9621 Qkeymap);
9622 if (!EQ (map_here, orig_keymap))
9624 orig_keymap = map_here;
9625 ++localized_local_map;
9628 if (localized_local_map > 1)
9630 keybuf[t] = key;
9631 mock_input = t + 1;
9633 goto replay_sequence;
9640 /* Expand mode-line and scroll-bar events into two events:
9641 use posn as a fake prefix key. */
9642 if (SYMBOLP (posn)
9643 && (NILP (fake_prefixed_keys)
9644 || NILP (Fmemq (key, fake_prefixed_keys))))
9646 if (bufsize - t <= 1)
9647 error ("Key sequence too long");
9649 keybuf[t] = posn;
9650 keybuf[t + 1] = key;
9651 mock_input = t + 2;
9653 /* Record that a fake prefix key has been generated
9654 for KEY. Don't modify the event; this would
9655 prevent proper action when the event is pushed
9656 back into unread-command-events. */
9657 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9659 /* If on a mode line string with a local keymap,
9660 reconsider the key sequence with that keymap. */
9661 if (string = POSN_STRING (EVENT_START (key)),
9662 (CONSP (string) && STRINGP (XCAR (string))))
9664 Lisp_Object pos, map, map2;
9666 pos = XCDR (string);
9667 string = XCAR (string);
9668 if (XINT (pos) >= 0
9669 && XINT (pos) < SCHARS (string))
9671 map = Fget_text_property (pos, Qlocal_map, string);
9672 if (!NILP (map))
9673 orig_local_map = map;
9674 map2 = Fget_text_property (pos, Qkeymap, string);
9675 if (!NILP (map2))
9676 orig_keymap = map2;
9677 if (!NILP (map) || !NILP (map2))
9678 goto replay_sequence;
9682 goto replay_key;
9684 else if (NILP (from_string)
9685 && (string = POSN_STRING (EVENT_START (key)),
9686 (CONSP (string) && STRINGP (XCAR (string)))))
9688 /* For a click on a string, i.e. overlay string or a
9689 string displayed via the `display' property,
9690 consider `local-map' and `keymap' properties of
9691 that string. */
9692 Lisp_Object pos, map, map2;
9694 pos = XCDR (string);
9695 string = XCAR (string);
9696 if (XINT (pos) >= 0
9697 && XINT (pos) < SCHARS (string))
9699 map = Fget_text_property (pos, Qlocal_map, string);
9700 if (!NILP (map))
9701 orig_local_map = map;
9702 map2 = Fget_text_property (pos, Qkeymap, string);
9703 if (!NILP (map2))
9704 orig_keymap = map2;
9706 if (!NILP (map) || !NILP (map2))
9708 from_string = string;
9709 keybuf[t++] = key;
9710 mock_input = t;
9711 goto replay_sequence;
9716 else if (CONSP (XCDR (key))
9717 && CONSP (EVENT_START (key))
9718 && CONSP (XCDR (EVENT_START (key))))
9720 Lisp_Object posn;
9722 posn = POSN_POSN (EVENT_START (key));
9723 /* Handle menu-bar events:
9724 insert the dummy prefix event `menu-bar'. */
9725 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9727 if (bufsize - t <= 1)
9728 error ("Key sequence too long");
9729 keybuf[t] = posn;
9730 keybuf[t+1] = key;
9732 /* Zap the position in key, so we know that we've
9733 expanded it, and don't try to do so again. */
9734 POSN_SET_POSN (EVENT_START (key),
9735 Fcons (posn, Qnil));
9737 mock_input = t + 2;
9738 goto replay_sequence;
9740 else if (CONSP (posn))
9742 /* We're looking at the second event of a
9743 sequence which we expanded before. Set
9744 last_real_key_start appropriately. */
9745 if (last_real_key_start == t && t > 0)
9746 last_real_key_start = t - 1;
9751 /* We have finally decided that KEY is something we might want
9752 to look up. */
9753 first_binding = (follow_key (key,
9754 nmaps - first_binding,
9755 submaps + first_binding,
9756 defs + first_binding,
9757 submaps + first_binding)
9758 + first_binding);
9760 /* If KEY wasn't bound, we'll try some fallbacks. */
9761 if (first_binding < nmaps)
9762 /* This is needed for the following scenario:
9763 event 0: a down-event that gets dropped by calling replay_key.
9764 event 1: some normal prefix like C-h.
9765 After event 0, first_unbound is 0, after event 1 indec.start,
9766 fkey.start, and keytran.start are all 1, so when we see that
9767 C-h is bound, we need to update first_unbound. */
9768 first_unbound = max (t + 1, first_unbound);
9769 else
9771 Lisp_Object head;
9773 /* Remember the position to put an upper bound on indec.start. */
9774 first_unbound = min (t, first_unbound);
9776 head = EVENT_HEAD (key);
9777 if (help_char_p (head) && t > 0)
9779 read_key_sequence_cmd = Vprefix_help_command;
9780 keybuf[t++] = key;
9781 last_nonmenu_event = key;
9782 /* The Microsoft C compiler can't handle the goto that
9783 would go here. */
9784 dummyflag = 1;
9785 break;
9788 if (SYMBOLP (head))
9790 Lisp_Object breakdown;
9791 int modifiers;
9793 breakdown = parse_modifiers (head);
9794 modifiers = XINT (XCAR (XCDR (breakdown)));
9795 /* Attempt to reduce an unbound mouse event to a simpler
9796 event that is bound:
9797 Drags reduce to clicks.
9798 Double-clicks reduce to clicks.
9799 Triple-clicks reduce to double-clicks, then to clicks.
9800 Down-clicks are eliminated.
9801 Double-downs reduce to downs, then are eliminated.
9802 Triple-downs reduce to double-downs, then to downs,
9803 then are eliminated. */
9804 if (modifiers & (down_modifier | drag_modifier
9805 | double_modifier | triple_modifier))
9807 while (modifiers & (down_modifier | drag_modifier
9808 | double_modifier | triple_modifier))
9810 Lisp_Object new_head, new_click;
9811 if (modifiers & triple_modifier)
9812 modifiers ^= (double_modifier | triple_modifier);
9813 else if (modifiers & double_modifier)
9814 modifiers &= ~double_modifier;
9815 else if (modifiers & drag_modifier)
9816 modifiers &= ~drag_modifier;
9817 else
9819 /* Dispose of this `down' event by simply jumping
9820 back to replay_key, to get another event.
9822 Note that if this event came from mock input,
9823 then just jumping back to replay_key will just
9824 hand it to us again. So we have to wipe out any
9825 mock input.
9827 We could delete keybuf[t] and shift everything
9828 after that to the left by one spot, but we'd also
9829 have to fix up any variable that points into
9830 keybuf, and shifting isn't really necessary
9831 anyway.
9833 Adding prefixes for non-textual mouse clicks
9834 creates two characters of mock input, and both
9835 must be thrown away. If we're only looking at
9836 the prefix now, we can just jump back to
9837 replay_key. On the other hand, if we've already
9838 processed the prefix, and now the actual click
9839 itself is giving us trouble, then we've lost the
9840 state of the keymaps we want to backtrack to, and
9841 we need to replay the whole sequence to rebuild
9844 Beyond that, only function key expansion could
9845 create more than two keys, but that should never
9846 generate mouse events, so it's okay to zero
9847 mock_input in that case too.
9849 FIXME: The above paragraph seems just plain
9850 wrong, if you consider things like
9851 xterm-mouse-mode. -stef
9853 Isn't this just the most wonderful code ever? */
9855 /* If mock_input > t + 1, the above simplification
9856 will actually end up dropping keys on the floor.
9857 This is probably OK for now, but even
9858 if mock_input <= t + 1, we need to adjust indec,
9859 fkey, and keytran.
9860 Typical case [header-line down-mouse-N]:
9861 mock_input = 2, t = 1, fkey.end = 1,
9862 last_real_key_start = 0. */
9863 if (indec.end > last_real_key_start)
9865 indec.end = indec.start
9866 = min (last_real_key_start, indec.start);
9867 indec.map = indec.parent;
9868 if (fkey.end > last_real_key_start)
9870 fkey.end = fkey.start
9871 = min (last_real_key_start, fkey.start);
9872 fkey.map = fkey.parent;
9873 if (keytran.end > last_real_key_start)
9875 keytran.end = keytran.start
9876 = min (last_real_key_start, keytran.start);
9877 keytran.map = keytran.parent;
9881 if (t == last_real_key_start)
9883 mock_input = 0;
9884 goto replay_key;
9886 else
9888 mock_input = last_real_key_start;
9889 goto replay_sequence;
9893 new_head
9894 = apply_modifiers (modifiers, XCAR (breakdown));
9895 new_click
9896 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9898 /* Look for a binding for this new key. follow_key
9899 promises that it didn't munge submaps the
9900 last time we called it, since key was unbound. */
9901 first_binding
9902 = (follow_key (new_click,
9903 nmaps - local_first_binding,
9904 submaps + local_first_binding,
9905 defs + local_first_binding,
9906 submaps + local_first_binding)
9907 + local_first_binding);
9909 /* If that click is bound, go for it. */
9910 if (first_binding < nmaps)
9912 key = new_click;
9913 break;
9915 /* Otherwise, we'll leave key set to the drag event. */
9921 keybuf[t++] = key;
9922 /* Normally, last_nonmenu_event gets the previous key we read.
9923 But when a mouse popup menu is being used,
9924 we don't update last_nonmenu_event; it continues to hold the mouse
9925 event that preceded the first level of menu. */
9926 if (!used_mouse_menu)
9927 last_nonmenu_event = key;
9929 /* Record what part of this_command_keys is the current key sequence. */
9930 this_single_command_key_start = this_command_key_count - t;
9932 /* Look for this sequence in input-decode-map.
9933 Scan from indec.end until we find a bound suffix. */
9934 while (indec.end < t)
9936 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9937 int done, diff;
9939 GCPRO4 (indec.map, fkey.map, keytran.map, delayed_switch_frame);
9940 done = keyremap_step (keybuf, bufsize, &indec, max (t, mock_input),
9941 1, &diff, prompt);
9942 UNGCPRO;
9943 if (done)
9945 mock_input = diff + max (t, mock_input);
9946 goto replay_sequence;
9950 if (first_binding < nmaps
9951 && NILP (submaps[first_binding])
9952 && !test_undefined (defs[first_binding])
9953 && indec.start >= t)
9954 /* There is a binding and it's not a prefix.
9955 (and it doesn't have any input-decode-map translation pending).
9956 There is thus no function-key in this sequence.
9957 Moving fkey.start is important in this case to allow keytran.start
9958 to go over the sequence before we return (since we keep the
9959 invariant that keytran.end <= fkey.start). */
9961 if (fkey.start < t)
9962 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9964 else
9965 /* If the sequence is unbound, see if we can hang a function key
9966 off the end of it. */
9967 /* Continue scan from fkey.end until we find a bound suffix. */
9968 while (fkey.end < indec.start)
9970 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9971 int done, diff;
9973 GCPRO4 (indec.map, fkey.map, keytran.map, delayed_switch_frame);
9974 done = keyremap_step (keybuf, bufsize, &fkey,
9975 max (t, mock_input),
9976 /* If there's a binding (i.e.
9977 first_binding >= nmaps) we don't want
9978 to apply this function-key-mapping. */
9979 fkey.end + 1 == t
9980 && (first_binding >= nmaps
9981 || test_undefined (defs[first_binding])),
9982 &diff, prompt);
9983 UNGCPRO;
9984 if (done)
9986 mock_input = diff + max (t, mock_input);
9987 /* Adjust the input-decode-map counters. */
9988 indec.end += diff;
9989 indec.start += diff;
9991 goto replay_sequence;
9995 /* Look for this sequence in key-translation-map.
9996 Scan from keytran.end until we find a bound suffix. */
9997 while (keytran.end < fkey.start)
9999 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10000 int done, diff;
10002 GCPRO4 (indec.map, fkey.map, keytran.map, delayed_switch_frame);
10003 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
10004 1, &diff, prompt);
10005 UNGCPRO;
10006 if (done)
10008 mock_input = diff + max (t, mock_input);
10009 /* Adjust the function-key-map and input-decode-map counters. */
10010 indec.end += diff;
10011 indec.start += diff;
10012 fkey.end += diff;
10013 fkey.start += diff;
10015 goto replay_sequence;
10019 /* If KEY is not defined in any of the keymaps,
10020 and cannot be part of a function key or translation,
10021 and is an upper case letter
10022 use the corresponding lower-case letter instead. */
10023 if (first_binding >= nmaps
10024 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t
10025 && INTEGERP (key)
10026 && ((CHARACTERP (make_number (XINT (key) & ~CHAR_MODIFIER_MASK))
10027 && uppercasep (XINT (key) & ~CHAR_MODIFIER_MASK))
10028 || (XINT (key) & shift_modifier)))
10030 Lisp_Object new_key;
10032 original_uppercase = key;
10033 original_uppercase_position = t - 1;
10035 if (XINT (key) & shift_modifier)
10036 XSETINT (new_key, XINT (key) & ~shift_modifier);
10037 else
10038 XSETINT (new_key, (downcase (XINT (key) & ~CHAR_MODIFIER_MASK)
10039 | (XINT (key) & CHAR_MODIFIER_MASK)));
10041 /* We have to do this unconditionally, regardless of whether
10042 the lower-case char is defined in the keymaps, because they
10043 might get translated through function-key-map. */
10044 keybuf[t - 1] = new_key;
10045 mock_input = max (t, mock_input);
10046 shift_translated = 1;
10048 goto replay_sequence;
10050 /* If KEY is not defined in any of the keymaps,
10051 and cannot be part of a function key or translation,
10052 and is a shifted function key,
10053 use the corresponding unshifted function key instead. */
10054 if (first_binding >= nmaps
10055 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t)
10057 Lisp_Object breakdown = parse_modifiers (key);
10058 int modifiers
10059 = CONSP (breakdown) ? (XINT (XCAR (XCDR (breakdown)))) : 0;
10061 if (modifiers & shift_modifier
10062 /* Treat uppercase keys as shifted. */
10063 || (INTEGERP (key)
10064 && (KEY_TO_CHAR (key)
10065 < XCHAR_TABLE (BVAR (current_buffer, downcase_table))->header.size)
10066 && uppercasep (KEY_TO_CHAR (key))))
10068 Lisp_Object new_key
10069 = (modifiers & shift_modifier
10070 ? apply_modifiers (modifiers & ~shift_modifier,
10071 XCAR (breakdown))
10072 : make_number (downcase (KEY_TO_CHAR (key)) | modifiers));
10074 original_uppercase = key;
10075 original_uppercase_position = t - 1;
10077 /* We have to do this unconditionally, regardless of whether
10078 the lower-case char is defined in the keymaps, because they
10079 might get translated through function-key-map. */
10080 keybuf[t - 1] = new_key;
10081 mock_input = max (t, mock_input);
10082 /* Reset fkey (and consequently keytran) to apply
10083 function-key-map on the result, so that S-backspace is
10084 correctly mapped to DEL (via backspace). OTOH,
10085 input-decode-map doesn't need to go through it again. */
10086 fkey.start = fkey.end = 0;
10087 keytran.start = keytran.end = 0;
10088 shift_translated = 1;
10090 goto replay_sequence;
10094 if (!dummyflag)
10095 read_key_sequence_cmd = (first_binding < nmaps
10096 ? defs[first_binding]
10097 : Qnil);
10098 read_key_sequence_remapped
10099 /* Remap command through active keymaps.
10100 Do the remapping here, before the unbind_to so it uses the keymaps
10101 of the appropriate buffer. */
10102 = SYMBOLP (read_key_sequence_cmd)
10103 ? Fcommand_remapping (read_key_sequence_cmd, Qnil, Qnil)
10104 : Qnil;
10106 unread_switch_frame = delayed_switch_frame;
10107 unbind_to (count, Qnil);
10109 /* Don't downcase the last character if the caller says don't.
10110 Don't downcase it if the result is undefined, either. */
10111 if ((dont_downcase_last || first_binding >= nmaps)
10112 && t > 0
10113 && t - 1 == original_uppercase_position)
10115 keybuf[t - 1] = original_uppercase;
10116 shift_translated = 0;
10119 if (shift_translated)
10120 Vthis_command_keys_shift_translated = Qt;
10122 /* Occasionally we fabricate events, perhaps by expanding something
10123 according to function-key-map, or by adding a prefix symbol to a
10124 mouse click in the scroll bar or modeline. In this cases, return
10125 the entire generated key sequence, even if we hit an unbound
10126 prefix or a definition before the end. This means that you will
10127 be able to push back the event properly, and also means that
10128 read-key-sequence will always return a logical unit.
10130 Better ideas? */
10131 for (; t < mock_input; t++)
10133 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
10134 && NILP (Fzerop (Vecho_keystrokes)))
10135 echo_char (keybuf[t]);
10136 add_command_key (keybuf[t]);
10139 UNGCPRO;
10140 return t;
10143 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
10144 doc: /* Read a sequence of keystrokes and return as a string or vector.
10145 The sequence is sufficient to specify a non-prefix command in the
10146 current local and global maps.
10148 First arg PROMPT is a prompt string. If nil, do not prompt specially.
10149 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
10150 as a continuation of the previous key.
10152 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
10153 convert the last event to lower case. (Normally any upper case event
10154 is converted to lower case if the original event is undefined and the lower
10155 case equivalent is defined.) A non-nil value is appropriate for reading
10156 a key sequence to be defined.
10158 A C-g typed while in this function is treated like any other character,
10159 and `quit-flag' is not set.
10161 If the key sequence starts with a mouse click, then the sequence is read
10162 using the keymaps of the buffer of the window clicked in, not the buffer
10163 of the selected window as normal.
10165 `read-key-sequence' drops unbound button-down events, since you normally
10166 only care about the click or drag events which follow them. If a drag
10167 or multi-click event is unbound, but the corresponding click event would
10168 be bound, `read-key-sequence' turns the event into a click event at the
10169 drag's starting position. This means that you don't have to distinguish
10170 between click and drag, double, or triple events unless you want to.
10172 `read-key-sequence' prefixes mouse events on mode lines, the vertical
10173 lines separating windows, and scroll bars with imaginary keys
10174 `mode-line', `vertical-line', and `vertical-scroll-bar'.
10176 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
10177 function will process a switch-frame event if the user switches frames
10178 before typing anything. If the user switches frames in the middle of a
10179 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
10180 is nil, then the event will be put off until after the current key sequence.
10182 `read-key-sequence' checks `function-key-map' for function key
10183 sequences, where they wouldn't conflict with ordinary bindings. See
10184 `function-key-map' for more details.
10186 The optional fifth argument CMD-LOOP, if non-nil, means
10187 that this key sequence is being read by something that will
10188 read commands one after another. It should be nil if the caller
10189 will read just one key sequence. */)
10190 (Lisp_Object prompt, Lisp_Object continue_echo, Lisp_Object dont_downcase_last, Lisp_Object can_return_switch_frame, Lisp_Object cmd_loop)
10192 Lisp_Object keybuf[30];
10193 register int i;
10194 struct gcpro gcpro1;
10195 ptrdiff_t count = SPECPDL_INDEX ();
10197 if (!NILP (prompt))
10198 CHECK_STRING (prompt);
10199 QUIT;
10201 specbind (Qinput_method_exit_on_first_char,
10202 (NILP (cmd_loop) ? Qt : Qnil));
10203 specbind (Qinput_method_use_echo_area,
10204 (NILP (cmd_loop) ? Qt : Qnil));
10206 memset (keybuf, 0, sizeof keybuf);
10207 GCPRO1 (keybuf[0]);
10208 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
10210 if (NILP (continue_echo))
10212 this_command_key_count = 0;
10213 this_command_key_count_reset = 0;
10214 this_single_command_key_start = 0;
10217 #ifdef HAVE_WINDOW_SYSTEM
10218 if (display_hourglass_p)
10219 cancel_hourglass ();
10220 #endif
10222 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
10223 prompt, ! NILP (dont_downcase_last),
10224 ! NILP (can_return_switch_frame), 0);
10226 #if 0 /* The following is fine for code reading a key sequence and
10227 then proceeding with a lengthy computation, but it's not good
10228 for code reading keys in a loop, like an input method. */
10229 #ifdef HAVE_WINDOW_SYSTEM
10230 if (display_hourglass_p)
10231 start_hourglass ();
10232 #endif
10233 #endif
10235 if (i == -1)
10237 Vquit_flag = Qt;
10238 QUIT;
10240 UNGCPRO;
10241 return unbind_to (count, make_event_array (i, keybuf));
10244 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
10245 Sread_key_sequence_vector, 1, 5, 0,
10246 doc: /* Like `read-key-sequence' but always return a vector. */)
10247 (Lisp_Object prompt, Lisp_Object continue_echo, Lisp_Object dont_downcase_last, Lisp_Object can_return_switch_frame, Lisp_Object cmd_loop)
10249 Lisp_Object keybuf[30];
10250 register int i;
10251 struct gcpro gcpro1;
10252 ptrdiff_t count = SPECPDL_INDEX ();
10254 if (!NILP (prompt))
10255 CHECK_STRING (prompt);
10256 QUIT;
10258 specbind (Qinput_method_exit_on_first_char,
10259 (NILP (cmd_loop) ? Qt : Qnil));
10260 specbind (Qinput_method_use_echo_area,
10261 (NILP (cmd_loop) ? Qt : Qnil));
10263 memset (keybuf, 0, sizeof keybuf);
10264 GCPRO1 (keybuf[0]);
10265 gcpro1.nvars = (sizeof keybuf / sizeof (keybuf[0]));
10267 if (NILP (continue_echo))
10269 this_command_key_count = 0;
10270 this_command_key_count_reset = 0;
10271 this_single_command_key_start = 0;
10274 #ifdef HAVE_WINDOW_SYSTEM
10275 if (display_hourglass_p)
10276 cancel_hourglass ();
10277 #endif
10279 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])),
10280 prompt, ! NILP (dont_downcase_last),
10281 ! NILP (can_return_switch_frame), 0);
10283 #ifdef HAVE_WINDOW_SYSTEM
10284 if (display_hourglass_p)
10285 start_hourglass ();
10286 #endif
10288 if (i == -1)
10290 Vquit_flag = Qt;
10291 QUIT;
10293 UNGCPRO;
10294 return unbind_to (count, Fvector (i, keybuf));
10297 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
10298 doc: /* Execute CMD as an editor command.
10299 CMD must be a symbol that satisfies the `commandp' predicate.
10300 Optional second arg RECORD-FLAG non-nil
10301 means unconditionally put this command in `command-history'.
10302 Otherwise, that is done only if an arg is read using the minibuffer.
10303 The argument KEYS specifies the value to use instead of (this-command-keys)
10304 when reading the arguments; if it is nil, (this-command-keys) is used.
10305 The argument SPECIAL, if non-nil, means that this command is executing
10306 a special event, so ignore the prefix argument and don't clear it. */)
10307 (Lisp_Object cmd, Lisp_Object record_flag, Lisp_Object keys, Lisp_Object special)
10309 register Lisp_Object final;
10310 register Lisp_Object tem;
10311 Lisp_Object prefixarg;
10313 debug_on_next_call = 0;
10315 if (NILP (special))
10317 prefixarg = KVAR (current_kboard, Vprefix_arg);
10318 Vcurrent_prefix_arg = prefixarg;
10319 kset_prefix_arg (current_kboard, Qnil);
10321 else
10322 prefixarg = Qnil;
10324 if (SYMBOLP (cmd))
10326 tem = Fget (cmd, Qdisabled);
10327 if (!NILP (tem))
10329 tem = Fsymbol_value (Qdisabled_command_function);
10330 if (!NILP (tem))
10331 return Frun_hooks (1, &Qdisabled_command_function);
10335 while (1)
10337 final = Findirect_function (cmd, Qnil);
10339 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
10341 struct gcpro gcpro1, gcpro2;
10343 GCPRO2 (cmd, prefixarg);
10344 Fautoload_do_load (final, cmd, Qnil);
10345 UNGCPRO;
10347 else
10348 break;
10351 if (STRINGP (final) || VECTORP (final))
10353 /* If requested, place the macro in the command history. For
10354 other sorts of commands, call-interactively takes care of
10355 this. */
10356 if (!NILP (record_flag))
10358 Vcommand_history
10359 = Fcons (Fcons (Qexecute_kbd_macro,
10360 Fcons (final, Fcons (prefixarg, Qnil))),
10361 Vcommand_history);
10363 /* Don't keep command history around forever. */
10364 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
10366 tem = Fnthcdr (Vhistory_length, Vcommand_history);
10367 if (CONSP (tem))
10368 XSETCDR (tem, Qnil);
10372 return Fexecute_kbd_macro (final, prefixarg, Qnil);
10375 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
10376 /* Don't call Fcall_interactively directly because we want to make
10377 sure the backtrace has an entry for `call-interactively'.
10378 For the same reason, pass `cmd' rather than `final'. */
10379 return call3 (Qcall_interactively, cmd, record_flag, keys);
10381 return Qnil;
10386 /* Return nonzero if input events are pending. */
10389 detect_input_pending (void)
10391 if (!input_pending)
10392 get_input_pending (&input_pending, 0);
10394 return input_pending;
10397 /* Return nonzero if input events other than mouse movements are
10398 pending. */
10401 detect_input_pending_ignore_squeezables (void)
10403 if (!input_pending)
10404 get_input_pending (&input_pending, READABLE_EVENTS_IGNORE_SQUEEZABLES);
10406 return input_pending;
10409 /* Return nonzero if input events are pending, and run any pending timers. */
10412 detect_input_pending_run_timers (int do_display)
10414 int old_timers_run = timers_run;
10416 if (!input_pending)
10417 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
10419 if (old_timers_run != timers_run && do_display)
10421 redisplay_preserve_echo_area (8);
10422 /* The following fixes a bug when using lazy-lock with
10423 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
10424 from an idle timer function. The symptom of the bug is that
10425 the cursor sometimes doesn't become visible until the next X
10426 event is processed. --gerd. */
10428 Lisp_Object tail, frame;
10429 FOR_EACH_FRAME (tail, frame)
10430 if (FRAME_RIF (XFRAME (frame)))
10431 FRAME_RIF (XFRAME (frame))->flush_display (XFRAME (frame));
10435 return input_pending;
10438 /* This is called in some cases before a possible quit.
10439 It cases the next call to detect_input_pending to recompute input_pending.
10440 So calling this function unnecessarily can't do any harm. */
10442 void
10443 clear_input_pending (void)
10445 input_pending = 0;
10448 /* Return nonzero if there are pending requeued events.
10449 This isn't used yet. The hope is to make wait_reading_process_output
10450 call it, and return if it runs Lisp code that unreads something.
10451 The problem is, kbd_buffer_get_event needs to be fixed to know what
10452 to do in that case. It isn't trivial. */
10455 requeued_events_pending_p (void)
10457 return (!NILP (Vunread_command_events) || unread_command_char != -1);
10461 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
10462 doc: /* Return t if command input is currently available with no wait.
10463 Actually, the value is nil only if we can be sure that no input is available;
10464 if there is a doubt, the value is t. */)
10465 (void)
10467 if (!NILP (Vunread_command_events) || unread_command_char != -1
10468 || !NILP (Vunread_post_input_method_events)
10469 || !NILP (Vunread_input_method_events))
10470 return (Qt);
10472 /* Process non-user-visible events (Bug#10195). */
10473 process_special_events ();
10475 get_input_pending (&input_pending,
10476 READABLE_EVENTS_DO_TIMERS_NOW
10477 | READABLE_EVENTS_FILTER_EVENTS);
10478 return input_pending > 0 ? Qt : Qnil;
10481 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
10482 doc: /* Return vector of last 300 events, not counting those from keyboard macros. */)
10483 (void)
10485 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
10486 Lisp_Object val;
10488 if (total_keys < NUM_RECENT_KEYS)
10489 return Fvector (total_keys, keys);
10490 else
10492 val = Fvector (NUM_RECENT_KEYS, keys);
10493 memcpy (XVECTOR (val)->contents, keys + recent_keys_index,
10494 (NUM_RECENT_KEYS - recent_keys_index) * word_size);
10495 memcpy (XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
10496 keys, recent_keys_index * word_size);
10497 return val;
10501 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10502 doc: /* Return the key sequence that invoked this command.
10503 However, if the command has called `read-key-sequence', it returns
10504 the last key sequence that has been read.
10505 The value is a string or a vector.
10507 See also `this-command-keys-vector'. */)
10508 (void)
10510 return make_event_array (this_command_key_count,
10511 XVECTOR (this_command_keys)->contents);
10514 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10515 doc: /* Return the key sequence that invoked this command, as a vector.
10516 However, if the command has called `read-key-sequence', it returns
10517 the last key sequence that has been read.
10519 See also `this-command-keys'. */)
10520 (void)
10522 return Fvector (this_command_key_count,
10523 XVECTOR (this_command_keys)->contents);
10526 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10527 Sthis_single_command_keys, 0, 0, 0,
10528 doc: /* Return the key sequence that invoked this command.
10529 More generally, it returns the last key sequence read, either by
10530 the command loop or by `read-key-sequence'.
10531 Unlike `this-command-keys', this function's value
10532 does not include prefix arguments.
10533 The value is always a vector. */)
10534 (void)
10536 return Fvector (this_command_key_count
10537 - this_single_command_key_start,
10538 (XVECTOR (this_command_keys)->contents
10539 + this_single_command_key_start));
10542 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10543 Sthis_single_command_raw_keys, 0, 0, 0,
10544 doc: /* Return the raw events that were read for this command.
10545 More generally, it returns the last key sequence read, either by
10546 the command loop or by `read-key-sequence'.
10547 Unlike `this-single-command-keys', this function's value
10548 shows the events before all translations (except for input methods).
10549 The value is always a vector. */)
10550 (void)
10552 return Fvector (raw_keybuf_count,
10553 (XVECTOR (raw_keybuf)->contents));
10556 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
10557 Sreset_this_command_lengths, 0, 0, 0,
10558 doc: /* Make the unread events replace the last command and echo.
10559 Used in `universal-argument-other-key'.
10561 `universal-argument-other-key' rereads the event just typed.
10562 It then gets translated through `function-key-map'.
10563 The translated event has to replace the real events,
10564 both in the value of (this-command-keys) and in echoing.
10565 To achieve this, `universal-argument-other-key' calls
10566 `reset-this-command-lengths', which discards the record of reading
10567 these events the first time. */)
10568 (void)
10570 this_command_key_count = before_command_key_count;
10571 if (this_command_key_count < this_single_command_key_start)
10572 this_single_command_key_start = this_command_key_count;
10574 echo_truncate (before_command_echo_length);
10576 /* Cause whatever we put into unread-command-events
10577 to echo as if it were being freshly read from the keyboard. */
10578 this_command_key_count_reset = 1;
10580 return Qnil;
10583 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10584 Sclear_this_command_keys, 0, 1, 0,
10585 doc: /* Clear out the vector that `this-command-keys' returns.
10586 Also clear the record of the last 100 events, unless optional arg
10587 KEEP-RECORD is non-nil. */)
10588 (Lisp_Object keep_record)
10590 int i;
10592 this_command_key_count = 0;
10593 this_command_key_count_reset = 0;
10595 if (NILP (keep_record))
10597 for (i = 0; i < ASIZE (recent_keys); ++i)
10598 ASET (recent_keys, i, Qnil);
10599 total_keys = 0;
10600 recent_keys_index = 0;
10602 return Qnil;
10605 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10606 doc: /* Return the current depth in recursive edits. */)
10607 (void)
10609 Lisp_Object temp;
10610 /* Wrap around reliably on integer overflow. */
10611 EMACS_INT sum = (command_loop_level & INTMASK) + (minibuf_level & INTMASK);
10612 XSETINT (temp, sum);
10613 return temp;
10616 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10617 "FOpen dribble file: ",
10618 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10619 If FILE is nil, close any open dribble file.
10620 The file will be closed when Emacs exits. */)
10621 (Lisp_Object file)
10623 if (dribble)
10625 BLOCK_INPUT;
10626 fclose (dribble);
10627 UNBLOCK_INPUT;
10628 dribble = 0;
10630 if (!NILP (file))
10632 file = Fexpand_file_name (file, Qnil);
10633 dribble = fopen (SSDATA (file), "w");
10634 if (dribble == 0)
10635 report_file_error ("Opening dribble", Fcons (file, Qnil));
10637 return Qnil;
10640 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10641 doc: /* Discard the contents of the terminal input buffer.
10642 Also end any kbd macro being defined. */)
10643 (void)
10645 if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
10647 /* Discard the last command from the macro. */
10648 Fcancel_kbd_macro_events ();
10649 end_kbd_macro ();
10652 update_mode_lines++;
10654 Vunread_command_events = Qnil;
10655 unread_command_char = -1;
10657 discard_tty_input ();
10659 kbd_fetch_ptr = kbd_store_ptr;
10660 input_pending = 0;
10662 return Qnil;
10665 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10666 doc: /* Stop Emacs and return to superior process. You can resume later.
10667 If `cannot-suspend' is non-nil, or if the system doesn't support job
10668 control, run a subshell instead.
10670 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10671 to be read as terminal input by Emacs's parent, after suspension.
10673 Before suspending, run the normal hook `suspend-hook'.
10674 After resumption run the normal hook `suspend-resume-hook'.
10676 Some operating systems cannot stop the Emacs process and resume it later.
10677 On such systems, Emacs starts a subshell instead of suspending. */)
10678 (Lisp_Object stuffstring)
10680 ptrdiff_t count = SPECPDL_INDEX ();
10681 int old_height, old_width;
10682 int width, height;
10683 struct gcpro gcpro1;
10684 Lisp_Object hook;
10686 if (tty_list && tty_list->next)
10687 error ("There are other tty frames open; close them before suspending Emacs");
10689 if (!NILP (stuffstring))
10690 CHECK_STRING (stuffstring);
10692 /* Run the functions in suspend-hook. */
10693 hook = intern ("suspend-hook");
10694 Frun_hooks (1, &hook);
10696 GCPRO1 (stuffstring);
10697 get_tty_size (fileno (CURTTY ()->input), &old_width, &old_height);
10698 reset_all_sys_modes ();
10699 /* sys_suspend can get an error if it tries to fork a subshell
10700 and the system resources aren't available for that. */
10701 record_unwind_protect ((Lisp_Object (*) (Lisp_Object)) init_all_sys_modes,
10702 Qnil);
10703 stuff_buffered_input (stuffstring);
10704 if (cannot_suspend)
10705 sys_subshell ();
10706 else
10707 sys_suspend ();
10708 unbind_to (count, Qnil);
10710 /* Check if terminal/window size has changed.
10711 Note that this is not useful when we are running directly
10712 with a window system; but suspend should be disabled in that case. */
10713 get_tty_size (fileno (CURTTY ()->input), &width, &height);
10714 if (width != old_width || height != old_height)
10715 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10717 /* Run suspend-resume-hook. */
10718 hook = intern ("suspend-resume-hook");
10719 Frun_hooks (1, &hook);
10721 UNGCPRO;
10722 return Qnil;
10725 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10726 Then in any case stuff anything Emacs has read ahead and not used. */
10728 void
10729 stuff_buffered_input (Lisp_Object stuffstring)
10731 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10732 register unsigned char *p;
10734 if (STRINGP (stuffstring))
10736 register ptrdiff_t count;
10738 p = SDATA (stuffstring);
10739 count = SBYTES (stuffstring);
10740 while (count-- > 0)
10741 stuff_char (*p++);
10742 stuff_char ('\n');
10745 /* Anything we have read ahead, put back for the shell to read. */
10746 /* ?? What should this do when we have multiple keyboards??
10747 Should we ignore anything that was typed in at the "wrong" kboard?
10749 rms: we should stuff everything back into the kboard
10750 it came from. */
10751 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10754 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10755 kbd_fetch_ptr = kbd_buffer;
10756 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10757 stuff_char (kbd_fetch_ptr->code);
10759 clear_event (kbd_fetch_ptr);
10762 input_pending = 0;
10763 #endif /* SIGTSTP */
10766 void
10767 set_waiting_for_input (EMACS_TIME *time_to_clear)
10769 input_available_clear_time = time_to_clear;
10771 /* Tell handle_interrupt to throw back to read_char, */
10772 waiting_for_input = 1;
10774 /* If handle_interrupt was called before and buffered a C-g,
10775 make it run again now, to avoid timing error. */
10776 if (!NILP (Vquit_flag))
10777 quit_throw_to_read_char (0);
10780 void
10781 clear_waiting_for_input (void)
10783 /* Tell handle_interrupt not to throw back to read_char, */
10784 waiting_for_input = 0;
10785 input_available_clear_time = 0;
10788 /* The SIGINT handler.
10790 If we have a frame on the controlling tty, we assume that the
10791 SIGINT was generated by C-g, so we call handle_interrupt.
10792 Otherwise, tell QUIT to kill Emacs. */
10794 static void
10795 interrupt_signal (int signalnum) /* If we don't have an argument, some */
10796 /* compilers complain in signal calls. */
10798 /* Must preserve main program's value of errno. */
10799 int old_errno = errno;
10800 struct terminal *terminal;
10802 SIGNAL_THREAD_CHECK (signalnum);
10804 /* See if we have an active terminal on our controlling tty. */
10805 terminal = get_named_tty ("/dev/tty");
10806 if (!terminal)
10808 /* If there are no frames there, let's pretend that we are a
10809 well-behaving UN*X program and quit. We must not call Lisp
10810 in a signal handler, so tell QUIT to exit when it is
10811 safe. */
10812 Vquit_flag = Qkill_emacs;
10814 else
10816 /* Otherwise, the SIGINT was probably generated by C-g. */
10818 /* Set internal_last_event_frame to the top frame of the
10819 controlling tty, if we have a frame there. We disable the
10820 interrupt key on secondary ttys, so the SIGINT must have come
10821 from the controlling tty. */
10822 internal_last_event_frame = terminal->display_info.tty->top_frame;
10824 handle_interrupt ();
10827 errno = old_errno;
10830 /* If Emacs is stuck because `inhibit-quit' is true, then keep track
10831 of the number of times C-g has been requested. If C-g is pressed
10832 enough times, then quit anyway. See bug#6585. */
10833 static int force_quit_count;
10835 /* This routine is called at interrupt level in response to C-g.
10837 It is called from the SIGINT handler or kbd_buffer_store_event.
10839 If `waiting_for_input' is non zero, then unless `echoing' is
10840 nonzero, immediately throw back to read_char.
10842 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10843 eval to throw, when it gets a chance. If quit-flag is already
10844 non-nil, it stops the job right away. */
10846 static void
10847 handle_interrupt (void)
10849 char c;
10851 cancel_echoing ();
10853 /* XXX This code needs to be revised for multi-tty support. */
10854 if (!NILP (Vquit_flag) && get_named_tty ("/dev/tty"))
10856 /* If SIGINT isn't blocked, don't let us be interrupted by
10857 another SIGINT, it might be harmful due to non-reentrancy
10858 in I/O functions. */
10859 sigblock (sigmask (SIGINT));
10861 fflush (stdout);
10862 reset_all_sys_modes ();
10864 #ifdef SIGTSTP /* Support possible in later USG versions */
10866 * On systems which can suspend the current process and return to the original
10867 * shell, this command causes the user to end up back at the shell.
10868 * The "Auto-save" and "Abort" questions are not asked until
10869 * the user elects to return to emacs, at which point he can save the current
10870 * job and either dump core or continue.
10872 sys_suspend ();
10873 #else
10874 /* Perhaps should really fork an inferior shell?
10875 But that would not provide any way to get back
10876 to the original shell, ever. */
10877 printf ("No support for stopping a process on this operating system;\n");
10878 printf ("you can continue or abort.\n");
10879 #endif /* not SIGTSTP */
10880 #ifdef MSDOS
10881 /* We must remain inside the screen area when the internal terminal
10882 is used. Note that [Enter] is not echoed by dos. */
10883 cursor_to (SELECTED_FRAME (), 0, 0);
10884 #endif
10885 /* It doesn't work to autosave while GC is in progress;
10886 the code used for auto-saving doesn't cope with the mark bit. */
10887 if (!gc_in_progress)
10889 printf ("Auto-save? (y or n) ");
10890 fflush (stdout);
10891 if (((c = getchar ()) & ~040) == 'Y')
10893 Fdo_auto_save (Qt, Qnil);
10894 #ifdef MSDOS
10895 printf ("\r\nAuto-save done");
10896 #else /* not MSDOS */
10897 printf ("Auto-save done\n");
10898 #endif /* not MSDOS */
10900 while (c != '\n') c = getchar ();
10902 else
10904 /* During GC, it must be safe to reenable quitting again. */
10905 Vinhibit_quit = Qnil;
10906 #ifdef MSDOS
10907 printf ("\r\n");
10908 #endif /* not MSDOS */
10909 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10910 printf ("but will instead do a real quit after garbage collection ends\r\n");
10911 fflush (stdout);
10914 #ifdef MSDOS
10915 printf ("\r\nAbort? (y or n) ");
10916 #else /* not MSDOS */
10917 printf ("Abort (and dump core)? (y or n) ");
10918 #endif /* not MSDOS */
10919 fflush (stdout);
10920 if (((c = getchar ()) & ~040) == 'Y')
10921 abort ();
10922 while (c != '\n') c = getchar ();
10923 #ifdef MSDOS
10924 printf ("\r\nContinuing...\r\n");
10925 #else /* not MSDOS */
10926 printf ("Continuing...\n");
10927 #endif /* not MSDOS */
10928 fflush (stdout);
10929 init_all_sys_modes ();
10930 sigfree ();
10932 else
10934 /* If executing a function that wants to be interrupted out of
10935 and the user has not deferred quitting by binding `inhibit-quit'
10936 then quit right away. */
10937 if (immediate_quit && NILP (Vinhibit_quit))
10939 struct gl_state_s saved;
10940 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10942 immediate_quit = 0;
10943 sigfree ();
10944 saved = gl_state;
10945 GCPRO4 (saved.object, saved.global_code,
10946 saved.current_syntax_table, saved.old_prop);
10947 Fsignal (Qquit, Qnil);
10948 /* FIXME: AFAIK, `quit' can never return, so this code is dead! */
10949 gl_state = saved;
10950 UNGCPRO;
10952 else
10953 { /* Else request quit when it's safe. */
10954 if (NILP (Vquit_flag))
10955 force_quit_count = 0;
10956 if (++force_quit_count == 3)
10958 immediate_quit = 1;
10959 Vinhibit_quit = Qnil;
10961 Vquit_flag = Qt;
10965 /* TODO: The longjmp in this call throws the NS event loop integration off,
10966 and it seems to do fine without this. Probably some attention
10967 needs to be paid to the setting of waiting_for_input in
10968 wait_reading_process_output() under HAVE_NS because of the call
10969 to ns_select there (needed because otherwise events aren't picked up
10970 outside of polling since we don't get SIGIO like X and we don't have a
10971 separate event loop thread like W32. */
10972 #ifndef HAVE_NS
10973 if (waiting_for_input && !echoing)
10974 quit_throw_to_read_char (1);
10975 #endif
10978 /* Handle a C-g by making read_char return C-g. */
10980 static void
10981 quit_throw_to_read_char (int from_signal)
10983 /* When not called from a signal handler it is safe to call
10984 Lisp. */
10985 if (!from_signal && EQ (Vquit_flag, Qkill_emacs))
10986 Fkill_emacs (Qnil);
10988 sigfree ();
10989 /* Prevent another signal from doing this before we finish. */
10990 clear_waiting_for_input ();
10991 input_pending = 0;
10993 Vunread_command_events = Qnil;
10994 unread_command_char = -1;
10996 #if 0 /* Currently, sit_for is called from read_char without turning
10997 off polling. And that can call set_waiting_for_input.
10998 It seems to be harmless. */
10999 #ifdef POLL_FOR_INPUT
11000 /* May be > 1 if in recursive minibuffer. */
11001 if (poll_suppress_count == 0)
11002 abort ();
11003 #endif
11004 #endif
11005 if (FRAMEP (internal_last_event_frame)
11006 && !EQ (internal_last_event_frame, selected_frame))
11007 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
11008 0, 0, Qnil);
11010 _longjmp (getcjmp, 1);
11013 DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,
11014 Sset_input_interrupt_mode, 1, 1, 0,
11015 doc: /* Set interrupt mode of reading keyboard input.
11016 If INTERRUPT is non-nil, Emacs will use input interrupts;
11017 otherwise Emacs uses CBREAK mode.
11019 See also `current-input-mode'. */)
11020 (Lisp_Object interrupt)
11022 int new_interrupt_input;
11023 #ifdef SIGIO
11024 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11025 #ifdef HAVE_X_WINDOWS
11026 if (x_display_list != NULL)
11028 /* When using X, don't give the user a real choice,
11029 because we haven't implemented the mechanisms to support it. */
11030 new_interrupt_input = 1;
11032 else
11033 #endif /* HAVE_X_WINDOWS */
11034 new_interrupt_input = !NILP (interrupt);
11035 #else /* not SIGIO */
11036 new_interrupt_input = 0;
11037 #endif /* not SIGIO */
11039 if (new_interrupt_input != interrupt_input)
11041 #ifdef POLL_FOR_INPUT
11042 stop_polling ();
11043 #endif
11044 #ifndef DOS_NT
11045 /* this causes startup screen to be restored and messes with the mouse */
11046 reset_all_sys_modes ();
11047 interrupt_input = new_interrupt_input;
11048 init_all_sys_modes ();
11049 #else
11050 interrupt_input = new_interrupt_input;
11051 #endif
11053 #ifdef POLL_FOR_INPUT
11054 poll_suppress_count = 1;
11055 start_polling ();
11056 #endif
11058 return Qnil;
11061 DEFUN ("set-output-flow-control", Fset_output_flow_control, Sset_output_flow_control, 1, 2, 0,
11062 doc: /* Enable or disable ^S/^Q flow control for output to TERMINAL.
11063 If FLOW is non-nil, flow control is enabled and you cannot use C-s or
11064 C-q in key sequences.
11066 This setting only has an effect on tty terminals and only when
11067 Emacs reads input in CBREAK mode; see `set-input-interrupt-mode'.
11069 See also `current-input-mode'. */)
11070 (Lisp_Object flow, Lisp_Object terminal)
11072 struct terminal *t = get_terminal (terminal, 1);
11073 struct tty_display_info *tty;
11074 if (t == NULL || (t->type != output_termcap && t->type != output_msdos_raw))
11075 return Qnil;
11076 tty = t->display_info.tty;
11078 if (tty->flow_control != !NILP (flow))
11080 #ifndef DOS_NT
11081 /* this causes startup screen to be restored and messes with the mouse */
11082 reset_sys_modes (tty);
11083 #endif
11085 tty->flow_control = !NILP (flow);
11087 #ifndef DOS_NT
11088 init_sys_modes (tty);
11089 #endif
11091 return Qnil;
11094 DEFUN ("set-input-meta-mode", Fset_input_meta_mode, Sset_input_meta_mode, 1, 2, 0,
11095 doc: /* Enable or disable 8-bit input on TERMINAL.
11096 If META is t, Emacs will accept 8-bit input, and interpret the 8th
11097 bit as the Meta modifier.
11099 If META is nil, Emacs will ignore the top bit, on the assumption it is
11100 parity.
11102 Otherwise, Emacs will accept and pass through 8-bit input without
11103 specially interpreting the top bit.
11105 This setting only has an effect on tty terminal devices.
11107 Optional parameter TERMINAL specifies the tty terminal device to use.
11108 It may be a terminal object, a frame, or nil for the terminal used by
11109 the currently selected frame.
11111 See also `current-input-mode'. */)
11112 (Lisp_Object meta, Lisp_Object terminal)
11114 struct terminal *t = get_terminal (terminal, 1);
11115 struct tty_display_info *tty;
11116 int new_meta;
11118 if (t == NULL || (t->type != output_termcap && t->type != output_msdos_raw))
11119 return Qnil;
11120 tty = t->display_info.tty;
11122 if (NILP (meta))
11123 new_meta = 0;
11124 else if (EQ (meta, Qt))
11125 new_meta = 1;
11126 else
11127 new_meta = 2;
11129 if (tty->meta_key != new_meta)
11131 #ifndef DOS_NT
11132 /* this causes startup screen to be restored and messes with the mouse */
11133 reset_sys_modes (tty);
11134 #endif
11136 tty->meta_key = new_meta;
11138 #ifndef DOS_NT
11139 init_sys_modes (tty);
11140 #endif
11142 return Qnil;
11145 DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_char, 1, 1, 0,
11146 doc: /* Specify character used for quitting.
11147 QUIT must be an ASCII character.
11149 This function only has an effect on the controlling tty of the Emacs
11150 process.
11152 See also `current-input-mode'. */)
11153 (Lisp_Object quit)
11155 struct terminal *t = get_named_tty ("/dev/tty");
11156 struct tty_display_info *tty;
11157 if (t == NULL || (t->type != output_termcap && t->type != output_msdos_raw))
11158 return Qnil;
11159 tty = t->display_info.tty;
11161 if (NILP (quit) || !INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400)
11162 error ("QUIT must be an ASCII character");
11164 #ifndef DOS_NT
11165 /* this causes startup screen to be restored and messes with the mouse */
11166 reset_sys_modes (tty);
11167 #endif
11169 /* Don't let this value be out of range. */
11170 quit_char = XINT (quit) & (tty->meta_key == 0 ? 0177 : 0377);
11172 #ifndef DOS_NT
11173 init_sys_modes (tty);
11174 #endif
11176 return Qnil;
11179 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
11180 doc: /* Set mode of reading keyboard input.
11181 First arg INTERRUPT non-nil means use input interrupts;
11182 nil means use CBREAK mode.
11183 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
11184 (no effect except in CBREAK mode).
11185 Third arg META t means accept 8-bit input (for a Meta key).
11186 META nil means ignore the top bit, on the assumption it is parity.
11187 Otherwise, accept 8-bit input and don't use the top bit for Meta.
11188 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
11189 See also `current-input-mode'. */)
11190 (Lisp_Object interrupt, Lisp_Object flow, Lisp_Object meta, Lisp_Object quit)
11192 Fset_input_interrupt_mode (interrupt);
11193 Fset_output_flow_control (flow, Qnil);
11194 Fset_input_meta_mode (meta, Qnil);
11195 if (!NILP (quit))
11196 Fset_quit_char (quit);
11197 return Qnil;
11200 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
11201 doc: /* Return information about the way Emacs currently reads keyboard input.
11202 The value is a list of the form (INTERRUPT FLOW META QUIT), where
11203 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
11204 nil, Emacs is using CBREAK mode.
11205 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
11206 terminal; this does not apply if Emacs uses interrupt-driven input.
11207 META is t if accepting 8-bit input with 8th bit as Meta flag.
11208 META nil means ignoring the top bit, on the assumption it is parity.
11209 META is neither t nor nil if accepting 8-bit input and using
11210 all 8 bits as the character code.
11211 QUIT is the character Emacs currently uses to quit.
11212 The elements of this list correspond to the arguments of
11213 `set-input-mode'. */)
11214 (void)
11216 Lisp_Object val[4];
11217 struct frame *sf = XFRAME (selected_frame);
11219 val[0] = interrupt_input ? Qt : Qnil;
11220 if (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
11222 val[1] = FRAME_TTY (sf)->flow_control ? Qt : Qnil;
11223 val[2] = (FRAME_TTY (sf)->meta_key == 2
11224 ? make_number (0)
11225 : (CURTTY ()->meta_key == 1 ? Qt : Qnil));
11227 else
11229 val[1] = Qnil;
11230 val[2] = Qt;
11232 XSETFASTINT (val[3], quit_char);
11234 return Flist (sizeof (val) / sizeof (val[0]), val);
11237 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
11238 doc: /* Return position information for pixel coordinates X and Y.
11239 By default, X and Y are relative to text area of the selected window.
11240 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
11241 If optional fourth arg WHOLE is non-nil, X is relative to the left
11242 edge of the window.
11244 The return value is similar to a mouse click position:
11245 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
11246 IMAGE (DX . DY) (WIDTH . HEIGHT))
11247 The `posn-' functions access elements of such lists. */)
11248 (Lisp_Object x, Lisp_Object y, Lisp_Object frame_or_window, Lisp_Object whole)
11250 CHECK_NATNUM (x);
11251 CHECK_NATNUM (y);
11253 if (NILP (frame_or_window))
11254 frame_or_window = selected_window;
11256 if (WINDOWP (frame_or_window))
11258 struct window *w = decode_valid_window (frame_or_window);
11260 XSETINT (x, (XINT (x)
11261 + WINDOW_LEFT_EDGE_X (w)
11262 + (NILP (whole)
11263 ? window_box_left_offset (w, TEXT_AREA)
11264 : 0)));
11265 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
11266 frame_or_window = w->frame;
11269 CHECK_LIVE_FRAME (frame_or_window);
11271 return make_lispy_position (XFRAME (frame_or_window), x, y, 0);
11274 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
11275 doc: /* Return position information for buffer POS in WINDOW.
11276 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
11278 Return nil if position is not visible in window. Otherwise,
11279 the return value is similar to that returned by `event-start' for
11280 a mouse click at the upper left corner of the glyph corresponding
11281 to the given buffer position:
11282 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
11283 IMAGE (DX . DY) (WIDTH . HEIGHT))
11284 The `posn-' functions access elements of such lists. */)
11285 (Lisp_Object pos, Lisp_Object window)
11287 Lisp_Object tem;
11289 if (NILP (window))
11290 window = selected_window;
11292 tem = Fpos_visible_in_window_p (pos, window, Qt);
11293 if (!NILP (tem))
11295 Lisp_Object x = XCAR (tem);
11296 Lisp_Object y = XCAR (XCDR (tem));
11298 /* Point invisible due to hscrolling? */
11299 if (XINT (x) < 0)
11300 return Qnil;
11301 tem = Fposn_at_x_y (x, y, window, Qnil);
11304 return tem;
11309 * Set up a new kboard object with reasonable initial values.
11311 void
11312 init_kboard (KBOARD *kb)
11314 kset_overriding_terminal_local_map (kb, Qnil);
11315 kset_last_command (kb, Qnil);
11316 kset_real_last_command (kb, Qnil);
11317 kset_keyboard_translate_table (kb, Qnil);
11318 kset_last_repeatable_command (kb, Qnil);
11319 kset_prefix_arg (kb, Qnil);
11320 kset_last_prefix_arg (kb, Qnil);
11321 kset_kbd_queue (kb, Qnil);
11322 kb->kbd_queue_has_data = 0;
11323 kb->immediate_echo = 0;
11324 kset_echo_string (kb, Qnil);
11325 kb->echo_after_prompt = -1;
11326 kb->kbd_macro_buffer = 0;
11327 kb->kbd_macro_bufsize = 0;
11328 kset_defining_kbd_macro (kb, Qnil);
11329 kset_last_kbd_macro (kb, Qnil);
11330 kb->reference_count = 0;
11331 kset_system_key_alist (kb, Qnil);
11332 kset_system_key_syms (kb, Qnil);
11333 kset_window_system (kb, Qt); /* Unset. */
11334 kset_input_decode_map (kb, Fmake_sparse_keymap (Qnil));
11335 kset_local_function_key_map (kb, Fmake_sparse_keymap (Qnil));
11336 Fset_keymap_parent (KVAR (kb, Vlocal_function_key_map), Vfunction_key_map);
11337 kset_default_minibuffer_frame (kb, Qnil);
11341 * Destroy the contents of a kboard object, but not the object itself.
11342 * We use this just before deleting it, or if we're going to initialize
11343 * it a second time.
11345 static void
11346 wipe_kboard (KBOARD *kb)
11348 xfree (kb->kbd_macro_buffer);
11351 /* Free KB and memory referenced from it. */
11353 void
11354 delete_kboard (KBOARD *kb)
11356 KBOARD **kbp;
11358 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
11359 if (*kbp == NULL)
11360 abort ();
11361 *kbp = kb->next_kboard;
11363 /* Prevent a dangling reference to KB. */
11364 if (kb == current_kboard
11365 && FRAMEP (selected_frame)
11366 && FRAME_LIVE_P (XFRAME (selected_frame)))
11368 current_kboard = FRAME_KBOARD (XFRAME (selected_frame));
11369 single_kboard = 0;
11370 if (current_kboard == kb)
11371 abort ();
11374 wipe_kboard (kb);
11375 xfree (kb);
11378 void
11379 init_keyboard (void)
11381 /* This is correct before outermost invocation of the editor loop */
11382 command_loop_level = -1;
11383 immediate_quit = 0;
11384 quit_char = Ctl ('g');
11385 Vunread_command_events = Qnil;
11386 unread_command_char = -1;
11387 timer_idleness_start_time = invalid_emacs_time ();
11388 total_keys = 0;
11389 recent_keys_index = 0;
11390 kbd_fetch_ptr = kbd_buffer;
11391 kbd_store_ptr = kbd_buffer;
11392 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11393 do_mouse_tracking = Qnil;
11394 #endif
11395 input_pending = 0;
11396 interrupt_input_blocked = 0;
11397 interrupt_input_pending = 0;
11398 #ifdef SYNC_INPUT
11399 pending_signals = 0;
11400 #endif
11402 /* This means that command_loop_1 won't try to select anything the first
11403 time through. */
11404 internal_last_event_frame = Qnil;
11405 Vlast_event_frame = internal_last_event_frame;
11407 current_kboard = initial_kboard;
11408 /* Re-initialize the keyboard again. */
11409 wipe_kboard (current_kboard);
11410 init_kboard (current_kboard);
11411 /* A value of nil for Vwindow_system normally means a tty, but we also use
11412 it for the initial terminal since there is no window system there. */
11413 kset_window_system (current_kboard, Qnil);
11415 if (!noninteractive)
11417 /* Before multi-tty support, these handlers used to be installed
11418 only if the current session was a tty session. Now an Emacs
11419 session may have multiple display types, so we always handle
11420 SIGINT. There is special code in interrupt_signal to exit
11421 Emacs on SIGINT when there are no termcap frames on the
11422 controlling terminal. */
11423 signal (SIGINT, interrupt_signal);
11424 #ifndef DOS_NT
11425 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
11426 SIGQUIT and we can't tell which one it will give us. */
11427 signal (SIGQUIT, interrupt_signal);
11428 #endif /* not DOS_NT */
11430 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11431 #ifdef SIGIO
11432 if (!noninteractive)
11433 signal (SIGIO, input_available_signal);
11434 #endif /* SIGIO */
11436 /* Use interrupt input by default, if it works and noninterrupt input
11437 has deficiencies. */
11439 #ifdef INTERRUPT_INPUT
11440 interrupt_input = 1;
11441 #else
11442 interrupt_input = 0;
11443 #endif
11445 sigfree ();
11446 dribble = 0;
11448 if (keyboard_init_hook)
11449 (*keyboard_init_hook) ();
11451 #ifdef POLL_FOR_INPUT
11452 poll_timer = NULL;
11453 poll_suppress_count = 1;
11454 start_polling ();
11455 #endif
11458 /* This type's only use is in syms_of_keyboard, to initialize the
11459 event header symbols and put properties on them. */
11460 struct event_head {
11461 Lisp_Object *var;
11462 const char *name;
11463 Lisp_Object *kind;
11466 static const struct event_head head_table[] = {
11467 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
11468 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
11469 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
11470 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
11471 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
11472 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
11473 /* `select-window' should be handled just like `switch-frame'
11474 in read_key_sequence. */
11475 {&Qselect_window, "select-window", &Qswitch_frame}
11478 void
11479 syms_of_keyboard (void)
11481 pending_funcalls = Qnil;
11482 staticpro (&pending_funcalls);
11484 Vlispy_mouse_stem = build_pure_c_string ("mouse");
11485 staticpro (&Vlispy_mouse_stem);
11487 /* Tool-bars. */
11488 DEFSYM (QCimage, ":image");
11489 DEFSYM (Qhelp_echo, "help-echo");
11490 DEFSYM (QCrtl, ":rtl");
11492 staticpro (&item_properties);
11493 item_properties = Qnil;
11495 staticpro (&tool_bar_item_properties);
11496 tool_bar_item_properties = Qnil;
11497 staticpro (&tool_bar_items_vector);
11498 tool_bar_items_vector = Qnil;
11500 DEFSYM (Qtimer_event_handler, "timer-event-handler");
11501 DEFSYM (Qdisabled_command_function, "disabled-command-function");
11502 DEFSYM (Qself_insert_command, "self-insert-command");
11503 DEFSYM (Qforward_char, "forward-char");
11504 DEFSYM (Qbackward_char, "backward-char");
11505 DEFSYM (Qdisabled, "disabled");
11506 DEFSYM (Qundefined, "undefined");
11507 DEFSYM (Qpre_command_hook, "pre-command-hook");
11508 DEFSYM (Qpost_command_hook, "post-command-hook");
11509 DEFSYM (Qdeferred_action_function, "deferred-action-function");
11510 DEFSYM (Qdelayed_warnings_hook, "delayed-warnings-hook");
11511 DEFSYM (Qfunction_key, "function-key");
11512 DEFSYM (Qmouse_click, "mouse-click");
11513 DEFSYM (Qdrag_n_drop, "drag-n-drop");
11514 DEFSYM (Qsave_session, "save-session");
11515 DEFSYM (Qconfig_changed_event, "config-changed-event");
11516 DEFSYM (Qmenu_enable, "menu-enable");
11518 #if defined (WINDOWSNT)
11519 DEFSYM (Qlanguage_change, "language-change");
11520 #endif
11522 #ifdef HAVE_DBUS
11523 DEFSYM (Qdbus_event, "dbus-event");
11524 #endif
11526 DEFSYM (QCenable, ":enable");
11527 DEFSYM (QCvisible, ":visible");
11528 DEFSYM (QChelp, ":help");
11529 DEFSYM (QCfilter, ":filter");
11530 DEFSYM (QCbutton, ":button");
11531 DEFSYM (QCkeys, ":keys");
11532 DEFSYM (QCkey_sequence, ":key-sequence");
11533 DEFSYM (QCtoggle, ":toggle");
11534 DEFSYM (QCradio, ":radio");
11535 DEFSYM (QClabel, ":label");
11536 DEFSYM (QCvert_only, ":vert-only");
11538 DEFSYM (Qmode_line, "mode-line");
11539 DEFSYM (Qvertical_line, "vertical-line");
11540 DEFSYM (Qvertical_scroll_bar, "vertical-scroll-bar");
11541 DEFSYM (Qmenu_bar, "menu-bar");
11543 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11544 DEFSYM (Qmouse_fixup_help_message, "mouse-fixup-help-message");
11545 #endif
11547 DEFSYM (Qabove_handle, "above-handle");
11548 DEFSYM (Qhandle, "handle");
11549 DEFSYM (Qbelow_handle, "below-handle");
11550 DEFSYM (Qup, "up");
11551 DEFSYM (Qdown, "down");
11552 DEFSYM (Qtop, "top");
11553 DEFSYM (Qbottom, "bottom");
11554 DEFSYM (Qend_scroll, "end-scroll");
11555 DEFSYM (Qratio, "ratio");
11557 DEFSYM (Qevent_kind, "event-kind");
11558 DEFSYM (Qevent_symbol_elements, "event-symbol-elements");
11559 DEFSYM (Qevent_symbol_element_mask, "event-symbol-element-mask");
11560 DEFSYM (Qmodifier_cache, "modifier-cache");
11562 DEFSYM (Qrecompute_lucid_menubar, "recompute-lucid-menubar");
11563 DEFSYM (Qactivate_menubar_hook, "activate-menubar-hook");
11565 DEFSYM (Qpolling_period, "polling-period");
11567 DEFSYM (Qx_set_selection, "x-set-selection");
11568 DEFSYM (QPRIMARY, "PRIMARY");
11569 DEFSYM (Qhandle_switch_frame, "handle-switch-frame");
11570 DEFSYM (Qhandle_select_window, "handle-select-window");
11572 DEFSYM (Qinput_method_function, "input-method-function");
11573 DEFSYM (Qinput_method_exit_on_first_char, "input-method-exit-on-first-char");
11574 DEFSYM (Qinput_method_use_echo_area, "input-method-use-echo-area");
11576 DEFSYM (Qhelp_form_show, "help-form-show");
11578 Fset (Qinput_method_exit_on_first_char, Qnil);
11579 Fset (Qinput_method_use_echo_area, Qnil);
11581 last_point_position_buffer = Qnil;
11582 last_point_position_window = Qnil;
11585 int i;
11586 int len = sizeof (head_table) / sizeof (head_table[0]);
11588 for (i = 0; i < len; i++)
11590 const struct event_head *p = &head_table[i];
11591 *p->var = intern_c_string (p->name);
11592 staticpro (p->var);
11593 Fput (*p->var, Qevent_kind, *p->kind);
11594 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
11598 button_down_location = Fmake_vector (make_number (5), Qnil);
11599 staticpro (&button_down_location);
11600 mouse_syms = Fmake_vector (make_number (5), Qnil);
11601 staticpro (&mouse_syms);
11602 wheel_syms = Fmake_vector (make_number (sizeof (lispy_wheel_names)
11603 / sizeof (lispy_wheel_names[0])),
11604 Qnil);
11605 staticpro (&wheel_syms);
11608 int i;
11609 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
11611 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11612 for (i = 0; i < len; i++)
11613 if (modifier_names[i])
11614 ASET (modifier_symbols, i, intern_c_string (modifier_names[i]));
11615 staticpro (&modifier_symbols);
11618 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11619 staticpro (&recent_keys);
11621 this_command_keys = Fmake_vector (make_number (40), Qnil);
11622 staticpro (&this_command_keys);
11624 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11625 staticpro (&raw_keybuf);
11627 DEFSYM (Qextended_command_history, "extended-command-history");
11628 Fset (Qextended_command_history, Qnil);
11630 accent_key_syms = Qnil;
11631 staticpro (&accent_key_syms);
11633 func_key_syms = Qnil;
11634 staticpro (&func_key_syms);
11636 drag_n_drop_syms = Qnil;
11637 staticpro (&drag_n_drop_syms);
11639 unread_switch_frame = Qnil;
11640 staticpro (&unread_switch_frame);
11642 internal_last_event_frame = Qnil;
11643 staticpro (&internal_last_event_frame);
11645 read_key_sequence_cmd = Qnil;
11646 staticpro (&read_key_sequence_cmd);
11647 read_key_sequence_remapped = Qnil;
11648 staticpro (&read_key_sequence_remapped);
11650 menu_bar_one_keymap_changed_items = Qnil;
11651 staticpro (&menu_bar_one_keymap_changed_items);
11653 menu_bar_items_vector = Qnil;
11654 staticpro (&menu_bar_items_vector);
11656 help_form_saved_window_configs = Qnil;
11657 staticpro (&help_form_saved_window_configs);
11659 defsubr (&Scurrent_idle_time);
11660 defsubr (&Sevent_symbol_parse_modifiers);
11661 defsubr (&Sevent_convert_list);
11662 defsubr (&Sread_key_sequence);
11663 defsubr (&Sread_key_sequence_vector);
11664 defsubr (&Srecursive_edit);
11665 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11666 defsubr (&Strack_mouse);
11667 #endif
11668 defsubr (&Sinput_pending_p);
11669 defsubr (&Scommand_execute);
11670 defsubr (&Srecent_keys);
11671 defsubr (&Sthis_command_keys);
11672 defsubr (&Sthis_command_keys_vector);
11673 defsubr (&Sthis_single_command_keys);
11674 defsubr (&Sthis_single_command_raw_keys);
11675 defsubr (&Sreset_this_command_lengths);
11676 defsubr (&Sclear_this_command_keys);
11677 defsubr (&Ssuspend_emacs);
11678 defsubr (&Sabort_recursive_edit);
11679 defsubr (&Sexit_recursive_edit);
11680 defsubr (&Srecursion_depth);
11681 defsubr (&Stop_level);
11682 defsubr (&Sdiscard_input);
11683 defsubr (&Sopen_dribble_file);
11684 defsubr (&Sset_input_interrupt_mode);
11685 defsubr (&Sset_output_flow_control);
11686 defsubr (&Sset_input_meta_mode);
11687 defsubr (&Sset_quit_char);
11688 defsubr (&Sset_input_mode);
11689 defsubr (&Scurrent_input_mode);
11690 defsubr (&Sposn_at_point);
11691 defsubr (&Sposn_at_x_y);
11693 DEFVAR_LISP ("last-command-event", last_command_event,
11694 doc: /* Last input event that was part of a command. */);
11696 DEFVAR_LISP ("last-nonmenu-event", last_nonmenu_event,
11697 doc: /* Last input event in a command, except for mouse menu events.
11698 Mouse menus give back keys that don't look like mouse events;
11699 this variable holds the actual mouse event that led to the menu,
11700 so that you can determine whether the command was run by mouse or not. */);
11702 DEFVAR_LISP ("last-input-event", last_input_event,
11703 doc: /* Last input event. */);
11705 DEFVAR_LISP ("unread-command-events", Vunread_command_events,
11706 doc: /* List of events to be read as the command input.
11707 These events are processed first, before actual keyboard input.
11708 Events read from this list are not normally added to `this-command-keys',
11709 as they will already have been added once as they were read for the first time.
11710 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11711 Vunread_command_events = Qnil;
11713 DEFVAR_INT ("unread-command-char", unread_command_char,
11714 doc: /* If not -1, an object to be read as next command input event. */);
11716 DEFVAR_LISP ("unread-post-input-method-events", Vunread_post_input_method_events,
11717 doc: /* List of events to be processed as input by input methods.
11718 These events are processed before `unread-command-events'
11719 and actual keyboard input, but are not given to `input-method-function'. */);
11720 Vunread_post_input_method_events = Qnil;
11722 DEFVAR_LISP ("unread-input-method-events", Vunread_input_method_events,
11723 doc: /* List of events to be processed as input by input methods.
11724 These events are processed after `unread-command-events', but
11725 before actual keyboard input.
11726 If there's an active input method, the events are given to
11727 `input-method-function'. */);
11728 Vunread_input_method_events = Qnil;
11730 DEFVAR_LISP ("meta-prefix-char", meta_prefix_char,
11731 doc: /* Meta-prefix character code.
11732 Meta-foo as command input turns into this character followed by foo. */);
11733 XSETINT (meta_prefix_char, 033);
11735 DEFVAR_KBOARD ("last-command", Vlast_command,
11736 doc: /* The last command executed.
11737 Normally a symbol with a function definition, but can be whatever was found
11738 in the keymap, or whatever the variable `this-command' was set to by that
11739 command.
11741 The value `mode-exit' is special; it means that the previous command
11742 read an event that told it to exit, and it did so and unread that event.
11743 In other words, the present command is the event that made the previous
11744 command exit.
11746 The value `kill-region' is special; it means that the previous command
11747 was a kill command.
11749 `last-command' has a separate binding for each terminal device.
11750 See Info node `(elisp)Multiple Terminals'. */);
11752 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11753 doc: /* Same as `last-command', but never altered by Lisp code.
11754 Taken from the previous value of `real-this-command'. */);
11756 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command,
11757 doc: /* Last command that may be repeated.
11758 The last command executed that was not bound to an input event.
11759 This is the command `repeat' will try to repeat.
11760 Taken from a previous value of `real-this-command'. */);
11762 DEFVAR_LISP ("this-command", Vthis_command,
11763 doc: /* The command now being executed.
11764 The command can set this variable; whatever is put here
11765 will be in `last-command' during the following command. */);
11766 Vthis_command = Qnil;
11768 DEFVAR_LISP ("real-this-command", Vreal_this_command,
11769 doc: /* This is like `this-command', except that commands should never modify it. */);
11770 Vreal_this_command = Qnil;
11772 DEFVAR_LISP ("this-command-keys-shift-translated",
11773 Vthis_command_keys_shift_translated,
11774 doc: /* Non-nil if the key sequence activating this command was shift-translated.
11775 Shift-translation occurs when there is no binding for the key sequence
11776 as entered, but a binding was found by changing an upper-case letter
11777 to lower-case, or a shifted function key to an unshifted one. */);
11778 Vthis_command_keys_shift_translated = Qnil;
11780 DEFVAR_LISP ("this-original-command", Vthis_original_command,
11781 doc: /* The command bound to the current key sequence before remapping.
11782 It equals `this-command' if the original command was not remapped through
11783 any of the active keymaps. Otherwise, the value of `this-command' is the
11784 result of looking up the original command in the active keymaps. */);
11785 Vthis_original_command = Qnil;
11787 DEFVAR_INT ("auto-save-interval", auto_save_interval,
11788 doc: /* Number of input events between auto-saves.
11789 Zero means disable autosaving due to number of characters typed. */);
11790 auto_save_interval = 300;
11792 DEFVAR_LISP ("auto-save-timeout", Vauto_save_timeout,
11793 doc: /* Number of seconds idle time before auto-save.
11794 Zero or nil means disable auto-saving due to idleness.
11795 After auto-saving due to this many seconds of idle time,
11796 Emacs also does a garbage collection if that seems to be warranted. */);
11797 XSETFASTINT (Vauto_save_timeout, 30);
11799 DEFVAR_LISP ("echo-keystrokes", Vecho_keystrokes,
11800 doc: /* Nonzero means echo unfinished commands after this many seconds of pause.
11801 The value may be integer or floating point.
11802 If the value is zero, don't echo at all. */);
11803 Vecho_keystrokes = make_number (1);
11805 DEFVAR_INT ("polling-period", polling_period,
11806 doc: /* Interval between polling for input during Lisp execution.
11807 The reason for polling is to make C-g work to stop a running program.
11808 Polling is needed only when using X windows and SIGIO does not work.
11809 Polling is automatically disabled in all other cases. */);
11810 polling_period = 2;
11812 DEFVAR_LISP ("double-click-time", Vdouble_click_time,
11813 doc: /* Maximum time between mouse clicks to make a double-click.
11814 Measured in milliseconds. The value nil means disable double-click
11815 recognition; t means double-clicks have no time limit and are detected
11816 by position only. */);
11817 Vdouble_click_time = make_number (500);
11819 DEFVAR_INT ("double-click-fuzz", double_click_fuzz,
11820 doc: /* Maximum mouse movement between clicks to make a double-click.
11821 On window-system frames, value is the number of pixels the mouse may have
11822 moved horizontally or vertically between two clicks to make a double-click.
11823 On non window-system frames, value is interpreted in units of 1/8 characters
11824 instead of pixels.
11826 This variable is also the threshold for motion of the mouse
11827 to count as a drag. */);
11828 double_click_fuzz = 3;
11830 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", inhibit_local_menu_bar_menus,
11831 doc: /* Non-nil means inhibit local map menu bar menus. */);
11832 inhibit_local_menu_bar_menus = 0;
11834 DEFVAR_INT ("num-input-keys", num_input_keys,
11835 doc: /* Number of complete key sequences read as input so far.
11836 This includes key sequences read from keyboard macros.
11837 The number is effectively the number of interactive command invocations. */);
11838 num_input_keys = 0;
11840 DEFVAR_INT ("num-nonmacro-input-events", num_nonmacro_input_events,
11841 doc: /* Number of input events read from the keyboard so far.
11842 This does not include events generated by keyboard macros. */);
11843 num_nonmacro_input_events = 0;
11845 DEFVAR_LISP ("last-event-frame", Vlast_event_frame,
11846 doc: /* The frame in which the most recently read event occurred.
11847 If the last event came from a keyboard macro, this is set to `macro'. */);
11848 Vlast_event_frame = Qnil;
11850 /* This variable is set up in sysdep.c. */
11851 DEFVAR_LISP ("tty-erase-char", Vtty_erase_char,
11852 doc: /* The ERASE character as set by the user with stty. */);
11854 DEFVAR_LISP ("help-char", Vhelp_char,
11855 doc: /* Character to recognize as meaning Help.
11856 When it is read, do `(eval help-form)', and display result if it's a string.
11857 If the value of `help-form' is nil, this char can be read normally. */);
11858 XSETINT (Vhelp_char, Ctl ('H'));
11860 DEFVAR_LISP ("help-event-list", Vhelp_event_list,
11861 doc: /* List of input events to recognize as meaning Help.
11862 These work just like the value of `help-char' (see that). */);
11863 Vhelp_event_list = Qnil;
11865 DEFVAR_LISP ("help-form", Vhelp_form,
11866 doc: /* Form to execute when character `help-char' is read.
11867 If the form returns a string, that string is displayed.
11868 If `help-form' is nil, the help char is not recognized. */);
11869 Vhelp_form = Qnil;
11871 DEFVAR_LISP ("prefix-help-command", Vprefix_help_command,
11872 doc: /* Command to run when `help-char' character follows a prefix key.
11873 This command is used only when there is no actual binding
11874 for that character after that prefix key. */);
11875 Vprefix_help_command = Qnil;
11877 DEFVAR_LISP ("top-level", Vtop_level,
11878 doc: /* Form to evaluate when Emacs starts up.
11879 Useful to set before you dump a modified Emacs. */);
11880 Vtop_level = Qnil;
11882 DEFVAR_KBOARD ("keyboard-translate-table", Vkeyboard_translate_table,
11883 doc: /* Translate table for local keyboard input, or nil.
11884 If non-nil, the value should be a char-table. Each character read
11885 from the keyboard is looked up in this char-table. If the value found
11886 there is non-nil, then it is used instead of the actual input character.
11888 The value can also be a string or vector, but this is considered obsolete.
11889 If it is a string or vector of length N, character codes N and up are left
11890 untranslated. In a vector, an element which is nil means "no translation".
11892 This is applied to the characters supplied to input methods, not their
11893 output. See also `translation-table-for-input'.
11895 This variable has a separate binding for each terminal.
11896 See Info node `(elisp)Multiple Terminals'. */);
11898 DEFVAR_BOOL ("cannot-suspend", cannot_suspend,
11899 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11900 \(Even if the operating system has support for stopping a process.\) */);
11901 cannot_suspend = 0;
11903 DEFVAR_BOOL ("menu-prompting", menu_prompting,
11904 doc: /* Non-nil means prompt with menus when appropriate.
11905 This is done when reading from a keymap that has a prompt string,
11906 for elements that have prompt strings.
11907 The menu is displayed on the screen
11908 if X menus were enabled at configuration
11909 time and the previous event was a mouse click prefix key.
11910 Otherwise, menu prompting uses the echo area. */);
11911 menu_prompting = 1;
11913 DEFVAR_LISP ("menu-prompt-more-char", menu_prompt_more_char,
11914 doc: /* Character to see next line of menu prompt.
11915 Type this character while in a menu prompt to rotate around the lines of it. */);
11916 XSETINT (menu_prompt_more_char, ' ');
11918 DEFVAR_INT ("extra-keyboard-modifiers", extra_keyboard_modifiers,
11919 doc: /* A mask of additional modifier keys to use with every keyboard character.
11920 Emacs applies the modifiers of the character stored here to each keyboard
11921 character it reads. For example, after evaluating the expression
11922 (setq extra-keyboard-modifiers ?\\C-x)
11923 all input characters will have the control modifier applied to them.
11925 Note that the character ?\\C-@, equivalent to the integer zero, does
11926 not count as a control character; rather, it counts as a character
11927 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11928 cancels any modification. */);
11929 extra_keyboard_modifiers = 0;
11931 DEFVAR_LISP ("deactivate-mark", Vdeactivate_mark,
11932 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11933 The command loop sets this to nil before each command,
11934 and tests the value when the command returns.
11935 Buffer modification stores t in this variable. */);
11936 Vdeactivate_mark = Qnil;
11937 DEFSYM (Qdeactivate_mark, "deactivate-mark");
11939 DEFVAR_LISP ("pre-command-hook", Vpre_command_hook,
11940 doc: /* Normal hook run before each command is executed.
11941 If an unhandled error happens in running this hook,
11942 the function in which the error occurred is unconditionally removed, since
11943 otherwise the error might happen repeatedly and make Emacs nonfunctional. */);
11944 Vpre_command_hook = Qnil;
11946 DEFVAR_LISP ("post-command-hook", Vpost_command_hook,
11947 doc: /* Normal hook run after each command is executed.
11948 If an unhandled error happens in running this hook,
11949 the function in which the error occurred is unconditionally removed, since
11950 otherwise the error might happen repeatedly and make Emacs nonfunctional. */);
11951 Vpost_command_hook = Qnil;
11953 #if 0
11954 DEFVAR_LISP ("echo-area-clear-hook", ...,
11955 doc: /* Normal hook run when clearing the echo area. */);
11956 #endif
11957 DEFSYM (Qecho_area_clear_hook, "echo-area-clear-hook");
11958 Fset (Qecho_area_clear_hook, Qnil);
11960 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", Vlucid_menu_bar_dirty_flag,
11961 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11962 Vlucid_menu_bar_dirty_flag = Qnil;
11964 DEFVAR_LISP ("menu-bar-final-items", Vmenu_bar_final_items,
11965 doc: /* List of menu bar items to move to the end of the menu bar.
11966 The elements of the list are event types that may have menu bar bindings. */);
11967 Vmenu_bar_final_items = Qnil;
11969 DEFVAR_LISP ("tool-bar-separator-image-expression", Vtool_bar_separator_image_expression,
11970 doc: /* Expression evaluating to the image spec for a tool-bar separator.
11971 This is used internally by graphical displays that do not render
11972 tool-bar separators natively. Otherwise it is unused (e.g. on GTK). */);
11973 Vtool_bar_separator_image_expression = Qnil;
11975 DEFVAR_KBOARD ("overriding-terminal-local-map",
11976 Voverriding_terminal_local_map,
11977 doc: /* Per-terminal keymap that overrides all other local keymaps.
11978 If this variable is non-nil, it is used as a keymap instead of the
11979 buffer's local map, and the minor mode keymaps and text property keymaps.
11980 It also replaces `overriding-local-map'.
11982 This variable is intended to let commands such as `universal-argument'
11983 set up a different keymap for reading the next command.
11985 `overriding-terminal-local-map' has a separate binding for each
11986 terminal device.
11987 See Info node `(elisp)Multiple Terminals'. */);
11989 DEFVAR_LISP ("overriding-local-map", Voverriding_local_map,
11990 doc: /* Keymap that overrides all other local keymaps.
11991 If this variable is non-nil, it is used as a keymap--replacing the
11992 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11993 Voverriding_local_map = Qnil;
11995 DEFVAR_LISP ("overriding-local-map-menu-flag", Voverriding_local_map_menu_flag,
11996 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11997 Otherwise, the menu bar continues to reflect the buffer's local map
11998 and the minor mode maps regardless of `overriding-local-map'. */);
11999 Voverriding_local_map_menu_flag = Qnil;
12001 DEFVAR_LISP ("special-event-map", Vspecial_event_map,
12002 doc: /* Keymap defining bindings for special events to execute at low level. */);
12003 Vspecial_event_map = Fcons (intern_c_string ("keymap"), Qnil);
12005 DEFVAR_LISP ("track-mouse", do_mouse_tracking,
12006 doc: /* Non-nil means generate motion events for mouse motion. */);
12008 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
12009 doc: /* Alist of system-specific X windows key symbols.
12010 Each element should have the form (N . SYMBOL) where N is the
12011 numeric keysym code (sans the \"system-specific\" bit 1<<28)
12012 and SYMBOL is its name.
12014 `system-key-alist' has a separate binding for each terminal device.
12015 See Info node `(elisp)Multiple Terminals'. */);
12017 DEFVAR_KBOARD ("local-function-key-map", Vlocal_function_key_map,
12018 doc: /* Keymap that translates key sequences to key sequences during input.
12019 This is used mainly for mapping key sequences into some preferred
12020 key events (symbols).
12022 The `read-key-sequence' function replaces any subsequence bound by
12023 `local-function-key-map' with its binding. More precisely, when the
12024 active keymaps have no binding for the current key sequence but
12025 `local-function-key-map' binds a suffix of the sequence to a vector or
12026 string, `read-key-sequence' replaces the matching suffix with its
12027 binding, and continues with the new sequence.
12029 If the binding is a function, it is called with one argument (the prompt)
12030 and its return value (a key sequence) is used.
12032 The events that come from bindings in `local-function-key-map' are not
12033 themselves looked up in `local-function-key-map'.
12035 For example, suppose `local-function-key-map' binds `ESC O P' to [f1].
12036 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing
12037 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix key,
12038 typing `ESC O P x' would return [f1 x].
12040 `local-function-key-map' has a separate binding for each terminal
12041 device. See Info node `(elisp)Multiple Terminals'. If you need to
12042 define a binding on all terminals, change `function-key-map'
12043 instead. Initially, `local-function-key-map' is an empty keymap that
12044 has `function-key-map' as its parent on all terminal devices. */);
12046 DEFVAR_KBOARD ("input-decode-map", Vinput_decode_map,
12047 doc: /* Keymap that decodes input escape sequences.
12048 This is used mainly for mapping ASCII function key sequences into
12049 real Emacs function key events (symbols).
12051 The `read-key-sequence' function replaces any subsequence bound by
12052 `input-decode-map' with its binding. Contrary to `function-key-map',
12053 this map applies its rebinding regardless of the presence of an ordinary
12054 binding. So it is more like `key-translation-map' except that it applies
12055 before `function-key-map' rather than after.
12057 If the binding is a function, it is called with one argument (the prompt)
12058 and its return value (a key sequence) is used.
12060 The events that come from bindings in `input-decode-map' are not
12061 themselves looked up in `input-decode-map'.
12063 This variable is keyboard-local. */);
12065 DEFVAR_LISP ("function-key-map", Vfunction_key_map,
12066 doc: /* The parent keymap of all `local-function-key-map' instances.
12067 Function key definitions that apply to all terminal devices should go
12068 here. If a mapping is defined in both the current
12069 `local-function-key-map' binding and this variable, then the local
12070 definition will take precedence. */);
12071 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
12073 DEFVAR_LISP ("key-translation-map", Vkey_translation_map,
12074 doc: /* Keymap of key translations that can override keymaps.
12075 This keymap works like `function-key-map', but comes after that,
12076 and its non-prefix bindings override ordinary bindings.
12077 Another difference is that it is global rather than keyboard-local. */);
12078 Vkey_translation_map = Fmake_sparse_keymap (Qnil);
12080 DEFVAR_LISP ("deferred-action-list", Vdeferred_action_list,
12081 doc: /* List of deferred actions to be performed at a later time.
12082 The precise format isn't relevant here; we just check whether it is nil. */);
12083 Vdeferred_action_list = Qnil;
12085 DEFVAR_LISP ("deferred-action-function", Vdeferred_action_function,
12086 doc: /* Function to call to handle deferred actions, after each command.
12087 This function is called with no arguments after each command
12088 whenever `deferred-action-list' is non-nil. */);
12089 Vdeferred_action_function = Qnil;
12091 DEFVAR_LISP ("delayed-warnings-list", Vdelayed_warnings_list,
12092 doc: /* List of warnings to be displayed after this command.
12093 Each element must be a list (TYPE MESSAGE [LEVEL [BUFFER-NAME]]),
12094 as per the args of `display-warning' (which see).
12095 If this variable is non-nil, `delayed-warnings-hook' will be run
12096 immediately after running `post-command-hook'. */);
12097 Vdelayed_warnings_list = Qnil;
12099 DEFVAR_LISP ("timer-list", Vtimer_list,
12100 doc: /* List of active absolute time timers in order of increasing time. */);
12101 Vtimer_list = Qnil;
12103 DEFVAR_LISP ("timer-idle-list", Vtimer_idle_list,
12104 doc: /* List of active idle-time timers in order of increasing time. */);
12105 Vtimer_idle_list = Qnil;
12107 DEFVAR_LISP ("input-method-function", Vinput_method_function,
12108 doc: /* If non-nil, the function that implements the current input method.
12109 It's called with one argument, a printing character that was just read.
12110 \(That means a character with code 040...0176.)
12111 Typically this function uses `read-event' to read additional events.
12112 When it does so, it should first bind `input-method-function' to nil
12113 so it will not be called recursively.
12115 The function should return a list of zero or more events
12116 to be used as input. If it wants to put back some events
12117 to be reconsidered, separately, by the input method,
12118 it can add them to the beginning of `unread-command-events'.
12120 The input method function can find in `input-method-previous-message'
12121 the previous echo area message.
12123 The input method function should refer to the variables
12124 `input-method-use-echo-area' and `input-method-exit-on-first-char'
12125 for guidance on what to do. */);
12126 Vinput_method_function = Qnil;
12128 DEFVAR_LISP ("input-method-previous-message",
12129 Vinput_method_previous_message,
12130 doc: /* When `input-method-function' is called, hold the previous echo area message.
12131 This variable exists because `read-event' clears the echo area
12132 before running the input method. It is nil if there was no message. */);
12133 Vinput_method_previous_message = Qnil;
12135 DEFVAR_LISP ("show-help-function", Vshow_help_function,
12136 doc: /* If non-nil, the function that implements the display of help.
12137 It's called with one argument, the help string to display. */);
12138 Vshow_help_function = Qnil;
12140 DEFVAR_LISP ("disable-point-adjustment", Vdisable_point_adjustment,
12141 doc: /* If non-nil, suppress point adjustment after executing a command.
12143 After a command is executed, if point is moved into a region that has
12144 special properties (e.g. composition, display), we adjust point to
12145 the boundary of the region. But, when a command sets this variable to
12146 non-nil, we suppress the point adjustment.
12148 This variable is set to nil before reading a command, and is checked
12149 just after executing the command. */);
12150 Vdisable_point_adjustment = Qnil;
12152 DEFVAR_LISP ("global-disable-point-adjustment",
12153 Vglobal_disable_point_adjustment,
12154 doc: /* If non-nil, always suppress point adjustment.
12156 The default value is nil, in which case, point adjustment are
12157 suppressed only after special commands that set
12158 `disable-point-adjustment' (which see) to non-nil. */);
12159 Vglobal_disable_point_adjustment = Qnil;
12161 DEFVAR_LISP ("minibuffer-message-timeout", Vminibuffer_message_timeout,
12162 doc: /* How long to display an echo-area message when the minibuffer is active.
12163 If the value is not a number, such messages don't time out. */);
12164 Vminibuffer_message_timeout = make_number (2);
12166 DEFVAR_LISP ("throw-on-input", Vthrow_on_input,
12167 doc: /* If non-nil, any keyboard input throws to this symbol.
12168 The value of that variable is passed to `quit-flag' and later causes a
12169 peculiar kind of quitting. */);
12170 Vthrow_on_input = Qnil;
12172 DEFVAR_LISP ("command-error-function", Vcommand_error_function,
12173 doc: /* If non-nil, function to output error messages.
12174 The arguments are the error data, a list of the form
12175 (SIGNALED-CONDITIONS . SIGNAL-DATA)
12176 such as just as `condition-case' would bind its variable to,
12177 the context (a string which normally goes at the start of the message),
12178 and the Lisp function within which the error was signaled. */);
12179 Vcommand_error_function = Qnil;
12181 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
12182 Venable_disabled_menus_and_buttons,
12183 doc: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
12185 Help functions bind this to allow help on disabled menu items
12186 and tool-bar buttons. */);
12187 Venable_disabled_menus_and_buttons = Qnil;
12189 DEFVAR_LISP ("select-active-regions",
12190 Vselect_active_regions,
12191 doc: /* If non-nil, an active region automatically sets the primary selection.
12192 If the value is `only', only temporarily active regions (usually made
12193 by mouse-dragging or shift-selection) set the window selection.
12195 This takes effect only when Transient Mark mode is enabled. */);
12196 Vselect_active_regions = Qt;
12198 DEFVAR_LISP ("saved-region-selection",
12199 Vsaved_region_selection,
12200 doc: /* Contents of active region prior to buffer modification.
12201 If `select-active-regions' is non-nil, Emacs sets this to the
12202 text in the region before modifying the buffer. The next
12203 `deactivate-mark' call uses this to set the window selection. */);
12204 Vsaved_region_selection = Qnil;
12206 DEFVAR_LISP ("selection-inhibit-update-commands",
12207 Vselection_inhibit_update_commands,
12208 doc: /* List of commands which should not update the selection.
12209 Normally, if `select-active-regions' is non-nil and the mark remains
12210 active after a command (i.e. the mark was not deactivated), the Emacs
12211 command loop sets the selection to the text in the region. However,
12212 if the command is in this list, the selection is not updated. */);
12213 Vselection_inhibit_update_commands
12214 = list2 (Qhandle_switch_frame, Qhandle_select_window);
12216 DEFVAR_LISP ("debug-on-event",
12217 Vdebug_on_event,
12218 doc: /* Enter debugger on this event. When Emacs
12219 receives the special event specified by this variable, it will try to
12220 break into the debugger as soon as possible instead of processing the
12221 event normally through `special-event-map'.
12223 Currently, the only supported values for this
12224 variable are `sigusr1' and `sigusr2'. */);
12225 Vdebug_on_event = intern_c_string ("sigusr2");
12227 /* Create the initial keyboard. */
12228 initial_kboard = xmalloc (sizeof *initial_kboard);
12229 init_kboard (initial_kboard);
12230 /* Vwindow_system is left at t for now. */
12231 initial_kboard->next_kboard = all_kboards;
12232 all_kboards = initial_kboard;
12235 void
12236 keys_of_keyboard (void)
12238 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
12239 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
12240 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
12241 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
12242 initial_define_key (meta_map, 'x', "execute-extended-command");
12244 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
12245 "handle-delete-frame");
12246 initial_define_lispy_key (Vspecial_event_map, "ns-put-working-text",
12247 "ns-put-working-text");
12248 initial_define_lispy_key (Vspecial_event_map, "ns-unput-working-text",
12249 "ns-unput-working-text");
12250 /* Here we used to use `ignore-event' which would simple set prefix-arg to
12251 current-prefix-arg, as is done in `handle-switch-frame'.
12252 But `handle-switch-frame is not run from the special-map.
12253 Commands from that map are run in a special way that automatically
12254 preserves the prefix-arg. Restoring the prefix arg here is not just
12255 redundant but harmful:
12256 - C-u C-x v =
12257 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
12258 - after the first prompt, the exit-minibuffer-hook is run which may
12259 iconify a frame and thus push a `iconify-frame' event.
12260 - after running exit-minibuffer-hook, current-prefix-arg is
12261 restored to the non-nil value it had before the prompt.
12262 - we enter the second prompt.
12263 current-prefix-arg is non-nil, prefix-arg is nil.
12264 - before running the first real event, we run the special iconify-frame
12265 event, but we pass the `special' arg to execute-command so
12266 current-prefix-arg and prefix-arg are left untouched.
12267 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
12268 - the next key event will have a spuriously non-nil current-prefix-arg. */
12269 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
12270 "ignore");
12271 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
12272 "ignore");
12273 /* Handling it at such a low-level causes read_key_sequence to get
12274 * confused because it doesn't realize that the current_buffer was
12275 * changed by read_char.
12277 * initial_define_lispy_key (Vspecial_event_map, "select-window",
12278 * "handle-select-window"); */
12279 initial_define_lispy_key (Vspecial_event_map, "save-session",
12280 "handle-save-session");
12282 #ifdef HAVE_DBUS
12283 /* Define a special event which is raised for dbus callback
12284 functions. */
12285 initial_define_lispy_key (Vspecial_event_map, "dbus-event",
12286 "dbus-handle-event");
12287 #endif
12289 initial_define_lispy_key (Vspecial_event_map, "config-changed-event",
12290 "ignore");
12291 #if defined (WINDOWSNT)
12292 initial_define_lispy_key (Vspecial_event_map, "language-change",
12293 "ignore");
12294 #endif
12297 /* Mark the pointers in the kboard objects.
12298 Called by Fgarbage_collect. */
12299 void
12300 mark_kboards (void)
12302 KBOARD *kb;
12303 Lisp_Object *p;
12304 for (kb = all_kboards; kb; kb = kb->next_kboard)
12306 if (kb->kbd_macro_buffer)
12307 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
12308 mark_object (*p);
12309 mark_object (KVAR (kb, Voverriding_terminal_local_map));
12310 mark_object (KVAR (kb, Vlast_command));
12311 mark_object (KVAR (kb, Vreal_last_command));
12312 mark_object (KVAR (kb, Vkeyboard_translate_table));
12313 mark_object (KVAR (kb, Vlast_repeatable_command));
12314 mark_object (KVAR (kb, Vprefix_arg));
12315 mark_object (KVAR (kb, Vlast_prefix_arg));
12316 mark_object (KVAR (kb, kbd_queue));
12317 mark_object (KVAR (kb, defining_kbd_macro));
12318 mark_object (KVAR (kb, Vlast_kbd_macro));
12319 mark_object (KVAR (kb, Vsystem_key_alist));
12320 mark_object (KVAR (kb, system_key_syms));
12321 mark_object (KVAR (kb, Vwindow_system));
12322 mark_object (KVAR (kb, Vinput_decode_map));
12323 mark_object (KVAR (kb, Vlocal_function_key_map));
12324 mark_object (KVAR (kb, Vdefault_minibuffer_frame));
12325 mark_object (KVAR (kb, echo_string));
12328 struct input_event *event;
12329 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
12331 if (event == kbd_buffer + KBD_BUFFER_SIZE)
12332 event = kbd_buffer;
12333 if (event->kind != SELECTION_REQUEST_EVENT
12334 && event->kind != SELECTION_CLEAR_EVENT)
12336 mark_object (event->x);
12337 mark_object (event->y);
12339 mark_object (event->frame_or_window);
12340 mark_object (event->arg);