Avoid losing Ctrl-C keystrokes in compilation mode on MS-Windows
[emacs.git] / src / keyboard.c
blob97069a24acc37f42e3fa9e2b92c2f93ee209ba7d
1 /* Keyboard and mouse input; editor command loop.
3 Copyright (C) 1985-1989, 1993-1997, 1999-2017 Free Software Foundation,
4 Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or (at
11 your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
23 #include <sys/stat.h>
25 #include "lisp.h"
26 #include "coding.h"
27 #include "termchar.h"
28 #include "termopts.h"
29 #include "frame.h"
30 #include "termhooks.h"
31 #include "macros.h"
32 #include "keyboard.h"
33 #include "window.h"
34 #include "commands.h"
35 #include "character.h"
36 #include "buffer.h"
37 #include "dispextern.h"
38 #include "syntax.h"
39 #include "intervals.h"
40 #include "keymap.h"
41 #include "blockinput.h"
42 #include "sysstdio.h"
43 #include "systime.h"
44 #include "atimer.h"
45 #include "process.h"
46 #include <errno.h>
48 #ifdef HAVE_PTHREAD
49 #include <pthread.h>
50 #endif
51 #ifdef MSDOS
52 #include "msdos.h"
53 #include <time.h>
54 #else /* not MSDOS */
55 #include <sys/ioctl.h>
56 #endif /* not MSDOS */
58 #if defined USABLE_FIONREAD && defined USG5_4
59 # include <sys/filio.h>
60 #endif
62 #include "syssignal.h"
64 #include <sys/types.h>
65 #include <unistd.h>
66 #include <fcntl.h>
68 #include <ignore-value.h>
70 #ifdef HAVE_WINDOW_SYSTEM
71 #include TERM_HEADER
72 #endif /* HAVE_WINDOW_SYSTEM */
74 /* Work around GCC bug 54561. */
75 #if GNUC_PREREQ (4, 3, 0)
76 # pragma GCC diagnostic ignored "-Wclobbered"
77 #endif
79 #ifdef WINDOWSNT
80 char const DEV_TTY[] = "CONOUT$";
81 #else
82 char const DEV_TTY[] = "/dev/tty";
83 #endif
85 /* Variables for blockinput.h: */
87 /* Positive if interrupt input is blocked right now. */
88 volatile int interrupt_input_blocked;
90 /* True means an input interrupt or alarm signal has arrived.
91 The maybe_quit function checks this. */
92 volatile bool pending_signals;
94 #define KBD_BUFFER_SIZE 4096
96 KBOARD *initial_kboard;
97 KBOARD *current_kboard;
98 static KBOARD *all_kboards;
100 /* True in the single-kboard state, false in the any-kboard state. */
101 static bool single_kboard;
103 #define NUM_RECENT_KEYS (300)
105 /* Index for storing next element into recent_keys. */
106 static int recent_keys_index;
108 /* Total number of elements stored into recent_keys. */
109 static int total_keys;
111 /* This vector holds the last NUM_RECENT_KEYS keystrokes. */
112 static Lisp_Object recent_keys;
114 /* Vector holding the key sequence that invoked the current command.
115 It is reused for each command, and it may be longer than the current
116 sequence; this_command_key_count indicates how many elements
117 actually mean something.
118 It's easier to staticpro a single Lisp_Object than an array. */
119 Lisp_Object this_command_keys;
120 ptrdiff_t this_command_key_count;
122 /* This vector is used as a buffer to record the events that were actually read
123 by read_key_sequence. */
124 static Lisp_Object raw_keybuf;
125 static int raw_keybuf_count;
127 #define GROW_RAW_KEYBUF \
128 if (raw_keybuf_count == ASIZE (raw_keybuf)) \
129 raw_keybuf = larger_vector (raw_keybuf, 1, -1)
131 /* Number of elements of this_command_keys
132 that precede this key sequence. */
133 static ptrdiff_t this_single_command_key_start;
135 #ifdef HAVE_STACK_OVERFLOW_HANDLING
137 /* For longjmp to recover from C stack overflow. */
138 sigjmp_buf return_to_command_loop;
140 /* Message displayed by Vtop_level when recovering from C stack overflow. */
141 static Lisp_Object recover_top_level_message;
143 #endif /* HAVE_STACK_OVERFLOW_HANDLING */
145 /* Message normally displayed by Vtop_level. */
146 static Lisp_Object regular_top_level_message;
148 /* For longjmp to where kbd input is being done. */
150 static sys_jmp_buf getcjmp;
152 /* True while displaying for echoing. Delays C-g throwing. */
154 static bool echoing;
156 /* Non-null means we can start echoing at the next input pause even
157 though there is something in the echo area. */
159 static struct kboard *ok_to_echo_at_next_pause;
161 /* The kboard last echoing, or null for none. Reset to 0 in
162 cancel_echoing. If non-null, and a current echo area message
163 exists, and echo_message_buffer is eq to the current message
164 buffer, we know that the message comes from echo_kboard. */
166 struct kboard *echo_kboard;
168 /* The buffer used for echoing. Set in echo_now, reset in
169 cancel_echoing. */
171 Lisp_Object echo_message_buffer;
173 /* Character that causes a quit. Normally C-g.
175 If we are running on an ordinary terminal, this must be an ordinary
176 ASCII char, since we want to make it our interrupt character.
178 If we are not running on an ordinary terminal, it still needs to be
179 an ordinary ASCII char. This character needs to be recognized in
180 the input interrupt handler. At this point, the keystroke is
181 represented as a struct input_event, while the desired quit
182 character is specified as a lispy event. The mapping from struct
183 input_events to lispy events cannot run in an interrupt handler,
184 and the reverse mapping is difficult for anything but ASCII
185 keystrokes.
187 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
188 ASCII character. */
189 int quit_char;
191 /* Current depth in recursive edits. */
192 EMACS_INT command_loop_level;
194 /* If not Qnil, this is a switch-frame event which we decided to put
195 off until the end of a key sequence. This should be read as the
196 next command input, after any unread_command_events.
198 read_key_sequence uses this to delay switch-frame events until the
199 end of the key sequence; Fread_char uses it to put off switch-frame
200 events until a non-ASCII event is acceptable as input. */
201 Lisp_Object unread_switch_frame;
203 /* Last size recorded for a current buffer which is not a minibuffer. */
204 static ptrdiff_t last_non_minibuf_size;
206 uintmax_t num_input_events;
207 ptrdiff_t point_before_last_command_or_undo;
208 struct buffer *buffer_before_last_command_or_undo;
210 /* Value of num_nonmacro_input_events as of last auto save. */
212 static EMACS_INT last_auto_save;
214 /* The value of point when the last command was started. */
215 static ptrdiff_t last_point_position;
217 /* The frame in which the last input event occurred, or Qmacro if the
218 last event came from a macro. We use this to determine when to
219 generate switch-frame events. This may be cleared by functions
220 like Fselect_frame, to make sure that a switch-frame event is
221 generated by the next character.
223 FIXME: This is modified by a signal handler so it should be volatile.
224 It's exported to Lisp, though, so it can't simply be marked
225 'volatile' here. */
226 Lisp_Object internal_last_event_frame;
228 /* `read_key_sequence' stores here the command definition of the
229 key sequence that it reads. */
230 static Lisp_Object read_key_sequence_cmd;
231 static Lisp_Object read_key_sequence_remapped;
233 /* File in which we write all commands we read. */
234 static FILE *dribble;
236 /* True if input is available. */
237 bool input_pending;
239 /* True if more input was available last time we read an event.
241 Since redisplay can take a significant amount of time and is not
242 indispensable to perform the user's commands, when input arrives
243 "too fast", Emacs skips redisplay. More specifically, if the next
244 command has already been input when we finish the previous command,
245 we skip the intermediate redisplay.
247 This is useful to try and make sure Emacs keeps up with fast input
248 rates, such as auto-repeating keys. But in some cases, this proves
249 too conservative: we may end up disabling redisplay for the whole
250 duration of a key repetition, even though we could afford to
251 redisplay every once in a while.
253 So we "sample" the input_pending flag before running a command and
254 use *that* value after running the command to decide whether to
255 skip redisplay or not. This way, we only skip redisplay if we
256 really can't keep up with the repeat rate.
258 This only makes a difference if the next input arrives while running the
259 command, which is very unlikely if the command is executed quickly.
260 IOW this tends to avoid skipping redisplay after a long running command
261 (which is a case where skipping redisplay is not very useful since the
262 redisplay time is small compared to the time it took to run the command).
264 A typical use case is when scrolling. Scrolling time can be split into:
265 - Time to do jit-lock on the newly displayed portion of buffer.
266 - Time to run the actual scroll command.
267 - Time to perform the redisplay.
268 Jit-lock can happen either during the command or during the redisplay.
269 In the most painful cases, the jit-lock time is the one that dominates.
270 Also jit-lock can be tweaked (via jit-lock-defer) to delay its job, at the
271 cost of temporary inaccuracy in display and scrolling.
272 So without input_was_pending, what typically happens is the following:
273 - when the command starts, there's no pending input (yet).
274 - the scroll command triggers jit-lock.
275 - during the long jit-lock time the next input arrives.
276 - at the end of the command, we check input_pending and hence decide to
277 skip redisplay.
278 - we read the next input and start over.
279 End result: all the hard work of jit-locking is "wasted" since redisplay
280 doesn't actually happens (at least not before the input rate slows down).
281 With input_was_pending redisplay is still skipped if Emacs can't keep up
282 with the input rate, but if it can keep up just enough that there's no
283 input_pending when we begin the command, then redisplay is not skipped
284 which results in better feedback to the user. */
285 static bool input_was_pending;
287 /* Circular buffer for pre-read keyboard input. */
289 static union buffered_input_event kbd_buffer[KBD_BUFFER_SIZE];
291 /* Pointer to next available character in kbd_buffer.
292 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
293 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
294 next available char is in kbd_buffer[0]. */
295 static union buffered_input_event *kbd_fetch_ptr;
297 /* Pointer to next place to store character in kbd_buffer. This
298 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
299 character should go in kbd_buffer[0]. */
300 static union buffered_input_event *volatile kbd_store_ptr;
302 /* The above pair of variables forms a "queue empty" flag. When we
303 enqueue a non-hook event, we increment kbd_store_ptr. When we
304 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
305 there is input available if the two pointers are not equal.
307 Why not just have a flag set and cleared by the enqueuing and
308 dequeuing functions? Such a flag could be screwed up by interrupts
309 at inopportune times. */
311 static void recursive_edit_unwind (Lisp_Object buffer);
312 static Lisp_Object command_loop (void);
314 static void echo_now (void);
315 static ptrdiff_t echo_length (void);
317 /* Incremented whenever a timer is run. */
318 unsigned timers_run;
320 /* Address (if not 0) of struct timespec to zero out if a SIGIO interrupt
321 happens. */
322 struct timespec *input_available_clear_time;
324 /* True means use SIGIO interrupts; false means use CBREAK mode.
325 Default is true if INTERRUPT_INPUT is defined. */
326 bool interrupt_input;
328 /* Nonzero while interrupts are temporarily deferred during redisplay. */
329 bool interrupts_deferred;
331 /* The time when Emacs started being idle. */
333 static struct timespec timer_idleness_start_time;
335 /* After Emacs stops being idle, this saves the last value
336 of timer_idleness_start_time from when it was idle. */
338 static struct timespec timer_last_idleness_start_time;
341 /* Global variable declarations. */
343 /* Flags for readable_events. */
344 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
345 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
346 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
348 /* Function for init_keyboard to call with no args (if nonzero). */
349 static void (*keyboard_init_hook) (void);
351 static bool get_input_pending (int);
352 static bool readable_events (int);
353 static Lisp_Object read_char_x_menu_prompt (Lisp_Object,
354 Lisp_Object, bool *);
355 static Lisp_Object read_char_minibuf_menu_prompt (int, Lisp_Object);
356 static Lisp_Object make_lispy_event (struct input_event *);
357 static Lisp_Object make_lispy_movement (struct frame *, Lisp_Object,
358 enum scroll_bar_part,
359 Lisp_Object, Lisp_Object,
360 Time);
361 static Lisp_Object modify_event_symbol (ptrdiff_t, int, Lisp_Object,
362 Lisp_Object, const char *const *,
363 Lisp_Object *, ptrdiff_t);
364 static Lisp_Object make_lispy_switch_frame (Lisp_Object);
365 static Lisp_Object make_lispy_focus_in (Lisp_Object);
366 #ifdef HAVE_WINDOW_SYSTEM
367 static Lisp_Object make_lispy_focus_out (Lisp_Object);
368 #endif /* HAVE_WINDOW_SYSTEM */
369 static bool help_char_p (Lisp_Object);
370 static void save_getcjmp (sys_jmp_buf);
371 static void restore_getcjmp (sys_jmp_buf);
372 static Lisp_Object apply_modifiers (int, Lisp_Object);
373 static void restore_kboard_configuration (int);
374 static void handle_interrupt (bool);
375 static _Noreturn void quit_throw_to_read_char (bool);
376 static void timer_start_idle (void);
377 static void timer_stop_idle (void);
378 static void timer_resume_idle (void);
379 static void deliver_user_signal (int);
380 static char *find_user_signal_name (int);
381 static void store_user_signal_events (void);
383 /* These setters are used only in this file, so they can be private. */
384 static void
385 kset_echo_string (struct kboard *kb, Lisp_Object val)
387 kb->echo_string_ = val;
389 static void
390 kset_echo_prompt (struct kboard *kb, Lisp_Object val)
392 kb->echo_prompt_ = val;
394 static void
395 kset_kbd_queue (struct kboard *kb, Lisp_Object val)
397 kb->kbd_queue_ = val;
399 static void
400 kset_keyboard_translate_table (struct kboard *kb, Lisp_Object val)
402 kb->Vkeyboard_translate_table_ = val;
404 static void
405 kset_last_prefix_arg (struct kboard *kb, Lisp_Object val)
407 kb->Vlast_prefix_arg_ = val;
409 static void
410 kset_last_repeatable_command (struct kboard *kb, Lisp_Object val)
412 kb->Vlast_repeatable_command_ = val;
414 static void
415 kset_local_function_key_map (struct kboard *kb, Lisp_Object val)
417 kb->Vlocal_function_key_map_ = val;
419 static void
420 kset_overriding_terminal_local_map (struct kboard *kb, Lisp_Object val)
422 kb->Voverriding_terminal_local_map_ = val;
424 static void
425 kset_real_last_command (struct kboard *kb, Lisp_Object val)
427 kb->Vreal_last_command_ = val;
429 static void
430 kset_system_key_syms (struct kboard *kb, Lisp_Object val)
432 kb->system_key_syms_ = val;
436 static bool
437 echo_keystrokes_p (void)
439 return (FLOATP (Vecho_keystrokes) ? XFLOAT_DATA (Vecho_keystrokes) > 0.0
440 : INTEGERP (Vecho_keystrokes) ? XINT (Vecho_keystrokes) > 0
441 : false);
444 /* Add C to the echo string, without echoing it immediately. C can be
445 a character, which is pretty-printed, or a symbol, whose name is
446 printed. */
448 static void
449 echo_add_key (Lisp_Object c)
451 char initbuf[KEY_DESCRIPTION_SIZE + 100];
452 ptrdiff_t size = sizeof initbuf;
453 char *buffer = initbuf;
454 char *ptr = buffer;
455 Lisp_Object echo_string = KVAR (current_kboard, echo_string);
456 USE_SAFE_ALLOCA;
458 if (STRINGP (echo_string) && SCHARS (echo_string) > 0)
459 /* Add a space at the end as a separator between keys. */
460 ptr++[0] = ' ';
462 /* If someone has passed us a composite event, use its head symbol. */
463 c = EVENT_HEAD (c);
465 if (INTEGERP (c))
466 ptr = push_key_description (XINT (c), ptr);
467 else if (SYMBOLP (c))
469 Lisp_Object name = SYMBOL_NAME (c);
470 ptrdiff_t nbytes = SBYTES (name);
472 if (size - (ptr - buffer) < nbytes)
474 ptrdiff_t offset = ptr - buffer;
475 size = max (2 * size, size + nbytes);
476 buffer = SAFE_ALLOCA (size);
477 ptr = buffer + offset;
480 ptr += copy_text (SDATA (name), (unsigned char *) ptr, nbytes,
481 STRING_MULTIBYTE (name), 1);
484 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
485 && help_char_p (c))
487 static const char text[] = " (Type ? for further options)";
488 int len = sizeof text - 1;
490 if (size - (ptr - buffer) < len)
492 ptrdiff_t offset = ptr - buffer;
493 size += len;
494 buffer = SAFE_ALLOCA (size);
495 ptr = buffer + offset;
498 memcpy (ptr, text, len);
499 ptr += len;
502 kset_echo_string
503 (current_kboard,
504 concat2 (echo_string, make_string (buffer, ptr - buffer)));
505 SAFE_FREE ();
508 /* Temporarily add a dash to the end of the echo string if it's not
509 empty, so that it serves as a mini-prompt for the very next
510 character. */
512 static void
513 echo_dash (void)
515 /* Do nothing if not echoing at all. */
516 if (NILP (KVAR (current_kboard, echo_string)))
517 return;
519 if (!current_kboard->immediate_echo
520 && SCHARS (KVAR (current_kboard, echo_string)) == 0)
521 return;
523 /* Do nothing if we just printed a prompt. */
524 if (STRINGP (KVAR (current_kboard, echo_prompt))
525 && (SCHARS (KVAR (current_kboard, echo_prompt))
526 == SCHARS (KVAR (current_kboard, echo_string))))
527 return;
529 /* Do nothing if we have already put a dash at the end. */
530 if (SCHARS (KVAR (current_kboard, echo_string)) > 1)
532 Lisp_Object last_char, prev_char, idx;
534 idx = make_number (SCHARS (KVAR (current_kboard, echo_string)) - 2);
535 prev_char = Faref (KVAR (current_kboard, echo_string), idx);
537 idx = make_number (SCHARS (KVAR (current_kboard, echo_string)) - 1);
538 last_char = Faref (KVAR (current_kboard, echo_string), idx);
540 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
541 return;
544 /* Put a dash at the end of the buffer temporarily,
545 but make it go away when the next character is added. */
546 AUTO_STRING (dash, "-");
547 kset_echo_string (current_kboard,
548 concat2 (KVAR (current_kboard, echo_string), dash));
549 echo_now ();
552 static void
553 echo_update (void)
555 if (current_kboard->immediate_echo)
557 ptrdiff_t i;
558 Lisp_Object prompt = KVAR (current_kboard, echo_prompt);
559 Lisp_Object prefix = call0 (Qinternal_echo_keystrokes_prefix);
560 kset_echo_string (current_kboard,
561 NILP (prompt) ? prefix
562 : NILP (prefix) ? prompt
563 : concat2 (prompt, prefix));
565 for (i = 0; i < this_command_key_count; i++)
567 Lisp_Object c;
569 c = AREF (this_command_keys, i);
570 if (! (EVENT_HAS_PARAMETERS (c)
571 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
572 echo_add_key (c);
575 echo_now ();
579 /* Display the current echo string, and begin echoing if not already
580 doing so. */
582 static void
583 echo_now (void)
585 if (!current_kboard->immediate_echo
586 /* This test breaks calls that use `echo_now' to display the echo_prompt.
587 && echo_keystrokes_p () */)
589 current_kboard->immediate_echo = true;
590 echo_update ();
591 /* Put a dash at the end to invite the user to type more. */
592 echo_dash ();
595 echoing = true;
596 /* FIXME: Use call (Qmessage) so it can be advised (e.g. emacspeak). */
597 message3_nolog (KVAR (current_kboard, echo_string));
598 echoing = false;
600 /* Record in what buffer we echoed, and from which kboard. */
601 echo_message_buffer = echo_area_buffer[0];
602 echo_kboard = current_kboard;
604 if (waiting_for_input && !NILP (Vquit_flag))
605 quit_throw_to_read_char (0);
608 /* Turn off echoing, for the start of a new command. */
610 void
611 cancel_echoing (void)
613 current_kboard->immediate_echo = false;
614 kset_echo_prompt (current_kboard, Qnil);
615 kset_echo_string (current_kboard, Qnil);
616 ok_to_echo_at_next_pause = NULL;
617 echo_kboard = NULL;
618 echo_message_buffer = Qnil;
621 /* Return the length of the current echo string. */
623 static ptrdiff_t
624 echo_length (void)
626 return (STRINGP (KVAR (current_kboard, echo_string))
627 ? SCHARS (KVAR (current_kboard, echo_string))
628 : 0);
631 /* Truncate the current echo message to its first LEN chars.
632 This and echo_char get used by read_key_sequence when the user
633 switches frames while entering a key sequence. */
635 static void
636 echo_truncate (ptrdiff_t nchars)
638 Lisp_Object es = KVAR (current_kboard, echo_string);
639 if (STRINGP (es) && SCHARS (es) > nchars)
640 kset_echo_string (current_kboard,
641 Fsubstring (KVAR (current_kboard, echo_string),
642 make_number (0), make_number (nchars)));
643 truncate_echo_area (nchars);
647 /* Functions for manipulating this_command_keys. */
648 static void
649 add_command_key (Lisp_Object key)
651 if (this_command_key_count >= ASIZE (this_command_keys))
652 this_command_keys = larger_vector (this_command_keys, 1, -1);
654 ASET (this_command_keys, this_command_key_count, key);
655 ++this_command_key_count;
659 Lisp_Object
660 recursive_edit_1 (void)
662 ptrdiff_t count = SPECPDL_INDEX ();
663 Lisp_Object val;
665 if (command_loop_level > 0)
667 specbind (Qstandard_output, Qt);
668 specbind (Qstandard_input, Qt);
671 #ifdef HAVE_WINDOW_SYSTEM
672 /* The command loop has started an hourglass timer, so we have to
673 cancel it here, otherwise it will fire because the recursive edit
674 can take some time. Do not check for display_hourglass_p here,
675 because it could already be nil. */
676 cancel_hourglass ();
677 #endif
679 /* This function may have been called from a debugger called from
680 within redisplay, for instance by Edebugging a function called
681 from fontification-functions. We want to allow redisplay in
682 the debugging session.
684 The recursive edit is left with a `(throw exit ...)'. The `exit'
685 tag is not caught anywhere in redisplay, i.e. when we leave the
686 recursive edit, the original redisplay leading to the recursive
687 edit will be unwound. The outcome should therefore be safe. */
688 specbind (Qinhibit_redisplay, Qnil);
689 redisplaying_p = 0;
691 /* This variable stores buffers that have changed so that an undo
692 boundary can be added. specbind this so that changes in the
693 recursive edit will not result in undo boundaries in buffers
694 changed before we entered there recursive edit.
695 See Bug #23632.
697 specbind (Qundo_auto__undoably_changed_buffers, Qnil);
699 val = command_loop ();
700 if (EQ (val, Qt))
701 quit ();
702 /* Handle throw from read_minibuf when using minibuffer
703 while it's active but we're in another window. */
704 if (STRINGP (val))
705 xsignal1 (Qerror, val);
707 return unbind_to (count, Qnil);
710 /* When an auto-save happens, record the "time", and don't do again soon. */
712 void
713 record_auto_save (void)
715 last_auto_save = num_nonmacro_input_events;
718 /* Make an auto save happen as soon as possible at command level. */
720 #ifdef SIGDANGER
721 void
722 force_auto_save_soon (void)
724 last_auto_save = - auto_save_interval - 1;
726 record_asynch_buffer_change ();
728 #endif
730 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
731 doc: /* Invoke the editor command loop recursively.
732 To get out of the recursive edit, a command can throw to `exit' -- for
733 instance (throw \\='exit nil).
734 If you throw a value other than t, `recursive-edit' returns normally
735 to the function that called it. Throwing a t value causes
736 `recursive-edit' to quit, so that control returns to the command loop
737 one level up.
739 This function is called by the editor initialization to begin editing. */)
740 (void)
742 ptrdiff_t count = SPECPDL_INDEX ();
743 Lisp_Object buffer;
745 /* If we enter while input is blocked, don't lock up here.
746 This may happen through the debugger during redisplay. */
747 if (input_blocked_p ())
748 return Qnil;
750 if (command_loop_level >= 0
751 && current_buffer != XBUFFER (XWINDOW (selected_window)->contents))
752 buffer = Fcurrent_buffer ();
753 else
754 buffer = Qnil;
756 /* Don't do anything interesting between the increment and the
757 record_unwind_protect! Otherwise, we could get distracted and
758 never decrement the counter again. */
759 command_loop_level++;
760 update_mode_lines = 17;
761 record_unwind_protect (recursive_edit_unwind, buffer);
763 /* If we leave recursive_edit_1 below with a `throw' for instance,
764 like it is done in the splash screen display, we have to
765 make sure that we restore single_kboard as command_loop_1
766 would have done if it were left normally. */
767 if (command_loop_level > 0)
768 temporarily_switch_to_single_kboard (SELECTED_FRAME ());
770 recursive_edit_1 ();
771 return unbind_to (count, Qnil);
774 void
775 recursive_edit_unwind (Lisp_Object buffer)
777 if (BUFFERP (buffer))
778 Fset_buffer (buffer);
780 command_loop_level--;
781 update_mode_lines = 18;
785 #if 0 /* These two functions are now replaced with
786 temporarily_switch_to_single_kboard. */
787 static void
788 any_kboard_state ()
790 #if 0 /* Theory: if there's anything in Vunread_command_events,
791 it will right away be read by read_key_sequence,
792 and then if we do switch KBOARDS, it will go into the side
793 queue then. So we don't need to do anything special here -- rms. */
794 if (CONSP (Vunread_command_events))
796 current_kboard->kbd_queue
797 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
798 current_kboard->kbd_queue_has_data = true;
800 Vunread_command_events = Qnil;
801 #endif
802 single_kboard = false;
805 /* Switch to the single-kboard state, making current_kboard
806 the only KBOARD from which further input is accepted. */
808 void
809 single_kboard_state ()
811 single_kboard = true;
813 #endif
815 /* If we're in single_kboard state for kboard KBOARD,
816 get out of it. */
818 void
819 not_single_kboard_state (KBOARD *kboard)
821 if (kboard == current_kboard)
822 single_kboard = false;
825 /* Maintain a stack of kboards, so other parts of Emacs
826 can switch temporarily to the kboard of a given frame
827 and then revert to the previous status. */
829 struct kboard_stack
831 KBOARD *kboard;
832 struct kboard_stack *next;
835 static struct kboard_stack *kboard_stack;
837 void
838 push_kboard (struct kboard *k)
840 struct kboard_stack *p = xmalloc (sizeof *p);
842 p->next = kboard_stack;
843 p->kboard = current_kboard;
844 kboard_stack = p;
846 current_kboard = k;
849 void
850 pop_kboard (void)
852 struct terminal *t;
853 struct kboard_stack *p = kboard_stack;
854 bool found = false;
855 for (t = terminal_list; t; t = t->next_terminal)
857 if (t->kboard == p->kboard)
859 current_kboard = p->kboard;
860 found = true;
861 break;
864 if (!found)
866 /* The terminal we remembered has been deleted. */
867 current_kboard = FRAME_KBOARD (SELECTED_FRAME ());
868 single_kboard = false;
870 kboard_stack = p->next;
871 xfree (p);
874 /* Switch to single_kboard mode, making current_kboard the only KBOARD
875 from which further input is accepted. If F is non-nil, set its
876 KBOARD as the current keyboard.
878 This function uses record_unwind_protect_int to return to the previous
879 state later.
881 If Emacs is already in single_kboard mode, and F's keyboard is
882 locked, then this function will throw an error. */
884 void
885 temporarily_switch_to_single_kboard (struct frame *f)
887 bool was_locked = single_kboard;
888 if (was_locked)
890 if (f != NULL && FRAME_KBOARD (f) != current_kboard)
891 /* We can not switch keyboards while in single_kboard mode.
892 In rare cases, Lisp code may call `recursive-edit' (or
893 `read-minibuffer' or `y-or-n-p') after it switched to a
894 locked frame. For example, this is likely to happen
895 when server.el connects to a new terminal while Emacs is in
896 single_kboard mode. It is best to throw an error instead
897 of presenting the user with a frozen screen. */
898 error ("Terminal %d is locked, cannot read from it",
899 FRAME_TERMINAL (f)->id);
900 else
901 /* This call is unnecessary, but helps
902 `restore_kboard_configuration' discover if somebody changed
903 `current_kboard' behind our back. */
904 push_kboard (current_kboard);
906 else if (f != NULL)
907 current_kboard = FRAME_KBOARD (f);
908 single_kboard = true;
909 record_unwind_protect_int (restore_kboard_configuration, was_locked);
912 #if 0 /* This function is not needed anymore. */
913 void
914 record_single_kboard_state ()
916 if (single_kboard)
917 push_kboard (current_kboard);
918 record_unwind_protect_int (restore_kboard_configuration, single_kboard);
920 #endif
922 static void
923 restore_kboard_configuration (int was_locked)
925 single_kboard = was_locked;
926 if (was_locked)
928 struct kboard *prev = current_kboard;
929 pop_kboard ();
930 /* The pop should not change the kboard. */
931 if (single_kboard && current_kboard != prev)
932 emacs_abort ();
937 /* Handle errors that are not handled at inner levels
938 by printing an error message and returning to the editor command loop. */
940 static Lisp_Object
941 cmd_error (Lisp_Object data)
943 Lisp_Object old_level, old_length;
944 char macroerror[sizeof "After..kbd macro iterations: "
945 + INT_STRLEN_BOUND (EMACS_INT)];
947 #ifdef HAVE_WINDOW_SYSTEM
948 if (display_hourglass_p)
949 cancel_hourglass ();
950 #endif
952 if (!NILP (executing_kbd_macro))
954 if (executing_kbd_macro_iterations == 1)
955 sprintf (macroerror, "After 1 kbd macro iteration: ");
956 else
957 sprintf (macroerror, "After %"pI"d kbd macro iterations: ",
958 executing_kbd_macro_iterations);
960 else
961 *macroerror = 0;
963 Vstandard_output = Qt;
964 Vstandard_input = Qt;
965 Vexecuting_kbd_macro = Qnil;
966 executing_kbd_macro = Qnil;
967 kset_prefix_arg (current_kboard, Qnil);
968 kset_last_prefix_arg (current_kboard, Qnil);
969 cancel_echoing ();
971 /* Avoid unquittable loop if data contains a circular list. */
972 old_level = Vprint_level;
973 old_length = Vprint_length;
974 XSETFASTINT (Vprint_level, 10);
975 XSETFASTINT (Vprint_length, 10);
976 cmd_error_internal (data, macroerror);
977 Vprint_level = old_level;
978 Vprint_length = old_length;
980 Vquit_flag = Qnil;
981 Vinhibit_quit = Qnil;
983 return make_number (0);
986 /* Take actions on handling an error. DATA is the data that describes
987 the error.
989 CONTEXT is a C-string containing ASCII characters only which
990 describes the context in which the error happened. If we need to
991 generalize CONTEXT to allow multibyte characters, make it a Lisp
992 string. */
994 void
995 cmd_error_internal (Lisp_Object data, const char *context)
997 /* The immediate context is not interesting for Quits,
998 since they are asynchronous. */
999 if (EQ (XCAR (data), Qquit))
1000 Vsignaling_function = Qnil;
1002 Vquit_flag = Qnil;
1003 Vinhibit_quit = Qt;
1005 /* Use user's specified output function if any. */
1006 if (!NILP (Vcommand_error_function))
1007 call3 (Vcommand_error_function, data,
1008 context ? build_string (context) : empty_unibyte_string,
1009 Vsignaling_function);
1011 Vsignaling_function = Qnil;
1014 DEFUN ("command-error-default-function", Fcommand_error_default_function,
1015 Scommand_error_default_function, 3, 3, 0,
1016 doc: /* Produce default output for unhandled error message.
1017 Default value of `command-error-function'. */)
1018 (Lisp_Object data, Lisp_Object context, Lisp_Object signal)
1020 struct frame *sf = SELECTED_FRAME ();
1022 CHECK_STRING (context);
1024 /* If the window system or terminal frame hasn't been initialized
1025 yet, or we're not interactive, write the message to stderr and exit. */
1026 if (!sf->glyphs_initialized_p
1027 /* The initial frame is a special non-displaying frame. It
1028 will be current in daemon mode when there are no frames
1029 to display, and in non-daemon mode before the real frame
1030 has finished initializing. If an error is thrown in the
1031 latter case while creating the frame, then the frame
1032 will never be displayed, so the safest thing to do is
1033 write to stderr and quit. In daemon mode, there are
1034 many other potential errors that do not prevent frames
1035 from being created, so continuing as normal is better in
1036 that case. */
1037 || (!IS_DAEMON && FRAME_INITIAL_P (sf))
1038 || noninteractive)
1040 print_error_message (data, Qexternal_debugging_output,
1041 SSDATA (context), signal);
1042 Fterpri (Qexternal_debugging_output, Qnil);
1043 Fkill_emacs (make_number (-1));
1045 else
1047 clear_message (1, 0);
1048 Fdiscard_input ();
1049 message_log_maybe_newline ();
1050 bitch_at_user ();
1052 print_error_message (data, Qt, SSDATA (context), signal);
1054 return Qnil;
1057 static Lisp_Object command_loop_2 (Lisp_Object);
1058 static Lisp_Object top_level_1 (Lisp_Object);
1060 /* Entry to editor-command-loop.
1061 This level has the catches for exiting/returning to editor command loop.
1062 It returns nil to exit recursive edit, t to abort it. */
1064 Lisp_Object
1065 command_loop (void)
1067 #ifdef HAVE_STACK_OVERFLOW_HANDLING
1068 /* At least on GNU/Linux, saving signal mask is important here. */
1069 if (sigsetjmp (return_to_command_loop, 1) != 0)
1071 /* Comes here from handle_sigsegv (see sysdep.c) and
1072 stack_overflow_handler (see w32fns.c). */
1073 #ifdef WINDOWSNT
1074 w32_reset_stack_overflow_guard ();
1075 #endif
1076 init_eval ();
1077 Vinternal__top_level_message = recover_top_level_message;
1079 else
1080 Vinternal__top_level_message = regular_top_level_message;
1081 #endif /* HAVE_STACK_OVERFLOW_HANDLING */
1082 if (command_loop_level > 0 || minibuf_level > 0)
1084 Lisp_Object val;
1085 val = internal_catch (Qexit, command_loop_2, Qnil);
1086 executing_kbd_macro = Qnil;
1087 return val;
1089 else
1090 while (1)
1092 internal_catch (Qtop_level, top_level_1, Qnil);
1093 internal_catch (Qtop_level, command_loop_2, Qnil);
1094 executing_kbd_macro = Qnil;
1096 /* End of file in -batch run causes exit here. */
1097 if (noninteractive)
1098 Fkill_emacs (Qt);
1102 /* Here we catch errors in execution of commands within the
1103 editing loop, and reenter the editing loop.
1104 When there is an error, cmd_error runs and returns a non-nil
1105 value to us. A value of nil means that command_loop_1 itself
1106 returned due to end of file (or end of kbd macro). */
1108 static Lisp_Object
1109 command_loop_2 (Lisp_Object ignore)
1111 register Lisp_Object val;
1114 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1115 while (!NILP (val));
1117 return Qnil;
1120 static Lisp_Object
1121 top_level_2 (void)
1123 return Feval (Vtop_level, Qnil);
1126 static Lisp_Object
1127 top_level_1 (Lisp_Object ignore)
1129 /* On entry to the outer level, run the startup file. */
1130 if (!NILP (Vtop_level))
1131 internal_condition_case (top_level_2, Qerror, cmd_error);
1132 else if (!NILP (Vpurify_flag))
1133 message1 ("Bare impure Emacs (standard Lisp code not loaded)");
1134 else
1135 message1 ("Bare Emacs (standard Lisp code not loaded)");
1136 return Qnil;
1139 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1140 doc: /* Exit all recursive editing levels.
1141 This also exits all active minibuffers. */
1142 attributes: noreturn)
1143 (void)
1145 #ifdef HAVE_WINDOW_SYSTEM
1146 if (display_hourglass_p)
1147 cancel_hourglass ();
1148 #endif
1150 /* Unblock input if we enter with input blocked. This may happen if
1151 redisplay traps e.g. during tool-bar update with input blocked. */
1152 totally_unblock_input ();
1154 Fthrow (Qtop_level, Qnil);
1157 static _Noreturn void
1158 user_error (const char *msg)
1160 xsignal1 (Quser_error, build_string (msg));
1163 /* _Noreturn will be added to prototype by make-docfile. */
1164 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1165 doc: /* Exit from the innermost recursive edit or minibuffer. */
1166 attributes: noreturn)
1167 (void)
1169 if (command_loop_level > 0 || minibuf_level > 0)
1170 Fthrow (Qexit, Qnil);
1172 user_error ("No recursive edit is in progress");
1175 /* _Noreturn will be added to prototype by make-docfile. */
1176 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1177 doc: /* Abort the command that requested this recursive edit or minibuffer input. */
1178 attributes: noreturn)
1179 (void)
1181 if (command_loop_level > 0 || minibuf_level > 0)
1182 Fthrow (Qexit, Qt);
1184 user_error ("No recursive edit is in progress");
1187 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1188 of this function. */
1190 static void
1191 tracking_off (Lisp_Object old_value)
1193 do_mouse_tracking = old_value;
1194 if (NILP (old_value))
1196 /* Redisplay may have been preempted because there was input
1197 available, and it assumes it will be called again after the
1198 input has been processed. If the only input available was
1199 the sort that we have just disabled, then we need to call
1200 redisplay. */
1201 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
1203 redisplay_preserve_echo_area (6);
1204 get_input_pending (READABLE_EVENTS_DO_TIMERS_NOW);
1209 DEFUN ("internal--track-mouse", Ftrack_mouse, Strack_mouse, 1, 1, 0,
1210 doc: /* Call BODYFUN with mouse movement events enabled. */)
1211 (Lisp_Object bodyfun)
1213 ptrdiff_t count = SPECPDL_INDEX ();
1214 Lisp_Object val;
1216 record_unwind_protect (tracking_off, do_mouse_tracking);
1218 do_mouse_tracking = Qt;
1220 val = call0 (bodyfun);
1221 return unbind_to (count, val);
1224 /* If mouse has moved on some frame, return one of those frames.
1226 Return 0 otherwise.
1228 If ignore_mouse_drag_p is non-zero, ignore (implicit) mouse movement
1229 after resizing the tool-bar window. */
1231 bool ignore_mouse_drag_p;
1233 static struct frame *
1234 some_mouse_moved (void)
1236 Lisp_Object tail, frame;
1238 if (ignore_mouse_drag_p)
1240 /* ignore_mouse_drag_p = 0; */
1241 return 0;
1244 FOR_EACH_FRAME (tail, frame)
1246 if (XFRAME (frame)->mouse_moved)
1247 return XFRAME (frame);
1250 return 0;
1254 /* This is the actual command reading loop,
1255 sans error-handling encapsulation. */
1257 static int read_key_sequence (Lisp_Object *, int, Lisp_Object,
1258 bool, bool, bool, bool);
1259 static void adjust_point_for_property (ptrdiff_t, bool);
1261 Lisp_Object
1262 command_loop_1 (void)
1264 EMACS_INT prev_modiff = 0;
1265 struct buffer *prev_buffer = NULL;
1266 bool already_adjusted = 0;
1268 kset_prefix_arg (current_kboard, Qnil);
1269 kset_last_prefix_arg (current_kboard, Qnil);
1270 Vdeactivate_mark = Qnil;
1271 waiting_for_input = false;
1272 cancel_echoing ();
1274 this_command_key_count = 0;
1275 this_single_command_key_start = 0;
1277 if (NILP (Vmemory_full))
1279 /* Make sure this hook runs after commands that get errors and
1280 throw to top level. */
1281 /* Note that the value cell will never directly contain nil
1282 if the symbol is a local variable. */
1283 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1284 safe_run_hooks (Qpost_command_hook);
1286 /* If displaying a message, resize the echo area window to fit
1287 that message's size exactly. */
1288 if (!NILP (echo_area_buffer[0]))
1289 resize_echo_area_exactly ();
1291 /* If there are warnings waiting, process them. */
1292 if (!NILP (Vdelayed_warnings_list))
1293 safe_run_hooks (Qdelayed_warnings_hook);
1295 if (!NILP (Vdeferred_action_list))
1296 safe_run_hooks (Qdeferred_action_function);
1299 /* Do this after running Vpost_command_hook, for consistency. */
1300 kset_last_command (current_kboard, Vthis_command);
1301 kset_real_last_command (current_kboard, Vreal_this_command);
1302 if (!CONSP (last_command_event))
1303 kset_last_repeatable_command (current_kboard, Vreal_this_command);
1305 while (1)
1307 Lisp_Object cmd;
1308 Lisp_Object keybuf[30];
1309 int i;
1311 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1312 Fkill_emacs (Qnil);
1314 /* Make sure the current window's buffer is selected. */
1315 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->contents));
1317 /* Display any malloc warning that just came out. Use while because
1318 displaying one warning can cause another. */
1320 while (pending_malloc_warning)
1321 display_malloc_warning ();
1323 Vdeactivate_mark = Qnil;
1325 /* Don't ignore mouse movements for more than a single command
1326 loop. (This flag is set in xdisp.c whenever the tool bar is
1327 resized, because the resize moves text up or down, and would
1328 generate false mouse drag events if we don't ignore them.) */
1329 ignore_mouse_drag_p = 0;
1331 /* If minibuffer on and echo area in use,
1332 wait a short time and redraw minibuffer. */
1334 if (minibuf_level
1335 && !NILP (echo_area_buffer[0])
1336 && EQ (minibuf_window, echo_area_window)
1337 && NUMBERP (Vminibuffer_message_timeout))
1339 /* Bind inhibit-quit to t so that C-g gets read in
1340 rather than quitting back to the minibuffer. */
1341 ptrdiff_t count = SPECPDL_INDEX ();
1342 specbind (Qinhibit_quit, Qt);
1344 sit_for (Vminibuffer_message_timeout, 0, 2);
1346 /* Clear the echo area. */
1347 message1 (0);
1348 safe_run_hooks (Qecho_area_clear_hook);
1350 unbind_to (count, Qnil);
1352 /* If a C-g came in before, treat it as input now. */
1353 if (!NILP (Vquit_flag))
1355 Vquit_flag = Qnil;
1356 Vunread_command_events = list1 (make_number (quit_char));
1360 /* If it has changed current-menubar from previous value,
1361 really recompute the menubar from the value. */
1362 if (! NILP (Vlucid_menu_bar_dirty_flag)
1363 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1364 call0 (Qrecompute_lucid_menubar);
1366 Vthis_command = Qnil;
1367 Vreal_this_command = Qnil;
1368 Vthis_original_command = Qnil;
1369 Vthis_command_keys_shift_translated = Qnil;
1371 /* Read next key sequence; i gets its length. */
1372 i = read_key_sequence (keybuf, ARRAYELTS (keybuf),
1373 Qnil, 0, 1, 1, 0);
1375 /* A filter may have run while we were reading the input. */
1376 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1377 Fkill_emacs (Qnil);
1378 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->contents));
1380 ++num_input_keys;
1382 /* Now we have read a key sequence of length I,
1383 or else I is 0 and we found end of file. */
1385 if (i == 0) /* End of file -- happens only in */
1386 return Qnil; /* a kbd macro, at the end. */
1387 /* -1 means read_key_sequence got a menu that was rejected.
1388 Just loop around and read another command. */
1389 if (i == -1)
1391 cancel_echoing ();
1392 this_command_key_count = 0;
1393 this_single_command_key_start = 0;
1394 goto finalize;
1397 last_command_event = keybuf[i - 1];
1399 /* If the previous command tried to force a specific window-start,
1400 forget about that, in case this command moves point far away
1401 from that position. But also throw away beg_unchanged and
1402 end_unchanged information in that case, so that redisplay will
1403 update the whole window properly. */
1404 if (XWINDOW (selected_window)->force_start)
1406 struct buffer *b;
1407 XWINDOW (selected_window)->force_start = 0;
1408 b = XBUFFER (XWINDOW (selected_window)->contents);
1409 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1412 cmd = read_key_sequence_cmd;
1413 if (!NILP (Vexecuting_kbd_macro))
1415 if (!NILP (Vquit_flag))
1417 Vexecuting_kbd_macro = Qt;
1418 maybe_quit (); /* Make some noise. */
1419 /* Will return since macro now empty. */
1423 /* Do redisplay processing after this command except in special
1424 cases identified below. */
1425 prev_buffer = current_buffer;
1426 prev_modiff = MODIFF;
1427 last_point_position = PT;
1429 /* By default, we adjust point to a boundary of a region that
1430 has such a property that should be treated intangible
1431 (e.g. composition, display). But, some commands will set
1432 this variable differently. */
1433 Vdisable_point_adjustment = Qnil;
1435 /* Process filters and timers may have messed with deactivate-mark.
1436 reset it before we execute the command. */
1437 Vdeactivate_mark = Qnil;
1439 /* Remap command through active keymaps. */
1440 Vthis_original_command = cmd;
1441 if (!NILP (read_key_sequence_remapped))
1442 cmd = read_key_sequence_remapped;
1444 /* Execute the command. */
1447 total_keys += total_keys < NUM_RECENT_KEYS;
1448 ASET (recent_keys, recent_keys_index,
1449 Fcons (Qnil, cmd));
1450 if (++recent_keys_index >= NUM_RECENT_KEYS)
1451 recent_keys_index = 0;
1453 Vthis_command = cmd;
1454 Vreal_this_command = cmd;
1455 safe_run_hooks (Qpre_command_hook);
1457 already_adjusted = 0;
1459 if (NILP (Vthis_command))
1460 /* nil means key is undefined. */
1461 call0 (Qundefined);
1462 else
1464 /* Here for a command that isn't executed directly. */
1466 #ifdef HAVE_WINDOW_SYSTEM
1467 ptrdiff_t scount = SPECPDL_INDEX ();
1469 if (display_hourglass_p
1470 && NILP (Vexecuting_kbd_macro))
1472 record_unwind_protect_void (cancel_hourglass);
1473 start_hourglass ();
1475 #endif
1477 /* Ensure that we have added appropriate undo-boundaries as a
1478 result of changes from the last command. */
1479 call0 (Qundo_auto__add_boundary);
1481 /* Record point and buffer, so we can put point into the undo
1482 information if necessary. */
1483 point_before_last_command_or_undo = PT;
1484 buffer_before_last_command_or_undo = current_buffer;
1486 call1 (Qcommand_execute, Vthis_command);
1488 #ifdef HAVE_WINDOW_SYSTEM
1489 /* Do not check display_hourglass_p here, because
1490 `command-execute' could change it, but we should cancel
1491 hourglass cursor anyway.
1492 But don't cancel the hourglass within a macro
1493 just because a command in the macro finishes. */
1494 if (NILP (Vexecuting_kbd_macro))
1495 unbind_to (scount, Qnil);
1496 #endif
1498 kset_last_prefix_arg (current_kboard, Vcurrent_prefix_arg);
1500 safe_run_hooks (Qpost_command_hook);
1502 /* If displaying a message, resize the echo area window to fit
1503 that message's size exactly. */
1504 if (!NILP (echo_area_buffer[0]))
1505 resize_echo_area_exactly ();
1507 /* If there are warnings waiting, process them. */
1508 if (!NILP (Vdelayed_warnings_list))
1509 safe_run_hooks (Qdelayed_warnings_hook);
1511 safe_run_hooks (Qdeferred_action_function);
1513 kset_last_command (current_kboard, Vthis_command);
1514 kset_real_last_command (current_kboard, Vreal_this_command);
1515 if (!CONSP (last_command_event))
1516 kset_last_repeatable_command (current_kboard, Vreal_this_command);
1518 this_command_key_count = 0;
1519 this_single_command_key_start = 0;
1521 if (current_kboard->immediate_echo
1522 && !NILP (call0 (Qinternal_echo_keystrokes_prefix)))
1524 current_kboard->immediate_echo = false;
1525 /* Refresh the echo message. */
1526 echo_now ();
1528 else
1529 cancel_echoing ();
1531 if (!NILP (BVAR (current_buffer, mark_active))
1532 && !NILP (Vrun_hooks))
1534 /* In Emacs 22, setting transient-mark-mode to `only' was a
1535 way of turning it on for just one command. This usage is
1536 obsolete, but support it anyway. */
1537 if (EQ (Vtransient_mark_mode, Qidentity))
1538 Vtransient_mark_mode = Qnil;
1539 else if (EQ (Vtransient_mark_mode, Qonly))
1540 Vtransient_mark_mode = Qidentity;
1542 if (!NILP (Vdeactivate_mark))
1543 /* If `select-active-regions' is non-nil, this call to
1544 `deactivate-mark' also sets the PRIMARY selection. */
1545 call0 (Qdeactivate_mark);
1546 else
1548 /* Even if not deactivating the mark, set PRIMARY if
1549 `select-active-regions' is non-nil. */
1550 if (!NILP (Fwindow_system (Qnil))
1551 /* Even if mark_active is non-nil, the actual buffer
1552 marker may not have been set yet (Bug#7044). */
1553 && XMARKER (BVAR (current_buffer, mark))->buffer
1554 && (EQ (Vselect_active_regions, Qonly)
1555 ? EQ (CAR_SAFE (Vtransient_mark_mode), Qonly)
1556 : (!NILP (Vselect_active_regions)
1557 && !NILP (Vtransient_mark_mode)))
1558 && NILP (Fmemq (Vthis_command,
1559 Vselection_inhibit_update_commands)))
1561 Lisp_Object txt
1562 = call1 (Fsymbol_value (Qregion_extract_function), Qnil);
1563 if (XINT (Flength (txt)) > 0)
1564 /* Don't set empty selections. */
1565 call2 (Qgui_set_selection, QPRIMARY, txt);
1568 if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1569 run_hook (intern ("activate-mark-hook"));
1572 Vsaved_region_selection = Qnil;
1575 finalize:
1577 if (current_buffer == prev_buffer
1578 && XBUFFER (XWINDOW (selected_window)->contents) == current_buffer
1579 && last_point_position != PT
1580 && NILP (Vdisable_point_adjustment)
1581 && NILP (Vglobal_disable_point_adjustment))
1583 if (last_point_position > BEGV
1584 && last_point_position < ZV
1585 && (composition_adjust_point (last_point_position,
1586 last_point_position)
1587 != last_point_position))
1588 /* The last point was temporarily set within a grapheme
1589 cluster to prevent automatic composition. To recover
1590 the automatic composition, we must update the
1591 display. */
1592 windows_or_buffers_changed = 21;
1593 if (!already_adjusted)
1594 adjust_point_for_property (last_point_position,
1595 MODIFF != prev_modiff);
1598 /* Install chars successfully executed in kbd macro. */
1600 if (!NILP (KVAR (current_kboard, defining_kbd_macro))
1601 && NILP (KVAR (current_kboard, Vprefix_arg)))
1602 finalize_kbd_macro_chars ();
1606 Lisp_Object
1607 read_menu_command (void)
1609 Lisp_Object keybuf[30];
1610 ptrdiff_t count = SPECPDL_INDEX ();
1611 int i;
1613 /* We don't want to echo the keystrokes while navigating the
1614 menus. */
1615 specbind (Qecho_keystrokes, make_number (0));
1617 i = read_key_sequence (keybuf, ARRAYELTS (keybuf),
1618 Qnil, 0, 1, 1, 1);
1620 unbind_to (count, Qnil);
1622 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1623 Fkill_emacs (Qnil);
1624 if (i == 0 || i == -1)
1625 return Qt;
1627 return read_key_sequence_cmd;
1630 /* Adjust point to a boundary of a region that has such a property
1631 that should be treated intangible. For the moment, we check
1632 `composition', `display' and `invisible' properties.
1633 LAST_PT is the last position of point. */
1635 static void
1636 adjust_point_for_property (ptrdiff_t last_pt, bool modified)
1638 ptrdiff_t beg, end;
1639 Lisp_Object val, overlay, tmp;
1640 /* When called after buffer modification, we should temporarily
1641 suppress the point adjustment for automatic composition so that a
1642 user can keep inserting another character at point or keep
1643 deleting characters around point. */
1644 bool check_composition = ! modified;
1645 bool check_display = true, check_invisible = true;
1646 ptrdiff_t orig_pt = PT;
1648 eassert (XBUFFER (XWINDOW (selected_window)->contents) == current_buffer);
1650 /* FIXME: cycling is probably not necessary because these properties
1651 can't be usefully combined anyway. */
1652 while (check_composition || check_display || check_invisible)
1654 /* FIXME: check `intangible'. */
1655 if (check_composition
1656 && PT > BEGV && PT < ZV
1657 && (beg = composition_adjust_point (last_pt, PT)) != PT)
1659 SET_PT (beg);
1660 check_display = check_invisible = true;
1662 check_composition = false;
1663 if (check_display
1664 && PT > BEGV && PT < ZV
1665 && !NILP (val = get_char_property_and_overlay
1666 (make_number (PT), Qdisplay, selected_window,
1667 &overlay))
1668 && display_prop_intangible_p (val, overlay, PT, PT_BYTE)
1669 && (!OVERLAYP (overlay)
1670 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
1671 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
1672 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
1673 && (beg < PT /* && end > PT <- It's always the case. */
1674 || (beg <= PT && STRINGP (val) && SCHARS (val) == 0)))
1676 eassert (end > PT);
1677 SET_PT (PT < last_pt
1678 ? (STRINGP (val) && SCHARS (val) == 0
1679 ? max (beg - 1, BEGV)
1680 : beg)
1681 : end);
1682 check_composition = check_invisible = true;
1684 check_display = false;
1685 if (check_invisible && PT > BEGV && PT < ZV)
1687 int inv;
1688 bool ellipsis = false;
1689 beg = end = PT;
1691 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1692 while (end < ZV
1693 #if 0
1694 /* FIXME: We should stop if we find a spot between
1695 two runs of `invisible' where inserted text would
1696 be visible. This is important when we have two
1697 invisible boundaries that enclose an area: if the
1698 area is empty, we need this test in order to make
1699 it possible to place point in the middle rather
1700 than skip both boundaries. However, this code
1701 also stops anywhere in a non-sticky text-property,
1702 which breaks (e.g.) Org mode. */
1703 && (val = Fget_pos_property (make_number (end),
1704 Qinvisible, Qnil),
1705 TEXT_PROP_MEANS_INVISIBLE (val))
1706 #endif
1707 && !NILP (val = get_char_property_and_overlay
1708 (make_number (end), Qinvisible, Qnil, &overlay))
1709 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1711 ellipsis = ellipsis || inv > 1
1712 || (OVERLAYP (overlay)
1713 && (!NILP (Foverlay_get (overlay, Qafter_string))
1714 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1715 tmp = Fnext_single_char_property_change
1716 (make_number (end), Qinvisible, Qnil, Qnil);
1717 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
1719 while (beg > BEGV
1720 #if 0
1721 && (val = Fget_pos_property (make_number (beg),
1722 Qinvisible, Qnil),
1723 TEXT_PROP_MEANS_INVISIBLE (val))
1724 #endif
1725 && !NILP (val = get_char_property_and_overlay
1726 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
1727 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1729 ellipsis = ellipsis || inv > 1
1730 || (OVERLAYP (overlay)
1731 && (!NILP (Foverlay_get (overlay, Qafter_string))
1732 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1733 tmp = Fprevious_single_char_property_change
1734 (make_number (beg), Qinvisible, Qnil, Qnil);
1735 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
1738 /* Move away from the inside area. */
1739 if (beg < PT && end > PT)
1741 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
1742 /* We haven't moved yet (so we don't need to fear
1743 infinite-looping) and we were outside the range
1744 before (so either end of the range still corresponds
1745 to a move in the right direction): pretend we moved
1746 less than we actually did, so that we still have
1747 more freedom below in choosing which end of the range
1748 to go to. */
1749 ? (orig_pt = -1, PT < last_pt ? end : beg)
1750 /* We either have moved already or the last point
1751 was already in the range: we don't get to choose
1752 which end of the range we have to go to. */
1753 : (PT < last_pt ? beg : end));
1754 check_composition = check_display = true;
1756 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
1757 the point to something other than its argument, due to
1758 point-motion hooks, intangibility, etc. */
1759 eassert (PT == beg || PT == end);
1760 #endif
1762 /* Pretend the area doesn't exist if the buffer is not
1763 modified. */
1764 if (!modified && !ellipsis && beg < end)
1766 if (last_pt == beg && PT == end && end < ZV)
1767 (check_composition = check_display = true, SET_PT (end + 1));
1768 else if (last_pt == end && PT == beg && beg > BEGV)
1769 (check_composition = check_display = true, SET_PT (beg - 1));
1770 else if (PT == ((PT < last_pt) ? beg : end))
1771 /* We've already moved as far as we can. Trying to go
1772 to the other end would mean moving backwards and thus
1773 could lead to an infinite loop. */
1775 else if (val = Fget_pos_property (make_number (PT),
1776 Qinvisible, Qnil),
1777 TEXT_PROP_MEANS_INVISIBLE (val)
1778 && (val = (Fget_pos_property
1779 (make_number (PT == beg ? end : beg),
1780 Qinvisible, Qnil)),
1781 !TEXT_PROP_MEANS_INVISIBLE (val)))
1782 (check_composition = check_display = true,
1783 SET_PT (PT == beg ? end : beg));
1786 check_invisible = false;
1790 /* Subroutine for safe_run_hooks: run the hook, which is ARGS[1]. */
1792 static Lisp_Object
1793 safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *args)
1795 eassert (nargs == 2);
1796 return call0 (args[1]);
1799 /* Subroutine for safe_run_hooks: handle an error by clearing out the function
1800 from the hook. */
1802 static Lisp_Object
1803 safe_run_hooks_error (Lisp_Object error, ptrdiff_t nargs, Lisp_Object *args)
1805 eassert (nargs == 2);
1806 AUTO_STRING (format, "Error in %s (%S): %S");
1807 Lisp_Object hook = args[0];
1808 Lisp_Object fun = args[1];
1809 CALLN (Fmessage, format, hook, fun, error);
1811 if (SYMBOLP (hook))
1813 Lisp_Object val;
1814 bool found = false;
1815 Lisp_Object newval = Qnil;
1816 for (val = find_symbol_value (hook); CONSP (val); val = XCDR (val))
1817 if (EQ (fun, XCAR (val)))
1818 found = true;
1819 else
1820 newval = Fcons (XCAR (val), newval);
1821 if (found)
1822 return Fset (hook, Fnreverse (newval));
1823 /* Not found in the local part of the hook. Let's look at the global
1824 part. */
1825 newval = Qnil;
1826 for (val = (NILP (Fdefault_boundp (hook)) ? Qnil
1827 : Fdefault_value (hook));
1828 CONSP (val); val = XCDR (val))
1829 if (EQ (fun, XCAR (val)))
1830 found = true;
1831 else
1832 newval = Fcons (XCAR (val), newval);
1833 if (found)
1834 return Fset_default (hook, Fnreverse (newval));
1836 return Qnil;
1839 static Lisp_Object
1840 safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Object *args)
1842 eassert (nargs == 2);
1843 /* Yes, run_hook_with_args works with args in the other order. */
1844 internal_condition_case_n (safe_run_hooks_1,
1845 2, ((Lisp_Object []) {args[1], args[0]}),
1846 Qt, safe_run_hooks_error);
1847 return Qnil;
1850 /* If we get an error while running the hook, cause the hook variable
1851 to be nil. Also inhibit quits, so that C-g won't cause the hook
1852 to mysteriously evaporate. */
1854 void
1855 safe_run_hooks (Lisp_Object hook)
1857 ptrdiff_t count = SPECPDL_INDEX ();
1859 specbind (Qinhibit_quit, Qt);
1860 run_hook_with_args (2, ((Lisp_Object []) {hook, hook}), safe_run_hook_funcall);
1861 unbind_to (count, Qnil);
1865 /* Nonzero means polling for input is temporarily suppressed. */
1867 int poll_suppress_count;
1870 #ifdef POLL_FOR_INPUT
1872 /* Asynchronous timer for polling. */
1874 static struct atimer *poll_timer;
1876 /* Poll for input, so that we catch a C-g if it comes in. */
1877 void
1878 poll_for_input_1 (void)
1880 if (! input_blocked_p ()
1881 && !waiting_for_input)
1882 gobble_input ();
1885 /* Timer callback function for poll_timer. TIMER is equal to
1886 poll_timer. */
1888 static void
1889 poll_for_input (struct atimer *timer)
1891 if (poll_suppress_count == 0)
1892 pending_signals = true;
1895 #endif /* POLL_FOR_INPUT */
1897 /* Begin signals to poll for input, if they are appropriate.
1898 This function is called unconditionally from various places. */
1900 void
1901 start_polling (void)
1903 #ifdef POLL_FOR_INPUT
1904 /* XXX This condition was (read_socket_hook && !interrupt_input),
1905 but read_socket_hook is not global anymore. Let's pretend that
1906 it's always set. */
1907 if (!interrupt_input)
1909 /* Turn alarm handling on unconditionally. It might have
1910 been turned off in process.c. */
1911 turn_on_atimers (1);
1913 /* If poll timer doesn't exist, or we need one with
1914 a different interval, start a new one. */
1915 if (poll_timer == NULL
1916 || poll_timer->interval.tv_sec != polling_period)
1918 time_t period = max (1, min (polling_period, TYPE_MAXIMUM (time_t)));
1919 struct timespec interval = make_timespec (period, 0);
1921 if (poll_timer)
1922 cancel_atimer (poll_timer);
1924 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
1925 poll_for_input, NULL);
1928 /* Let the timer's callback function poll for input
1929 if this becomes zero. */
1930 --poll_suppress_count;
1932 #endif
1935 /* True if we are using polling to handle input asynchronously. */
1937 bool
1938 input_polling_used (void)
1940 #ifdef POLL_FOR_INPUT
1941 /* XXX This condition was (read_socket_hook && !interrupt_input),
1942 but read_socket_hook is not global anymore. Let's pretend that
1943 it's always set. */
1944 return !interrupt_input;
1945 #else
1946 return 0;
1947 #endif
1950 /* Turn off polling. */
1952 void
1953 stop_polling (void)
1955 #ifdef POLL_FOR_INPUT
1956 /* XXX This condition was (read_socket_hook && !interrupt_input),
1957 but read_socket_hook is not global anymore. Let's pretend that
1958 it's always set. */
1959 if (!interrupt_input)
1960 ++poll_suppress_count;
1961 #endif
1964 /* Set the value of poll_suppress_count to COUNT
1965 and start or stop polling accordingly. */
1967 void
1968 set_poll_suppress_count (int count)
1970 #ifdef POLL_FOR_INPUT
1971 if (count == 0 && poll_suppress_count != 0)
1973 poll_suppress_count = 1;
1974 start_polling ();
1976 else if (count != 0 && poll_suppress_count == 0)
1978 stop_polling ();
1980 poll_suppress_count = count;
1981 #endif
1984 /* Bind polling_period to a value at least N.
1985 But don't decrease it. */
1987 void
1988 bind_polling_period (int n)
1990 #ifdef POLL_FOR_INPUT
1991 EMACS_INT new = polling_period;
1993 if (n > new)
1994 new = n;
1996 stop_other_atimers (poll_timer);
1997 stop_polling ();
1998 specbind (Qpolling_period, make_number (new));
1999 /* Start a new alarm with the new period. */
2000 start_polling ();
2001 #endif
2004 /* Apply the control modifier to CHARACTER. */
2007 make_ctrl_char (int c)
2009 /* Save the upper bits here. */
2010 int upper = c & ~0177;
2012 if (! ASCII_CHAR_P (c))
2013 return c |= ctrl_modifier;
2015 c &= 0177;
2017 /* Everything in the columns containing the upper-case letters
2018 denotes a control character. */
2019 if (c >= 0100 && c < 0140)
2021 int oc = c;
2022 c &= ~0140;
2023 /* Set the shift modifier for a control char
2024 made from a shifted letter. But only for letters! */
2025 if (oc >= 'A' && oc <= 'Z')
2026 c |= shift_modifier;
2029 /* The lower-case letters denote control characters too. */
2030 else if (c >= 'a' && c <= 'z')
2031 c &= ~0140;
2033 /* Include the bits for control and shift
2034 only if the basic ASCII code can't indicate them. */
2035 else if (c >= ' ')
2036 c |= ctrl_modifier;
2038 /* Replace the high bits. */
2039 c |= (upper & ~ctrl_modifier);
2041 return c;
2044 /* Display the help-echo property of the character after the mouse pointer.
2045 Either show it in the echo area, or call show-help-function to display
2046 it by other means (maybe in a tooltip).
2048 If HELP is nil, that means clear the previous help echo.
2050 If HELP is a string, display that string. If HELP is a function,
2051 call it with OBJECT and POS as arguments; the function should
2052 return a help string or nil for none. For all other types of HELP,
2053 evaluate it to obtain a string.
2055 WINDOW is the window in which the help was generated, if any.
2056 It is nil if not in a window.
2058 If OBJECT is a buffer, POS is the position in the buffer where the
2059 `help-echo' text property was found.
2061 If OBJECT is an overlay, that overlay has a `help-echo' property,
2062 and POS is the position in the overlay's buffer under the mouse.
2064 If OBJECT is a string (an overlay string or a string displayed with
2065 the `display' property). POS is the position in that string under
2066 the mouse.
2068 Note: this function may only be called with HELP nil or a string
2069 from X code running asynchronously. */
2071 void
2072 show_help_echo (Lisp_Object help, Lisp_Object window, Lisp_Object object,
2073 Lisp_Object pos)
2075 if (!NILP (help) && !STRINGP (help))
2077 if (FUNCTIONP (help))
2078 help = safe_call (4, help, window, object, pos);
2079 else
2080 help = safe_eval (help);
2082 if (!STRINGP (help))
2083 return;
2086 if (!noninteractive && STRINGP (help))
2088 /* The mouse-fixup-help-message Lisp function can call
2089 mouse_position_hook, which resets the mouse_moved flags.
2090 This causes trouble if we are trying to read a mouse motion
2091 event (i.e., if we are inside a `track-mouse' form), so we
2092 restore the mouse_moved flag. */
2093 struct frame *f = NILP (do_mouse_tracking) ? NULL : some_mouse_moved ();
2094 help = call1 (Qmouse_fixup_help_message, help);
2095 if (f)
2096 f->mouse_moved = true;
2099 if (STRINGP (help) || NILP (help))
2101 if (!NILP (Vshow_help_function))
2102 call1 (Vshow_help_function, Fsubstitute_command_keys (help));
2103 help_echo_showing_p = STRINGP (help);
2109 /* Input of single characters from keyboard. */
2111 static Lisp_Object kbd_buffer_get_event (KBOARD **kbp, bool *used_mouse_menu,
2112 struct timespec *end_time);
2113 static void record_char (Lisp_Object c);
2115 static Lisp_Object help_form_saved_window_configs;
2116 static void
2117 read_char_help_form_unwind (void)
2119 Lisp_Object window_config = XCAR (help_form_saved_window_configs);
2120 help_form_saved_window_configs = XCDR (help_form_saved_window_configs);
2121 if (!NILP (window_config))
2122 Fset_window_configuration (window_config);
2125 #define STOP_POLLING \
2126 do { if (! polling_stopped_here) stop_polling (); \
2127 polling_stopped_here = true; } while (0)
2129 #define RESUME_POLLING \
2130 do { if (polling_stopped_here) start_polling (); \
2131 polling_stopped_here = false; } while (0)
2133 static Lisp_Object
2134 read_event_from_main_queue (struct timespec *end_time,
2135 sys_jmp_buf local_getcjmp,
2136 bool *used_mouse_menu)
2138 Lisp_Object c = Qnil;
2139 sys_jmp_buf save_jump;
2140 KBOARD *kb;
2142 start:
2144 /* Read from the main queue, and if that gives us something we can't use yet,
2145 we put it on the appropriate side queue and try again. */
2147 if (end_time && timespec_cmp (*end_time, current_timespec ()) <= 0)
2148 return c;
2150 /* Actually read a character, waiting if necessary. */
2151 save_getcjmp (save_jump);
2152 restore_getcjmp (local_getcjmp);
2153 if (!end_time)
2154 timer_start_idle ();
2155 c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time);
2156 restore_getcjmp (save_jump);
2158 if (! NILP (c) && (kb != current_kboard))
2160 Lisp_Object last = KVAR (kb, kbd_queue);
2161 if (CONSP (last))
2163 while (CONSP (XCDR (last)))
2164 last = XCDR (last);
2165 if (!NILP (XCDR (last)))
2166 emacs_abort ();
2168 if (!CONSP (last))
2169 kset_kbd_queue (kb, list1 (c));
2170 else
2171 XSETCDR (last, list1 (c));
2172 kb->kbd_queue_has_data = true;
2173 c = Qnil;
2174 if (single_kboard)
2175 goto start;
2176 current_kboard = kb;
2177 return make_number (-2);
2180 /* Terminate Emacs in batch mode if at eof. */
2181 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2182 Fkill_emacs (make_number (1));
2184 if (INTEGERP (c))
2186 /* Add in any extra modifiers, where appropriate. */
2187 if ((extra_keyboard_modifiers & CHAR_CTL)
2188 || ((extra_keyboard_modifiers & 0177) < ' '
2189 && (extra_keyboard_modifiers & 0177) != 0))
2190 XSETINT (c, make_ctrl_char (XINT (c)));
2192 /* Transfer any other modifier bits directly from
2193 extra_keyboard_modifiers to c. Ignore the actual character code
2194 in the low 16 bits of extra_keyboard_modifiers. */
2195 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2198 return c;
2203 /* Like `read_event_from_main_queue' but applies keyboard-coding-system
2204 to tty input. */
2205 static Lisp_Object
2206 read_decoded_event_from_main_queue (struct timespec *end_time,
2207 sys_jmp_buf local_getcjmp,
2208 Lisp_Object prev_event,
2209 bool *used_mouse_menu)
2211 #ifndef WINDOWSNT
2212 #define MAX_ENCODED_BYTES 16
2213 Lisp_Object events[MAX_ENCODED_BYTES];
2214 int n = 0;
2215 #endif
2216 while (true)
2218 Lisp_Object nextevt
2219 = read_event_from_main_queue (end_time, local_getcjmp,
2220 used_mouse_menu);
2221 #ifdef WINDOWSNT
2222 /* w32_console already returns decoded events. It either reads
2223 Unicode characters from the Windows keyboard input, or
2224 converts characters encoded in the current codepage into
2225 Unicode. See w32inevt.c:key_event, near its end. */
2226 return nextevt;
2227 #else
2228 struct frame *frame = XFRAME (selected_frame);
2229 struct terminal *terminal = frame->terminal;
2230 if (!((FRAME_TERMCAP_P (frame) || FRAME_MSDOS_P (frame))
2231 /* Don't apply decoding if we're just reading a raw event
2232 (e.g. reading bytes sent by the xterm to specify the position
2233 of a mouse click). */
2234 && (!EQ (prev_event, Qt))
2235 && (TERMINAL_KEYBOARD_CODING (terminal)->common_flags
2236 & CODING_REQUIRE_DECODING_MASK)))
2237 return nextevt; /* No decoding needed. */
2238 else
2240 int meta_key = terminal->display_info.tty->meta_key;
2241 eassert (n < MAX_ENCODED_BYTES);
2242 events[n++] = nextevt;
2243 if (NATNUMP (nextevt)
2244 && XINT (nextevt) < (meta_key == 1 ? 0x80 : 0x100))
2245 { /* An encoded byte sequence, let's try to decode it. */
2246 struct coding_system *coding
2247 = TERMINAL_KEYBOARD_CODING (terminal);
2249 if (raw_text_coding_system_p (coding))
2251 int i;
2252 if (meta_key != 2)
2253 for (i = 0; i < n; i++)
2254 events[i] = make_number (XINT (events[i]) & ~0x80);
2256 else
2258 unsigned char src[MAX_ENCODED_BYTES];
2259 unsigned char dest[MAX_ENCODED_BYTES * MAX_MULTIBYTE_LENGTH];
2260 int i;
2261 for (i = 0; i < n; i++)
2262 src[i] = XINT (events[i]);
2263 if (meta_key != 2)
2264 for (i = 0; i < n; i++)
2265 src[i] &= ~0x80;
2266 coding->destination = dest;
2267 coding->dst_bytes = sizeof dest;
2268 decode_coding_c_string (coding, src, n, Qnil);
2269 eassert (coding->produced_char <= n);
2270 if (coding->produced_char == 0)
2271 { /* The encoded sequence is incomplete. */
2272 if (n < MAX_ENCODED_BYTES) /* Avoid buffer overflow. */
2273 continue; /* Read on! */
2275 else
2277 const unsigned char *p = coding->destination;
2278 eassert (coding->carryover_bytes == 0);
2279 n = 0;
2280 while (n < coding->produced_char)
2281 events[n++] = make_number (STRING_CHAR_ADVANCE (p));
2285 /* Now `events' should hold decoded events.
2286 Normally, n should be equal to 1, but better not rely on it.
2287 We can only return one event here, so return the first we
2288 had and keep the others (if any) for later. */
2289 while (n > 1)
2290 Vunread_command_events
2291 = Fcons (events[--n], Vunread_command_events);
2292 return events[0];
2294 #endif
2298 /* Read a character from the keyboard; call the redisplay if needed. */
2299 /* commandflag 0 means do not autosave, but do redisplay.
2300 -1 means do not redisplay, but do autosave.
2301 -2 means do neither.
2302 1 means do both.
2304 The argument MAP is a keymap for menu prompting.
2306 PREV_EVENT is the previous input event, or nil if we are reading
2307 the first event of a key sequence (or not reading a key sequence).
2308 If PREV_EVENT is t, that is a "magic" value that says
2309 not to run input methods, but in other respects to act as if
2310 not reading a key sequence.
2312 If USED_MOUSE_MENU is non-null, then set *USED_MOUSE_MENU to true
2313 if we used a mouse menu to read the input, or false otherwise. If
2314 USED_MOUSE_MENU is null, don't dereference it.
2316 Value is -2 when we find input on another keyboard. A second call
2317 to read_char will read it.
2319 If END_TIME is non-null, it is a pointer to a struct timespec
2320 specifying the maximum time to wait until. If no input arrives by
2321 that time, stop waiting and return nil.
2323 Value is t if we showed a menu and the user rejected it. */
2325 Lisp_Object
2326 read_char (int commandflag, Lisp_Object map,
2327 Lisp_Object prev_event,
2328 bool *used_mouse_menu, struct timespec *end_time)
2330 Lisp_Object c;
2331 ptrdiff_t jmpcount;
2332 sys_jmp_buf local_getcjmp;
2333 sys_jmp_buf save_jump;
2334 Lisp_Object tem, save;
2335 volatile Lisp_Object previous_echo_area_message;
2336 volatile Lisp_Object also_record;
2337 volatile bool reread, recorded;
2338 bool volatile polling_stopped_here = false;
2339 struct kboard *orig_kboard = current_kboard;
2341 also_record = Qnil;
2343 c = Qnil;
2344 previous_echo_area_message = Qnil;
2346 retry:
2348 recorded = false;
2350 if (CONSP (Vunread_post_input_method_events))
2352 c = XCAR (Vunread_post_input_method_events);
2353 Vunread_post_input_method_events
2354 = XCDR (Vunread_post_input_method_events);
2356 /* Undo what read_char_x_menu_prompt did when it unread
2357 additional keys returned by Fx_popup_menu. */
2358 if (CONSP (c)
2359 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2360 && NILP (XCDR (c)))
2361 c = XCAR (c);
2363 reread = true;
2364 goto reread_first;
2366 else
2367 reread = false;
2370 if (CONSP (Vunread_command_events))
2372 bool was_disabled = false;
2374 c = XCAR (Vunread_command_events);
2375 Vunread_command_events = XCDR (Vunread_command_events);
2377 /* Undo what sit-for did when it unread additional keys
2378 inside universal-argument. */
2380 if (CONSP (c) && EQ (XCAR (c), Qt))
2381 c = XCDR (c);
2382 else
2383 reread = true;
2385 /* Undo what read_char_x_menu_prompt did when it unread
2386 additional keys returned by Fx_popup_menu. */
2387 if (CONSP (c)
2388 && EQ (XCDR (c), Qdisabled)
2389 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2391 was_disabled = true;
2392 c = XCAR (c);
2395 /* If the queued event is something that used the mouse,
2396 set used_mouse_menu accordingly. */
2397 if (used_mouse_menu
2398 /* Also check was_disabled so last-nonmenu-event won't return
2399 a bad value when submenus are involved. (Bug#447) */
2400 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar) || was_disabled))
2401 *used_mouse_menu = true;
2403 goto reread_for_input_method;
2406 if (CONSP (Vunread_input_method_events))
2408 c = XCAR (Vunread_input_method_events);
2409 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2411 /* Undo what read_char_x_menu_prompt did when it unread
2412 additional keys returned by Fx_popup_menu. */
2413 if (CONSP (c)
2414 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2415 && NILP (XCDR (c)))
2416 c = XCAR (c);
2417 reread = true;
2418 goto reread_for_input_method;
2421 if (!NILP (Vexecuting_kbd_macro))
2423 /* We set this to Qmacro; since that's not a frame, nobody will
2424 try to switch frames on us, and the selected window will
2425 remain unchanged.
2427 Since this event came from a macro, it would be misleading to
2428 leave internal_last_event_frame set to wherever the last
2429 real event came from. Normally, a switch-frame event selects
2430 internal_last_event_frame after each command is read, but
2431 events read from a macro should never cause a new frame to be
2432 selected. */
2433 Vlast_event_frame = internal_last_event_frame = Qmacro;
2435 /* Exit the macro if we are at the end.
2436 Also, some things replace the macro with t
2437 to force an early exit. */
2438 if (EQ (Vexecuting_kbd_macro, Qt)
2439 || executing_kbd_macro_index >= XFASTINT (Flength (Vexecuting_kbd_macro)))
2441 XSETINT (c, -1);
2442 goto exit;
2445 c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index));
2446 if (STRINGP (Vexecuting_kbd_macro)
2447 && (XFASTINT (c) & 0x80) && (XFASTINT (c) <= 0xff))
2448 XSETFASTINT (c, CHAR_META | (XFASTINT (c) & ~0x80));
2450 executing_kbd_macro_index++;
2452 goto from_macro;
2455 if (!NILP (unread_switch_frame))
2457 c = unread_switch_frame;
2458 unread_switch_frame = Qnil;
2460 /* This event should make it into this_command_keys, and get echoed
2461 again, so we do not set `reread'. */
2462 goto reread_first;
2465 /* If redisplay was requested. */
2466 if (commandflag >= 0)
2468 bool echo_current = EQ (echo_message_buffer, echo_area_buffer[0]);
2470 /* If there is pending input, process any events which are not
2471 user-visible, such as X selection_request events. */
2472 if (input_pending
2473 || detect_input_pending_run_timers (0))
2474 swallow_events (false); /* May clear input_pending. */
2476 /* Redisplay if no pending input. */
2477 while (!(input_pending
2478 && (input_was_pending || !redisplay_dont_pause)))
2480 input_was_pending = input_pending;
2481 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2482 redisplay_preserve_echo_area (5);
2483 else
2484 redisplay ();
2486 if (!input_pending)
2487 /* Normal case: no input arrived during redisplay. */
2488 break;
2490 /* Input arrived and pre-empted redisplay.
2491 Process any events which are not user-visible. */
2492 swallow_events (false);
2493 /* If that cleared input_pending, try again to redisplay. */
2496 /* Prevent the redisplay we just did
2497 from messing up echoing of the input after the prompt. */
2498 if (commandflag == 0 && echo_current)
2499 echo_message_buffer = echo_area_buffer[0];
2503 /* Message turns off echoing unless more keystrokes turn it on again.
2505 The code in 20.x for the condition was
2507 1. echo_area_glyphs && *echo_area_glyphs
2508 2. && echo_area_glyphs != current_kboard->echobuf
2509 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2511 (1) means there's a current message displayed
2513 (2) means it's not the message from echoing from the current
2514 kboard.
2516 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2517 is set to a non-null value. This is done in read_char and it is
2518 set to echo_area_glyphs. That means
2519 ok_to_echo_at_next_pause is either null or
2520 current_kboard->echobuf with the appropriate current_kboard at
2521 that time.
2523 So, condition (3) means in clear text ok_to_echo_at_next_pause
2524 must be either null, or the current message isn't from echoing at
2525 all, or it's from echoing from a different kboard than the
2526 current one. */
2528 if (/* There currently is something in the echo area. */
2529 !NILP (echo_area_buffer[0])
2530 && (/* It's an echo from a different kboard. */
2531 echo_kboard != current_kboard
2532 /* Or we explicitly allow overwriting whatever there is. */
2533 || ok_to_echo_at_next_pause == NULL))
2534 cancel_echoing ();
2535 else
2536 echo_dash ();
2538 /* Try reading a character via menu prompting in the minibuf.
2539 Try this before the sit-for, because the sit-for
2540 would do the wrong thing if we are supposed to do
2541 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2542 after a mouse event so don't try a minibuf menu. */
2543 c = Qnil;
2544 if (KEYMAPP (map) && INTERACTIVE
2545 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2546 /* Don't bring up a menu if we already have another event. */
2547 && !CONSP (Vunread_command_events)
2548 && !detect_input_pending_run_timers (0))
2550 c = read_char_minibuf_menu_prompt (commandflag, map);
2552 if (INTEGERP (c) && XINT (c) == -2)
2553 return c; /* wrong_kboard_jmpbuf */
2555 if (! NILP (c))
2556 goto exit;
2559 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2560 We will do that below, temporarily for short sections of code,
2561 when appropriate. local_getcjmp must be in effect
2562 around any call to sit_for or kbd_buffer_get_event;
2563 it *must not* be in effect when we call redisplay. */
2565 jmpcount = SPECPDL_INDEX ();
2566 if (sys_setjmp (local_getcjmp))
2568 /* Handle quits while reading the keyboard. */
2569 /* We must have saved the outer value of getcjmp here,
2570 so restore it now. */
2571 restore_getcjmp (save_jump);
2572 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
2573 #if THREADS_ENABLED
2574 maybe_reacquire_global_lock ();
2575 #endif
2576 unbind_to (jmpcount, Qnil);
2577 XSETINT (c, quit_char);
2578 internal_last_event_frame = selected_frame;
2579 Vlast_event_frame = internal_last_event_frame;
2580 /* If we report the quit char as an event,
2581 don't do so more than once. */
2582 if (!NILP (Vinhibit_quit))
2583 Vquit_flag = Qnil;
2586 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2587 if (kb != current_kboard)
2589 Lisp_Object last = KVAR (kb, kbd_queue);
2590 /* We shouldn't get here if we were in single-kboard mode! */
2591 if (single_kboard)
2592 emacs_abort ();
2593 if (CONSP (last))
2595 while (CONSP (XCDR (last)))
2596 last = XCDR (last);
2597 if (!NILP (XCDR (last)))
2598 emacs_abort ();
2600 if (!CONSP (last))
2601 kset_kbd_queue (kb, list1 (c));
2602 else
2603 XSETCDR (last, list1 (c));
2604 kb->kbd_queue_has_data = true;
2605 current_kboard = kb;
2606 return make_number (-2); /* wrong_kboard_jmpbuf */
2609 goto non_reread;
2612 /* Start idle timers if no time limit is supplied. We don't do it
2613 if a time limit is supplied to avoid an infinite recursion in the
2614 situation where an idle timer calls `sit-for'. */
2616 if (!end_time)
2617 timer_start_idle ();
2619 /* If in middle of key sequence and minibuffer not active,
2620 start echoing if enough time elapses. */
2622 if (minibuf_level == 0
2623 && !end_time
2624 && !current_kboard->immediate_echo
2625 && (this_command_key_count > 0
2626 || !NILP (call0 (Qinternal_echo_keystrokes_prefix)))
2627 && ! noninteractive
2628 && echo_keystrokes_p ()
2629 && (/* No message. */
2630 NILP (echo_area_buffer[0])
2631 /* Or empty message. */
2632 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2633 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2634 /* Or already echoing from same kboard. */
2635 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2636 /* Or not echoing before and echoing allowed. */
2637 || (!echo_kboard && ok_to_echo_at_next_pause)))
2639 /* After a mouse event, start echoing right away.
2640 This is because we are probably about to display a menu,
2641 and we don't want to delay before doing so. */
2642 if (EVENT_HAS_PARAMETERS (prev_event))
2643 echo_now ();
2644 else
2646 Lisp_Object tem0;
2648 save_getcjmp (save_jump);
2649 restore_getcjmp (local_getcjmp);
2650 tem0 = sit_for (Vecho_keystrokes, 1, 1);
2651 restore_getcjmp (save_jump);
2652 if (EQ (tem0, Qt)
2653 && ! CONSP (Vunread_command_events))
2654 echo_now ();
2658 /* Maybe auto save due to number of keystrokes. */
2660 if (commandflag != 0 && commandflag != -2
2661 && auto_save_interval > 0
2662 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2663 && !detect_input_pending_run_timers (0))
2665 Fdo_auto_save (Qnil, Qnil);
2666 /* Hooks can actually change some buffers in auto save. */
2667 redisplay ();
2670 /* Try reading using an X menu.
2671 This is never confused with reading using the minibuf
2672 because the recursive call of read_char in read_char_minibuf_menu_prompt
2673 does not pass on any keymaps. */
2675 if (KEYMAPP (map) && INTERACTIVE
2676 && !NILP (prev_event)
2677 && EVENT_HAS_PARAMETERS (prev_event)
2678 && !EQ (XCAR (prev_event), Qmenu_bar)
2679 && !EQ (XCAR (prev_event), Qtool_bar)
2680 /* Don't bring up a menu if we already have another event. */
2681 && !CONSP (Vunread_command_events))
2683 c = read_char_x_menu_prompt (map, prev_event, used_mouse_menu);
2685 /* Now that we have read an event, Emacs is not idle. */
2686 if (!end_time)
2687 timer_stop_idle ();
2689 goto exit;
2692 /* Maybe autosave and/or garbage collect due to idleness. */
2694 if (INTERACTIVE && NILP (c))
2696 int delay_level;
2697 ptrdiff_t buffer_size;
2699 /* Slow down auto saves logarithmically in size of current buffer,
2700 and garbage collect while we're at it. */
2701 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2702 last_non_minibuf_size = Z - BEG;
2703 buffer_size = (last_non_minibuf_size >> 8) + 1;
2704 delay_level = 0;
2705 while (buffer_size > 64)
2706 delay_level++, buffer_size -= buffer_size >> 2;
2707 if (delay_level < 4) delay_level = 4;
2708 /* delay_level is 4 for files under around 50k, 7 at 100k,
2709 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2711 /* Auto save if enough time goes by without input. */
2712 if (commandflag != 0 && commandflag != -2
2713 && num_nonmacro_input_events > last_auto_save
2714 && INTEGERP (Vauto_save_timeout)
2715 && XINT (Vauto_save_timeout) > 0)
2717 Lisp_Object tem0;
2718 EMACS_INT timeout = XFASTINT (Vauto_save_timeout);
2720 timeout = min (timeout, MOST_POSITIVE_FIXNUM / delay_level * 4);
2721 timeout = delay_level * timeout / 4;
2722 save_getcjmp (save_jump);
2723 restore_getcjmp (local_getcjmp);
2724 tem0 = sit_for (make_number (timeout), 1, 1);
2725 restore_getcjmp (save_jump);
2727 if (EQ (tem0, Qt)
2728 && ! CONSP (Vunread_command_events))
2730 Fdo_auto_save (Qnil, Qnil);
2731 redisplay ();
2735 /* If there is still no input available, ask for GC. */
2736 if (!detect_input_pending_run_timers (0))
2737 maybe_gc ();
2740 /* Notify the caller if an autosave hook, or a timer, sentinel or
2741 filter in the sit_for calls above have changed the current
2742 kboard. This could happen if they use the minibuffer or start a
2743 recursive edit, like the fancy splash screen in server.el's
2744 filter. If this longjmp wasn't here, read_key_sequence would
2745 interpret the next key sequence using the wrong translation
2746 tables and function keymaps. */
2747 if (NILP (c) && current_kboard != orig_kboard)
2748 return make_number (-2); /* wrong_kboard_jmpbuf */
2750 /* If this has become non-nil here, it has been set by a timer
2751 or sentinel or filter. */
2752 if (CONSP (Vunread_command_events))
2754 c = XCAR (Vunread_command_events);
2755 Vunread_command_events = XCDR (Vunread_command_events);
2757 if (CONSP (c) && EQ (XCAR (c), Qt))
2758 c = XCDR (c);
2759 else
2760 reread = true;
2763 /* Read something from current KBOARD's side queue, if possible. */
2765 if (NILP (c))
2767 if (current_kboard->kbd_queue_has_data)
2769 if (!CONSP (KVAR (current_kboard, kbd_queue)))
2770 emacs_abort ();
2771 c = XCAR (KVAR (current_kboard, kbd_queue));
2772 kset_kbd_queue (current_kboard,
2773 XCDR (KVAR (current_kboard, kbd_queue)));
2774 if (NILP (KVAR (current_kboard, kbd_queue)))
2775 current_kboard->kbd_queue_has_data = false;
2776 input_pending = readable_events (0);
2777 if (EVENT_HAS_PARAMETERS (c)
2778 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2779 internal_last_event_frame = XCAR (XCDR (c));
2780 Vlast_event_frame = internal_last_event_frame;
2784 /* If current_kboard's side queue is empty check the other kboards.
2785 If one of them has data that we have not yet seen here,
2786 switch to it and process the data waiting for it.
2788 Note: if the events queued up for another kboard
2789 have already been seen here, and therefore are not a complete command,
2790 the kbd_queue_has_data field is 0, so we skip that kboard here.
2791 That's to avoid an infinite loop switching between kboards here. */
2792 if (NILP (c) && !single_kboard)
2794 KBOARD *kb;
2795 for (kb = all_kboards; kb; kb = kb->next_kboard)
2796 if (kb->kbd_queue_has_data)
2798 current_kboard = kb;
2799 return make_number (-2); /* wrong_kboard_jmpbuf */
2803 wrong_kboard:
2805 STOP_POLLING;
2807 if (NILP (c))
2809 c = read_decoded_event_from_main_queue (end_time, local_getcjmp,
2810 prev_event, used_mouse_menu);
2811 if (NILP (c) && end_time
2812 && timespec_cmp (*end_time, current_timespec ()) <= 0)
2814 goto exit;
2817 if (EQ (c, make_number (-2)))
2818 return c;
2821 non_reread:
2823 if (!end_time)
2824 timer_stop_idle ();
2825 RESUME_POLLING;
2827 if (NILP (c))
2829 if (commandflag >= 0
2830 && !input_pending && !detect_input_pending_run_timers (0))
2831 redisplay ();
2833 goto wrong_kboard;
2836 /* Buffer switch events are only for internal wakeups
2837 so don't show them to the user.
2838 Also, don't record a key if we already did. */
2839 if (BUFFERP (c))
2840 goto exit;
2842 /* Process special events within read_char
2843 and loop around to read another event. */
2844 save = Vquit_flag;
2845 Vquit_flag = Qnil;
2846 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2847 Vquit_flag = save;
2849 if (!NILP (tem))
2851 struct buffer *prev_buffer = current_buffer;
2852 last_input_event = c;
2853 call4 (Qcommand_execute, tem, Qnil, Fvector (1, &last_input_event), Qt);
2855 if (CONSP (c)
2856 && (EQ (XCAR (c), Qselect_window)
2857 #ifdef HAVE_DBUS
2858 || EQ (XCAR (c), Qdbus_event)
2859 #endif
2860 #ifdef USE_FILE_NOTIFY
2861 || EQ (XCAR (c), Qfile_notify)
2862 #endif
2863 || EQ (XCAR (c), Qconfig_changed_event))
2864 && !end_time)
2865 /* We stopped being idle for this event; undo that. This
2866 prevents automatic window selection (under
2867 mouse-autoselect-window) from acting as a real input event, for
2868 example banishing the mouse under mouse-avoidance-mode. */
2869 timer_resume_idle ();
2871 if (current_buffer != prev_buffer)
2873 /* The command may have changed the keymaps. Pretend there
2874 is input in another keyboard and return. This will
2875 recalculate keymaps. */
2876 c = make_number (-2);
2877 goto exit;
2879 else
2880 goto retry;
2883 /* Handle things that only apply to characters. */
2884 if (INTEGERP (c))
2886 /* If kbd_buffer_get_event gave us an EOF, return that. */
2887 if (XINT (c) == -1)
2888 goto exit;
2890 if ((STRINGP (KVAR (current_kboard, Vkeyboard_translate_table))
2891 && UNSIGNED_CMP (XFASTINT (c), <,
2892 SCHARS (KVAR (current_kboard,
2893 Vkeyboard_translate_table))))
2894 || (VECTORP (KVAR (current_kboard, Vkeyboard_translate_table))
2895 && UNSIGNED_CMP (XFASTINT (c), <,
2896 ASIZE (KVAR (current_kboard,
2897 Vkeyboard_translate_table))))
2898 || (CHAR_TABLE_P (KVAR (current_kboard, Vkeyboard_translate_table))
2899 && CHARACTERP (c)))
2901 Lisp_Object d;
2902 d = Faref (KVAR (current_kboard, Vkeyboard_translate_table), c);
2903 /* nil in keyboard-translate-table means no translation. */
2904 if (!NILP (d))
2905 c = d;
2909 /* If this event is a mouse click in the menu bar,
2910 return just menu-bar for now. Modify the mouse click event
2911 so we won't do this twice, then queue it up. */
2912 if (EVENT_HAS_PARAMETERS (c)
2913 && CONSP (XCDR (c))
2914 && CONSP (EVENT_START (c))
2915 && CONSP (XCDR (EVENT_START (c))))
2917 Lisp_Object posn;
2919 posn = POSN_POSN (EVENT_START (c));
2920 /* Handle menu-bar events:
2921 insert the dummy prefix event `menu-bar'. */
2922 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2924 /* Change menu-bar to (menu-bar) as the event "position". */
2925 POSN_SET_POSN (EVENT_START (c), list1 (posn));
2927 also_record = c;
2928 Vunread_command_events = Fcons (c, Vunread_command_events);
2929 c = posn;
2933 /* Store these characters into recent_keys, the dribble file if any,
2934 and the keyboard macro being defined, if any. */
2935 record_char (c);
2936 recorded = true;
2937 if (! NILP (also_record))
2938 record_char (also_record);
2940 /* Wipe the echo area.
2941 But first, if we are about to use an input method,
2942 save the echo area contents for it to refer to. */
2943 if (INTEGERP (c)
2944 && ! NILP (Vinput_method_function)
2945 && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127)
2947 previous_echo_area_message = Fcurrent_message ();
2948 Vinput_method_previous_message = previous_echo_area_message;
2951 /* Now wipe the echo area, except for help events which do their
2952 own stuff with the echo area. */
2953 if (!CONSP (c)
2954 || (!(EQ (Qhelp_echo, XCAR (c)))
2955 && !(EQ (Qswitch_frame, XCAR (c)))
2956 /* Don't wipe echo area for select window events: These might
2957 get delayed via `mouse-autoselect-window' (Bug#11304). */
2958 && !(EQ (Qselect_window, XCAR (c)))))
2960 if (!NILP (echo_area_buffer[0]))
2962 safe_run_hooks (Qecho_area_clear_hook);
2963 clear_message (1, 0);
2967 reread_for_input_method:
2968 from_macro:
2969 /* Pass this to the input method, if appropriate. */
2970 if (INTEGERP (c)
2971 && ! NILP (Vinput_method_function)
2972 /* Don't run the input method within a key sequence,
2973 after the first event of the key sequence. */
2974 && NILP (prev_event)
2975 && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127)
2977 Lisp_Object keys;
2978 ptrdiff_t key_count;
2979 ptrdiff_t command_key_start;
2980 ptrdiff_t count = SPECPDL_INDEX ();
2982 /* Save the echo status. */
2983 bool saved_immediate_echo = current_kboard->immediate_echo;
2984 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
2985 Lisp_Object saved_echo_string = KVAR (current_kboard, echo_string);
2986 Lisp_Object saved_echo_prompt = KVAR (current_kboard, echo_prompt);
2988 /* Save the this_command_keys status. */
2989 key_count = this_command_key_count;
2990 command_key_start = this_single_command_key_start;
2992 if (key_count > 0)
2993 keys = Fcopy_sequence (this_command_keys);
2994 else
2995 keys = Qnil;
2997 /* Clear out this_command_keys. */
2998 this_command_key_count = 0;
2999 this_single_command_key_start = 0;
3001 /* Now wipe the echo area. */
3002 if (!NILP (echo_area_buffer[0]))
3003 safe_run_hooks (Qecho_area_clear_hook);
3004 clear_message (1, 0);
3005 echo_truncate (0);
3007 /* If we are not reading a key sequence,
3008 never use the echo area. */
3009 if (!KEYMAPP (map))
3011 specbind (Qinput_method_use_echo_area, Qt);
3014 /* Call the input method. */
3015 tem = call1 (Vinput_method_function, c);
3017 tem = unbind_to (count, tem);
3019 /* Restore the saved echoing state
3020 and this_command_keys state. */
3021 this_command_key_count = key_count;
3022 this_single_command_key_start = command_key_start;
3023 if (key_count > 0)
3024 this_command_keys = keys;
3026 cancel_echoing ();
3027 ok_to_echo_at_next_pause = saved_ok_to_echo;
3028 kset_echo_string (current_kboard, saved_echo_string);
3029 kset_echo_prompt (current_kboard, saved_echo_prompt);
3030 if (saved_immediate_echo)
3031 echo_now ();
3033 /* The input method can return no events. */
3034 if (! CONSP (tem))
3036 /* Bring back the previous message, if any. */
3037 if (! NILP (previous_echo_area_message))
3038 message_with_string ("%s", previous_echo_area_message, 0);
3039 goto retry;
3041 /* It returned one event or more. */
3042 c = XCAR (tem);
3043 Vunread_post_input_method_events
3044 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3046 /* When we consume events from the various unread-*-events lists, we
3047 bypass the code that records input, so record these events now if
3048 they were not recorded already. */
3049 if (!recorded)
3051 record_char (c);
3052 recorded = true;
3055 reread_first:
3057 /* Display help if not echoing. */
3058 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3060 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3061 Lisp_Object help, object, position, window, htem;
3063 htem = Fcdr (XCDR (c));
3064 help = Fcar (htem);
3065 htem = Fcdr (htem);
3066 window = Fcar (htem);
3067 htem = Fcdr (htem);
3068 object = Fcar (htem);
3069 htem = Fcdr (htem);
3070 position = Fcar (htem);
3072 show_help_echo (help, window, object, position);
3074 /* We stopped being idle for this event; undo that. */
3075 if (!end_time)
3076 timer_resume_idle ();
3077 goto retry;
3080 if ((! reread || this_command_key_count == 0)
3081 && !end_time)
3084 /* Don't echo mouse motion events. */
3085 if (! (EVENT_HAS_PARAMETERS (c)
3086 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3087 /* Once we reread a character, echoing can happen
3088 the next time we pause to read a new one. */
3089 ok_to_echo_at_next_pause = current_kboard;
3091 /* Record this character as part of the current key. */
3092 add_command_key (c);
3093 if (! NILP (also_record))
3094 add_command_key (also_record);
3096 echo_update ();
3099 last_input_event = c;
3100 num_input_events++;
3102 /* Process the help character specially if enabled. */
3103 if (!NILP (Vhelp_form) && help_char_p (c))
3105 ptrdiff_t count = SPECPDL_INDEX ();
3107 help_form_saved_window_configs
3108 = Fcons (Fcurrent_window_configuration (Qnil),
3109 help_form_saved_window_configs);
3110 record_unwind_protect_void (read_char_help_form_unwind);
3111 call0 (Qhelp_form_show);
3113 cancel_echoing ();
3116 c = read_char (0, Qnil, Qnil, 0, NULL);
3117 if (EVENT_HAS_PARAMETERS (c)
3118 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_click))
3119 XSETCAR (help_form_saved_window_configs, Qnil);
3121 while (BUFFERP (c));
3122 /* Remove the help from the frame. */
3123 unbind_to (count, Qnil);
3125 redisplay ();
3126 if (EQ (c, make_number (040)))
3128 cancel_echoing ();
3130 c = read_char (0, Qnil, Qnil, 0, NULL);
3131 while (BUFFERP (c));
3135 exit:
3136 RESUME_POLLING;
3137 input_was_pending = input_pending;
3138 return c;
3141 /* Record a key that came from a mouse menu.
3142 Record it for echoing, for this-command-keys, and so on. */
3144 static void
3145 record_menu_key (Lisp_Object c)
3147 /* Wipe the echo area. */
3148 clear_message (1, 0);
3150 record_char (c);
3152 /* Once we reread a character, echoing can happen
3153 the next time we pause to read a new one. */
3154 ok_to_echo_at_next_pause = NULL;
3156 /* Record this character as part of the current key. */
3157 add_command_key (c);
3158 echo_update ();
3160 /* Re-reading in the middle of a command. */
3161 last_input_event = c;
3162 num_input_events++;
3165 /* Return true if should recognize C as "the help character". */
3167 static bool
3168 help_char_p (Lisp_Object c)
3170 Lisp_Object tail;
3172 if (EQ (c, Vhelp_char))
3173 return 1;
3174 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3175 if (EQ (c, XCAR (tail)))
3176 return 1;
3177 return 0;
3180 /* Record the input event C in various ways. */
3182 static void
3183 record_char (Lisp_Object c)
3185 int recorded = 0;
3187 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3189 /* To avoid filling recent_keys with help-echo and mouse-movement
3190 events, we filter out repeated help-echo events, only store the
3191 first and last in a series of mouse-movement events, and don't
3192 store repeated help-echo events which are only separated by
3193 mouse-movement events. */
3195 Lisp_Object ev1, ev2, ev3;
3196 int ix1, ix2, ix3;
3198 if ((ix1 = recent_keys_index - 1) < 0)
3199 ix1 = NUM_RECENT_KEYS - 1;
3200 ev1 = AREF (recent_keys, ix1);
3202 if ((ix2 = ix1 - 1) < 0)
3203 ix2 = NUM_RECENT_KEYS - 1;
3204 ev2 = AREF (recent_keys, ix2);
3206 if ((ix3 = ix2 - 1) < 0)
3207 ix3 = NUM_RECENT_KEYS - 1;
3208 ev3 = AREF (recent_keys, ix3);
3210 if (EQ (XCAR (c), Qhelp_echo))
3212 /* Don't record `help-echo' in recent_keys unless it shows some help
3213 message, and a different help than the previously recorded
3214 event. */
3215 Lisp_Object help, last_help;
3217 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3218 if (!STRINGP (help))
3219 recorded = 1;
3220 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3221 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3222 recorded = 1;
3223 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3224 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3225 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3226 recorded = -1;
3227 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3228 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3229 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3230 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3231 recorded = -2;
3233 else if (EQ (XCAR (c), Qmouse_movement))
3235 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3236 So additional mouse movement events replace the last element. */
3237 Lisp_Object last_window, window;
3239 window = Fcar_safe (Fcar_safe (XCDR (c)));
3240 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3241 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3242 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3243 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3245 ASET (recent_keys, ix1, c);
3246 recorded = 1;
3250 else if (NILP (Vexecuting_kbd_macro))
3251 store_kbd_macro_char (c);
3253 /* recent_keys should not include events from keyboard macros. */
3254 if (NILP (Vexecuting_kbd_macro))
3256 if (!recorded)
3258 total_keys += total_keys < NUM_RECENT_KEYS;
3259 ASET (recent_keys, recent_keys_index, c);
3260 if (++recent_keys_index >= NUM_RECENT_KEYS)
3261 recent_keys_index = 0;
3263 else if (recorded < 0)
3265 /* We need to remove one or two events from recent_keys.
3266 To do this, we simply put nil at those events and move the
3267 recent_keys_index backwards over those events. Usually,
3268 users will never see those nil events, as they will be
3269 overwritten by the command keys entered to see recent_keys
3270 (e.g. C-h l). */
3272 while (recorded++ < 0 && total_keys > 0)
3274 if (total_keys < NUM_RECENT_KEYS)
3275 total_keys--;
3276 if (--recent_keys_index < 0)
3277 recent_keys_index = NUM_RECENT_KEYS - 1;
3278 ASET (recent_keys, recent_keys_index, Qnil);
3282 num_nonmacro_input_events++;
3285 /* Write c to the dribble file. If c is a lispy event, write
3286 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3287 If you, dear reader, have a better idea, you've got the source. :-) */
3288 if (dribble)
3290 block_input ();
3291 if (INTEGERP (c))
3293 if (XUINT (c) < 0x100)
3294 putc_unlocked (XUINT (c), dribble);
3295 else
3296 fprintf (dribble, " 0x%"pI"x", XUINT (c));
3298 else
3300 Lisp_Object dribblee;
3302 /* If it's a structured event, take the event header. */
3303 dribblee = EVENT_HEAD (c);
3305 if (SYMBOLP (dribblee))
3307 putc_unlocked ('<', dribble);
3308 fwrite_unlocked (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3309 SBYTES (SYMBOL_NAME (dribblee)),
3310 dribble);
3311 putc_unlocked ('>', dribble);
3315 fflush_unlocked (dribble);
3316 unblock_input ();
3320 /* Copy out or in the info on where C-g should throw to.
3321 This is used when running Lisp code from within get_char,
3322 in case get_char is called recursively.
3323 See read_process_output. */
3325 static void
3326 save_getcjmp (sys_jmp_buf temp)
3328 memcpy (temp, getcjmp, sizeof getcjmp);
3331 static void
3332 restore_getcjmp (sys_jmp_buf temp)
3334 memcpy (getcjmp, temp, sizeof getcjmp);
3337 /* Low level keyboard/mouse input.
3338 kbd_buffer_store_event places events in kbd_buffer, and
3339 kbd_buffer_get_event retrieves them. */
3341 /* Return true if there are any events in the queue that read-char
3342 would return. If this returns false, a read-char would block. */
3343 static bool
3344 readable_events (int flags)
3346 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3347 timer_check ();
3349 /* If the buffer contains only FOCUS_IN_EVENT events, and
3350 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3351 if (kbd_fetch_ptr != kbd_store_ptr)
3353 if (flags & (READABLE_EVENTS_FILTER_EVENTS
3354 #ifdef USE_TOOLKIT_SCROLL_BARS
3355 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3356 #endif
3359 union buffered_input_event *event = kbd_fetch_ptr;
3363 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3364 event = kbd_buffer;
3365 if (!(
3366 #ifdef USE_TOOLKIT_SCROLL_BARS
3367 (flags & READABLE_EVENTS_FILTER_EVENTS) &&
3368 #endif
3369 event->kind == FOCUS_IN_EVENT)
3370 #ifdef USE_TOOLKIT_SCROLL_BARS
3371 && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3372 && (event->kind == SCROLL_BAR_CLICK_EVENT
3373 || event->kind == HORIZONTAL_SCROLL_BAR_CLICK_EVENT)
3374 && event->ie.part == scroll_bar_handle
3375 && event->ie.modifiers == 0)
3376 #endif
3377 && !((flags & READABLE_EVENTS_FILTER_EVENTS)
3378 && event->kind == BUFFER_SWITCH_EVENT))
3379 return 1;
3380 event++;
3382 while (event != kbd_store_ptr);
3384 else
3385 return 1;
3388 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3389 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3390 return 1;
3391 if (single_kboard)
3393 if (current_kboard->kbd_queue_has_data)
3394 return 1;
3396 else
3398 KBOARD *kb;
3399 for (kb = all_kboards; kb; kb = kb->next_kboard)
3400 if (kb->kbd_queue_has_data)
3401 return 1;
3403 return 0;
3406 /* Set this for debugging, to have a way to get out */
3407 int stop_character EXTERNALLY_VISIBLE;
3409 static KBOARD *
3410 event_to_kboard (struct input_event *event)
3412 /* Not applicable for these special events. */
3413 if (event->kind == SELECTION_REQUEST_EVENT
3414 || event->kind == SELECTION_CLEAR_EVENT)
3415 return NULL;
3416 else
3418 Lisp_Object obj = event->frame_or_window;
3419 /* There are some events that set this field to nil or string. */
3420 if (WINDOWP (obj))
3421 obj = WINDOW_FRAME (XWINDOW (obj));
3422 /* Also ignore dead frames here. */
3423 return ((FRAMEP (obj) && FRAME_LIVE_P (XFRAME (obj)))
3424 ? FRAME_KBOARD (XFRAME (obj)) : NULL);
3428 #ifdef subprocesses
3429 /* Return the number of slots occupied in kbd_buffer. */
3431 static int
3432 kbd_buffer_nr_stored (void)
3434 return kbd_fetch_ptr == kbd_store_ptr
3436 : (kbd_fetch_ptr < kbd_store_ptr
3437 ? kbd_store_ptr - kbd_fetch_ptr
3438 : ((kbd_buffer + KBD_BUFFER_SIZE) - kbd_fetch_ptr
3439 + (kbd_store_ptr - kbd_buffer)));
3441 #endif /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3443 void
3444 kbd_buffer_store_event (register struct input_event *event)
3446 kbd_buffer_store_event_hold (event, 0);
3449 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3451 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3452 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3453 Else, if EVENT is a quit event, store the quit event
3454 in HOLD_QUIT, and return (thus ignoring further events).
3456 This is used to postpone the processing of the quit event until all
3457 subsequent input events have been parsed (and discarded). */
3459 void
3460 kbd_buffer_store_buffered_event (union buffered_input_event *event,
3461 struct input_event *hold_quit)
3463 if (event->kind == NO_EVENT)
3464 emacs_abort ();
3466 if (hold_quit && hold_quit->kind != NO_EVENT)
3467 return;
3469 if (event->kind == ASCII_KEYSTROKE_EVENT)
3471 int c = event->ie.code & 0377;
3473 if (event->ie.modifiers & ctrl_modifier)
3474 c = make_ctrl_char (c);
3476 c |= (event->ie.modifiers
3477 & (meta_modifier | alt_modifier
3478 | hyper_modifier | super_modifier));
3480 if (c == quit_char)
3482 KBOARD *kb = FRAME_KBOARD (XFRAME (event->ie.frame_or_window));
3484 if (single_kboard && kb != current_kboard)
3486 kset_kbd_queue
3487 (kb, list2 (make_lispy_switch_frame (event->ie.frame_or_window),
3488 make_number (c)));
3489 kb->kbd_queue_has_data = true;
3490 union buffered_input_event *sp;
3491 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3493 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3494 sp = kbd_buffer;
3496 if (event_to_kboard (&sp->ie) == kb)
3498 sp->ie.kind = NO_EVENT;
3499 sp->ie.frame_or_window = Qnil;
3500 sp->ie.arg = Qnil;
3503 return;
3506 if (hold_quit)
3508 *hold_quit = event->ie;
3509 return;
3512 /* If this results in a quit_char being returned to Emacs as
3513 input, set Vlast_event_frame properly. If this doesn't
3514 get returned to Emacs as an event, the next event read
3515 will set Vlast_event_frame again, so this is safe to do. */
3517 Lisp_Object focus;
3519 focus = FRAME_FOCUS_FRAME (XFRAME (event->ie.frame_or_window));
3520 if (NILP (focus))
3521 focus = event->ie.frame_or_window;
3522 internal_last_event_frame = focus;
3523 Vlast_event_frame = focus;
3526 handle_interrupt (0);
3527 return;
3530 if (c && c == stop_character)
3532 sys_suspend ();
3533 return;
3536 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3537 Just ignore the second one. */
3538 else if (event->kind == BUFFER_SWITCH_EVENT
3539 && kbd_fetch_ptr != kbd_store_ptr
3540 && ((kbd_store_ptr == kbd_buffer
3541 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3542 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3543 return;
3545 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3546 kbd_store_ptr = kbd_buffer;
3548 /* Don't let the very last slot in the buffer become full,
3549 since that would make the two pointers equal,
3550 and that is indistinguishable from an empty buffer.
3551 Discard the event if it would fill the last slot. */
3552 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3554 *kbd_store_ptr = *event;
3555 ++kbd_store_ptr;
3556 #ifdef subprocesses
3557 if (kbd_buffer_nr_stored () > KBD_BUFFER_SIZE / 2
3558 && ! kbd_on_hold_p ())
3560 /* Don't read keyboard input until we have processed kbd_buffer.
3561 This happens when pasting text longer than KBD_BUFFER_SIZE/2. */
3562 hold_keyboard_input ();
3563 unrequest_sigio ();
3564 stop_polling ();
3566 #endif /* subprocesses */
3569 Lisp_Object ignore_event;
3571 switch (event->kind)
3573 case FOCUS_IN_EVENT: ignore_event = Qfocus_in; break;
3574 case FOCUS_OUT_EVENT: ignore_event = Qfocus_out; break;
3575 case HELP_EVENT: ignore_event = Qhelp_echo; break;
3576 case ICONIFY_EVENT: ignore_event = Qiconify_frame; break;
3577 case DEICONIFY_EVENT: ignore_event = Qmake_frame_visible; break;
3578 case SELECTION_REQUEST_EVENT: ignore_event = Qselection_request; break;
3579 default: ignore_event = Qnil; break;
3582 /* If we're inside while-no-input, and this event qualifies
3583 as input, set quit-flag to cause an interrupt. */
3584 if (!NILP (Vthrow_on_input)
3585 && NILP (Fmemq (ignore_event, Vwhile_no_input_ignore_events)))
3586 Vquit_flag = Vthrow_on_input;
3590 #ifdef HAVE_X11
3592 /* Put a selection input event back in the head of the event queue. */
3594 void
3595 kbd_buffer_unget_event (struct selection_input_event *event)
3597 if (kbd_fetch_ptr == kbd_buffer)
3598 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3600 /* Don't let the very last slot in the buffer become full, */
3601 union buffered_input_event *kp = kbd_fetch_ptr - 1;
3602 if (kp != kbd_store_ptr)
3604 kp->sie = *event;
3605 kbd_fetch_ptr = kp;
3609 #endif
3611 /* Limit help event positions to this range, to avoid overflow problems. */
3612 #define INPUT_EVENT_POS_MAX \
3613 ((ptrdiff_t) min (PTRDIFF_MAX, min (TYPE_MAXIMUM (Time) / 2, \
3614 MOST_POSITIVE_FIXNUM)))
3615 #define INPUT_EVENT_POS_MIN (-1 - INPUT_EVENT_POS_MAX)
3617 /* Return a Time that encodes position POS. POS must be in range. */
3619 static Time
3620 position_to_Time (ptrdiff_t pos)
3622 eassert (INPUT_EVENT_POS_MIN <= pos && pos <= INPUT_EVENT_POS_MAX);
3623 return pos;
3626 /* Return the position that ENCODED_POS encodes.
3627 Avoid signed integer overflow. */
3629 static ptrdiff_t
3630 Time_to_position (Time encoded_pos)
3632 if (encoded_pos <= INPUT_EVENT_POS_MAX)
3633 return encoded_pos;
3634 Time encoded_pos_min = INPUT_EVENT_POS_MIN;
3635 eassert (encoded_pos_min <= encoded_pos);
3636 ptrdiff_t notpos = -1 - encoded_pos;
3637 return -1 - notpos;
3640 /* Generate a HELP_EVENT input_event and store it in the keyboard
3641 buffer.
3643 HELP is the help form.
3645 FRAME and WINDOW are the frame and window where the help is
3646 generated. OBJECT is the Lisp object where the help was found (a
3647 buffer, a string, an overlay, or nil if neither from a string nor
3648 from a buffer). POS is the position within OBJECT where the help
3649 was found. */
3651 void
3652 gen_help_event (Lisp_Object help, Lisp_Object frame, Lisp_Object window,
3653 Lisp_Object object, ptrdiff_t pos)
3655 struct input_event event;
3657 event.kind = HELP_EVENT;
3658 event.frame_or_window = frame;
3659 event.arg = object;
3660 event.x = WINDOWP (window) ? window : frame;
3661 event.y = help;
3662 event.timestamp = position_to_Time (pos);
3663 kbd_buffer_store_event (&event);
3667 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3669 void
3670 kbd_buffer_store_help_event (Lisp_Object frame, Lisp_Object help)
3672 struct input_event event;
3674 event.kind = HELP_EVENT;
3675 event.frame_or_window = frame;
3676 event.arg = Qnil;
3677 event.x = Qnil;
3678 event.y = help;
3679 event.timestamp = 0;
3680 kbd_buffer_store_event (&event);
3684 /* Discard any mouse events in the event buffer by setting them to
3685 NO_EVENT. */
3686 void
3687 discard_mouse_events (void)
3689 union buffered_input_event *sp;
3690 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3692 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3693 sp = kbd_buffer;
3695 if (sp->kind == MOUSE_CLICK_EVENT
3696 || sp->kind == WHEEL_EVENT
3697 || sp->kind == HORIZ_WHEEL_EVENT
3698 #ifdef HAVE_GPM
3699 || sp->kind == GPM_CLICK_EVENT
3700 #endif
3701 || sp->kind == SCROLL_BAR_CLICK_EVENT
3702 || sp->kind == HORIZONTAL_SCROLL_BAR_CLICK_EVENT)
3704 sp->kind = NO_EVENT;
3710 /* Return true if there are any real events waiting in the event
3711 buffer, not counting `NO_EVENT's.
3713 Discard NO_EVENT events at the front of the input queue, possibly
3714 leaving the input queue empty if there are no real input events. */
3716 bool
3717 kbd_buffer_events_waiting (void)
3719 union buffered_input_event *sp;
3721 for (sp = kbd_fetch_ptr;
3722 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3723 ++sp)
3725 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3726 sp = kbd_buffer;
3729 kbd_fetch_ptr = sp;
3730 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3734 /* Clear input event EVENT. */
3736 static void
3737 clear_event (union buffered_input_event *event)
3739 event->kind = NO_EVENT;
3743 /* Read one event from the event buffer, waiting if necessary.
3744 The value is a Lisp object representing the event.
3745 The value is nil for an event that should be ignored,
3746 or that was handled here.
3747 We always read and discard one event. */
3749 static Lisp_Object
3750 kbd_buffer_get_event (KBOARD **kbp,
3751 bool *used_mouse_menu,
3752 struct timespec *end_time)
3754 Lisp_Object obj;
3756 #ifdef subprocesses
3757 if (kbd_on_hold_p () && kbd_buffer_nr_stored () < KBD_BUFFER_SIZE / 4)
3759 /* Start reading input again because we have processed enough to
3760 be able to accept new events again. */
3761 unhold_keyboard_input ();
3762 request_sigio ();
3763 start_polling ();
3765 #endif /* subprocesses */
3767 #if !defined HAVE_DBUS && !defined USE_FILE_NOTIFY
3768 if (noninteractive
3769 /* In case we are running as a daemon, only do this before
3770 detaching from the terminal. */
3771 || (IS_DAEMON && DAEMON_RUNNING))
3773 int c = getchar_unlocked ();
3774 XSETINT (obj, c);
3775 *kbp = current_kboard;
3776 return obj;
3778 #endif /* !defined HAVE_DBUS && !defined USE_FILE_NOTIFY */
3780 /* Wait until there is input available. */
3781 for (;;)
3783 /* Break loop if there's an unread command event. Needed in
3784 moused window autoselection which uses a timer to insert such
3785 events. */
3786 if (CONSP (Vunread_command_events))
3787 break;
3789 if (kbd_fetch_ptr != kbd_store_ptr)
3790 break;
3791 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3792 break;
3794 /* If the quit flag is set, then read_char will return
3795 quit_char, so that counts as "available input." */
3796 if (!NILP (Vquit_flag))
3797 quit_throw_to_read_char (0);
3799 /* One way or another, wait until input is available; then, if
3800 interrupt handlers have not read it, read it now. */
3802 #ifdef USABLE_SIGIO
3803 gobble_input ();
3804 #endif
3805 if (kbd_fetch_ptr != kbd_store_ptr)
3806 break;
3807 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3808 break;
3809 if (end_time)
3811 struct timespec now = current_timespec ();
3812 if (timespec_cmp (*end_time, now) <= 0)
3813 return Qnil; /* Finished waiting. */
3814 else
3816 struct timespec duration = timespec_sub (*end_time, now);
3817 wait_reading_process_output (min (duration.tv_sec,
3818 WAIT_READING_MAX),
3819 duration.tv_nsec,
3820 -1, 1, Qnil, NULL, 0);
3823 else
3825 bool do_display = true;
3827 if (FRAME_TERMCAP_P (SELECTED_FRAME ()))
3829 struct tty_display_info *tty = CURTTY ();
3831 /* When this TTY is displaying a menu, we must prevent
3832 any redisplay, because we modify the frame's glyph
3833 matrix behind the back of the display engine. */
3834 if (tty->showing_menu)
3835 do_display = false;
3838 wait_reading_process_output (0, 0, -1, do_display, Qnil, NULL, 0);
3841 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3842 gobble_input ();
3845 if (CONSP (Vunread_command_events))
3847 Lisp_Object first;
3848 first = XCAR (Vunread_command_events);
3849 Vunread_command_events = XCDR (Vunread_command_events);
3850 *kbp = current_kboard;
3851 return first;
3854 /* At this point, we know that there is a readable event available
3855 somewhere. If the event queue is empty, then there must be a
3856 mouse movement enabled and available. */
3857 if (kbd_fetch_ptr != kbd_store_ptr)
3859 union buffered_input_event *event;
3861 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3862 ? kbd_fetch_ptr
3863 : kbd_buffer);
3865 *kbp = event_to_kboard (&event->ie);
3866 if (*kbp == 0)
3867 *kbp = current_kboard; /* Better than returning null ptr? */
3869 obj = Qnil;
3871 /* These two kinds of events get special handling
3872 and don't actually appear to the command loop.
3873 We return nil for them. */
3874 if (event->kind == SELECTION_REQUEST_EVENT
3875 || event->kind == SELECTION_CLEAR_EVENT)
3877 #ifdef HAVE_X11
3878 /* Remove it from the buffer before processing it,
3879 since otherwise swallow_events will see it
3880 and process it again. */
3881 struct selection_input_event copy = event->sie;
3882 kbd_fetch_ptr = event + 1;
3883 input_pending = readable_events (0);
3884 x_handle_selection_event (&copy);
3885 #else
3886 /* We're getting selection request events, but we don't have
3887 a window system. */
3888 emacs_abort ();
3889 #endif
3892 #if defined (HAVE_NS)
3893 else if (event->kind == NS_TEXT_EVENT)
3895 if (event->ie.code == KEY_NS_PUT_WORKING_TEXT)
3896 obj = list1 (intern ("ns-put-working-text"));
3897 else
3898 obj = list1 (intern ("ns-unput-working-text"));
3899 kbd_fetch_ptr = event + 1;
3900 if (used_mouse_menu)
3901 *used_mouse_menu = true;
3903 #endif
3905 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
3906 || defined (HAVE_NS)
3907 else if (event->kind == DELETE_WINDOW_EVENT)
3909 /* Make an event (delete-frame (FRAME)). */
3910 obj = list2 (Qdelete_frame, list1 (event->ie.frame_or_window));
3911 kbd_fetch_ptr = event + 1;
3913 #endif
3915 #ifdef HAVE_NTGUI
3916 else if (event->kind == END_SESSION_EVENT)
3918 /* Make an event (end-session). */
3919 obj = list1 (Qend_session);
3920 kbd_fetch_ptr = event + 1;
3922 #endif
3924 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
3925 || defined (HAVE_NS)
3926 else if (event->kind == ICONIFY_EVENT)
3928 /* Make an event (iconify-frame (FRAME)). */
3929 obj = list2 (Qiconify_frame, list1 (event->ie.frame_or_window));
3930 kbd_fetch_ptr = event + 1;
3932 else if (event->kind == DEICONIFY_EVENT)
3934 /* Make an event (make-frame-visible (FRAME)). */
3935 obj = list2 (Qmake_frame_visible, list1 (event->ie.frame_or_window));
3936 kbd_fetch_ptr = event + 1;
3938 #endif
3939 else if (event->kind == BUFFER_SWITCH_EVENT)
3941 /* The value doesn't matter here; only the type is tested. */
3942 XSETBUFFER (obj, current_buffer);
3943 kbd_fetch_ptr = event + 1;
3945 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
3946 || defined (HAVE_NS) || defined (USE_GTK)
3947 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
3949 kbd_fetch_ptr = event + 1;
3950 input_pending = readable_events (0);
3951 if (FRAME_LIVE_P (XFRAME (event->ie.frame_or_window)))
3952 x_activate_menubar (XFRAME (event->ie.frame_or_window));
3954 #endif
3955 #ifdef HAVE_NTGUI
3956 else if (event->kind == LANGUAGE_CHANGE_EVENT)
3958 /* Make an event (language-change FRAME CODEPAGE LANGUAGE-ID). */
3959 obj = list4 (Qlanguage_change,
3960 event->ie.frame_or_window,
3961 make_number (event->ie.code),
3962 make_number (event->ie.modifiers));
3963 kbd_fetch_ptr = event + 1;
3965 #endif
3966 #ifdef USE_FILE_NOTIFY
3967 else if (event->kind == FILE_NOTIFY_EVENT)
3969 #ifdef HAVE_W32NOTIFY
3970 /* Make an event (file-notify (DESCRIPTOR ACTION FILE) CALLBACK). */
3971 obj = list3 (Qfile_notify, event->ie.arg, event->ie.frame_or_window);
3972 #else
3973 obj = make_lispy_event (&event->ie);
3974 #endif
3975 kbd_fetch_ptr = event + 1;
3977 #endif /* USE_FILE_NOTIFY */
3978 else if (event->kind == SAVE_SESSION_EVENT)
3980 obj = list2 (Qsave_session, event->ie.arg);
3981 kbd_fetch_ptr = event + 1;
3983 /* Just discard these, by returning nil.
3984 With MULTI_KBOARD, these events are used as placeholders
3985 when we need to randomly delete events from the queue.
3986 (They shouldn't otherwise be found in the buffer,
3987 but on some machines it appears they do show up
3988 even without MULTI_KBOARD.) */
3989 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
3990 mouse events during a popup-menu call. */
3991 else if (event->kind == NO_EVENT)
3992 kbd_fetch_ptr = event + 1;
3993 else if (event->kind == HELP_EVENT)
3995 Lisp_Object object, position, help, frame, window;
3997 frame = event->ie.frame_or_window;
3998 object = event->ie.arg;
3999 position = make_number (Time_to_position (event->ie.timestamp));
4000 window = event->ie.x;
4001 help = event->ie.y;
4002 clear_event (event);
4004 kbd_fetch_ptr = event + 1;
4005 if (!WINDOWP (window))
4006 window = Qnil;
4007 obj = Fcons (Qhelp_echo,
4008 list5 (frame, help, window, object, position));
4010 else if (event->kind == FOCUS_IN_EVENT)
4012 /* Notification of a FocusIn event. The frame receiving the
4013 focus is in event->frame_or_window. Generate a
4014 switch-frame event if necessary. */
4015 Lisp_Object frame, focus;
4017 frame = event->ie.frame_or_window;
4018 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4019 if (FRAMEP (focus))
4020 frame = focus;
4022 if (
4023 #ifdef HAVE_X11
4024 ! NILP (event->ie.arg)
4026 #endif
4027 !EQ (frame, internal_last_event_frame)
4028 && !EQ (frame, selected_frame))
4029 obj = make_lispy_switch_frame (frame);
4030 else
4031 obj = make_lispy_focus_in (frame);
4033 internal_last_event_frame = frame;
4034 kbd_fetch_ptr = event + 1;
4036 else if (event->kind == FOCUS_OUT_EVENT)
4038 #ifdef HAVE_WINDOW_SYSTEM
4040 Display_Info *di;
4041 Lisp_Object frame = event->ie.frame_or_window;
4042 bool focused = false;
4044 for (di = x_display_list; di && ! focused; di = di->next)
4045 focused = di->x_highlight_frame != 0;
4047 if (!focused)
4048 obj = make_lispy_focus_out (frame);
4050 #endif /* HAVE_WINDOW_SYSTEM */
4052 kbd_fetch_ptr = event + 1;
4054 #ifdef HAVE_DBUS
4055 else if (event->kind == DBUS_EVENT)
4057 obj = make_lispy_event (&event->ie);
4058 kbd_fetch_ptr = event + 1;
4060 #endif
4061 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (HAVE_NS)
4062 else if (event->kind == MOVE_FRAME_EVENT)
4064 /* Make an event (move-frame (FRAME)). */
4065 obj = list2 (Qmove_frame, list1 (event->ie.frame_or_window));
4066 kbd_fetch_ptr = event + 1;
4068 #endif
4069 #ifdef HAVE_XWIDGETS
4070 else if (event->kind == XWIDGET_EVENT)
4072 obj = make_lispy_event (&event->ie);
4073 kbd_fetch_ptr = event + 1;
4075 #endif
4076 else if (event->kind == CONFIG_CHANGED_EVENT)
4078 obj = make_lispy_event (&event->ie);
4079 kbd_fetch_ptr = event + 1;
4081 else if (event->kind == SELECT_WINDOW_EVENT)
4083 obj = list2 (Qselect_window, list1 (event->ie.frame_or_window));
4084 kbd_fetch_ptr = event + 1;
4086 else
4088 /* If this event is on a different frame, return a switch-frame this
4089 time, and leave the event in the queue for next time. */
4090 Lisp_Object frame;
4091 Lisp_Object focus;
4093 frame = event->ie.frame_or_window;
4094 if (CONSP (frame))
4095 frame = XCAR (frame);
4096 else if (WINDOWP (frame))
4097 frame = WINDOW_FRAME (XWINDOW (frame));
4099 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4100 if (! NILP (focus))
4101 frame = focus;
4103 if (! EQ (frame, internal_last_event_frame)
4104 && !EQ (frame, selected_frame))
4105 obj = make_lispy_switch_frame (frame);
4106 internal_last_event_frame = frame;
4108 /* If we didn't decide to make a switch-frame event, go ahead
4109 and build a real event from the queue entry. */
4111 if (NILP (obj))
4113 obj = make_lispy_event (&event->ie);
4115 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4116 || defined (HAVE_NS) || defined (USE_GTK)
4117 /* If this was a menu selection, then set the flag to inhibit
4118 writing to last_nonmenu_event. Don't do this if the event
4119 we're returning is (menu-bar), though; that indicates the
4120 beginning of the menu sequence, and we might as well leave
4121 that as the `event with parameters' for this selection. */
4122 if (used_mouse_menu
4123 && !EQ (event->ie.frame_or_window, event->ie.arg)
4124 && (event->kind == MENU_BAR_EVENT
4125 || event->kind == TOOL_BAR_EVENT))
4126 *used_mouse_menu = true;
4127 #endif
4128 #ifdef HAVE_NS
4129 /* Certain system events are non-key events. */
4130 if (used_mouse_menu
4131 && event->kind == NS_NONKEY_EVENT)
4132 *used_mouse_menu = true;
4133 #endif
4135 /* Wipe out this event, to catch bugs. */
4136 clear_event (event);
4137 kbd_fetch_ptr = event + 1;
4141 /* Try generating a mouse motion event. */
4142 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4144 struct frame *f = some_mouse_moved ();
4145 Lisp_Object bar_window;
4146 enum scroll_bar_part part;
4147 Lisp_Object x, y;
4148 Time t;
4150 *kbp = current_kboard;
4151 /* Note that this uses F to determine which terminal to look at.
4152 If there is no valid info, it does not store anything
4153 so x remains nil. */
4154 x = Qnil;
4156 /* XXX Can f or mouse_position_hook be NULL here? */
4157 if (f && FRAME_TERMINAL (f)->mouse_position_hook)
4158 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, 0, &bar_window,
4159 &part, &x, &y, &t);
4161 obj = Qnil;
4163 /* Decide if we should generate a switch-frame event. Don't
4164 generate switch-frame events for motion outside of all Emacs
4165 frames. */
4166 if (!NILP (x) && f)
4168 Lisp_Object frame;
4170 frame = FRAME_FOCUS_FRAME (f);
4171 if (NILP (frame))
4172 XSETFRAME (frame, f);
4174 if (! EQ (frame, internal_last_event_frame)
4175 && !EQ (frame, selected_frame))
4176 obj = make_lispy_switch_frame (frame);
4177 internal_last_event_frame = frame;
4180 /* If we didn't decide to make a switch-frame event, go ahead and
4181 return a mouse-motion event. */
4182 if (!NILP (x) && NILP (obj))
4183 obj = make_lispy_movement (f, bar_window, part, x, y, t);
4185 else
4186 /* We were promised by the above while loop that there was
4187 something for us to read! */
4188 emacs_abort ();
4190 input_pending = readable_events (0);
4192 Vlast_event_frame = internal_last_event_frame;
4194 return (obj);
4197 /* Process any non-user-visible events (currently X selection events),
4198 without reading any user-visible events. */
4200 static void
4201 process_special_events (void)
4203 union buffered_input_event *event;
4205 for (event = kbd_fetch_ptr; event != kbd_store_ptr; ++event)
4207 if (event == kbd_buffer + KBD_BUFFER_SIZE)
4209 event = kbd_buffer;
4210 if (event == kbd_store_ptr)
4211 break;
4214 /* If we find a stored X selection request, handle it now. */
4215 if (event->kind == SELECTION_REQUEST_EVENT
4216 || event->kind == SELECTION_CLEAR_EVENT)
4218 #ifdef HAVE_X11
4220 /* Remove the event from the fifo buffer before processing;
4221 otherwise swallow_events called recursively could see it
4222 and process it again. To do this, we move the events
4223 between kbd_fetch_ptr and EVENT one slot to the right,
4224 cyclically. */
4226 struct selection_input_event copy = event->sie;
4227 union buffered_input_event *beg
4228 = (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
4229 ? kbd_buffer : kbd_fetch_ptr;
4231 if (event > beg)
4232 memmove (beg + 1, beg, (event - beg) * sizeof *beg);
4233 else if (event < beg)
4235 if (event > kbd_buffer)
4236 memmove (kbd_buffer + 1, kbd_buffer,
4237 (event - kbd_buffer) * sizeof *kbd_buffer);
4238 *kbd_buffer = *(kbd_buffer + KBD_BUFFER_SIZE - 1);
4239 if (beg < kbd_buffer + KBD_BUFFER_SIZE - 1)
4240 memmove (beg + 1, beg,
4241 (kbd_buffer + KBD_BUFFER_SIZE - 1 - beg) * sizeof *beg);
4244 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
4245 kbd_fetch_ptr = kbd_buffer + 1;
4246 else
4247 kbd_fetch_ptr++;
4249 input_pending = readable_events (0);
4250 x_handle_selection_event (&copy);
4251 #else
4252 /* We're getting selection request events, but we don't have
4253 a window system. */
4254 emacs_abort ();
4255 #endif
4260 /* Process any events that are not user-visible, run timer events that
4261 are ripe, and return, without reading any user-visible events. */
4263 void
4264 swallow_events (bool do_display)
4266 unsigned old_timers_run;
4268 process_special_events ();
4270 old_timers_run = timers_run;
4271 get_input_pending (READABLE_EVENTS_DO_TIMERS_NOW);
4273 if (!input_pending && timers_run != old_timers_run && do_display)
4274 redisplay_preserve_echo_area (7);
4277 /* Record the start of when Emacs is idle,
4278 for the sake of running idle-time timers. */
4280 static void
4281 timer_start_idle (void)
4283 /* If we are already in the idle state, do nothing. */
4284 if (timespec_valid_p (timer_idleness_start_time))
4285 return;
4287 timer_idleness_start_time = current_timespec ();
4288 timer_last_idleness_start_time = timer_idleness_start_time;
4290 /* Mark all idle-time timers as once again candidates for running. */
4291 call0 (intern ("internal-timer-start-idle"));
4294 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4296 static void
4297 timer_stop_idle (void)
4299 timer_idleness_start_time = invalid_timespec ();
4302 /* Resume idle timer from last idle start time. */
4304 static void
4305 timer_resume_idle (void)
4307 if (timespec_valid_p (timer_idleness_start_time))
4308 return;
4310 timer_idleness_start_time = timer_last_idleness_start_time;
4313 /* List of elisp functions to call, delayed because they were generated in
4314 a context where Elisp could not be safely run (e.g. redisplay, signal,
4315 ...). Each element has the form (FUN . ARGS). */
4316 Lisp_Object pending_funcalls;
4318 /* Return true if TIMER is a valid timer, placing its value into *RESULT. */
4319 static bool
4320 decode_timer (Lisp_Object timer, struct timespec *result)
4322 Lisp_Object *vec;
4324 if (! (VECTORP (timer) && ASIZE (timer) == 9))
4325 return 0;
4326 vec = XVECTOR (timer)->contents;
4327 if (! NILP (vec[0]))
4328 return 0;
4329 if (! INTEGERP (vec[2]))
4330 return false;
4332 struct lisp_time t;
4333 if (decode_time_components (vec[1], vec[2], vec[3], vec[8], &t, 0) <= 0)
4334 return false;
4335 *result = lisp_to_timespec (t);
4336 return timespec_valid_p (*result);
4340 /* Check whether a timer has fired. To prevent larger problems we simply
4341 disregard elements that are not proper timers. Do not make a circular
4342 timer list for the time being.
4344 Returns the time to wait until the next timer fires. If a
4345 timer is triggering now, return zero.
4346 If no timer is active, return -1.
4348 If a timer is ripe, we run it, with quitting turned off.
4349 In that case we return 0 to indicate that a new timer_check_2 call
4350 should be done. */
4352 static struct timespec
4353 timer_check_2 (Lisp_Object timers, Lisp_Object idle_timers)
4355 struct timespec nexttime;
4356 struct timespec now;
4357 struct timespec idleness_now;
4358 Lisp_Object chosen_timer;
4360 nexttime = invalid_timespec ();
4362 chosen_timer = Qnil;
4364 /* First run the code that was delayed. */
4365 while (CONSP (pending_funcalls))
4367 Lisp_Object funcall = XCAR (pending_funcalls);
4368 pending_funcalls = XCDR (pending_funcalls);
4369 safe_call2 (Qapply, XCAR (funcall), XCDR (funcall));
4372 if (CONSP (timers) || CONSP (idle_timers))
4374 now = current_timespec ();
4375 idleness_now = (timespec_valid_p (timer_idleness_start_time)
4376 ? timespec_sub (now, timer_idleness_start_time)
4377 : make_timespec (0, 0));
4380 while (CONSP (timers) || CONSP (idle_timers))
4382 Lisp_Object timer = Qnil, idle_timer = Qnil;
4383 struct timespec timer_time, idle_timer_time;
4384 struct timespec difference;
4385 struct timespec timer_difference = invalid_timespec ();
4386 struct timespec idle_timer_difference = invalid_timespec ();
4387 bool ripe, timer_ripe = 0, idle_timer_ripe = 0;
4389 /* Set TIMER and TIMER_DIFFERENCE
4390 based on the next ordinary timer.
4391 TIMER_DIFFERENCE is the distance in time from NOW to when
4392 this timer becomes ripe.
4393 Skip past invalid timers and timers already handled. */
4394 if (CONSP (timers))
4396 timer = XCAR (timers);
4397 if (! decode_timer (timer, &timer_time))
4399 timers = XCDR (timers);
4400 continue;
4403 timer_ripe = timespec_cmp (timer_time, now) <= 0;
4404 timer_difference = (timer_ripe
4405 ? timespec_sub (now, timer_time)
4406 : timespec_sub (timer_time, now));
4409 /* Likewise for IDLE_TIMER and IDLE_TIMER_DIFFERENCE
4410 based on the next idle timer. */
4411 if (CONSP (idle_timers))
4413 idle_timer = XCAR (idle_timers);
4414 if (! decode_timer (idle_timer, &idle_timer_time))
4416 idle_timers = XCDR (idle_timers);
4417 continue;
4420 idle_timer_ripe = timespec_cmp (idle_timer_time, idleness_now) <= 0;
4421 idle_timer_difference
4422 = (idle_timer_ripe
4423 ? timespec_sub (idleness_now, idle_timer_time)
4424 : timespec_sub (idle_timer_time, idleness_now));
4427 /* Decide which timer is the next timer,
4428 and set CHOSEN_TIMER, DIFFERENCE, and RIPE accordingly.
4429 Also step down the list where we found that timer. */
4431 if (timespec_valid_p (timer_difference)
4432 && (! timespec_valid_p (idle_timer_difference)
4433 || idle_timer_ripe < timer_ripe
4434 || (idle_timer_ripe == timer_ripe
4435 && ((timer_ripe
4436 ? timespec_cmp (idle_timer_difference,
4437 timer_difference)
4438 : timespec_cmp (timer_difference,
4439 idle_timer_difference))
4440 < 0))))
4442 chosen_timer = timer;
4443 timers = XCDR (timers);
4444 difference = timer_difference;
4445 ripe = timer_ripe;
4447 else
4449 chosen_timer = idle_timer;
4450 idle_timers = XCDR (idle_timers);
4451 difference = idle_timer_difference;
4452 ripe = idle_timer_ripe;
4455 /* If timer is ripe, run it if it hasn't been run. */
4456 if (ripe)
4458 if (NILP (AREF (chosen_timer, 0)))
4460 ptrdiff_t count = SPECPDL_INDEX ();
4461 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4463 /* Mark the timer as triggered to prevent problems if the lisp
4464 code fails to reschedule it right. */
4465 ASET (chosen_timer, 0, Qt);
4467 specbind (Qinhibit_quit, Qt);
4469 call1 (Qtimer_event_handler, chosen_timer);
4470 Vdeactivate_mark = old_deactivate_mark;
4471 timers_run++;
4472 unbind_to (count, Qnil);
4474 /* Since we have handled the event,
4475 we don't need to tell the caller to wake up and do it. */
4476 /* But the caller must still wait for the next timer, so
4477 return 0 to indicate that. */
4480 nexttime = make_timespec (0, 0);
4481 break;
4483 else
4484 /* When we encounter a timer that is still waiting,
4485 return the amount of time to wait before it is ripe. */
4487 return difference;
4491 /* No timers are pending in the future. */
4492 /* Return 0 if we generated an event, and -1 if not. */
4493 return nexttime;
4497 /* Check whether a timer has fired. To prevent larger problems we simply
4498 disregard elements that are not proper timers. Do not make a circular
4499 timer list for the time being.
4501 Returns the time to wait until the next timer fires.
4502 If no timer is active, return an invalid value.
4504 As long as any timer is ripe, we run it. */
4506 struct timespec
4507 timer_check (void)
4509 struct timespec nexttime;
4510 Lisp_Object timers, idle_timers;
4512 Lisp_Object tem = Vinhibit_quit;
4513 Vinhibit_quit = Qt;
4515 /* We use copies of the timers' lists to allow a timer to add itself
4516 again, without locking up Emacs if the newly added timer is
4517 already ripe when added. */
4519 /* Always consider the ordinary timers. */
4520 timers = Fcopy_sequence (Vtimer_list);
4521 /* Consider the idle timers only if Emacs is idle. */
4522 if (timespec_valid_p (timer_idleness_start_time))
4523 idle_timers = Fcopy_sequence (Vtimer_idle_list);
4524 else
4525 idle_timers = Qnil;
4527 Vinhibit_quit = tem;
4531 nexttime = timer_check_2 (timers, idle_timers);
4533 while (nexttime.tv_sec == 0 && nexttime.tv_nsec == 0);
4535 return nexttime;
4538 DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0,
4539 doc: /* Return the current length of Emacs idleness, or nil.
4540 The value when Emacs is idle is a list of four integers (HIGH LOW USEC PSEC)
4541 in the same style as (current-time).
4543 The value when Emacs is not idle is nil.
4545 PSEC is a multiple of the system clock resolution. */)
4546 (void)
4548 if (timespec_valid_p (timer_idleness_start_time))
4549 return make_lisp_time (timespec_sub (current_timespec (),
4550 timer_idleness_start_time));
4552 return Qnil;
4555 /* Caches for modify_event_symbol. */
4556 static Lisp_Object accent_key_syms;
4557 static Lisp_Object func_key_syms;
4558 static Lisp_Object mouse_syms;
4559 static Lisp_Object wheel_syms;
4560 static Lisp_Object drag_n_drop_syms;
4562 /* This is a list of keysym codes for special "accent" characters.
4563 It parallels lispy_accent_keys. */
4565 static const int lispy_accent_codes[] =
4567 #ifdef XK_dead_circumflex
4568 XK_dead_circumflex,
4569 #else
4571 #endif
4572 #ifdef XK_dead_grave
4573 XK_dead_grave,
4574 #else
4576 #endif
4577 #ifdef XK_dead_tilde
4578 XK_dead_tilde,
4579 #else
4581 #endif
4582 #ifdef XK_dead_diaeresis
4583 XK_dead_diaeresis,
4584 #else
4586 #endif
4587 #ifdef XK_dead_macron
4588 XK_dead_macron,
4589 #else
4591 #endif
4592 #ifdef XK_dead_degree
4593 XK_dead_degree,
4594 #else
4596 #endif
4597 #ifdef XK_dead_acute
4598 XK_dead_acute,
4599 #else
4601 #endif
4602 #ifdef XK_dead_cedilla
4603 XK_dead_cedilla,
4604 #else
4606 #endif
4607 #ifdef XK_dead_breve
4608 XK_dead_breve,
4609 #else
4611 #endif
4612 #ifdef XK_dead_ogonek
4613 XK_dead_ogonek,
4614 #else
4616 #endif
4617 #ifdef XK_dead_caron
4618 XK_dead_caron,
4619 #else
4621 #endif
4622 #ifdef XK_dead_doubleacute
4623 XK_dead_doubleacute,
4624 #else
4626 #endif
4627 #ifdef XK_dead_abovedot
4628 XK_dead_abovedot,
4629 #else
4631 #endif
4632 #ifdef XK_dead_abovering
4633 XK_dead_abovering,
4634 #else
4636 #endif
4637 #ifdef XK_dead_iota
4638 XK_dead_iota,
4639 #else
4641 #endif
4642 #ifdef XK_dead_belowdot
4643 XK_dead_belowdot,
4644 #else
4646 #endif
4647 #ifdef XK_dead_voiced_sound
4648 XK_dead_voiced_sound,
4649 #else
4651 #endif
4652 #ifdef XK_dead_semivoiced_sound
4653 XK_dead_semivoiced_sound,
4654 #else
4656 #endif
4657 #ifdef XK_dead_hook
4658 XK_dead_hook,
4659 #else
4661 #endif
4662 #ifdef XK_dead_horn
4663 XK_dead_horn,
4664 #else
4666 #endif
4669 /* This is a list of Lisp names for special "accent" characters.
4670 It parallels lispy_accent_codes. */
4672 static const char *const lispy_accent_keys[] =
4674 "dead-circumflex",
4675 "dead-grave",
4676 "dead-tilde",
4677 "dead-diaeresis",
4678 "dead-macron",
4679 "dead-degree",
4680 "dead-acute",
4681 "dead-cedilla",
4682 "dead-breve",
4683 "dead-ogonek",
4684 "dead-caron",
4685 "dead-doubleacute",
4686 "dead-abovedot",
4687 "dead-abovering",
4688 "dead-iota",
4689 "dead-belowdot",
4690 "dead-voiced-sound",
4691 "dead-semivoiced-sound",
4692 "dead-hook",
4693 "dead-horn",
4696 #ifdef HAVE_NTGUI
4697 #define FUNCTION_KEY_OFFSET 0x0
4699 const char *const lispy_function_keys[] =
4701 0, /* 0 */
4703 0, /* VK_LBUTTON 0x01 */
4704 0, /* VK_RBUTTON 0x02 */
4705 "cancel", /* VK_CANCEL 0x03 */
4706 0, /* VK_MBUTTON 0x04 */
4708 0, 0, 0, /* 0x05 .. 0x07 */
4710 "backspace", /* VK_BACK 0x08 */
4711 "tab", /* VK_TAB 0x09 */
4713 0, 0, /* 0x0A .. 0x0B */
4715 "clear", /* VK_CLEAR 0x0C */
4716 "return", /* VK_RETURN 0x0D */
4718 0, 0, /* 0x0E .. 0x0F */
4720 0, /* VK_SHIFT 0x10 */
4721 0, /* VK_CONTROL 0x11 */
4722 0, /* VK_MENU 0x12 */
4723 "pause", /* VK_PAUSE 0x13 */
4724 "capslock", /* VK_CAPITAL 0x14 */
4725 "kana", /* VK_KANA/VK_HANGUL 0x15 */
4726 0, /* 0x16 */
4727 "junja", /* VK_JUNJA 0x17 */
4728 "final", /* VK_FINAL 0x18 */
4729 "kanji", /* VK_KANJI/VK_HANJA 0x19 */
4730 0, /* 0x1A */
4731 "escape", /* VK_ESCAPE 0x1B */
4732 "convert", /* VK_CONVERT 0x1C */
4733 "non-convert", /* VK_NONCONVERT 0x1D */
4734 "accept", /* VK_ACCEPT 0x1E */
4735 "mode-change", /* VK_MODECHANGE 0x1F */
4736 0, /* VK_SPACE 0x20 */
4737 "prior", /* VK_PRIOR 0x21 */
4738 "next", /* VK_NEXT 0x22 */
4739 "end", /* VK_END 0x23 */
4740 "home", /* VK_HOME 0x24 */
4741 "left", /* VK_LEFT 0x25 */
4742 "up", /* VK_UP 0x26 */
4743 "right", /* VK_RIGHT 0x27 */
4744 "down", /* VK_DOWN 0x28 */
4745 "select", /* VK_SELECT 0x29 */
4746 "print", /* VK_PRINT 0x2A */
4747 "execute", /* VK_EXECUTE 0x2B */
4748 "snapshot", /* VK_SNAPSHOT 0x2C */
4749 "insert", /* VK_INSERT 0x2D */
4750 "delete", /* VK_DELETE 0x2E */
4751 "help", /* VK_HELP 0x2F */
4753 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4755 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4757 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4759 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4761 0, 0, 0, 0, 0, 0, 0, 0, 0,
4762 0, 0, 0, 0, 0, 0, 0, 0, 0,
4763 0, 0, 0, 0, 0, 0, 0, 0,
4765 "lwindow", /* VK_LWIN 0x5B */
4766 "rwindow", /* VK_RWIN 0x5C */
4767 "apps", /* VK_APPS 0x5D */
4768 0, /* 0x5E */
4769 "sleep",
4770 "kp-0", /* VK_NUMPAD0 0x60 */
4771 "kp-1", /* VK_NUMPAD1 0x61 */
4772 "kp-2", /* VK_NUMPAD2 0x62 */
4773 "kp-3", /* VK_NUMPAD3 0x63 */
4774 "kp-4", /* VK_NUMPAD4 0x64 */
4775 "kp-5", /* VK_NUMPAD5 0x65 */
4776 "kp-6", /* VK_NUMPAD6 0x66 */
4777 "kp-7", /* VK_NUMPAD7 0x67 */
4778 "kp-8", /* VK_NUMPAD8 0x68 */
4779 "kp-9", /* VK_NUMPAD9 0x69 */
4780 "kp-multiply", /* VK_MULTIPLY 0x6A */
4781 "kp-add", /* VK_ADD 0x6B */
4782 "kp-separator", /* VK_SEPARATOR 0x6C */
4783 "kp-subtract", /* VK_SUBTRACT 0x6D */
4784 "kp-decimal", /* VK_DECIMAL 0x6E */
4785 "kp-divide", /* VK_DIVIDE 0x6F */
4786 "f1", /* VK_F1 0x70 */
4787 "f2", /* VK_F2 0x71 */
4788 "f3", /* VK_F3 0x72 */
4789 "f4", /* VK_F4 0x73 */
4790 "f5", /* VK_F5 0x74 */
4791 "f6", /* VK_F6 0x75 */
4792 "f7", /* VK_F7 0x76 */
4793 "f8", /* VK_F8 0x77 */
4794 "f9", /* VK_F9 0x78 */
4795 "f10", /* VK_F10 0x79 */
4796 "f11", /* VK_F11 0x7A */
4797 "f12", /* VK_F12 0x7B */
4798 "f13", /* VK_F13 0x7C */
4799 "f14", /* VK_F14 0x7D */
4800 "f15", /* VK_F15 0x7E */
4801 "f16", /* VK_F16 0x7F */
4802 "f17", /* VK_F17 0x80 */
4803 "f18", /* VK_F18 0x81 */
4804 "f19", /* VK_F19 0x82 */
4805 "f20", /* VK_F20 0x83 */
4806 "f21", /* VK_F21 0x84 */
4807 "f22", /* VK_F22 0x85 */
4808 "f23", /* VK_F23 0x86 */
4809 "f24", /* VK_F24 0x87 */
4811 0, 0, 0, 0, /* 0x88 .. 0x8B */
4812 0, 0, 0, 0, /* 0x8C .. 0x8F */
4814 "kp-numlock", /* VK_NUMLOCK 0x90 */
4815 "scroll", /* VK_SCROLL 0x91 */
4816 /* Not sure where the following block comes from.
4817 Windows headers have NEC and Fujitsu specific keys in
4818 this block, but nothing generic. */
4819 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4820 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4821 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4822 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4823 "kp-end", /* VK_NUMPAD_END 0x96 */
4824 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4825 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4826 "kp-up", /* VK_NUMPAD_UP 0x99 */
4827 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4828 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4829 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4830 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4832 0, 0, /* 0x9E .. 0x9F */
4835 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4836 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4837 * No other API or message will distinguish left and right keys this way.
4838 * 0xA0 .. 0xA5
4840 0, 0, 0, 0, 0, 0,
4842 /* Multimedia keys. These are handled as WM_APPCOMMAND, which allows us
4843 to enable them selectively, and gives access to a few more functions.
4844 See lispy_multimedia_keys below. */
4845 0, 0, 0, 0, 0, 0, 0, /* 0xA6 .. 0xAC Browser */
4846 0, 0, 0, /* 0xAD .. 0xAF Volume */
4847 0, 0, 0, 0, /* 0xB0 .. 0xB3 Media */
4848 0, 0, 0, 0, /* 0xB4 .. 0xB7 Apps */
4850 /* 0xB8 .. 0xC0 "OEM" keys - all seem to be punctuation. */
4851 0, 0, 0, 0, 0, 0, 0, 0, 0,
4853 /* 0xC1 - 0xDA unallocated, 0xDB-0xDF more OEM keys */
4854 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4855 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4857 0, /* 0xE0 */
4858 "ax", /* VK_OEM_AX 0xE1 */
4859 0, /* VK_OEM_102 0xE2 */
4860 "ico-help", /* VK_ICO_HELP 0xE3 */
4861 "ico-00", /* VK_ICO_00 0xE4 */
4862 0, /* VK_PROCESSKEY 0xE5 - used by IME */
4863 "ico-clear", /* VK_ICO_CLEAR 0xE6 */
4864 0, /* VK_PACKET 0xE7 - used to pass Unicode chars */
4865 0, /* 0xE8 */
4866 "reset", /* VK_OEM_RESET 0xE9 */
4867 "jump", /* VK_OEM_JUMP 0xEA */
4868 "oem-pa1", /* VK_OEM_PA1 0xEB */
4869 "oem-pa2", /* VK_OEM_PA2 0xEC */
4870 "oem-pa3", /* VK_OEM_PA3 0xED */
4871 "wsctrl", /* VK_OEM_WSCTRL 0xEE */
4872 "cusel", /* VK_OEM_CUSEL 0xEF */
4873 "oem-attn", /* VK_OEM_ATTN 0xF0 */
4874 "finish", /* VK_OEM_FINISH 0xF1 */
4875 "copy", /* VK_OEM_COPY 0xF2 */
4876 "auto", /* VK_OEM_AUTO 0xF3 */
4877 "enlw", /* VK_OEM_ENLW 0xF4 */
4878 "backtab", /* VK_OEM_BACKTAB 0xF5 */
4879 "attn", /* VK_ATTN 0xF6 */
4880 "crsel", /* VK_CRSEL 0xF7 */
4881 "exsel", /* VK_EXSEL 0xF8 */
4882 "ereof", /* VK_EREOF 0xF9 */
4883 "play", /* VK_PLAY 0xFA */
4884 "zoom", /* VK_ZOOM 0xFB */
4885 "noname", /* VK_NONAME 0xFC */
4886 "pa1", /* VK_PA1 0xFD */
4887 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4888 0 /* 0xFF */
4891 /* Some of these duplicate the "Media keys" on newer keyboards,
4892 but they are delivered to the application in a different way. */
4893 static const char *const lispy_multimedia_keys[] =
4896 "browser-back",
4897 "browser-forward",
4898 "browser-refresh",
4899 "browser-stop",
4900 "browser-search",
4901 "browser-favorites",
4902 "browser-home",
4903 "volume-mute",
4904 "volume-down",
4905 "volume-up",
4906 "media-next",
4907 "media-previous",
4908 "media-stop",
4909 "media-play-pause",
4910 "mail",
4911 "media-select",
4912 "app-1",
4913 "app-2",
4914 "bass-down",
4915 "bass-boost",
4916 "bass-up",
4917 "treble-down",
4918 "treble-up",
4919 "mic-volume-mute",
4920 "mic-volume-down",
4921 "mic-volume-up",
4922 "help",
4923 "find",
4924 "new",
4925 "open",
4926 "close",
4927 "save",
4928 "print",
4929 "undo",
4930 "redo",
4931 "copy",
4932 "cut",
4933 "paste",
4934 "mail-reply",
4935 "mail-forward",
4936 "mail-send",
4937 "spell-check",
4938 "toggle-dictate-command",
4939 "mic-toggle",
4940 "correction-list",
4941 "media-play",
4942 "media-pause",
4943 "media-record",
4944 "media-fast-forward",
4945 "media-rewind",
4946 "media-channel-up",
4947 "media-channel-down"
4950 #else /* not HAVE_NTGUI */
4952 /* This should be dealt with in XTread_socket now, and that doesn't
4953 depend on the client system having the Kana syms defined. See also
4954 the XK_kana_A case below. */
4955 #if 0
4956 #ifdef XK_kana_A
4957 static const char *const lispy_kana_keys[] =
4959 /* X Keysym value */
4960 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4961 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4962 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4963 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4964 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4965 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4966 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4967 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4968 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4969 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4970 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4971 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4972 "kana-i", "kana-u", "kana-e", "kana-o",
4973 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4974 "prolongedsound", "kana-A", "kana-I", "kana-U",
4975 "kana-E", "kana-O", "kana-KA", "kana-KI",
4976 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4977 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4978 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4979 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4980 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4981 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4982 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4983 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4984 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4985 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4986 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4987 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4989 #endif /* XK_kana_A */
4990 #endif /* 0 */
4992 #define FUNCTION_KEY_OFFSET 0xff00
4994 /* You'll notice that this table is arranged to be conveniently
4995 indexed by X Windows keysym values. */
4996 static const char *const lispy_function_keys[] =
4998 /* X Keysym value */
5000 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
5001 "backspace", "tab", "linefeed", "clear",
5002 0, "return", 0, 0,
5003 0, 0, 0, "pause", /* 0xff10...1f */
5004 0, 0, 0, 0, 0, 0, 0, "escape",
5005 0, 0, 0, 0,
5006 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
5007 "romaji", "hiragana", "katakana", "hiragana-katakana",
5008 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
5009 "massyo", "kana-lock", "kana-shift", "eisu-shift",
5010 "eisu-toggle", /* 0xff30...3f */
5011 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5012 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
5014 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
5015 "down", "prior", "next", "end",
5016 "begin", 0, 0, 0, 0, 0, 0, 0,
5017 "select", /* 0xff60 */ /* IsMiscFunctionKey */
5018 "print",
5019 "execute",
5020 "insert",
5021 0, /* 0xff64 */
5022 "undo",
5023 "redo",
5024 "menu",
5025 "find",
5026 "cancel",
5027 "help",
5028 "break", /* 0xff6b */
5030 0, 0, 0, 0,
5031 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
5032 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
5033 "kp-space", /* 0xff80 */ /* IsKeypadKey */
5034 0, 0, 0, 0, 0, 0, 0, 0,
5035 "kp-tab", /* 0xff89 */
5036 0, 0, 0,
5037 "kp-enter", /* 0xff8d */
5038 0, 0, 0,
5039 "kp-f1", /* 0xff91 */
5040 "kp-f2",
5041 "kp-f3",
5042 "kp-f4",
5043 "kp-home", /* 0xff95 */
5044 "kp-left",
5045 "kp-up",
5046 "kp-right",
5047 "kp-down",
5048 "kp-prior", /* kp-page-up */
5049 "kp-next", /* kp-page-down */
5050 "kp-end",
5051 "kp-begin",
5052 "kp-insert",
5053 "kp-delete",
5054 0, /* 0xffa0 */
5055 0, 0, 0, 0, 0, 0, 0, 0, 0,
5056 "kp-multiply", /* 0xffaa */
5057 "kp-add",
5058 "kp-separator",
5059 "kp-subtract",
5060 "kp-decimal",
5061 "kp-divide", /* 0xffaf */
5062 "kp-0", /* 0xffb0 */
5063 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5064 0, /* 0xffba */
5065 0, 0,
5066 "kp-equal", /* 0xffbd */
5067 "f1", /* 0xffbe */ /* IsFunctionKey */
5068 "f2",
5069 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5070 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5071 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5072 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5073 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5074 0, 0, 0, 0, 0, 0, 0, 0,
5075 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5076 0, 0, 0, 0, 0, 0, 0, "delete"
5079 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5080 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5082 static const char *const iso_lispy_function_keys[] =
5084 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5085 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5086 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5087 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5088 "iso-lefttab", /* 0xfe20 */
5089 "iso-move-line-up", "iso-move-line-down",
5090 "iso-partial-line-up", "iso-partial-line-down",
5091 "iso-partial-space-left", "iso-partial-space-right",
5092 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5093 "iso-release-margin-left", "iso-release-margin-right",
5094 "iso-release-both-margins",
5095 "iso-fast-cursor-left", "iso-fast-cursor-right",
5096 "iso-fast-cursor-up", "iso-fast-cursor-down",
5097 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5098 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5101 #endif /* not HAVE_NTGUI */
5103 static Lisp_Object Vlispy_mouse_stem;
5105 static const char *const lispy_wheel_names[] =
5107 "wheel-up", "wheel-down", "wheel-left", "wheel-right"
5110 /* drag-n-drop events are generated when a set of selected files are
5111 dragged from another application and dropped onto an Emacs window. */
5112 static const char *const lispy_drag_n_drop_names[] =
5114 "drag-n-drop"
5117 /* An array of symbol indexes of scroll bar parts, indexed by an enum
5118 scroll_bar_part value. Note that Qnil corresponds to
5119 scroll_bar_nowhere and should not appear in Lisp events. */
5120 static short const scroll_bar_parts[] = {
5121 SYMBOL_INDEX (Qnil), SYMBOL_INDEX (Qabove_handle), SYMBOL_INDEX (Qhandle),
5122 SYMBOL_INDEX (Qbelow_handle), SYMBOL_INDEX (Qup), SYMBOL_INDEX (Qdown),
5123 SYMBOL_INDEX (Qtop), SYMBOL_INDEX (Qbottom), SYMBOL_INDEX (Qend_scroll),
5124 SYMBOL_INDEX (Qratio), SYMBOL_INDEX (Qbefore_handle),
5125 SYMBOL_INDEX (Qhorizontal_handle), SYMBOL_INDEX (Qafter_handle),
5126 SYMBOL_INDEX (Qleft), SYMBOL_INDEX (Qright), SYMBOL_INDEX (Qleftmost),
5127 SYMBOL_INDEX (Qrightmost), SYMBOL_INDEX (Qend_scroll), SYMBOL_INDEX (Qratio)
5130 #ifdef HAVE_WINDOW_SYSTEM
5131 /* An array of symbol indexes of internal border parts, indexed by an enum
5132 internal_border_part value. Note that Qnil corresponds to
5133 internal_border_part_none and should not appear in Lisp events. */
5134 static short const internal_border_parts[] = {
5135 SYMBOL_INDEX (Qnil), SYMBOL_INDEX (Qleft_edge),
5136 SYMBOL_INDEX (Qtop_left_corner), SYMBOL_INDEX (Qtop_edge),
5137 SYMBOL_INDEX (Qtop_right_corner), SYMBOL_INDEX (Qright_edge),
5138 SYMBOL_INDEX (Qbottom_right_corner), SYMBOL_INDEX (Qbottom_edge),
5139 SYMBOL_INDEX (Qbottom_left_corner)
5141 #endif
5143 /* A vector, indexed by button number, giving the down-going location
5144 of currently depressed buttons, both scroll bar and non-scroll bar.
5146 The elements have the form
5147 (BUTTON-NUMBER MODIFIER-MASK . REST)
5148 where REST is the cdr of a position as it would be reported in the event.
5150 The make_lispy_event function stores positions here to tell the
5151 difference between click and drag events, and to store the starting
5152 location to be included in drag events. */
5154 static Lisp_Object button_down_location;
5156 /* Information about the most recent up-going button event: Which
5157 button, what location, and what time. */
5159 static int last_mouse_button;
5160 static int last_mouse_x;
5161 static int last_mouse_y;
5162 static Time button_down_time;
5164 /* The number of clicks in this multiple-click. */
5166 static int double_click_count;
5168 /* X and Y are frame-relative coordinates for a click or wheel event.
5169 Return a Lisp-style event list. */
5171 static Lisp_Object
5172 make_lispy_position (struct frame *f, Lisp_Object x, Lisp_Object y,
5173 Time t)
5175 enum window_part part;
5176 Lisp_Object posn = Qnil;
5177 Lisp_Object extra_info = Qnil;
5178 /* Coordinate pixel positions to return. */
5179 int xret = 0, yret = 0;
5180 /* The window or frame under frame pixel coordinates (x,y) */
5181 Lisp_Object window_or_frame = f
5182 ? window_from_coordinates (f, XINT (x), XINT (y), &part, 0)
5183 : Qnil;
5185 if (WINDOWP (window_or_frame))
5187 /* It's a click in window WINDOW at frame coordinates (X,Y) */
5188 struct window *w = XWINDOW (window_or_frame);
5189 Lisp_Object string_info = Qnil;
5190 ptrdiff_t textpos = 0;
5191 int col = -1, row = -1;
5192 int dx = -1, dy = -1;
5193 int width = -1, height = -1;
5194 Lisp_Object object = Qnil;
5196 /* Pixel coordinates relative to the window corner. */
5197 int wx = XINT (x) - WINDOW_LEFT_EDGE_X (w);
5198 int wy = XINT (y) - WINDOW_TOP_EDGE_Y (w);
5200 /* For text area clicks, return X, Y relative to the corner of
5201 this text area. Note that dX, dY etc are set below, by
5202 buffer_posn_from_coords. */
5203 if (part == ON_TEXT)
5205 xret = XINT (x) - window_box_left (w, TEXT_AREA);
5206 yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5208 /* For mode line and header line clicks, return X, Y relative to
5209 the left window edge. Use mode_line_string to look for a
5210 string on the click position. */
5211 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5213 Lisp_Object string;
5214 ptrdiff_t charpos;
5216 posn = (part == ON_MODE_LINE) ? Qmode_line : Qheader_line;
5217 /* Note that mode_line_string takes COL, ROW as pixels and
5218 converts them to characters. */
5219 col = wx;
5220 row = wy;
5221 string = mode_line_string (w, part, &col, &row, &charpos,
5222 &object, &dx, &dy, &width, &height);
5223 if (STRINGP (string))
5224 string_info = Fcons (string, make_number (charpos));
5225 textpos = -1;
5227 xret = wx;
5228 yret = wy;
5230 /* For fringes and margins, Y is relative to the area's (and the
5231 window's) top edge, while X is meaningless. */
5232 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5234 Lisp_Object string;
5235 ptrdiff_t charpos;
5237 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5238 col = wx;
5239 row = wy;
5240 string = marginal_area_string (w, part, &col, &row, &charpos,
5241 &object, &dx, &dy, &width, &height);
5242 if (STRINGP (string))
5243 string_info = Fcons (string, make_number (charpos));
5244 xret = wx;
5245 yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5247 else if (part == ON_LEFT_FRINGE)
5249 posn = Qleft_fringe;
5250 col = 0;
5251 xret = wx;
5252 dx = wx
5253 - (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5254 ? 0 : window_box_width (w, LEFT_MARGIN_AREA));
5255 dy = yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5257 else if (part == ON_RIGHT_FRINGE)
5259 posn = Qright_fringe;
5260 col = 0;
5261 xret = wx;
5262 dx = wx
5263 - window_box_width (w, LEFT_MARGIN_AREA)
5264 - window_box_width (w, TEXT_AREA)
5265 - (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5266 ? window_box_width (w, RIGHT_MARGIN_AREA)
5267 : 0);
5268 dy = yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5270 else if (part == ON_VERTICAL_BORDER)
5272 posn = Qvertical_line;
5273 width = 1;
5274 dx = 0;
5275 xret = wx;
5276 dy = yret = wy;
5278 else if (part == ON_VERTICAL_SCROLL_BAR)
5280 posn = Qvertical_scroll_bar;
5281 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
5282 dx = xret = wx;
5283 dy = yret = wy;
5285 else if (part == ON_HORIZONTAL_SCROLL_BAR)
5287 posn = Qhorizontal_scroll_bar;
5288 width = WINDOW_SCROLL_BAR_AREA_HEIGHT (w);
5289 dx = xret = wx;
5290 dy = yret = wy;
5292 else if (part == ON_RIGHT_DIVIDER)
5294 posn = Qright_divider;
5295 width = WINDOW_RIGHT_DIVIDER_WIDTH (w);
5296 dx = xret = wx;
5297 dy = yret = wy;
5299 else if (part == ON_BOTTOM_DIVIDER)
5301 posn = Qbottom_divider;
5302 width = WINDOW_BOTTOM_DIVIDER_WIDTH (w);
5303 dx = xret = wx;
5304 dy = yret = wy;
5307 /* For clicks in the text area, fringes, margins, or vertical
5308 scroll bar, call buffer_posn_from_coords to extract TEXTPOS,
5309 the buffer position nearest to the click. */
5310 if (!textpos)
5312 Lisp_Object string2, object2 = Qnil;
5313 struct display_pos p;
5314 int dx2, dy2;
5315 int width2, height2;
5316 /* The pixel X coordinate passed to buffer_posn_from_coords
5317 is the X coordinate relative to the text area for clicks
5318 in text-area, right-margin/fringe and right-side vertical
5319 scroll bar, zero otherwise. */
5320 int x2
5321 = (part == ON_TEXT) ? xret
5322 : (part == ON_RIGHT_FRINGE || part == ON_RIGHT_MARGIN
5323 || (part == ON_VERTICAL_SCROLL_BAR
5324 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
5325 ? (XINT (x) - window_box_left (w, TEXT_AREA))
5326 : 0;
5327 int y2 = wy;
5329 string2 = buffer_posn_from_coords (w, &x2, &y2, &p,
5330 &object2, &dx2, &dy2,
5331 &width2, &height2);
5332 textpos = CHARPOS (p.pos);
5333 if (col < 0) col = x2;
5334 if (row < 0) row = y2;
5335 if (dx < 0) dx = dx2;
5336 if (dy < 0) dy = dy2;
5337 if (width < 0) width = width2;
5338 if (height < 0) height = height2;
5340 if (NILP (posn))
5342 posn = make_number (textpos);
5343 if (STRINGP (string2))
5344 string_info = Fcons (string2,
5345 make_number (CHARPOS (p.string_pos)));
5347 if (NILP (object))
5348 object = object2;
5351 #ifdef HAVE_WINDOW_SYSTEM
5352 if (IMAGEP (object))
5354 Lisp_Object image_map, hotspot;
5355 if ((image_map = Fplist_get (XCDR (object), QCmap),
5356 !NILP (image_map))
5357 && (hotspot = find_hot_spot (image_map, dx, dy),
5358 CONSP (hotspot))
5359 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5360 posn = XCAR (hotspot);
5362 #endif
5364 /* Object info. */
5365 extra_info
5366 = list3 (object,
5367 Fcons (make_number (dx), make_number (dy)),
5368 Fcons (make_number (width), make_number (height)));
5370 /* String info. */
5371 extra_info = Fcons (string_info,
5372 Fcons (textpos < 0 ? Qnil : make_number (textpos),
5373 Fcons (Fcons (make_number (col),
5374 make_number (row)),
5375 extra_info)));
5378 #ifdef HAVE_WINDOW_SYSTEM
5379 else if (f)
5381 /* Return mouse pixel coordinates here. */
5382 XSETFRAME (window_or_frame, f);
5383 xret = XINT (x);
5384 yret = XINT (y);
5386 if (FRAME_LIVE_P (f)
5387 && FRAME_INTERNAL_BORDER_WIDTH (f) > 0
5388 && !NILP (get_frame_param (f, Qdrag_internal_border)))
5390 enum internal_border_part part
5391 = frame_internal_border_part (f, xret, yret);
5393 posn = builtin_lisp_symbol (internal_border_parts[part]);
5396 #endif
5398 else
5399 window_or_frame = Qnil;
5401 return Fcons (window_or_frame,
5402 Fcons (posn,
5403 Fcons (Fcons (make_number (xret),
5404 make_number (yret)),
5405 Fcons (make_number (t),
5406 extra_info))));
5409 /* Return non-zero if F is a GUI frame that uses some toolkit-managed
5410 menu bar. This really means that Emacs draws and manages the menu
5411 bar as part of its normal display, and therefore can compute its
5412 geometry. */
5413 static bool
5414 toolkit_menubar_in_use (struct frame *f)
5416 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
5417 return !(!FRAME_WINDOW_P (f));
5418 #else
5419 return false;
5420 #endif
5423 /* Build the part of Lisp event which represents scroll bar state from
5424 EV. TYPE is one of Qvertical_scroll_bar or Qhorizontal_scroll_bar. */
5426 static Lisp_Object
5427 make_scroll_bar_position (struct input_event *ev, Lisp_Object type)
5429 return list5 (ev->frame_or_window, type, Fcons (ev->x, ev->y),
5430 make_number (ev->timestamp),
5431 builtin_lisp_symbol (scroll_bar_parts[ev->part]));
5434 /* Given a struct input_event, build the lisp event which represents
5435 it. If EVENT is 0, build a mouse movement event from the mouse
5436 movement buffer, which should have a movement event in it.
5438 Note that events must be passed to this function in the order they
5439 are received; this function stores the location of button presses
5440 in order to build drag events when the button is released. */
5442 static Lisp_Object
5443 make_lispy_event (struct input_event *event)
5445 int i;
5447 switch (event->kind)
5449 /* A simple keystroke. */
5450 case ASCII_KEYSTROKE_EVENT:
5451 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5453 Lisp_Object lispy_c;
5454 EMACS_INT c = event->code;
5455 if (event->kind == ASCII_KEYSTROKE_EVENT)
5457 c &= 0377;
5458 eassert (c == event->code);
5461 /* Caps-lock shouldn't affect interpretation of key chords:
5462 Control+s should produce C-s whether caps-lock is on or
5463 not. And Control+Shift+s should produce C-S-s whether
5464 caps-lock is on or not. */
5465 if (event->modifiers & ~shift_modifier)
5467 /* This is a key chord: some non-shift modifier is
5468 depressed. */
5470 if (uppercasep (c) &&
5471 !(event->modifiers & shift_modifier))
5473 /* Got a capital letter without a shift. The caps
5474 lock is on. Un-capitalize the letter. */
5475 c = downcase (c);
5477 else if (lowercasep (c) &&
5478 (event->modifiers & shift_modifier))
5480 /* Got a lower-case letter even though shift is
5481 depressed. The caps lock is on. Capitalize the
5482 letter. */
5483 c = upcase (c);
5487 if (event->kind == ASCII_KEYSTROKE_EVENT)
5489 /* Turn ASCII characters into control characters
5490 when proper. */
5491 if (event->modifiers & ctrl_modifier)
5493 c = make_ctrl_char (c);
5494 event->modifiers &= ~ctrl_modifier;
5498 /* Add in the other modifier bits. The shift key was taken care
5499 of by the X code. */
5500 c |= (event->modifiers
5501 & (meta_modifier | alt_modifier
5502 | hyper_modifier | super_modifier | ctrl_modifier));
5503 /* Distinguish Shift-SPC from SPC. */
5504 if ((event->code) == 040
5505 && event->modifiers & shift_modifier)
5506 c |= shift_modifier;
5507 button_down_time = 0;
5508 XSETFASTINT (lispy_c, c);
5509 return lispy_c;
5512 #ifdef HAVE_NS
5513 /* NS_NONKEY_EVENTs are just like NON_ASCII_KEYSTROKE_EVENTs,
5514 except that they are non-key events (last-nonmenu-event is nil). */
5515 case NS_NONKEY_EVENT:
5516 #endif
5518 /* A function key. The symbol may need to have modifier prefixes
5519 tacked onto it. */
5520 case NON_ASCII_KEYSTROKE_EVENT:
5521 button_down_time = 0;
5523 for (i = 0; i < ARRAYELTS (lispy_accent_codes); i++)
5524 if (event->code == lispy_accent_codes[i])
5525 return modify_event_symbol (i,
5526 event->modifiers,
5527 Qfunction_key, Qnil,
5528 lispy_accent_keys, &accent_key_syms,
5529 ARRAYELTS (lispy_accent_keys));
5531 #if 0
5532 #ifdef XK_kana_A
5533 if (event->code >= 0x400 && event->code < 0x500)
5534 return modify_event_symbol (event->code - 0x400,
5535 event->modifiers & ~shift_modifier,
5536 Qfunction_key, Qnil,
5537 lispy_kana_keys, &func_key_syms,
5538 ARRAYELTS (lispy_kana_keys));
5539 #endif /* XK_kana_A */
5540 #endif /* 0 */
5542 #ifdef ISO_FUNCTION_KEY_OFFSET
5543 if (event->code < FUNCTION_KEY_OFFSET
5544 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5545 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5546 event->modifiers,
5547 Qfunction_key, Qnil,
5548 iso_lispy_function_keys, &func_key_syms,
5549 ARRAYELTS (iso_lispy_function_keys));
5550 #endif
5552 if ((FUNCTION_KEY_OFFSET <= event->code
5553 && (event->code
5554 < FUNCTION_KEY_OFFSET + ARRAYELTS (lispy_function_keys)))
5555 && lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5556 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5557 event->modifiers,
5558 Qfunction_key, Qnil,
5559 lispy_function_keys, &func_key_syms,
5560 ARRAYELTS (lispy_function_keys));
5562 /* Handle system-specific or unknown keysyms.
5563 We need to use an alist rather than a vector as the cache
5564 since we can't make a vector long enough. */
5565 if (NILP (KVAR (current_kboard, system_key_syms)))
5566 kset_system_key_syms (current_kboard, Fcons (Qnil, Qnil));
5567 return modify_event_symbol (event->code,
5568 event->modifiers,
5569 Qfunction_key,
5570 KVAR (current_kboard, Vsystem_key_alist),
5571 0, &KVAR (current_kboard, system_key_syms),
5572 PTRDIFF_MAX);
5574 #ifdef HAVE_NTGUI
5575 case MULTIMEDIA_KEY_EVENT:
5576 if (event->code < ARRAYELTS (lispy_multimedia_keys)
5577 && event->code > 0 && lispy_multimedia_keys[event->code])
5579 return modify_event_symbol (event->code, event->modifiers,
5580 Qfunction_key, Qnil,
5581 lispy_multimedia_keys, &func_key_syms,
5582 ARRAYELTS (lispy_multimedia_keys));
5584 return Qnil;
5585 #endif
5587 /* A mouse click. Figure out where it is, decide whether it's
5588 a press, click or drag, and build the appropriate structure. */
5589 case MOUSE_CLICK_EVENT:
5590 #ifdef HAVE_GPM
5591 case GPM_CLICK_EVENT:
5592 #endif
5593 #ifndef USE_TOOLKIT_SCROLL_BARS
5594 case SCROLL_BAR_CLICK_EVENT:
5595 case HORIZONTAL_SCROLL_BAR_CLICK_EVENT:
5596 #endif
5598 int button = event->code;
5599 bool is_double;
5600 Lisp_Object position;
5601 Lisp_Object *start_pos_ptr;
5602 Lisp_Object start_pos;
5604 position = Qnil;
5606 /* Build the position as appropriate for this mouse click. */
5607 if (event->kind == MOUSE_CLICK_EVENT
5608 #ifdef HAVE_GPM
5609 || event->kind == GPM_CLICK_EVENT
5610 #endif
5613 struct frame *f = XFRAME (event->frame_or_window);
5614 int row, column;
5616 /* Ignore mouse events that were made on frame that
5617 have been deleted. */
5618 if (! FRAME_LIVE_P (f))
5619 return Qnil;
5621 /* EVENT->x and EVENT->y are frame-relative pixel
5622 coordinates at this place. Under old redisplay, COLUMN
5623 and ROW are set to frame relative glyph coordinates
5624 which are then used to determine whether this click is
5625 in a menu (non-toolkit version). */
5626 if (!toolkit_menubar_in_use (f))
5628 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5629 &column, &row, NULL, 1);
5631 /* In the non-toolkit version, clicks on the menu bar
5632 are ordinary button events in the event buffer.
5633 Distinguish them, and invoke the menu.
5635 (In the toolkit version, the toolkit handles the
5636 menu bar and Emacs doesn't know about it until
5637 after the user makes a selection.) */
5638 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5639 && (event->modifiers & down_modifier))
5641 Lisp_Object items, item;
5643 /* Find the menu bar item under `column'. */
5644 item = Qnil;
5645 items = FRAME_MENU_BAR_ITEMS (f);
5646 for (i = 0; i < ASIZE (items); i += 4)
5648 Lisp_Object pos, string;
5649 string = AREF (items, i + 1);
5650 pos = AREF (items, i + 3);
5651 if (NILP (string))
5652 break;
5653 if (column >= XINT (pos)
5654 && column < XINT (pos) + SCHARS (string))
5656 item = AREF (items, i);
5657 break;
5661 /* ELisp manual 2.4b says (x y) are window
5662 relative but code says they are
5663 frame-relative. */
5664 position = list4 (event->frame_or_window,
5665 Qmenu_bar,
5666 Fcons (event->x, event->y),
5667 make_number (event->timestamp));
5669 return list2 (item, position);
5673 position = make_lispy_position (f, event->x, event->y,
5674 event->timestamp);
5676 #ifndef USE_TOOLKIT_SCROLL_BARS
5677 else
5678 /* It's a scrollbar click. */
5679 position = make_scroll_bar_position (event, Qvertical_scroll_bar);
5680 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5682 if (button >= ASIZE (button_down_location))
5684 ptrdiff_t incr = button - ASIZE (button_down_location) + 1;
5685 button_down_location = larger_vector (button_down_location,
5686 incr, -1);
5687 mouse_syms = larger_vector (mouse_syms, incr, -1);
5690 start_pos_ptr = aref_addr (button_down_location, button);
5691 start_pos = *start_pos_ptr;
5692 *start_pos_ptr = Qnil;
5695 /* On window-system frames, use the value of
5696 double-click-fuzz as is. On other frames, interpret it
5697 as a multiple of 1/8 characters. */
5698 struct frame *f;
5699 int fuzz;
5701 if (WINDOWP (event->frame_or_window))
5702 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5703 else if (FRAMEP (event->frame_or_window))
5704 f = XFRAME (event->frame_or_window);
5705 else
5706 emacs_abort ();
5708 if (FRAME_WINDOW_P (f))
5709 fuzz = double_click_fuzz;
5710 else
5711 fuzz = double_click_fuzz / 8;
5713 is_double = (button == last_mouse_button
5714 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5715 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5716 && button_down_time != 0
5717 && (EQ (Vdouble_click_time, Qt)
5718 || (NATNUMP (Vdouble_click_time)
5719 && (event->timestamp - button_down_time
5720 < XFASTINT (Vdouble_click_time)))));
5723 last_mouse_button = button;
5724 last_mouse_x = XINT (event->x);
5725 last_mouse_y = XINT (event->y);
5727 /* If this is a button press, squirrel away the location, so
5728 we can decide later whether it was a click or a drag. */
5729 if (event->modifiers & down_modifier)
5731 if (is_double)
5733 double_click_count++;
5734 event->modifiers |= ((double_click_count > 2)
5735 ? triple_modifier
5736 : double_modifier);
5738 else
5739 double_click_count = 1;
5740 button_down_time = event->timestamp;
5741 *start_pos_ptr = Fcopy_alist (position);
5742 ignore_mouse_drag_p = 0;
5745 /* Now we're releasing a button - check the co-ordinates to
5746 see if this was a click or a drag. */
5747 else if (event->modifiers & up_modifier)
5749 /* If we did not see a down before this up, ignore the up.
5750 Probably this happened because the down event chose a
5751 menu item. It would be an annoyance to treat the
5752 release of the button that chose the menu item as a
5753 separate event. */
5755 if (!CONSP (start_pos))
5756 return Qnil;
5758 event->modifiers &= ~up_modifier;
5761 Lisp_Object new_down, down;
5762 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5764 /* The third element of every position
5765 should be the (x,y) pair. */
5766 down = Fcar (Fcdr (Fcdr (start_pos)));
5767 new_down = Fcar (Fcdr (Fcdr (position)));
5769 if (CONSP (down)
5770 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5772 xdiff = XINT (XCAR (new_down)) - XINT (XCAR (down));
5773 ydiff = XINT (XCDR (new_down)) - XINT (XCDR (down));
5776 if (ignore_mouse_drag_p)
5778 event->modifiers |= click_modifier;
5779 ignore_mouse_drag_p = 0;
5781 else if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5782 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5783 /* Maybe the mouse has moved a lot, caused scrolling, and
5784 eventually ended up at the same screen position (but
5785 not buffer position) in which case it is a drag, not
5786 a click. */
5787 /* FIXME: OTOH if the buffer position has changed
5788 because of a timer or process filter rather than
5789 because of mouse movement, it should be considered as
5790 a click. But mouse-drag-region completely ignores
5791 this case and it hasn't caused any real problem, so
5792 it's probably OK to ignore it as well. */
5793 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5794 /* Mouse hasn't moved (much). */
5795 event->modifiers |= click_modifier;
5796 else
5798 button_down_time = 0;
5799 event->modifiers |= drag_modifier;
5802 /* Don't check is_double; treat this as multiple
5803 if the down-event was multiple. */
5804 if (double_click_count > 1)
5805 event->modifiers |= ((double_click_count > 2)
5806 ? triple_modifier
5807 : double_modifier);
5810 else
5811 /* Every mouse event should either have the down_modifier or
5812 the up_modifier set. */
5813 emacs_abort ();
5816 /* Get the symbol we should use for the mouse click. */
5817 Lisp_Object head;
5819 head = modify_event_symbol (button,
5820 event->modifiers,
5821 Qmouse_click, Vlispy_mouse_stem,
5822 NULL,
5823 &mouse_syms,
5824 ASIZE (mouse_syms));
5825 if (event->modifiers & drag_modifier)
5826 return list3 (head, start_pos, position);
5827 else if (event->modifiers & (double_modifier | triple_modifier))
5828 return list3 (head, position, make_number (double_click_count));
5829 else
5830 return list2 (head, position);
5834 case WHEEL_EVENT:
5835 case HORIZ_WHEEL_EVENT:
5837 Lisp_Object position;
5838 Lisp_Object head;
5840 /* Build the position as appropriate for this mouse click. */
5841 struct frame *f = XFRAME (event->frame_or_window);
5843 /* Ignore wheel events that were made on frame that have been
5844 deleted. */
5845 if (! FRAME_LIVE_P (f))
5846 return Qnil;
5848 position = make_lispy_position (f, event->x, event->y,
5849 event->timestamp);
5851 /* Set double or triple modifiers to indicate the wheel speed. */
5853 /* On window-system frames, use the value of
5854 double-click-fuzz as is. On other frames, interpret it
5855 as a multiple of 1/8 characters. */
5856 struct frame *fr;
5857 int fuzz;
5858 int symbol_num;
5859 bool is_double;
5861 if (WINDOWP (event->frame_or_window))
5862 fr = XFRAME (XWINDOW (event->frame_or_window)->frame);
5863 else if (FRAMEP (event->frame_or_window))
5864 fr = XFRAME (event->frame_or_window);
5865 else
5866 emacs_abort ();
5868 fuzz = FRAME_WINDOW_P (fr)
5869 ? double_click_fuzz : double_click_fuzz / 8;
5871 if (event->modifiers & up_modifier)
5873 /* Emit a wheel-up event. */
5874 event->modifiers &= ~up_modifier;
5875 symbol_num = 0;
5877 else if (event->modifiers & down_modifier)
5879 /* Emit a wheel-down event. */
5880 event->modifiers &= ~down_modifier;
5881 symbol_num = 1;
5883 else
5884 /* Every wheel event should either have the down_modifier or
5885 the up_modifier set. */
5886 emacs_abort ();
5888 if (event->kind == HORIZ_WHEEL_EVENT)
5889 symbol_num += 2;
5891 is_double = (last_mouse_button == - (1 + symbol_num)
5892 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5893 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5894 && button_down_time != 0
5895 && (EQ (Vdouble_click_time, Qt)
5896 || (NATNUMP (Vdouble_click_time)
5897 && (event->timestamp - button_down_time
5898 < XFASTINT (Vdouble_click_time)))));
5899 if (is_double)
5901 double_click_count++;
5902 event->modifiers |= ((double_click_count > 2)
5903 ? triple_modifier
5904 : double_modifier);
5906 else
5908 double_click_count = 1;
5909 event->modifiers |= click_modifier;
5912 button_down_time = event->timestamp;
5913 /* Use a negative value to distinguish wheel from mouse button. */
5914 last_mouse_button = - (1 + symbol_num);
5915 last_mouse_x = XINT (event->x);
5916 last_mouse_y = XINT (event->y);
5918 /* Get the symbol we should use for the wheel event. */
5919 head = modify_event_symbol (symbol_num,
5920 event->modifiers,
5921 Qmouse_click,
5922 Qnil,
5923 lispy_wheel_names,
5924 &wheel_syms,
5925 ASIZE (wheel_syms));
5928 if (event->modifiers & (double_modifier | triple_modifier))
5929 return list3 (head, position, make_number (double_click_count));
5930 else
5931 return list2 (head, position);
5935 #ifdef USE_TOOLKIT_SCROLL_BARS
5937 /* We don't have down and up events if using toolkit scroll bars,
5938 so make this always a click event. Store in the `part' of
5939 the Lisp event a symbol which maps to the following actions:
5941 `above_handle' page up
5942 `below_handle' page down
5943 `up' line up
5944 `down' line down
5945 `top' top of buffer
5946 `bottom' bottom of buffer
5947 `handle' thumb has been dragged.
5948 `end-scroll' end of interaction with scroll bar
5950 The incoming input_event contains in its `part' member an
5951 index of type `enum scroll_bar_part' which we can use as an
5952 index in scroll_bar_parts to get the appropriate symbol. */
5954 case SCROLL_BAR_CLICK_EVENT:
5956 Lisp_Object position, head;
5958 position = make_scroll_bar_position (event, Qvertical_scroll_bar);
5960 /* Always treat scroll bar events as clicks. */
5961 event->modifiers |= click_modifier;
5962 event->modifiers &= ~up_modifier;
5964 if (event->code >= ASIZE (mouse_syms))
5965 mouse_syms = larger_vector (mouse_syms,
5966 event->code - ASIZE (mouse_syms) + 1,
5967 -1);
5969 /* Get the symbol we should use for the mouse click. */
5970 head = modify_event_symbol (event->code,
5971 event->modifiers,
5972 Qmouse_click,
5973 Vlispy_mouse_stem,
5974 NULL, &mouse_syms,
5975 ASIZE (mouse_syms));
5976 return list2 (head, position);
5979 case HORIZONTAL_SCROLL_BAR_CLICK_EVENT:
5981 Lisp_Object position, head;
5983 position = make_scroll_bar_position (event, Qhorizontal_scroll_bar);
5985 /* Always treat scroll bar events as clicks. */
5986 event->modifiers |= click_modifier;
5987 event->modifiers &= ~up_modifier;
5989 if (event->code >= ASIZE (mouse_syms))
5990 mouse_syms = larger_vector (mouse_syms,
5991 event->code - ASIZE (mouse_syms) + 1,
5992 -1);
5994 /* Get the symbol we should use for the mouse click. */
5995 head = modify_event_symbol (event->code,
5996 event->modifiers,
5997 Qmouse_click,
5998 Vlispy_mouse_stem,
5999 NULL, &mouse_syms,
6000 ASIZE (mouse_syms));
6001 return list2 (head, position);
6004 #endif /* USE_TOOLKIT_SCROLL_BARS */
6006 case DRAG_N_DROP_EVENT:
6008 struct frame *f;
6009 Lisp_Object head, position;
6010 Lisp_Object files;
6012 f = XFRAME (event->frame_or_window);
6013 files = event->arg;
6015 /* Ignore mouse events that were made on frames that
6016 have been deleted. */
6017 if (! FRAME_LIVE_P (f))
6018 return Qnil;
6020 position = make_lispy_position (f, event->x, event->y,
6021 event->timestamp);
6023 head = modify_event_symbol (0, event->modifiers,
6024 Qdrag_n_drop, Qnil,
6025 lispy_drag_n_drop_names,
6026 &drag_n_drop_syms, 1);
6027 return list3 (head, position, files);
6030 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
6031 || defined (HAVE_NS) || defined (USE_GTK)
6032 case MENU_BAR_EVENT:
6033 if (EQ (event->arg, event->frame_or_window))
6034 /* This is the prefix key. We translate this to
6035 `(menu_bar)' because the code in keyboard.c for menu
6036 events, which we use, relies on this. */
6037 return list1 (Qmenu_bar);
6038 return event->arg;
6039 #endif
6041 case SELECT_WINDOW_EVENT:
6042 /* Make an event (select-window (WINDOW)). */
6043 return list2 (Qselect_window, list1 (event->frame_or_window));
6045 case TOOL_BAR_EVENT:
6046 if (EQ (event->arg, event->frame_or_window))
6047 /* This is the prefix key. We translate this to
6048 `(tool_bar)' because the code in keyboard.c for tool bar
6049 events, which we use, relies on this. */
6050 return list1 (Qtool_bar);
6051 else if (SYMBOLP (event->arg))
6052 return apply_modifiers (event->modifiers, event->arg);
6053 return event->arg;
6055 case USER_SIGNAL_EVENT:
6056 /* A user signal. */
6058 char *name = find_user_signal_name (event->code);
6059 if (!name)
6060 emacs_abort ();
6061 return intern (name);
6064 case SAVE_SESSION_EVENT:
6065 return Qsave_session;
6067 #ifdef HAVE_DBUS
6068 case DBUS_EVENT:
6070 return Fcons (Qdbus_event, event->arg);
6072 #endif /* HAVE_DBUS */
6074 #ifdef HAVE_XWIDGETS
6075 case XWIDGET_EVENT:
6077 return Fcons (Qxwidget_event, event->arg);
6079 #endif
6081 #if defined HAVE_INOTIFY || defined HAVE_KQUEUE || defined HAVE_GFILENOTIFY
6082 case FILE_NOTIFY_EVENT:
6084 return Fcons (Qfile_notify, event->arg);
6086 #endif /* HAVE_INOTIFY || HAVE_KQUEUE || HAVE_GFILENOTIFY */
6088 case CONFIG_CHANGED_EVENT:
6089 return list3 (Qconfig_changed_event,
6090 event->arg, event->frame_or_window);
6092 /* The 'kind' field of the event is something we don't recognize. */
6093 default:
6094 emacs_abort ();
6098 static Lisp_Object
6099 make_lispy_movement (struct frame *frame, Lisp_Object bar_window, enum scroll_bar_part part,
6100 Lisp_Object x, Lisp_Object y, Time t)
6102 /* Is it a scroll bar movement? */
6103 if (frame && ! NILP (bar_window))
6105 Lisp_Object part_sym;
6107 part_sym = builtin_lisp_symbol (scroll_bar_parts[part]);
6108 return list2 (Qscroll_bar_movement,
6109 list5 (bar_window,
6110 Qvertical_scroll_bar,
6111 Fcons (x, y),
6112 make_number (t),
6113 part_sym));
6115 /* Or is it an ordinary mouse movement? */
6116 else
6118 Lisp_Object position;
6119 position = make_lispy_position (frame, x, y, t);
6120 return list2 (Qmouse_movement, position);
6124 /* Construct a switch frame event. */
6125 static Lisp_Object
6126 make_lispy_switch_frame (Lisp_Object frame)
6128 return list2 (Qswitch_frame, frame);
6131 static Lisp_Object
6132 make_lispy_focus_in (Lisp_Object frame)
6134 return list2 (Qfocus_in, frame);
6137 #ifdef HAVE_WINDOW_SYSTEM
6139 static Lisp_Object
6140 make_lispy_focus_out (Lisp_Object frame)
6142 return list2 (Qfocus_out, frame);
6145 #endif /* HAVE_WINDOW_SYSTEM */
6147 /* Manipulating modifiers. */
6149 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6151 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6152 SYMBOL's name of the end of the modifiers; the string from this
6153 position is the unmodified symbol name.
6155 This doesn't use any caches. */
6157 static int
6158 parse_modifiers_uncached (Lisp_Object symbol, ptrdiff_t *modifier_end)
6160 Lisp_Object name;
6161 ptrdiff_t i;
6162 int modifiers;
6164 CHECK_SYMBOL (symbol);
6166 modifiers = 0;
6167 name = SYMBOL_NAME (symbol);
6169 for (i = 0; i < SBYTES (name) - 1; )
6171 ptrdiff_t this_mod_end = 0;
6172 int this_mod = 0;
6174 /* See if the name continues with a modifier word.
6175 Check that the word appears, but don't check what follows it.
6176 Set this_mod and this_mod_end to record what we find. */
6178 switch (SREF (name, i))
6180 #define SINGLE_LETTER_MOD(BIT) \
6181 (this_mod_end = i + 1, this_mod = BIT)
6183 case 'A':
6184 SINGLE_LETTER_MOD (alt_modifier);
6185 break;
6187 case 'C':
6188 SINGLE_LETTER_MOD (ctrl_modifier);
6189 break;
6191 case 'H':
6192 SINGLE_LETTER_MOD (hyper_modifier);
6193 break;
6195 case 'M':
6196 SINGLE_LETTER_MOD (meta_modifier);
6197 break;
6199 case 'S':
6200 SINGLE_LETTER_MOD (shift_modifier);
6201 break;
6203 case 's':
6204 SINGLE_LETTER_MOD (super_modifier);
6205 break;
6207 #undef SINGLE_LETTER_MOD
6209 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6210 if (i + LEN + 1 <= SBYTES (name) \
6211 && ! memcmp (SDATA (name) + i, NAME, LEN)) \
6213 this_mod_end = i + LEN; \
6214 this_mod = BIT; \
6217 case 'd':
6218 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6219 MULTI_LETTER_MOD (down_modifier, "down", 4);
6220 MULTI_LETTER_MOD (double_modifier, "double", 6);
6221 break;
6223 case 't':
6224 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6225 break;
6227 case 'u':
6228 MULTI_LETTER_MOD (up_modifier, "up", 2);
6229 break;
6230 #undef MULTI_LETTER_MOD
6234 /* If we found no modifier, stop looking for them. */
6235 if (this_mod_end == 0)
6236 break;
6238 /* Check there is a dash after the modifier, so that it
6239 really is a modifier. */
6240 if (this_mod_end >= SBYTES (name)
6241 || SREF (name, this_mod_end) != '-')
6242 break;
6244 /* This modifier is real; look for another. */
6245 modifiers |= this_mod;
6246 i = this_mod_end + 1;
6249 /* Should we include the `click' modifier? */
6250 if (! (modifiers & (down_modifier | drag_modifier
6251 | double_modifier | triple_modifier))
6252 && i + 7 == SBYTES (name)
6253 && memcmp (SDATA (name) + i, "mouse-", 6) == 0
6254 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6255 modifiers |= click_modifier;
6257 if (! (modifiers & (double_modifier | triple_modifier))
6258 && i + 6 < SBYTES (name)
6259 && memcmp (SDATA (name) + i, "wheel-", 6) == 0)
6260 modifiers |= click_modifier;
6262 if (modifier_end)
6263 *modifier_end = i;
6265 return modifiers;
6268 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6269 prepended to the string BASE[0..BASE_LEN-1].
6270 This doesn't use any caches. */
6271 static Lisp_Object
6272 apply_modifiers_uncached (int modifiers, char *base, int base_len, int base_len_byte)
6274 /* Since BASE could contain nulls, we can't use intern here; we have
6275 to use Fintern, which expects a genuine Lisp_String, and keeps a
6276 reference to it. */
6277 char new_mods[sizeof "A-C-H-M-S-s-up-down-drag-double-triple-"];
6278 int mod_len;
6281 char *p = new_mods;
6283 /* Mouse events should not exhibit the `up' modifier once they
6284 leave the event queue only accessible to C code; `up' will
6285 always be turned into a click or drag event before being
6286 presented to lisp code. But since lisp events can be
6287 synthesized bypassing the event queue and pushed into
6288 `unread-command-events' or its companions, it's better to just
6289 deal with unexpected modifier combinations. */
6291 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6292 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6293 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6294 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6295 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6296 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6297 if (modifiers & double_modifier) p = stpcpy (p, "double-");
6298 if (modifiers & triple_modifier) p = stpcpy (p, "triple-");
6299 if (modifiers & up_modifier) p = stpcpy (p, "up-");
6300 if (modifiers & down_modifier) p = stpcpy (p, "down-");
6301 if (modifiers & drag_modifier) p = stpcpy (p, "drag-");
6302 /* The click modifier is denoted by the absence of other modifiers. */
6304 *p = '\0';
6306 mod_len = p - new_mods;
6310 Lisp_Object new_name;
6312 new_name = make_uninit_multibyte_string (mod_len + base_len,
6313 mod_len + base_len_byte);
6314 memcpy (SDATA (new_name), new_mods, mod_len);
6315 memcpy (SDATA (new_name) + mod_len, base, base_len_byte);
6317 return Fintern (new_name, Qnil);
6322 static const char *const modifier_names[] =
6324 "up", "down", "drag", "click", "double", "triple", 0, 0,
6325 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6326 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6328 #define NUM_MOD_NAMES ARRAYELTS (modifier_names)
6330 static Lisp_Object modifier_symbols;
6332 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6333 static Lisp_Object
6334 lispy_modifier_list (int modifiers)
6336 Lisp_Object modifier_list;
6337 int i;
6339 modifier_list = Qnil;
6340 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6341 if (modifiers & (1<<i))
6342 modifier_list = Fcons (AREF (modifier_symbols, i),
6343 modifier_list);
6345 return modifier_list;
6349 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6350 where UNMODIFIED is the unmodified form of SYMBOL,
6351 MASK is the set of modifiers present in SYMBOL's name.
6352 This is similar to parse_modifiers_uncached, but uses the cache in
6353 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6354 Qevent_symbol_elements property. */
6356 #define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTERBITS) - 1))
6358 Lisp_Object
6359 parse_modifiers (Lisp_Object symbol)
6361 Lisp_Object elements;
6363 if (INTEGERP (symbol))
6364 return list2i (KEY_TO_CHAR (symbol), XINT (symbol) & CHAR_MODIFIER_MASK);
6365 else if (!SYMBOLP (symbol))
6366 return Qnil;
6368 elements = Fget (symbol, Qevent_symbol_element_mask);
6369 if (CONSP (elements))
6370 return elements;
6371 else
6373 ptrdiff_t end;
6374 int modifiers = parse_modifiers_uncached (symbol, &end);
6375 Lisp_Object unmodified;
6376 Lisp_Object mask;
6378 unmodified = Fintern (make_string (SSDATA (SYMBOL_NAME (symbol)) + end,
6379 SBYTES (SYMBOL_NAME (symbol)) - end),
6380 Qnil);
6382 if (modifiers & ~INTMASK)
6383 emacs_abort ();
6384 XSETFASTINT (mask, modifiers);
6385 elements = list2 (unmodified, mask);
6387 /* Cache the parsing results on SYMBOL. */
6388 Fput (symbol, Qevent_symbol_element_mask,
6389 elements);
6390 Fput (symbol, Qevent_symbol_elements,
6391 Fcons (unmodified, lispy_modifier_list (modifiers)));
6393 /* Since we know that SYMBOL is modifiers applied to unmodified,
6394 it would be nice to put that in unmodified's cache.
6395 But we can't, since we're not sure that parse_modifiers is
6396 canonical. */
6398 return elements;
6402 DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,
6403 Sevent_symbol_parse_modifiers, 1, 1, 0,
6404 doc: /* Parse the event symbol. For internal use. */)
6405 (Lisp_Object symbol)
6407 /* Fill the cache if needed. */
6408 parse_modifiers (symbol);
6409 /* Ignore the result (which is stored on Qevent_symbol_element_mask)
6410 and use the Lispier representation stored on Qevent_symbol_elements
6411 instead. */
6412 return Fget (symbol, Qevent_symbol_elements);
6415 /* Apply the modifiers MODIFIERS to the symbol BASE.
6416 BASE must be unmodified.
6418 This is like apply_modifiers_uncached, but uses BASE's
6419 Qmodifier_cache property, if present.
6421 apply_modifiers copies the value of BASE's Qevent_kind property to
6422 the modified symbol. */
6423 static Lisp_Object
6424 apply_modifiers (int modifiers, Lisp_Object base)
6426 Lisp_Object cache, idx, entry, new_symbol;
6428 /* Mask out upper bits. We don't know where this value's been. */
6429 modifiers &= INTMASK;
6431 if (INTEGERP (base))
6432 return make_number (XINT (base) | modifiers);
6434 /* The click modifier never figures into cache indices. */
6435 cache = Fget (base, Qmodifier_cache);
6436 XSETFASTINT (idx, (modifiers & ~click_modifier));
6437 entry = assq_no_quit (idx, cache);
6439 if (CONSP (entry))
6440 new_symbol = XCDR (entry);
6441 else
6443 /* We have to create the symbol ourselves. */
6444 new_symbol = apply_modifiers_uncached (modifiers,
6445 SSDATA (SYMBOL_NAME (base)),
6446 SCHARS (SYMBOL_NAME (base)),
6447 SBYTES (SYMBOL_NAME (base)));
6449 /* Add the new symbol to the base's cache. */
6450 entry = Fcons (idx, new_symbol);
6451 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6453 /* We have the parsing info now for free, so we could add it to
6454 the caches:
6455 XSETFASTINT (idx, modifiers);
6456 Fput (new_symbol, Qevent_symbol_element_mask,
6457 list2 (base, idx));
6458 Fput (new_symbol, Qevent_symbol_elements,
6459 Fcons (base, lispy_modifier_list (modifiers)));
6460 Sadly, this is only correct if `base' is indeed a base event,
6461 which is not necessarily the case. -stef */
6464 /* Make sure this symbol is of the same kind as BASE.
6466 You'd think we could just set this once and for all when we
6467 intern the symbol above, but reorder_modifiers may call us when
6468 BASE's property isn't set right; we can't assume that just
6469 because it has a Qmodifier_cache property it must have its
6470 Qevent_kind set right as well. */
6471 if (NILP (Fget (new_symbol, Qevent_kind)))
6473 Lisp_Object kind;
6475 kind = Fget (base, Qevent_kind);
6476 if (! NILP (kind))
6477 Fput (new_symbol, Qevent_kind, kind);
6480 return new_symbol;
6484 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6485 return a symbol with the modifiers placed in the canonical order.
6486 Canonical order is alphabetical, except for down and drag, which
6487 always come last. The 'click' modifier is never written out.
6489 Fdefine_key calls this to make sure that (for example) C-M-foo
6490 and M-C-foo end up being equivalent in the keymap. */
6492 Lisp_Object
6493 reorder_modifiers (Lisp_Object symbol)
6495 /* It's hopefully okay to write the code this way, since everything
6496 will soon be in caches, and no consing will be done at all. */
6497 Lisp_Object parsed;
6499 parsed = parse_modifiers (symbol);
6500 return apply_modifiers (XFASTINT (XCAR (XCDR (parsed))),
6501 XCAR (parsed));
6505 /* For handling events, we often want to produce a symbol whose name
6506 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6507 to some base, like the name of a function key or mouse button.
6508 modify_event_symbol produces symbols of this sort.
6510 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6511 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6512 in the table.
6514 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6515 into symbol names, or a string specifying a name stem used to
6516 construct a symbol name or the form `STEM-N', where N is the decimal
6517 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6518 non-nil; otherwise NAME_TABLE is used.
6520 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6521 persist between calls to modify_event_symbol that it can use to
6522 store a cache of the symbols it's generated for this NAME_TABLE
6523 before. The object stored there may be a vector or an alist.
6525 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6527 MODIFIERS is a set of modifier bits (as given in struct input_events)
6528 whose prefixes should be applied to the symbol name.
6530 SYMBOL_KIND is the value to be placed in the event_kind property of
6531 the returned symbol.
6533 The symbols we create are supposed to have an
6534 `event-symbol-elements' property, which lists the modifiers present
6535 in the symbol's name. */
6537 static Lisp_Object
6538 modify_event_symbol (ptrdiff_t symbol_num, int modifiers, Lisp_Object symbol_kind,
6539 Lisp_Object name_alist_or_stem, const char *const *name_table,
6540 Lisp_Object *symbol_table, ptrdiff_t table_size)
6542 Lisp_Object value;
6543 Lisp_Object symbol_int;
6545 /* Get rid of the "vendor-specific" bit here. */
6546 XSETINT (symbol_int, symbol_num & 0xffffff);
6548 /* Is this a request for a valid symbol? */
6549 if (symbol_num < 0 || symbol_num >= table_size)
6550 return Qnil;
6552 if (CONSP (*symbol_table))
6553 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6555 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6556 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6557 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6558 we've never used that symbol before. */
6559 else
6561 if (! VECTORP (*symbol_table)
6562 || ASIZE (*symbol_table) != table_size)
6564 Lisp_Object size;
6566 XSETFASTINT (size, table_size);
6567 *symbol_table = Fmake_vector (size, Qnil);
6570 value = AREF (*symbol_table, symbol_num);
6573 /* Have we already used this symbol before? */
6574 if (NILP (value))
6576 /* No; let's create it. */
6577 if (CONSP (name_alist_or_stem))
6578 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6579 else if (STRINGP (name_alist_or_stem))
6581 char *buf;
6582 ptrdiff_t len = (SBYTES (name_alist_or_stem)
6583 + sizeof "-" + INT_STRLEN_BOUND (EMACS_INT));
6584 USE_SAFE_ALLOCA;
6585 buf = SAFE_ALLOCA (len);
6586 esprintf (buf, "%s-%"pI"d", SDATA (name_alist_or_stem),
6587 XINT (symbol_int) + 1);
6588 value = intern (buf);
6589 SAFE_FREE ();
6591 else if (name_table != 0 && name_table[symbol_num])
6592 value = intern (name_table[symbol_num]);
6594 #ifdef HAVE_WINDOW_SYSTEM
6595 if (NILP (value))
6597 char *name = x_get_keysym_name (symbol_num);
6598 if (name)
6599 value = intern (name);
6601 #endif
6603 if (NILP (value))
6605 char buf[sizeof "key-" + INT_STRLEN_BOUND (EMACS_INT)];
6606 sprintf (buf, "key-%"pD"d", symbol_num);
6607 value = intern (buf);
6610 if (CONSP (*symbol_table))
6611 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6612 else
6613 ASET (*symbol_table, symbol_num, value);
6615 /* Fill in the cache entries for this symbol; this also
6616 builds the Qevent_symbol_elements property, which the user
6617 cares about. */
6618 apply_modifiers (modifiers & click_modifier, value);
6619 Fput (value, Qevent_kind, symbol_kind);
6622 /* Apply modifiers to that symbol. */
6623 return apply_modifiers (modifiers, value);
6626 /* Convert a list that represents an event type,
6627 such as (ctrl meta backspace), into the usual representation of that
6628 event type as a number or a symbol. */
6630 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6631 doc: /* Convert the event description list EVENT-DESC to an event type.
6632 EVENT-DESC should contain one base event type (a character or symbol)
6633 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6634 drag, down, double or triple). The base must be last.
6635 The return value is an event type (a character or symbol) which
6636 has the same base event type and all the specified modifiers. */)
6637 (Lisp_Object event_desc)
6639 Lisp_Object base;
6640 int modifiers = 0;
6641 Lisp_Object rest;
6643 base = Qnil;
6644 rest = event_desc;
6645 while (CONSP (rest))
6647 Lisp_Object elt;
6648 int this = 0;
6650 elt = XCAR (rest);
6651 rest = XCDR (rest);
6653 /* Given a symbol, see if it is a modifier name. */
6654 if (SYMBOLP (elt) && CONSP (rest))
6655 this = parse_solitary_modifier (elt);
6657 if (this != 0)
6658 modifiers |= this;
6659 else if (!NILP (base))
6660 error ("Two bases given in one event");
6661 else
6662 base = elt;
6666 /* Let the symbol A refer to the character A. */
6667 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6668 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6670 if (INTEGERP (base))
6672 /* Turn (shift a) into A. */
6673 if ((modifiers & shift_modifier) != 0
6674 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6676 XSETINT (base, XINT (base) - ('a' - 'A'));
6677 modifiers &= ~shift_modifier;
6680 /* Turn (control a) into C-a. */
6681 if (modifiers & ctrl_modifier)
6682 return make_number ((modifiers & ~ctrl_modifier)
6683 | make_ctrl_char (XINT (base)));
6684 else
6685 return make_number (modifiers | XINT (base));
6687 else if (SYMBOLP (base))
6688 return apply_modifiers (modifiers, base);
6689 else
6690 error ("Invalid base event");
6693 /* Try to recognize SYMBOL as a modifier name.
6694 Return the modifier flag bit, or 0 if not recognized. */
6697 parse_solitary_modifier (Lisp_Object symbol)
6699 Lisp_Object name;
6701 if (!SYMBOLP (symbol))
6702 return 0;
6704 name = SYMBOL_NAME (symbol);
6706 switch (SREF (name, 0))
6708 #define SINGLE_LETTER_MOD(BIT) \
6709 if (SBYTES (name) == 1) \
6710 return BIT;
6712 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6713 if (LEN == SBYTES (name) \
6714 && ! memcmp (SDATA (name), NAME, LEN)) \
6715 return BIT;
6717 case 'A':
6718 SINGLE_LETTER_MOD (alt_modifier);
6719 break;
6721 case 'a':
6722 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6723 break;
6725 case 'C':
6726 SINGLE_LETTER_MOD (ctrl_modifier);
6727 break;
6729 case 'c':
6730 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6731 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6732 break;
6734 case 'H':
6735 SINGLE_LETTER_MOD (hyper_modifier);
6736 break;
6738 case 'h':
6739 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6740 break;
6742 case 'M':
6743 SINGLE_LETTER_MOD (meta_modifier);
6744 break;
6746 case 'm':
6747 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6748 break;
6750 case 'S':
6751 SINGLE_LETTER_MOD (shift_modifier);
6752 break;
6754 case 's':
6755 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6756 MULTI_LETTER_MOD (super_modifier, "super", 5);
6757 SINGLE_LETTER_MOD (super_modifier);
6758 break;
6760 case 'd':
6761 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6762 MULTI_LETTER_MOD (down_modifier, "down", 4);
6763 MULTI_LETTER_MOD (double_modifier, "double", 6);
6764 break;
6766 case 't':
6767 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6768 break;
6770 case 'u':
6771 MULTI_LETTER_MOD (up_modifier, "up", 2);
6772 break;
6774 #undef SINGLE_LETTER_MOD
6775 #undef MULTI_LETTER_MOD
6778 return 0;
6781 /* Return true if EVENT is a list whose elements are all integers or symbols.
6782 Such a list is not valid as an event,
6783 but it can be a Lucid-style event type list. */
6785 bool
6786 lucid_event_type_list_p (Lisp_Object object)
6788 Lisp_Object tail;
6790 if (! CONSP (object))
6791 return 0;
6793 if (EQ (XCAR (object), Qhelp_echo)
6794 || EQ (XCAR (object), Qvertical_line)
6795 || EQ (XCAR (object), Qmode_line)
6796 || EQ (XCAR (object), Qheader_line))
6797 return 0;
6799 for (tail = object; CONSP (tail); tail = XCDR (tail))
6801 Lisp_Object elt;
6802 elt = XCAR (tail);
6803 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6804 return 0;
6807 return NILP (tail);
6810 /* Return true if terminal input chars are available.
6811 Also, store the return value into INPUT_PENDING.
6813 Serves the purpose of ioctl (0, FIONREAD, ...)
6814 but works even if FIONREAD does not exist.
6815 (In fact, this may actually read some input.)
6817 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6818 timer events that are ripe.
6819 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6820 events (FOCUS_IN_EVENT).
6821 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6822 movements and toolkit scroll bar thumb drags. */
6824 static bool
6825 get_input_pending (int flags)
6827 /* First of all, have we already counted some input? */
6828 input_pending = (!NILP (Vquit_flag) || readable_events (flags));
6830 /* If input is being read as it arrives, and we have none, there is none. */
6831 if (!input_pending && (!interrupt_input || interrupts_deferred))
6833 /* Try to read some input and see how much we get. */
6834 gobble_input ();
6835 input_pending = (!NILP (Vquit_flag) || readable_events (flags));
6838 return input_pending;
6841 /* Put a BUFFER_SWITCH_EVENT in the buffer
6842 so that read_key_sequence will notice the new current buffer. */
6844 void
6845 record_asynch_buffer_change (void)
6847 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6848 The purpose of the event is to make read_key_sequence look up the
6849 keymaps again. If we aren't in read_key_sequence, we don't need one,
6850 and the event could cause trouble by messing up (input-pending-p).
6851 Note: Fwaiting_for_user_input_p always returns nil when async
6852 subprocesses aren't supported. */
6853 if (!NILP (Fwaiting_for_user_input_p ()))
6855 struct input_event event;
6857 EVENT_INIT (event);
6858 event.kind = BUFFER_SWITCH_EVENT;
6859 event.frame_or_window = Qnil;
6860 event.arg = Qnil;
6862 /* Make sure no interrupt happens while storing the event. */
6863 #ifdef USABLE_SIGIO
6864 if (interrupt_input)
6865 kbd_buffer_store_event (&event);
6866 else
6867 #endif
6869 stop_polling ();
6870 kbd_buffer_store_event (&event);
6871 start_polling ();
6876 /* Read any terminal input already buffered up by the system
6877 into the kbd_buffer, but do not wait.
6879 Return the number of keyboard chars read, or -1 meaning
6880 this is a bad time to try to read input. */
6883 gobble_input (void)
6885 int nread = 0;
6886 bool err = false;
6887 struct terminal *t;
6889 /* Store pending user signal events, if any. */
6890 store_user_signal_events ();
6892 /* Loop through the available terminals, and call their input hooks. */
6893 t = terminal_list;
6894 while (t)
6896 struct terminal *next = t->next_terminal;
6898 if (t->read_socket_hook)
6900 int nr;
6901 struct input_event hold_quit;
6903 if (input_blocked_p ())
6905 pending_signals = true;
6906 break;
6909 EVENT_INIT (hold_quit);
6910 hold_quit.kind = NO_EVENT;
6912 /* No need for FIONREAD or fcntl; just say don't wait. */
6913 while ((nr = (*t->read_socket_hook) (t, &hold_quit)) > 0)
6914 nread += nr;
6916 if (nr == -1) /* Not OK to read input now. */
6918 err = true;
6920 else if (nr == -2) /* Non-transient error. */
6922 /* The terminal device terminated; it should be closed. */
6924 /* Kill Emacs if this was our last terminal. */
6925 if (!terminal_list->next_terminal)
6926 /* Formerly simply reported no input, but that
6927 sometimes led to a failure of Emacs to terminate.
6928 SIGHUP seems appropriate if we can't reach the
6929 terminal. */
6930 /* ??? Is it really right to send the signal just to
6931 this process rather than to the whole process
6932 group? Perhaps on systems with FIONREAD Emacs is
6933 alone in its group. */
6934 terminate_due_to_signal (SIGHUP, 10);
6936 /* XXX Is calling delete_terminal safe here? It calls delete_frame. */
6938 Lisp_Object tmp;
6939 XSETTERMINAL (tmp, t);
6940 Fdelete_terminal (tmp, Qnoelisp);
6944 /* If there was no error, make sure the pointer
6945 is visible for all frames on this terminal. */
6946 if (nr >= 0)
6948 Lisp_Object tail, frame;
6950 FOR_EACH_FRAME (tail, frame)
6952 struct frame *f = XFRAME (frame);
6953 if (FRAME_TERMINAL (f) == t)
6954 frame_make_pointer_visible (f);
6958 if (hold_quit.kind != NO_EVENT)
6959 kbd_buffer_store_event (&hold_quit);
6962 t = next;
6965 if (err && !nread)
6966 nread = -1;
6968 return nread;
6971 /* This is the tty way of reading available input.
6973 Note that each terminal device has its own `struct terminal' object,
6974 and so this function is called once for each individual termcap
6975 terminal. The first parameter indicates which terminal to read from. */
6978 tty_read_avail_input (struct terminal *terminal,
6979 struct input_event *hold_quit)
6981 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6982 the kbd_buffer can really hold. That may prevent loss
6983 of characters on some systems when input is stuffed at us. */
6984 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6985 #ifndef WINDOWSNT
6986 int n_to_read;
6987 #endif
6988 int i;
6989 struct tty_display_info *tty = terminal->display_info.tty;
6990 int nread = 0;
6991 #ifdef subprocesses
6992 int buffer_free = KBD_BUFFER_SIZE - kbd_buffer_nr_stored () - 1;
6994 if (kbd_on_hold_p () || buffer_free <= 0)
6995 return 0;
6996 #endif /* subprocesses */
6998 if (!terminal->name) /* Don't read from a dead terminal. */
6999 return 0;
7001 if (terminal->type != output_termcap
7002 && terminal->type != output_msdos_raw)
7003 emacs_abort ();
7005 /* XXX I think the following code should be moved to separate hook
7006 functions in system-dependent files. */
7007 #ifdef WINDOWSNT
7008 /* FIXME: AFAIK, tty_read_avail_input is not used under w32 since the non-GUI
7009 code sets read_socket_hook to w32_console_read_socket instead! */
7010 return 0;
7011 #else /* not WINDOWSNT */
7012 if (! tty->term_initted) /* In case we get called during bootstrap. */
7013 return 0;
7015 if (! tty->input)
7016 return 0; /* The terminal is suspended. */
7018 #ifdef MSDOS
7019 n_to_read = dos_keysns ();
7020 if (n_to_read == 0)
7021 return 0;
7023 cbuf[0] = dos_keyread ();
7024 nread = 1;
7026 #else /* not MSDOS */
7027 #ifdef HAVE_GPM
7028 if (gpm_tty == tty)
7030 Gpm_Event event;
7031 struct input_event gpm_hold_quit;
7032 int gpm, fd = gpm_fd;
7034 EVENT_INIT (gpm_hold_quit);
7035 gpm_hold_quit.kind = NO_EVENT;
7037 /* gpm==1 if event received.
7038 gpm==0 if the GPM daemon has closed the connection, in which case
7039 Gpm_GetEvent closes gpm_fd and clears it to -1, which is why
7040 we save it in `fd' so close_gpm can remove it from the
7041 select masks.
7042 gpm==-1 if a protocol error or EWOULDBLOCK; the latter is normal. */
7043 while (gpm = Gpm_GetEvent (&event), gpm == 1) {
7044 nread += handle_one_term_event (tty, &event, &gpm_hold_quit);
7046 if (gpm == 0)
7047 /* Presumably the GPM daemon has closed the connection. */
7048 close_gpm (fd);
7049 if (gpm_hold_quit.kind != NO_EVENT)
7050 kbd_buffer_store_event (&gpm_hold_quit);
7051 if (nread)
7052 return nread;
7054 #endif /* HAVE_GPM */
7056 /* Determine how many characters we should *try* to read. */
7057 #ifdef USABLE_FIONREAD
7058 /* Find out how much input is available. */
7059 if (ioctl (fileno (tty->input), FIONREAD, &n_to_read) < 0)
7061 if (! noninteractive)
7062 return -2; /* Close this terminal. */
7063 else
7064 n_to_read = 0;
7066 if (n_to_read == 0)
7067 return 0;
7068 if (n_to_read > sizeof cbuf)
7069 n_to_read = sizeof cbuf;
7070 #elif defined USG || defined CYGWIN
7071 /* Read some input if available, but don't wait. */
7072 n_to_read = sizeof cbuf;
7073 fcntl (fileno (tty->input), F_SETFL, O_NONBLOCK);
7074 #else
7075 # error "Cannot read without possibly delaying"
7076 #endif
7078 #ifdef subprocesses
7079 /* Don't read more than we can store. */
7080 if (n_to_read > buffer_free)
7081 n_to_read = buffer_free;
7082 #endif /* subprocesses */
7084 /* Now read; for one reason or another, this will not block.
7085 NREAD is set to the number of chars read. */
7086 nread = emacs_read (fileno (tty->input), (char *) cbuf, n_to_read);
7087 /* POSIX infers that processes which are not in the session leader's
7088 process group won't get SIGHUPs at logout time. BSDI adheres to
7089 this part standard and returns -1 from read (0) with errno==EIO
7090 when the control tty is taken away.
7091 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
7092 if (nread == -1 && errno == EIO)
7093 return -2; /* Close this terminal. */
7094 #if defined AIX && defined _BSD
7095 /* The kernel sometimes fails to deliver SIGHUP for ptys.
7096 This looks incorrect, but it isn't, because _BSD causes
7097 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
7098 and that causes a value other than 0 when there is no input. */
7099 if (nread == 0)
7100 return -2; /* Close this terminal. */
7101 #endif
7103 #ifndef USABLE_FIONREAD
7104 #if defined (USG) || defined (CYGWIN)
7105 fcntl (fileno (tty->input), F_SETFL, 0);
7106 #endif /* USG or CYGWIN */
7107 #endif /* no FIONREAD */
7109 if (nread <= 0)
7110 return nread;
7112 #endif /* not MSDOS */
7113 #endif /* not WINDOWSNT */
7115 for (i = 0; i < nread; i++)
7117 struct input_event buf;
7118 EVENT_INIT (buf);
7119 buf.kind = ASCII_KEYSTROKE_EVENT;
7120 buf.modifiers = 0;
7121 if (tty->meta_key == 1 && (cbuf[i] & 0x80))
7122 buf.modifiers = meta_modifier;
7123 if (tty->meta_key != 2)
7124 cbuf[i] &= ~0x80;
7126 buf.code = cbuf[i];
7127 /* Set the frame corresponding to the active tty. Note that the
7128 value of selected_frame is not reliable here, redisplay tends
7129 to temporarily change it. */
7130 buf.frame_or_window = tty->top_frame;
7131 buf.arg = Qnil;
7133 kbd_buffer_store_event (&buf);
7134 /* Don't look at input that follows a C-g too closely.
7135 This reduces lossage due to autorepeat on C-g. */
7136 if (buf.kind == ASCII_KEYSTROKE_EVENT
7137 && buf.code == quit_char)
7138 break;
7141 return nread;
7144 static void
7145 handle_async_input (void)
7147 #ifdef USABLE_SIGIO
7148 while (1)
7150 int nread = gobble_input ();
7151 /* -1 means it's not ok to read the input now.
7152 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
7153 0 means there was no keyboard input available. */
7154 if (nread <= 0)
7155 break;
7157 #endif
7160 void
7161 process_pending_signals (void)
7163 pending_signals = false;
7164 handle_async_input ();
7165 do_pending_atimers ();
7168 /* Undo any number of BLOCK_INPUT calls down to level LEVEL,
7169 and reinvoke any pending signal if the level is now 0 and
7170 a fatal error is not already in progress. */
7172 void
7173 unblock_input_to (int level)
7175 interrupt_input_blocked = level;
7176 if (level == 0)
7178 if (pending_signals && !fatal_error_in_progress)
7179 process_pending_signals ();
7181 else if (level < 0)
7182 emacs_abort ();
7185 /* End critical section.
7187 If doing signal-driven input, and a signal came in when input was
7188 blocked, reinvoke the signal handler now to deal with it.
7190 It will also process queued input, if it was not read before.
7191 When a longer code sequence does not use block/unblock input
7192 at all, the whole input gathered up to the next call to
7193 unblock_input will be processed inside that call. */
7195 void
7196 unblock_input (void)
7198 unblock_input_to (interrupt_input_blocked - 1);
7201 /* Undo any number of BLOCK_INPUT calls,
7202 and also reinvoke any pending signal. */
7204 void
7205 totally_unblock_input (void)
7207 unblock_input_to (0);
7210 #ifdef USABLE_SIGIO
7212 void
7213 handle_input_available_signal (int sig)
7215 pending_signals = true;
7217 if (input_available_clear_time)
7218 *input_available_clear_time = make_timespec (0, 0);
7221 static void
7222 deliver_input_available_signal (int sig)
7224 deliver_process_signal (sig, handle_input_available_signal);
7226 #endif /* USABLE_SIGIO */
7229 /* User signal events. */
7231 struct user_signal_info
7233 /* Signal number. */
7234 int sig;
7236 /* Name of the signal. */
7237 char *name;
7239 /* Number of pending signals. */
7240 int npending;
7242 struct user_signal_info *next;
7245 /* List of user signals. */
7246 static struct user_signal_info *user_signals = NULL;
7248 void
7249 add_user_signal (int sig, const char *name)
7251 struct sigaction action;
7252 struct user_signal_info *p;
7254 for (p = user_signals; p; p = p->next)
7255 if (p->sig == sig)
7256 /* Already added. */
7257 return;
7259 p = xmalloc (sizeof *p);
7260 p->sig = sig;
7261 p->name = xstrdup (name);
7262 p->npending = 0;
7263 p->next = user_signals;
7264 user_signals = p;
7266 emacs_sigaction_init (&action, deliver_user_signal);
7267 sigaction (sig, &action, 0);
7270 static void
7271 handle_user_signal (int sig)
7273 struct user_signal_info *p;
7274 const char *special_event_name = NULL;
7276 if (SYMBOLP (Vdebug_on_event))
7277 special_event_name = SSDATA (SYMBOL_NAME (Vdebug_on_event));
7279 for (p = user_signals; p; p = p->next)
7280 if (p->sig == sig)
7282 if (special_event_name
7283 && strcmp (special_event_name, p->name) == 0)
7285 /* Enter the debugger in many ways. */
7286 debug_on_next_call = true;
7287 debug_on_quit = true;
7288 Vquit_flag = Qt;
7289 Vinhibit_quit = Qnil;
7291 /* Eat the event. */
7292 break;
7295 p->npending++;
7296 #ifdef USABLE_SIGIO
7297 if (interrupt_input)
7298 handle_input_available_signal (sig);
7299 else
7300 #endif
7302 /* Tell wait_reading_process_output that it needs to wake
7303 up and look around. */
7304 if (input_available_clear_time)
7305 *input_available_clear_time = make_timespec (0, 0);
7307 break;
7311 static void
7312 deliver_user_signal (int sig)
7314 deliver_process_signal (sig, handle_user_signal);
7317 static char *
7318 find_user_signal_name (int sig)
7320 struct user_signal_info *p;
7322 for (p = user_signals; p; p = p->next)
7323 if (p->sig == sig)
7324 return p->name;
7326 return NULL;
7329 static void
7330 store_user_signal_events (void)
7332 struct user_signal_info *p;
7333 struct input_event buf;
7334 bool buf_initialized = false;
7336 for (p = user_signals; p; p = p->next)
7337 if (p->npending > 0)
7339 if (! buf_initialized)
7341 memset (&buf, 0, sizeof buf);
7342 buf.kind = USER_SIGNAL_EVENT;
7343 buf.frame_or_window = selected_frame;
7344 buf_initialized = true;
7349 buf.code = p->sig;
7350 kbd_buffer_store_event (&buf);
7351 p->npending--;
7353 while (p->npending > 0);
7358 static void menu_bar_item (Lisp_Object, Lisp_Object, Lisp_Object, void *);
7359 static Lisp_Object menu_bar_one_keymap_changed_items;
7361 /* These variables hold the vector under construction within
7362 menu_bar_items and its subroutines, and the current index
7363 for storing into that vector. */
7364 static Lisp_Object menu_bar_items_vector;
7365 static int menu_bar_items_index;
7368 static const char *separator_names[] = {
7369 "space",
7370 "no-line",
7371 "single-line",
7372 "double-line",
7373 "single-dashed-line",
7374 "double-dashed-line",
7375 "shadow-etched-in",
7376 "shadow-etched-out",
7377 "shadow-etched-in-dash",
7378 "shadow-etched-out-dash",
7379 "shadow-double-etched-in",
7380 "shadow-double-etched-out",
7381 "shadow-double-etched-in-dash",
7382 "shadow-double-etched-out-dash",
7386 /* Return true if LABEL specifies a separator. */
7388 bool
7389 menu_separator_name_p (const char *label)
7391 if (!label)
7392 return 0;
7393 else if (strlen (label) > 3
7394 && memcmp (label, "--", 2) == 0
7395 && label[2] != '-')
7397 int i;
7398 label += 2;
7399 for (i = 0; separator_names[i]; ++i)
7400 if (strcmp (label, separator_names[i]) == 0)
7401 return 1;
7403 else
7405 /* It's a separator if it contains only dashes. */
7406 while (*label == '-')
7407 ++label;
7408 return (*label == 0);
7411 return 0;
7415 /* Return a vector of menu items for a menu bar, appropriate
7416 to the current buffer. Each item has three elements in the vector:
7417 KEY STRING MAPLIST.
7419 OLD is an old vector we can optionally reuse, or nil. */
7421 Lisp_Object
7422 menu_bar_items (Lisp_Object old)
7424 /* The number of keymaps we're scanning right now, and the number of
7425 keymaps we have allocated space for. */
7426 ptrdiff_t nmaps;
7428 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7429 in the current keymaps, or nil where it is not a prefix. */
7430 Lisp_Object *maps;
7432 Lisp_Object mapsbuf[3];
7433 Lisp_Object def, tail;
7435 ptrdiff_t mapno;
7436 Lisp_Object oquit;
7438 USE_SAFE_ALLOCA;
7440 /* In order to build the menus, we need to call the keymap
7441 accessors. They all call maybe_quit. But this function is called
7442 during redisplay, during which a quit is fatal. So inhibit
7443 quitting while building the menus.
7444 We do this instead of specbind because (1) errors will clear it anyway
7445 and (2) this avoids risk of specpdl overflow. */
7446 oquit = Vinhibit_quit;
7447 Vinhibit_quit = Qt;
7449 if (!NILP (old))
7450 menu_bar_items_vector = old;
7451 else
7452 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
7453 menu_bar_items_index = 0;
7455 /* Build our list of keymaps.
7456 If we recognize a function key and replace its escape sequence in
7457 keybuf with its symbol, or if the sequence starts with a mouse
7458 click and we need to switch buffers, we jump back here to rebuild
7459 the initial keymaps from the current buffer. */
7461 Lisp_Object *tmaps;
7463 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7464 if (!NILP (Voverriding_local_map_menu_flag)
7465 && !NILP (Voverriding_local_map))
7467 /* Yes, use them (if non-nil) as well as the global map. */
7468 maps = mapsbuf;
7469 nmaps = 0;
7470 if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
7471 maps[nmaps++] = KVAR (current_kboard, Voverriding_terminal_local_map);
7472 if (!NILP (Voverriding_local_map))
7473 maps[nmaps++] = Voverriding_local_map;
7475 else
7477 /* No, so use major and minor mode keymaps and keymap property.
7478 Note that menu-bar bindings in the local-map and keymap
7479 properties may not work reliable, as they are only
7480 recognized when the menu-bar (or mode-line) is updated,
7481 which does not normally happen after every command. */
7482 ptrdiff_t nminor = current_minor_maps (NULL, &tmaps);
7483 SAFE_NALLOCA (maps, 1, nminor + 4);
7484 nmaps = 0;
7485 Lisp_Object tem = KVAR (current_kboard, Voverriding_terminal_local_map);
7486 if (!NILP (tem) && !NILP (Voverriding_local_map_menu_flag))
7487 maps[nmaps++] = tem;
7488 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7489 maps[nmaps++] = tem;
7490 if (nminor != 0)
7492 memcpy (maps + nmaps, tmaps, nminor * sizeof (maps[0]));
7493 nmaps += nminor;
7495 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7497 maps[nmaps++] = current_global_map;
7500 /* Look up in each map the dummy prefix key `menu-bar'. */
7502 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7503 if (!NILP (maps[mapno]))
7505 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7506 0, 1);
7507 if (CONSP (def))
7509 menu_bar_one_keymap_changed_items = Qnil;
7510 map_keymap_canonical (def, menu_bar_item, Qnil, NULL);
7514 /* Move to the end those items that should be at the end. */
7516 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7518 int i;
7519 int end = menu_bar_items_index;
7521 for (i = 0; i < end; i += 4)
7522 if (EQ (XCAR (tail), AREF (menu_bar_items_vector, i)))
7524 Lisp_Object tem0, tem1, tem2, tem3;
7525 /* Move the item at index I to the end,
7526 shifting all the others forward. */
7527 tem0 = AREF (menu_bar_items_vector, i + 0);
7528 tem1 = AREF (menu_bar_items_vector, i + 1);
7529 tem2 = AREF (menu_bar_items_vector, i + 2);
7530 tem3 = AREF (menu_bar_items_vector, i + 3);
7531 if (end > i + 4)
7532 memmove (aref_addr (menu_bar_items_vector, i),
7533 aref_addr (menu_bar_items_vector, i + 4),
7534 (end - i - 4) * word_size);
7535 ASET (menu_bar_items_vector, end - 4, tem0);
7536 ASET (menu_bar_items_vector, end - 3, tem1);
7537 ASET (menu_bar_items_vector, end - 2, tem2);
7538 ASET (menu_bar_items_vector, end - 1, tem3);
7539 break;
7543 /* Add nil, nil, nil, nil at the end. */
7545 int i = menu_bar_items_index;
7546 if (i + 4 > ASIZE (menu_bar_items_vector))
7547 menu_bar_items_vector
7548 = larger_vector (menu_bar_items_vector, 4, -1);
7549 /* Add this item. */
7550 ASET (menu_bar_items_vector, i, Qnil); i++;
7551 ASET (menu_bar_items_vector, i, Qnil); i++;
7552 ASET (menu_bar_items_vector, i, Qnil); i++;
7553 ASET (menu_bar_items_vector, i, Qnil); i++;
7554 menu_bar_items_index = i;
7557 Vinhibit_quit = oquit;
7558 SAFE_FREE ();
7559 return menu_bar_items_vector;
7562 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7563 If there's already an item for KEY, add this DEF to it. */
7565 Lisp_Object item_properties;
7567 static void
7568 menu_bar_item (Lisp_Object key, Lisp_Object item, Lisp_Object dummy1, void *dummy2)
7570 int i;
7571 bool parsed;
7572 Lisp_Object tem;
7574 if (EQ (item, Qundefined))
7576 /* If a map has an explicit `undefined' as definition,
7577 discard any previously made menu bar item. */
7579 for (i = 0; i < menu_bar_items_index; i += 4)
7580 if (EQ (key, AREF (menu_bar_items_vector, i)))
7582 if (menu_bar_items_index > i + 4)
7583 memmove (aref_addr (menu_bar_items_vector, i),
7584 aref_addr (menu_bar_items_vector, i + 4),
7585 (menu_bar_items_index - i - 4) * word_size);
7586 menu_bar_items_index -= 4;
7590 /* If this keymap has already contributed to this KEY,
7591 don't contribute to it a second time. */
7592 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7593 if (!NILP (tem) || NILP (item))
7594 return;
7596 menu_bar_one_keymap_changed_items
7597 = Fcons (key, menu_bar_one_keymap_changed_items);
7599 /* We add to menu_bar_one_keymap_changed_items before doing the
7600 parse_menu_item, so that if it turns out it wasn't a menu item,
7601 it still correctly hides any further menu item. */
7602 parsed = parse_menu_item (item, 1);
7603 if (!parsed)
7604 return;
7606 item = AREF (item_properties, ITEM_PROPERTY_DEF);
7608 /* Find any existing item for this KEY. */
7609 for (i = 0; i < menu_bar_items_index; i += 4)
7610 if (EQ (key, AREF (menu_bar_items_vector, i)))
7611 break;
7613 /* If we did not find this KEY, add it at the end. */
7614 if (i == menu_bar_items_index)
7616 /* If vector is too small, get a bigger one. */
7617 if (i + 4 > ASIZE (menu_bar_items_vector))
7618 menu_bar_items_vector = larger_vector (menu_bar_items_vector, 4, -1);
7619 /* Add this item. */
7620 ASET (menu_bar_items_vector, i, key); i++;
7621 ASET (menu_bar_items_vector, i,
7622 AREF (item_properties, ITEM_PROPERTY_NAME)); i++;
7623 ASET (menu_bar_items_vector, i, list1 (item)); i++;
7624 ASET (menu_bar_items_vector, i, make_number (0)); i++;
7625 menu_bar_items_index = i;
7627 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7628 else
7630 Lisp_Object old;
7631 old = AREF (menu_bar_items_vector, i + 2);
7632 /* If the new and the old items are not both keymaps,
7633 the lookup will only find `item'. */
7634 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7635 ASET (menu_bar_items_vector, i + 2, item);
7639 /* This is used as the handler when calling menu_item_eval_property. */
7640 static Lisp_Object
7641 menu_item_eval_property_1 (Lisp_Object arg)
7643 /* If we got a quit from within the menu computation,
7644 quit all the way out of it. This takes care of C-] in the debugger. */
7645 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7646 quit ();
7648 return Qnil;
7651 static Lisp_Object
7652 eval_dyn (Lisp_Object form)
7654 return Feval (form, Qnil);
7657 /* Evaluate an expression and return the result (or nil if something
7658 went wrong). Used to evaluate dynamic parts of menu items. */
7659 Lisp_Object
7660 menu_item_eval_property (Lisp_Object sexpr)
7662 ptrdiff_t count = SPECPDL_INDEX ();
7663 Lisp_Object val;
7664 specbind (Qinhibit_redisplay, Qt);
7665 val = internal_condition_case_1 (eval_dyn, sexpr, Qerror,
7666 menu_item_eval_property_1);
7667 return unbind_to (count, val);
7670 /* This function parses a menu item and leaves the result in the
7671 vector item_properties.
7672 ITEM is a key binding, a possible menu item.
7673 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7674 top level.
7675 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7676 parse_menu_item returns true if the item is a menu item and false
7677 otherwise. */
7679 bool
7680 parse_menu_item (Lisp_Object item, int inmenubar)
7682 Lisp_Object def, tem, item_string, start;
7683 Lisp_Object filter;
7684 Lisp_Object keyhint;
7685 int i;
7687 filter = Qnil;
7688 keyhint = Qnil;
7690 if (!CONSP (item))
7691 return 0;
7693 /* Create item_properties vector if necessary. */
7694 if (NILP (item_properties))
7695 item_properties
7696 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7698 /* Initialize optional entries. */
7699 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7700 ASET (item_properties, i, Qnil);
7701 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7703 /* Save the item here to protect it from GC. */
7704 ASET (item_properties, ITEM_PROPERTY_ITEM, item);
7706 item_string = XCAR (item);
7708 start = item;
7709 item = XCDR (item);
7710 if (STRINGP (item_string))
7712 /* Old format menu item. */
7713 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
7715 /* Maybe help string. */
7716 if (CONSP (item) && STRINGP (XCAR (item)))
7718 ASET (item_properties, ITEM_PROPERTY_HELP,
7719 Fsubstitute_command_keys (XCAR (item)));
7720 start = item;
7721 item = XCDR (item);
7724 /* Maybe an obsolete key binding cache. */
7725 if (CONSP (item) && CONSP (XCAR (item))
7726 && (NILP (XCAR (XCAR (item)))
7727 || VECTORP (XCAR (XCAR (item)))))
7728 item = XCDR (item);
7730 /* This is the real definition--the function to run. */
7731 ASET (item_properties, ITEM_PROPERTY_DEF, item);
7733 /* Get enable property, if any. */
7734 if (SYMBOLP (item))
7736 tem = Fget (item, Qmenu_enable);
7737 if (!NILP (Venable_disabled_menus_and_buttons))
7738 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7739 else if (!NILP (tem))
7740 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
7743 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7745 /* New format menu item. */
7746 ASET (item_properties, ITEM_PROPERTY_NAME, XCAR (item));
7747 start = XCDR (item);
7748 if (CONSP (start))
7750 /* We have a real binding. */
7751 ASET (item_properties, ITEM_PROPERTY_DEF, XCAR (start));
7753 item = XCDR (start);
7754 /* Is there an obsolete cache list with key equivalences. */
7755 if (CONSP (item) && CONSP (XCAR (item)))
7756 item = XCDR (item);
7758 /* Parse properties. */
7759 while (CONSP (item) && CONSP (XCDR (item)))
7761 tem = XCAR (item);
7762 item = XCDR (item);
7764 if (EQ (tem, QCenable))
7766 if (!NILP (Venable_disabled_menus_and_buttons))
7767 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7768 else
7769 ASET (item_properties, ITEM_PROPERTY_ENABLE, XCAR (item));
7771 else if (EQ (tem, QCvisible))
7773 /* If got a visible property and that evaluates to nil
7774 then ignore this item. */
7775 tem = menu_item_eval_property (XCAR (item));
7776 if (NILP (tem))
7777 return 0;
7779 else if (EQ (tem, QChelp))
7781 Lisp_Object help = XCAR (item);
7782 if (STRINGP (help))
7783 help = Fsubstitute_command_keys (help);
7784 ASET (item_properties, ITEM_PROPERTY_HELP, help);
7786 else if (EQ (tem, QCfilter))
7787 filter = item;
7788 else if (EQ (tem, QCkey_sequence))
7790 tem = XCAR (item);
7791 if (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem))
7792 /* Be GC protected. Set keyhint to item instead of tem. */
7793 keyhint = item;
7795 else if (EQ (tem, QCkeys))
7797 tem = XCAR (item);
7798 if (CONSP (tem) || STRINGP (tem))
7799 ASET (item_properties, ITEM_PROPERTY_KEYEQ, tem);
7801 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7803 Lisp_Object type;
7804 tem = XCAR (item);
7805 type = XCAR (tem);
7806 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7808 ASET (item_properties, ITEM_PROPERTY_SELECTED,
7809 XCDR (tem));
7810 ASET (item_properties, ITEM_PROPERTY_TYPE, type);
7813 item = XCDR (item);
7816 else if (inmenubar || !NILP (start))
7817 return 0;
7819 else
7820 return 0; /* not a menu item */
7822 /* If item string is not a string, evaluate it to get string.
7823 If we don't get a string, skip this item. */
7824 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7825 if (!(STRINGP (item_string)))
7827 item_string = menu_item_eval_property (item_string);
7828 if (!STRINGP (item_string))
7829 return 0;
7830 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
7833 /* If got a filter apply it on definition. */
7834 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7835 if (!NILP (filter))
7837 def = menu_item_eval_property (list2 (XCAR (filter),
7838 list2 (Qquote, def)));
7840 ASET (item_properties, ITEM_PROPERTY_DEF, def);
7843 /* Enable or disable selection of item. */
7844 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7845 if (!EQ (tem, Qt))
7847 tem = menu_item_eval_property (tem);
7848 if (inmenubar && NILP (tem))
7849 return 0; /* Ignore disabled items in menu bar. */
7850 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
7853 /* If we got no definition, this item is just unselectable text which
7854 is OK in a submenu but not in the menubar. */
7855 if (NILP (def))
7856 return (!inmenubar);
7858 /* See if this is a separate pane or a submenu. */
7859 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7860 tem = get_keymap (def, 0, 1);
7861 /* For a subkeymap, just record its details and exit. */
7862 if (CONSP (tem))
7864 ASET (item_properties, ITEM_PROPERTY_MAP, tem);
7865 ASET (item_properties, ITEM_PROPERTY_DEF, tem);
7866 return 1;
7869 /* At the top level in the menu bar, do likewise for commands also.
7870 The menu bar does not display equivalent key bindings anyway.
7871 ITEM_PROPERTY_DEF is already set up properly. */
7872 if (inmenubar > 0)
7873 return 1;
7875 { /* This is a command. See if there is an equivalent key binding. */
7876 Lisp_Object keyeq = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7877 AUTO_STRING (space_space, " ");
7879 /* The previous code preferred :key-sequence to :keys, so we
7880 preserve this behavior. */
7881 if (STRINGP (keyeq) && !CONSP (keyhint))
7882 keyeq = concat2 (space_space, Fsubstitute_command_keys (keyeq));
7883 else
7885 Lisp_Object prefix = keyeq;
7886 Lisp_Object keys = Qnil;
7888 if (CONSP (prefix))
7890 def = XCAR (prefix);
7891 prefix = XCDR (prefix);
7893 else
7894 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7896 if (CONSP (keyhint) && !NILP (XCAR (keyhint)))
7898 keys = XCAR (keyhint);
7899 tem = Fkey_binding (keys, Qnil, Qnil, Qnil);
7901 /* We have a suggested key. Is it bound to the command? */
7902 if (NILP (tem)
7903 || (!EQ (tem, def)
7904 /* If the command is an alias for another
7905 (such as lmenu.el set it up), check if the
7906 original command matches the cached command. */
7907 && !(SYMBOLP (def)
7908 && EQ (tem, XSYMBOL (def)->function))))
7909 keys = Qnil;
7912 if (NILP (keys))
7913 keys = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qnil);
7915 if (!NILP (keys))
7917 tem = Fkey_description (keys, Qnil);
7918 if (CONSP (prefix))
7920 if (STRINGP (XCAR (prefix)))
7921 tem = concat2 (XCAR (prefix), tem);
7922 if (STRINGP (XCDR (prefix)))
7923 tem = concat2 (tem, XCDR (prefix));
7925 keyeq = concat2 (space_space, tem);
7927 else
7928 keyeq = Qnil;
7931 /* If we have an equivalent key binding, use that. */
7932 ASET (item_properties, ITEM_PROPERTY_KEYEQ, keyeq);
7935 /* Include this when menu help is implemented.
7936 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7937 if (!(NILP (tem) || STRINGP (tem)))
7939 tem = menu_item_eval_property (tem);
7940 if (!STRINGP (tem))
7941 tem = Qnil;
7942 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7946 /* Handle radio buttons or toggle boxes. */
7947 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7948 if (!NILP (tem))
7949 ASET (item_properties, ITEM_PROPERTY_SELECTED,
7950 menu_item_eval_property (tem));
7952 return 1;
7957 /***********************************************************************
7958 Tool-bars
7959 ***********************************************************************/
7961 /* A vector holding tool bar items while they are parsed in function
7962 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7963 in the vector. */
7965 static Lisp_Object tool_bar_items_vector;
7967 /* A vector holding the result of parse_tool_bar_item. Layout is like
7968 the one for a single item in tool_bar_items_vector. */
7970 static Lisp_Object tool_bar_item_properties;
7972 /* Next free index in tool_bar_items_vector. */
7974 static int ntool_bar_items;
7976 /* Function prototypes. */
7978 static void init_tool_bar_items (Lisp_Object);
7979 static void process_tool_bar_item (Lisp_Object, Lisp_Object, Lisp_Object,
7980 void *);
7981 static bool parse_tool_bar_item (Lisp_Object, Lisp_Object);
7982 static void append_tool_bar_item (void);
7985 /* Return a vector of tool bar items for keymaps currently in effect.
7986 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7987 tool bar items found. */
7989 Lisp_Object
7990 tool_bar_items (Lisp_Object reuse, int *nitems)
7992 Lisp_Object *maps;
7993 Lisp_Object mapsbuf[3];
7994 ptrdiff_t nmaps, i;
7995 Lisp_Object oquit;
7996 Lisp_Object *tmaps;
7997 USE_SAFE_ALLOCA;
7999 *nitems = 0;
8001 /* In order to build the menus, we need to call the keymap
8002 accessors. They all call maybe_quit. But this function is called
8003 during redisplay, during which a quit is fatal. So inhibit
8004 quitting while building the menus. We do this instead of
8005 specbind because (1) errors will clear it anyway and (2) this
8006 avoids risk of specpdl overflow. */
8007 oquit = Vinhibit_quit;
8008 Vinhibit_quit = Qt;
8010 /* Initialize tool_bar_items_vector and protect it from GC. */
8011 init_tool_bar_items (reuse);
8013 /* Build list of keymaps in maps. Set nmaps to the number of maps
8014 to process. */
8016 /* Should overriding-terminal-local-map and overriding-local-map apply? */
8017 if (!NILP (Voverriding_local_map_menu_flag)
8018 && !NILP (Voverriding_local_map))
8020 /* Yes, use them (if non-nil) as well as the global map. */
8021 maps = mapsbuf;
8022 nmaps = 0;
8023 if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
8024 maps[nmaps++] = KVAR (current_kboard, Voverriding_terminal_local_map);
8025 if (!NILP (Voverriding_local_map))
8026 maps[nmaps++] = Voverriding_local_map;
8028 else
8030 /* No, so use major and minor mode keymaps and keymap property.
8031 Note that tool-bar bindings in the local-map and keymap
8032 properties may not work reliable, as they are only
8033 recognized when the tool-bar (or mode-line) is updated,
8034 which does not normally happen after every command. */
8035 ptrdiff_t nminor = current_minor_maps (NULL, &tmaps);
8036 SAFE_NALLOCA (maps, 1, nminor + 4);
8037 nmaps = 0;
8038 Lisp_Object tem = KVAR (current_kboard, Voverriding_terminal_local_map);
8039 if (!NILP (tem) && !NILP (Voverriding_local_map_menu_flag))
8040 maps[nmaps++] = tem;
8041 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
8042 maps[nmaps++] = tem;
8043 if (nminor != 0)
8045 memcpy (maps + nmaps, tmaps, nminor * sizeof (maps[0]));
8046 nmaps += nminor;
8048 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
8051 /* Add global keymap at the end. */
8052 maps[nmaps++] = current_global_map;
8054 /* Process maps in reverse order and look up in each map the prefix
8055 key `tool-bar'. */
8056 for (i = nmaps - 1; i >= 0; --i)
8057 if (!NILP (maps[i]))
8059 Lisp_Object keymap;
8061 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
8062 if (CONSP (keymap))
8063 map_keymap (keymap, process_tool_bar_item, Qnil, NULL, 1);
8066 Vinhibit_quit = oquit;
8067 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
8068 SAFE_FREE ();
8069 return tool_bar_items_vector;
8073 /* Process the definition of KEY which is DEF. */
8075 static void
8076 process_tool_bar_item (Lisp_Object key, Lisp_Object def, Lisp_Object data, void *args)
8078 int i;
8080 if (EQ (def, Qundefined))
8082 /* If a map has an explicit `undefined' as definition,
8083 discard any previously made item. */
8084 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
8086 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
8088 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
8090 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
8091 memmove (v, v + TOOL_BAR_ITEM_NSLOTS,
8092 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
8093 * word_size));
8094 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
8095 break;
8099 else if (parse_tool_bar_item (key, def))
8100 /* Append a new tool bar item to tool_bar_items_vector. Accept
8101 more than one definition for the same key. */
8102 append_tool_bar_item ();
8105 /* Access slot with index IDX of vector tool_bar_item_properties. */
8106 #define PROP(IDX) AREF (tool_bar_item_properties, (IDX))
8107 static void
8108 set_prop (ptrdiff_t idx, Lisp_Object val)
8110 ASET (tool_bar_item_properties, idx, val);
8114 /* Parse a tool bar item specification ITEM for key KEY and return the
8115 result in tool_bar_item_properties. Value is false if ITEM is
8116 invalid.
8118 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
8120 CAPTION is the caption of the item, If it's not a string, it is
8121 evaluated to get a string.
8123 BINDING is the tool bar item's binding. Tool-bar items with keymaps
8124 as binding are currently ignored.
8126 The following properties are recognized:
8128 - `:enable FORM'.
8130 FORM is evaluated and specifies whether the tool bar item is
8131 enabled or disabled.
8133 - `:visible FORM'
8135 FORM is evaluated and specifies whether the tool bar item is visible.
8137 - `:filter FUNCTION'
8139 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
8140 result is stored as the new binding.
8142 - `:button (TYPE SELECTED)'
8144 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8145 and specifies whether the button is selected (pressed) or not.
8147 - `:image IMAGES'
8149 IMAGES is either a single image specification or a vector of four
8150 image specifications. See enum tool_bar_item_images.
8152 - `:help HELP-STRING'.
8154 Gives a help string to display for the tool bar item.
8156 - `:label LABEL-STRING'.
8158 A text label to show with the tool bar button if labels are enabled. */
8160 static bool
8161 parse_tool_bar_item (Lisp_Object key, Lisp_Object item)
8163 Lisp_Object filter = Qnil;
8164 Lisp_Object caption;
8165 int i;
8166 bool have_label = false;
8168 /* Definition looks like `(menu-item CAPTION BINDING PROPS...)'.
8169 Rule out items that aren't lists, don't start with
8170 `menu-item' or whose rest following `tool-bar-item' is not a
8171 list. */
8172 if (!CONSP (item))
8173 return 0;
8175 /* As an exception, allow old-style menu separators. */
8176 if (STRINGP (XCAR (item)))
8177 item = list1 (XCAR (item));
8178 else if (!EQ (XCAR (item), Qmenu_item)
8179 || (item = XCDR (item), !CONSP (item)))
8180 return 0;
8182 /* Create tool_bar_item_properties vector if necessary. Reset it to
8183 defaults. */
8184 if (VECTORP (tool_bar_item_properties))
8186 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
8187 set_prop (i, Qnil);
8189 else
8190 tool_bar_item_properties
8191 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
8193 /* Set defaults. */
8194 set_prop (TOOL_BAR_ITEM_KEY, key);
8195 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qt);
8197 /* Get the caption of the item. If the caption is not a string,
8198 evaluate it to get a string. If we don't get a string, skip this
8199 item. */
8200 caption = XCAR (item);
8201 if (!STRINGP (caption))
8203 caption = menu_item_eval_property (caption);
8204 if (!STRINGP (caption))
8205 return 0;
8207 set_prop (TOOL_BAR_ITEM_CAPTION, caption);
8209 /* If the rest following the caption is not a list, the menu item is
8210 either a separator, or invalid. */
8211 item = XCDR (item);
8212 if (!CONSP (item))
8214 if (menu_separator_name_p (SSDATA (caption)))
8216 set_prop (TOOL_BAR_ITEM_TYPE, Qt);
8217 #if !defined (USE_GTK) && !defined (HAVE_NS)
8218 /* If we use build_desired_tool_bar_string to render the
8219 tool bar, the separator is rendered as an image. */
8220 set_prop (TOOL_BAR_ITEM_IMAGES,
8221 (menu_item_eval_property
8222 (Vtool_bar_separator_image_expression)));
8223 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qnil);
8224 set_prop (TOOL_BAR_ITEM_SELECTED_P, Qnil);
8225 set_prop (TOOL_BAR_ITEM_CAPTION, Qnil);
8226 #endif
8227 return 1;
8229 return 0;
8232 /* Store the binding. */
8233 set_prop (TOOL_BAR_ITEM_BINDING, XCAR (item));
8234 item = XCDR (item);
8236 /* Ignore cached key binding, if any. */
8237 if (CONSP (item) && CONSP (XCAR (item)))
8238 item = XCDR (item);
8240 /* Process the rest of the properties. */
8241 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
8243 Lisp_Object ikey, value;
8245 ikey = XCAR (item);
8246 value = XCAR (XCDR (item));
8248 if (EQ (ikey, QCenable))
8250 /* `:enable FORM'. */
8251 if (!NILP (Venable_disabled_menus_and_buttons))
8252 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qt);
8253 else
8254 set_prop (TOOL_BAR_ITEM_ENABLED_P, value);
8256 else if (EQ (ikey, QCvisible))
8258 /* `:visible FORM'. If got a visible property and that
8259 evaluates to nil then ignore this item. */
8260 if (NILP (menu_item_eval_property (value)))
8261 return 0;
8263 else if (EQ (ikey, QChelp))
8264 /* `:help HELP-STRING'. */
8265 set_prop (TOOL_BAR_ITEM_HELP, value);
8266 else if (EQ (ikey, QCvert_only))
8267 /* `:vert-only t/nil'. */
8268 set_prop (TOOL_BAR_ITEM_VERT_ONLY, value);
8269 else if (EQ (ikey, QClabel))
8271 const char *bad_label = "!!?GARBLED ITEM?!!";
8272 /* `:label LABEL-STRING'. */
8273 set_prop (TOOL_BAR_ITEM_LABEL,
8274 STRINGP (value) ? value : build_string (bad_label));
8275 have_label = true;
8277 else if (EQ (ikey, QCfilter))
8278 /* ':filter FORM'. */
8279 filter = value;
8280 else if (EQ (ikey, QCbutton) && CONSP (value))
8282 /* `:button (TYPE . SELECTED)'. */
8283 Lisp_Object type, selected;
8285 type = XCAR (value);
8286 selected = XCDR (value);
8287 if (EQ (type, QCtoggle) || EQ (type, QCradio))
8289 set_prop (TOOL_BAR_ITEM_SELECTED_P, selected);
8290 set_prop (TOOL_BAR_ITEM_TYPE, type);
8293 else if (EQ (ikey, QCimage)
8294 && (CONSP (value)
8295 || (VECTORP (value) && ASIZE (value) == 4)))
8296 /* Value is either a single image specification or a vector
8297 of 4 such specifications for the different button states. */
8298 set_prop (TOOL_BAR_ITEM_IMAGES, value);
8299 else if (EQ (ikey, QCrtl))
8300 /* ':rtl STRING' */
8301 set_prop (TOOL_BAR_ITEM_RTL_IMAGE, value);
8305 if (!have_label)
8307 /* Try to make one from caption and key. */
8308 Lisp_Object tkey = PROP (TOOL_BAR_ITEM_KEY);
8309 Lisp_Object tcapt = PROP (TOOL_BAR_ITEM_CAPTION);
8310 const char *label = SYMBOLP (tkey) ? SSDATA (SYMBOL_NAME (tkey)) : "";
8311 const char *capt = STRINGP (tcapt) ? SSDATA (tcapt) : "";
8312 ptrdiff_t max_lbl =
8313 2 * max (0, min (tool_bar_max_label_size, STRING_BYTES_BOUND / 2));
8314 char *buf = xmalloc (max_lbl + 1);
8315 Lisp_Object new_lbl;
8316 ptrdiff_t caption_len = strlen (capt);
8318 if (caption_len <= max_lbl && capt[0] != '\0')
8320 strcpy (buf, capt);
8321 while (caption_len > 0 && buf[caption_len - 1] == '.')
8322 caption_len--;
8323 buf[caption_len] = '\0';
8324 label = capt = buf;
8327 if (strlen (label) <= max_lbl && label[0] != '\0')
8329 ptrdiff_t j;
8330 if (label != buf)
8331 strcpy (buf, label);
8333 for (j = 0; buf[j] != '\0'; ++j)
8334 if (buf[j] == '-')
8335 buf[j] = ' ';
8336 label = buf;
8338 else
8339 label = "";
8341 new_lbl = Fupcase_initials (build_string (label));
8342 if (SCHARS (new_lbl) <= tool_bar_max_label_size)
8343 set_prop (TOOL_BAR_ITEM_LABEL, new_lbl);
8344 else
8345 set_prop (TOOL_BAR_ITEM_LABEL, empty_unibyte_string);
8346 xfree (buf);
8349 /* If got a filter apply it on binding. */
8350 if (!NILP (filter))
8351 set_prop (TOOL_BAR_ITEM_BINDING,
8352 (menu_item_eval_property
8353 (list2 (filter,
8354 list2 (Qquote,
8355 PROP (TOOL_BAR_ITEM_BINDING))))));
8357 /* See if the binding is a keymap. Give up if it is. */
8358 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
8359 return 0;
8361 /* Enable or disable selection of item. */
8362 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
8363 set_prop (TOOL_BAR_ITEM_ENABLED_P,
8364 menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P)));
8366 /* Handle radio buttons or toggle boxes. */
8367 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
8368 set_prop (TOOL_BAR_ITEM_SELECTED_P,
8369 menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P)));
8371 return 1;
8373 #undef PROP
8377 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8378 that can be reused. */
8380 static void
8381 init_tool_bar_items (Lisp_Object reuse)
8383 if (VECTORP (reuse))
8384 tool_bar_items_vector = reuse;
8385 else
8386 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
8387 ntool_bar_items = 0;
8391 /* Append parsed tool bar item properties from
8392 tool_bar_item_properties */
8394 static void
8395 append_tool_bar_item (void)
8397 ptrdiff_t incr
8398 = (ntool_bar_items
8399 - (ASIZE (tool_bar_items_vector) - TOOL_BAR_ITEM_NSLOTS));
8401 /* Enlarge tool_bar_items_vector if necessary. */
8402 if (incr > 0)
8403 tool_bar_items_vector = larger_vector (tool_bar_items_vector, incr, -1);
8405 /* Append entries from tool_bar_item_properties to the end of
8406 tool_bar_items_vector. */
8407 vcopy (tool_bar_items_vector, ntool_bar_items,
8408 XVECTOR (tool_bar_item_properties)->contents, TOOL_BAR_ITEM_NSLOTS);
8409 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
8416 /* Read a character using menus based on the keymap MAP.
8417 Return nil if there are no menus in the maps.
8418 Return t if we displayed a menu but the user rejected it.
8420 PREV_EVENT is the previous input event, or nil if we are reading
8421 the first event of a key sequence.
8423 If USED_MOUSE_MENU is non-null, set *USED_MOUSE_MENU to true
8424 if we used a mouse menu to read the input, or false otherwise. If
8425 USED_MOUSE_MENU is null, don't dereference it.
8427 The prompting is done based on the prompt-string of the map
8428 and the strings associated with various map elements.
8430 This can be done with X menus or with menus put in the minibuf.
8431 These are done in different ways, depending on how the input will be read.
8432 Menus using X are done after auto-saving in read-char, getting the input
8433 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8434 and do auto-saving in the inner call of read_char. */
8436 static Lisp_Object
8437 read_char_x_menu_prompt (Lisp_Object map,
8438 Lisp_Object prev_event, bool *used_mouse_menu)
8440 if (used_mouse_menu)
8441 *used_mouse_menu = false;
8443 /* Use local over global Menu maps. */
8445 if (! menu_prompting)
8446 return Qnil;
8448 /* If we got to this point via a mouse click,
8449 use a real menu for mouse selection. */
8450 if (EVENT_HAS_PARAMETERS (prev_event)
8451 && !EQ (XCAR (prev_event), Qmenu_bar)
8452 && !EQ (XCAR (prev_event), Qtool_bar))
8454 /* Display the menu and get the selection. */
8455 Lisp_Object value;
8457 value = Fx_popup_menu (prev_event, get_keymap (map, 0, 1));
8458 if (CONSP (value))
8460 Lisp_Object tem;
8462 record_menu_key (XCAR (value));
8464 /* If we got multiple events, unread all but
8465 the first.
8466 There is no way to prevent those unread events
8467 from showing up later in last_nonmenu_event.
8468 So turn symbol and integer events into lists,
8469 to indicate that they came from a mouse menu,
8470 so that when present in last_nonmenu_event
8471 they won't confuse things. */
8472 for (tem = XCDR (value); CONSP (tem); tem = XCDR (tem))
8474 record_menu_key (XCAR (tem));
8475 if (SYMBOLP (XCAR (tem))
8476 || INTEGERP (XCAR (tem)))
8477 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8480 /* If we got more than one event, put all but the first
8481 onto this list to be read later.
8482 Return just the first event now. */
8483 Vunread_command_events
8484 = nconc2 (XCDR (value), Vunread_command_events);
8485 value = XCAR (value);
8487 else if (NILP (value))
8488 value = Qt;
8489 if (used_mouse_menu)
8490 *used_mouse_menu = true;
8491 return value;
8493 return Qnil ;
8496 static Lisp_Object
8497 read_char_minibuf_menu_prompt (int commandflag,
8498 Lisp_Object map)
8500 Lisp_Object name;
8501 ptrdiff_t nlength;
8502 /* FIXME: Use the minibuffer's frame width. */
8503 ptrdiff_t width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8504 ptrdiff_t idx = -1;
8505 bool nobindings = true;
8506 Lisp_Object rest, vector;
8507 Lisp_Object prompt_strings = Qnil;
8509 vector = Qnil;
8511 if (! menu_prompting)
8512 return Qnil;
8514 map = get_keymap (map, 0, 1);
8515 name = Fkeymap_prompt (map);
8517 /* If we don't have any menus, just read a character normally. */
8518 if (!STRINGP (name))
8519 return Qnil;
8521 #define PUSH_C_STR(str, listvar) \
8522 listvar = Fcons (build_unibyte_string (str), listvar)
8524 /* Prompt string always starts with map's prompt, and a space. */
8525 prompt_strings = Fcons (name, prompt_strings);
8526 PUSH_C_STR (": ", prompt_strings);
8527 nlength = SCHARS (name) + 2;
8529 rest = map;
8531 /* Present the documented bindings, a line at a time. */
8532 while (1)
8534 bool notfirst = false;
8535 Lisp_Object menu_strings = prompt_strings;
8536 ptrdiff_t i = nlength;
8537 Lisp_Object obj;
8538 Lisp_Object orig_defn_macro;
8540 /* Loop over elements of map. */
8541 while (i < width)
8543 Lisp_Object elt;
8545 /* FIXME: Use map_keymap to handle new keymap formats. */
8547 /* At end of map, wrap around if just starting,
8548 or end this line if already have something on it. */
8549 if (NILP (rest))
8551 if (notfirst || nobindings)
8552 break;
8553 else
8554 rest = map;
8557 /* Look at the next element of the map. */
8558 if (idx >= 0)
8559 elt = AREF (vector, idx);
8560 else
8561 elt = Fcar_safe (rest);
8563 if (idx < 0 && VECTORP (elt))
8565 /* If we found a dense table in the keymap,
8566 advanced past it, but start scanning its contents. */
8567 rest = Fcdr_safe (rest);
8568 vector = elt;
8569 idx = 0;
8571 else
8573 /* An ordinary element. */
8574 Lisp_Object event, tem;
8576 if (idx < 0)
8578 event = Fcar_safe (elt); /* alist */
8579 elt = Fcdr_safe (elt);
8581 else
8583 XSETINT (event, idx); /* vector */
8586 /* Ignore the element if it has no prompt string. */
8587 if (INTEGERP (event) && parse_menu_item (elt, -1))
8589 /* True if the char to type matches the string. */
8590 bool char_matches;
8591 Lisp_Object upcased_event, downcased_event;
8592 Lisp_Object desc = Qnil;
8593 Lisp_Object s
8594 = AREF (item_properties, ITEM_PROPERTY_NAME);
8596 upcased_event = Fupcase (event);
8597 downcased_event = Fdowncase (event);
8598 char_matches = (XINT (upcased_event) == SREF (s, 0)
8599 || XINT (downcased_event) == SREF (s, 0));
8600 if (! char_matches)
8601 desc = Fsingle_key_description (event, Qnil);
8603 #if 0 /* It is redundant to list the equivalent key bindings because
8604 the prefix is what the user has already typed. */
8606 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8607 if (!NILP (tem))
8608 /* Insert equivalent keybinding. */
8609 s = concat2 (s, tem);
8610 #endif
8612 = AREF (item_properties, ITEM_PROPERTY_TYPE);
8613 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8615 /* Insert button prefix. */
8616 Lisp_Object selected
8617 = AREF (item_properties, ITEM_PROPERTY_SELECTED);
8618 AUTO_STRING (radio_yes, "(*) ");
8619 AUTO_STRING (radio_no , "( ) ");
8620 AUTO_STRING (check_yes, "[X] ");
8621 AUTO_STRING (check_no , "[ ] ");
8622 if (EQ (tem, QCradio))
8623 tem = NILP (selected) ? radio_yes : radio_no;
8624 else
8625 tem = NILP (selected) ? check_yes : check_no;
8626 s = concat2 (tem, s);
8630 /* If we have room for the prompt string, add it to this line.
8631 If this is the first on the line, always add it. */
8632 if ((SCHARS (s) + i + 2
8633 + (char_matches ? 0 : SCHARS (desc) + 3))
8634 < width
8635 || !notfirst)
8637 ptrdiff_t thiswidth;
8639 /* Punctuate between strings. */
8640 if (notfirst)
8642 PUSH_C_STR (", ", menu_strings);
8643 i += 2;
8645 notfirst = true;
8646 nobindings = false;
8648 /* If the char to type doesn't match the string's
8649 first char, explicitly show what char to type. */
8650 if (! char_matches)
8652 /* Add as much of string as fits. */
8653 thiswidth = min (SCHARS (desc), width - i);
8654 menu_strings
8655 = Fcons (Fsubstring (desc, make_number (0),
8656 make_number (thiswidth)),
8657 menu_strings);
8658 i += thiswidth;
8659 PUSH_C_STR (" = ", menu_strings);
8660 i += 3;
8663 /* Add as much of string as fits. */
8664 thiswidth = min (SCHARS (s), width - i);
8665 menu_strings
8666 = Fcons (Fsubstring (s, make_number (0),
8667 make_number (thiswidth)),
8668 menu_strings);
8669 i += thiswidth;
8671 else
8673 /* If this element does not fit, end the line now,
8674 and save the element for the next line. */
8675 PUSH_C_STR ("...", menu_strings);
8676 break;
8680 /* Move past this element. */
8681 if (idx >= 0 && idx + 1 >= ASIZE (vector))
8682 /* Handle reaching end of dense table. */
8683 idx = -1;
8684 if (idx >= 0)
8685 idx++;
8686 else
8687 rest = Fcdr_safe (rest);
8691 /* Prompt with that and read response. */
8692 message3_nolog (apply1 (intern ("concat"), Fnreverse (menu_strings)));
8694 /* Make believe it's not a keyboard macro in case the help char
8695 is pressed. Help characters are not recorded because menu prompting
8696 is not used on replay. */
8697 orig_defn_macro = KVAR (current_kboard, defining_kbd_macro);
8698 kset_defining_kbd_macro (current_kboard, Qnil);
8700 obj = read_char (commandflag, Qnil, Qt, 0, NULL);
8701 while (BUFFERP (obj));
8702 kset_defining_kbd_macro (current_kboard, orig_defn_macro);
8704 if (!INTEGERP (obj) || XINT (obj) == -2
8705 || (! EQ (obj, menu_prompt_more_char)
8706 && (!INTEGERP (menu_prompt_more_char)
8707 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char)))))))
8709 if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
8710 store_kbd_macro_char (obj);
8711 return obj;
8713 /* Help char - go round again. */
8717 /* Reading key sequences. */
8719 static Lisp_Object
8720 follow_key (Lisp_Object keymap, Lisp_Object key)
8722 return access_keymap (get_keymap (keymap, 0, 1),
8723 key, 1, 0, 1);
8726 static Lisp_Object
8727 active_maps (Lisp_Object first_event)
8729 Lisp_Object position
8730 = CONSP (first_event) ? CAR_SAFE (XCDR (first_event)) : Qnil;
8731 return Fcons (Qkeymap, Fcurrent_active_maps (Qt, position));
8734 /* Structure used to keep track of partial application of key remapping
8735 such as Vfunction_key_map and Vkey_translation_map. */
8736 typedef struct keyremap
8738 /* This is the map originally specified for this use. */
8739 Lisp_Object parent;
8740 /* This is a submap reached by looking up, in PARENT,
8741 the events from START to END. */
8742 Lisp_Object map;
8743 /* Positions [START, END) in the key sequence buffer
8744 are the key that we have scanned so far.
8745 Those events are the ones that we will replace
8746 if PARENT maps them into a key sequence. */
8747 int start, end;
8748 } keyremap;
8750 /* Lookup KEY in MAP.
8751 MAP is a keymap mapping keys to key vectors or functions.
8752 If the mapping is a function and DO_FUNCALL is true,
8753 the function is called with PROMPT as parameter and its return
8754 value is used as the return value of this function (after checking
8755 that it is indeed a vector). */
8757 static Lisp_Object
8758 access_keymap_keyremap (Lisp_Object map, Lisp_Object key, Lisp_Object prompt,
8759 bool do_funcall)
8761 Lisp_Object next;
8763 next = access_keymap (map, key, 1, 0, 1);
8765 /* Handle a symbol whose function definition is a keymap
8766 or an array. */
8767 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8768 && (ARRAYP (XSYMBOL (next)->function)
8769 || KEYMAPP (XSYMBOL (next)->function)))
8770 next = Fautoload_do_load (XSYMBOL (next)->function, next, Qnil);
8772 /* If the keymap gives a function, not an
8773 array, then call the function with one arg and use
8774 its value instead. */
8775 if (do_funcall && FUNCTIONP (next))
8777 Lisp_Object tem;
8778 tem = next;
8780 next = call1 (next, prompt);
8781 /* If the function returned something invalid,
8782 barf--don't ignore it. */
8783 if (! (NILP (next) || VECTORP (next) || STRINGP (next)))
8784 error ("Function %s returns invalid key sequence",
8785 SSDATA (SYMBOL_NAME (tem)));
8787 return next;
8790 /* Do one step of the key remapping used for function-key-map and
8791 key-translation-map:
8792 KEYBUF is the buffer holding the input events.
8793 BUFSIZE is its maximum size.
8794 FKEY is a pointer to the keyremap structure to use.
8795 INPUT is the index of the last element in KEYBUF.
8796 DOIT if true says that the remapping can actually take place.
8797 DIFF is used to return the number of keys added/removed by the remapping.
8798 PARENT is the root of the keymap.
8799 PROMPT is the prompt to use if the remapping happens through a function.
8800 Return true if the remapping actually took place. */
8802 static bool
8803 keyremap_step (Lisp_Object *keybuf, int bufsize, volatile keyremap *fkey,
8804 int input, bool doit, int *diff, Lisp_Object prompt)
8806 Lisp_Object next, key;
8808 key = keybuf[fkey->end++];
8810 if (KEYMAPP (fkey->parent))
8811 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8812 else
8813 next = Qnil;
8815 /* If keybuf[fkey->start..fkey->end] is bound in the
8816 map and we're in a position to do the key remapping, replace it with
8817 the binding and restart with fkey->start at the end. */
8818 if ((VECTORP (next) || STRINGP (next)) && doit)
8820 int len = XFASTINT (Flength (next));
8821 int i;
8823 *diff = len - (fkey->end - fkey->start);
8825 if (bufsize - input <= *diff)
8826 error ("Key sequence too long");
8828 /* Shift the keys that follow fkey->end. */
8829 if (*diff < 0)
8830 for (i = fkey->end; i < input; i++)
8831 keybuf[i + *diff] = keybuf[i];
8832 else if (*diff > 0)
8833 for (i = input - 1; i >= fkey->end; i--)
8834 keybuf[i + *diff] = keybuf[i];
8835 /* Overwrite the old keys with the new ones. */
8836 for (i = 0; i < len; i++)
8837 keybuf[fkey->start + i]
8838 = Faref (next, make_number (i));
8840 fkey->start = fkey->end += *diff;
8841 fkey->map = fkey->parent;
8843 return 1;
8846 fkey->map = get_keymap (next, 0, 1);
8848 /* If we no longer have a bound suffix, try a new position for
8849 fkey->start. */
8850 if (!CONSP (fkey->map))
8852 fkey->end = ++fkey->start;
8853 fkey->map = fkey->parent;
8855 return 0;
8858 static bool
8859 test_undefined (Lisp_Object binding)
8861 return (NILP (binding)
8862 || EQ (binding, Qundefined)
8863 || (SYMBOLP (binding)
8864 && EQ (Fcommand_remapping (binding, Qnil, Qnil), Qundefined)));
8867 /* Read a sequence of keys that ends with a non prefix character,
8868 storing it in KEYBUF, a buffer of size BUFSIZE.
8869 Prompt with PROMPT.
8870 Return the length of the key sequence stored.
8871 Return -1 if the user rejected a command menu.
8873 Echo starting immediately unless `prompt' is 0.
8875 If PREVENT_REDISPLAY is non-zero, avoid redisplay by calling
8876 read_char with a suitable COMMANDFLAG argument.
8878 Where a key sequence ends depends on the currently active keymaps.
8879 These include any minor mode keymaps active in the current buffer,
8880 the current buffer's local map, and the global map.
8882 If a key sequence has no other bindings, we check Vfunction_key_map
8883 to see if some trailing subsequence might be the beginning of a
8884 function key's sequence. If so, we try to read the whole function
8885 key, and substitute its symbolic name into the key sequence.
8887 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8888 `double-' events into similar click events, if that would make them
8889 bound. We try to turn `triple-' events first into `double-' events,
8890 then into clicks.
8892 If we get a mouse click in a mode line, vertical divider, or other
8893 non-text area, we treat the click as if it were prefixed by the
8894 symbol denoting that area - `mode-line', `vertical-line', or
8895 whatever.
8897 If the sequence starts with a mouse click, we read the key sequence
8898 with respect to the buffer clicked on, not the current buffer.
8900 If the user switches frames in the midst of a key sequence, we put
8901 off the switch-frame event until later; the next call to
8902 read_char will return it.
8904 If FIX_CURRENT_BUFFER, we restore current_buffer
8905 from the selected window's buffer. */
8907 static int
8908 read_key_sequence (Lisp_Object *keybuf, int bufsize, Lisp_Object prompt,
8909 bool dont_downcase_last, bool can_return_switch_frame,
8910 bool fix_current_buffer, bool prevent_redisplay)
8912 ptrdiff_t count = SPECPDL_INDEX ();
8914 /* How many keys there are in the current key sequence. */
8915 int t;
8917 /* The length of the echo buffer when we started reading, and
8918 the length of this_command_keys when we started reading. */
8919 ptrdiff_t echo_start UNINIT;
8920 ptrdiff_t keys_start;
8922 Lisp_Object current_binding = Qnil;
8923 Lisp_Object first_event = Qnil;
8925 /* Index of the first key that has no binding.
8926 It is useless to try fkey.start larger than that. */
8927 int first_unbound;
8929 /* If t < mock_input, then KEYBUF[t] should be read as the next
8930 input key.
8932 We use this to recover after recognizing a function key. Once we
8933 realize that a suffix of the current key sequence is actually a
8934 function key's escape sequence, we replace the suffix with the
8935 function key's binding from Vfunction_key_map. Now keybuf
8936 contains a new and different key sequence, so the echo area,
8937 this_command_keys, and the submaps and defs arrays are wrong. In
8938 this situation, we set mock_input to t, set t to 0, and jump to
8939 restart_sequence; the loop will read keys from keybuf up until
8940 mock_input, thus rebuilding the state; and then it will resume
8941 reading characters from the keyboard. */
8942 int mock_input = 0;
8944 /* If the sequence is unbound in submaps[], then
8945 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8946 and fkey.map is its binding.
8948 These might be > t, indicating that all function key scanning
8949 should hold off until t reaches them. We do this when we've just
8950 recognized a function key, to avoid searching for the function
8951 key's again in Vfunction_key_map. */
8952 keyremap fkey;
8954 /* Likewise, for key_translation_map and input-decode-map. */
8955 keyremap keytran, indec;
8957 /* True if we are trying to map a key by changing an upper-case
8958 letter to lower case, or a shifted function key to an unshifted
8959 one. */
8960 bool shift_translated = false;
8962 /* If we receive a `switch-frame' or `select-window' event in the middle of
8963 a key sequence, we put it off for later.
8964 While we're reading, we keep the event here. */
8965 Lisp_Object delayed_switch_frame;
8967 Lisp_Object original_uppercase UNINIT;
8968 int original_uppercase_position = -1;
8970 /* Gets around Microsoft compiler limitations. */
8971 bool dummyflag = false;
8973 struct buffer *starting_buffer;
8975 /* List of events for which a fake prefix key has been generated. */
8976 Lisp_Object fake_prefixed_keys = Qnil;
8978 raw_keybuf_count = 0;
8980 last_nonmenu_event = Qnil;
8982 delayed_switch_frame = Qnil;
8984 if (INTERACTIVE)
8986 if (!NILP (prompt))
8988 /* Install the string PROMPT as the beginning of the string
8989 of echoing, so that it serves as a prompt for the next
8990 character. */
8991 kset_echo_prompt (current_kboard, prompt);
8992 /* FIXME: This use of echo_now doesn't look quite right and is ugly
8993 since it forces us to fiddle with current_kboard->immediate_echo
8994 before and after. */
8995 current_kboard->immediate_echo = false;
8996 echo_now ();
8997 if (!echo_keystrokes_p ())
8998 current_kboard->immediate_echo = false;
9000 else if (cursor_in_echo_area /* FIXME: Not sure why we test this here,
9001 maybe we should just drop this test. */
9002 && echo_keystrokes_p ())
9003 /* This doesn't put in a dash if the echo buffer is empty, so
9004 you don't always see a dash hanging out in the minibuffer. */
9005 echo_dash ();
9008 /* Record the initial state of the echo area and this_command_keys;
9009 we will need to restore them if we replay a key sequence. */
9010 if (INTERACTIVE)
9011 echo_start = echo_length ();
9012 keys_start = this_command_key_count;
9013 this_single_command_key_start = keys_start;
9015 /* We jump here when we need to reinitialize fkey and keytran; this
9016 happens if we switch keyboards between rescans. */
9017 replay_entire_sequence:
9019 indec.map = indec.parent = KVAR (current_kboard, Vinput_decode_map);
9020 fkey.map = fkey.parent = KVAR (current_kboard, Vlocal_function_key_map);
9021 keytran.map = keytran.parent = Vkey_translation_map;
9022 indec.start = indec.end = 0;
9023 fkey.start = fkey.end = 0;
9024 keytran.start = keytran.end = 0;
9026 /* We jump here when the key sequence has been thoroughly changed, and
9027 we need to rescan it starting from the beginning. When we jump here,
9028 keybuf[0..mock_input] holds the sequence we should reread. */
9029 replay_sequence:
9031 starting_buffer = current_buffer;
9032 first_unbound = bufsize + 1;
9034 /* Build our list of keymaps.
9035 If we recognize a function key and replace its escape sequence in
9036 keybuf with its symbol, or if the sequence starts with a mouse
9037 click and we need to switch buffers, we jump back here to rebuild
9038 the initial keymaps from the current buffer. */
9039 current_binding = active_maps (first_event);
9041 /* Start from the beginning in keybuf. */
9042 t = 0;
9044 /* These are no-ops the first time through, but if we restart, they
9045 revert the echo area and this_command_keys to their original state. */
9046 this_command_key_count = keys_start;
9047 if (INTERACTIVE && t < mock_input)
9048 echo_truncate (echo_start);
9050 /* If the best binding for the current key sequence is a keymap, or
9051 we may be looking at a function key's escape sequence, keep on
9052 reading. */
9053 while (!NILP (current_binding)
9054 /* Keep reading as long as there's a prefix binding. */
9055 ? KEYMAPP (current_binding)
9056 /* Don't return in the middle of a possible function key sequence,
9057 if the only bindings we found were via case conversion.
9058 Thus, if ESC O a has a function-key-map translation
9059 and ESC o has a binding, don't return after ESC O,
9060 so that we can translate ESC O plus the next character. */
9061 : (/* indec.start < t || fkey.start < t || */ keytran.start < t))
9063 Lisp_Object key;
9064 bool used_mouse_menu = false;
9066 /* Where the last real key started. If we need to throw away a
9067 key that has expanded into more than one element of keybuf
9068 (say, a mouse click on the mode line which is being treated
9069 as [mode-line (mouse-...)], then we backtrack to this point
9070 of keybuf. */
9071 int last_real_key_start;
9073 /* These variables are analogous to echo_start and keys_start;
9074 while those allow us to restart the entire key sequence,
9075 echo_local_start and keys_local_start allow us to throw away
9076 just one key. */
9077 ptrdiff_t echo_local_start UNINIT;
9078 int keys_local_start;
9079 Lisp_Object new_binding;
9081 eassert (indec.end == t || (indec.end > t && indec.end <= mock_input));
9082 eassert (indec.start <= indec.end);
9083 eassert (fkey.start <= fkey.end);
9084 eassert (keytran.start <= keytran.end);
9085 /* key-translation-map is applied *after* function-key-map
9086 which is itself applied *after* input-decode-map. */
9087 eassert (fkey.end <= indec.start);
9088 eassert (keytran.end <= fkey.start);
9090 if (/* first_unbound < indec.start && first_unbound < fkey.start && */
9091 first_unbound < keytran.start)
9092 { /* The prefix upto first_unbound has no binding and has
9093 no translation left to do either, so we know it's unbound.
9094 If we don't stop now, we risk staying here indefinitely
9095 (if the user keeps entering fkey or keytran prefixes
9096 like C-c ESC ESC ESC ESC ...) */
9097 int i;
9098 for (i = first_unbound + 1; i < t; i++)
9099 keybuf[i - first_unbound - 1] = keybuf[i];
9100 mock_input = t - first_unbound - 1;
9101 indec.end = indec.start -= first_unbound + 1;
9102 indec.map = indec.parent;
9103 fkey.end = fkey.start -= first_unbound + 1;
9104 fkey.map = fkey.parent;
9105 keytran.end = keytran.start -= first_unbound + 1;
9106 keytran.map = keytran.parent;
9107 goto replay_sequence;
9110 if (t >= bufsize)
9111 error ("Key sequence too long");
9113 if (INTERACTIVE)
9114 echo_local_start = echo_length ();
9115 keys_local_start = this_command_key_count;
9117 replay_key:
9118 /* These are no-ops, unless we throw away a keystroke below and
9119 jumped back up to replay_key; in that case, these restore the
9120 variables to their original state, allowing us to replay the
9121 loop. */
9122 if (INTERACTIVE && t < mock_input)
9123 echo_truncate (echo_local_start);
9124 this_command_key_count = keys_local_start;
9126 /* By default, assume each event is "real". */
9127 last_real_key_start = t;
9129 /* Does mock_input indicate that we are re-reading a key sequence? */
9130 if (t < mock_input)
9132 key = keybuf[t];
9133 add_command_key (key);
9134 if (current_kboard->immediate_echo)
9136 /* Set immediate_echo to false so as to force echo_now to
9137 redisplay (it will set immediate_echo right back to true). */
9138 current_kboard->immediate_echo = false;
9139 echo_now ();
9143 /* If not, we should actually read a character. */
9144 else
9147 KBOARD *interrupted_kboard = current_kboard;
9148 struct frame *interrupted_frame = SELECTED_FRAME ();
9149 /* Calling read_char with COMMANDFLAG = -2 avoids
9150 redisplay in read_char and its subroutines. */
9151 key = read_char (prevent_redisplay ? -2 : NILP (prompt),
9152 current_binding, last_nonmenu_event,
9153 &used_mouse_menu, NULL);
9154 if ((INTEGERP (key) && XINT (key) == -2) /* wrong_kboard_jmpbuf */
9155 /* When switching to a new tty (with a new keyboard),
9156 read_char returns the new buffer, rather than -2
9157 (Bug#5095). This is because `terminal-init-xterm'
9158 calls read-char, which eats the wrong_kboard_jmpbuf
9159 return. Any better way to fix this? -- cyd */
9160 || (interrupted_kboard != current_kboard))
9162 bool found = false;
9163 struct kboard *k;
9165 for (k = all_kboards; k; k = k->next_kboard)
9166 if (k == interrupted_kboard)
9167 found = true;
9169 if (!found)
9171 /* Don't touch interrupted_kboard when it's been
9172 deleted. */
9173 delayed_switch_frame = Qnil;
9174 goto replay_entire_sequence;
9177 if (!NILP (delayed_switch_frame))
9179 kset_kbd_queue
9180 (interrupted_kboard,
9181 Fcons (delayed_switch_frame,
9182 KVAR (interrupted_kboard, kbd_queue)));
9183 delayed_switch_frame = Qnil;
9186 while (t > 0)
9187 kset_kbd_queue
9188 (interrupted_kboard,
9189 Fcons (keybuf[--t], KVAR (interrupted_kboard, kbd_queue)));
9191 /* If the side queue is non-empty, ensure it begins with a
9192 switch-frame, so we'll replay it in the right context. */
9193 if (CONSP (KVAR (interrupted_kboard, kbd_queue))
9194 && (key = XCAR (KVAR (interrupted_kboard, kbd_queue)),
9195 !(EVENT_HAS_PARAMETERS (key)
9196 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
9197 Qswitch_frame))))
9199 Lisp_Object frame;
9200 XSETFRAME (frame, interrupted_frame);
9201 kset_kbd_queue
9202 (interrupted_kboard,
9203 Fcons (make_lispy_switch_frame (frame),
9204 KVAR (interrupted_kboard, kbd_queue)));
9206 mock_input = 0;
9207 goto replay_entire_sequence;
9211 /* read_char returns t when it shows a menu and the user rejects it.
9212 Just return -1. */
9213 if (EQ (key, Qt))
9215 unbind_to (count, Qnil);
9216 return -1;
9219 /* read_char returns -1 at the end of a macro.
9220 Emacs 18 handles this by returning immediately with a
9221 zero, so that's what we'll do. */
9222 if (INTEGERP (key) && XINT (key) == -1)
9224 t = 0;
9225 /* The Microsoft C compiler can't handle the goto that
9226 would go here. */
9227 dummyflag = true;
9228 break;
9231 /* If the current buffer has been changed from under us, the
9232 keymap may have changed, so replay the sequence. */
9233 if (BUFFERP (key))
9235 timer_resume_idle ();
9237 mock_input = t;
9238 /* Reset the current buffer from the selected window
9239 in case something changed the former and not the latter.
9240 This is to be more consistent with the behavior
9241 of the command_loop_1. */
9242 if (fix_current_buffer)
9244 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9245 Fkill_emacs (Qnil);
9246 if (XBUFFER (XWINDOW (selected_window)->contents)
9247 != current_buffer)
9248 Fset_buffer (XWINDOW (selected_window)->contents);
9251 goto replay_sequence;
9254 /* If we have a quit that was typed in another frame, and
9255 quit_throw_to_read_char switched buffers,
9256 replay to get the right keymap. */
9257 if (INTEGERP (key)
9258 && XINT (key) == quit_char
9259 && current_buffer != starting_buffer)
9261 GROW_RAW_KEYBUF;
9262 ASET (raw_keybuf, raw_keybuf_count, key);
9263 raw_keybuf_count++;
9264 keybuf[t++] = key;
9265 mock_input = t;
9266 Vquit_flag = Qnil;
9267 goto replay_sequence;
9270 Vquit_flag = Qnil;
9272 if (EVENT_HAS_PARAMETERS (key)
9273 /* Either a `switch-frame' or a `select-window' event. */
9274 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
9276 /* If we're at the beginning of a key sequence, and the caller
9277 says it's okay, go ahead and return this event. If we're
9278 in the midst of a key sequence, delay it until the end. */
9279 if (t > 0 || !can_return_switch_frame)
9281 delayed_switch_frame = key;
9282 goto replay_key;
9286 if (NILP (first_event))
9288 first_event = key;
9289 /* Even if first_event does not specify a particular
9290 window/position, it's important to recompute the maps here
9291 since a long time might have passed since we entered
9292 read_key_sequence, and a timer (or process-filter or
9293 special-event-map, ...) might have switched the current buffer
9294 or the selected window from under us in the mean time. */
9295 if (fix_current_buffer
9296 && (XBUFFER (XWINDOW (selected_window)->contents)
9297 != current_buffer))
9298 Fset_buffer (XWINDOW (selected_window)->contents);
9299 current_binding = active_maps (first_event);
9302 GROW_RAW_KEYBUF;
9303 ASET (raw_keybuf, raw_keybuf_count, key);
9304 raw_keybuf_count++;
9307 /* Clicks in non-text areas get prefixed by the symbol
9308 in their CHAR-ADDRESS field. For example, a click on
9309 the mode line is prefixed by the symbol `mode-line'.
9311 Furthermore, key sequences beginning with mouse clicks
9312 are read using the keymaps of the buffer clicked on, not
9313 the current buffer. So we may have to switch the buffer
9314 here.
9316 When we turn one event into two events, we must make sure
9317 that neither of the two looks like the original--so that,
9318 if we replay the events, they won't be expanded again.
9319 If not for this, such reexpansion could happen either here
9320 or when user programs play with this-command-keys. */
9321 if (EVENT_HAS_PARAMETERS (key))
9323 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
9324 if (EQ (kind, Qmouse_click))
9326 Lisp_Object window = POSN_WINDOW (EVENT_START (key));
9327 Lisp_Object posn = POSN_POSN (EVENT_START (key));
9329 if (CONSP (posn)
9330 || (!NILP (fake_prefixed_keys)
9331 && !NILP (Fmemq (key, fake_prefixed_keys))))
9333 /* We're looking a second time at an event for which
9334 we generated a fake prefix key. Set
9335 last_real_key_start appropriately. */
9336 if (t > 0)
9337 last_real_key_start = t - 1;
9340 if (last_real_key_start == 0)
9342 /* Key sequences beginning with mouse clicks are
9343 read using the keymaps in the buffer clicked on,
9344 not the current buffer. If we're at the
9345 beginning of a key sequence, switch buffers. */
9346 if (WINDOWP (window)
9347 && BUFFERP (XWINDOW (window)->contents)
9348 && XBUFFER (XWINDOW (window)->contents) != current_buffer)
9350 ASET (raw_keybuf, raw_keybuf_count, key);
9351 raw_keybuf_count++;
9352 keybuf[t] = key;
9353 mock_input = t + 1;
9355 /* Arrange to go back to the original buffer once we're
9356 done reading the key sequence. Note that we can't
9357 use save_excursion_{save,restore} here, because they
9358 save point as well as the current buffer; we don't
9359 want to save point, because redisplay may change it,
9360 to accommodate a Fset_window_start or something. We
9361 don't want to do this at the top of the function,
9362 because we may get input from a subprocess which
9363 wants to change the selected window and stuff (say,
9364 emacsclient). */
9365 record_unwind_current_buffer ();
9367 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9368 Fkill_emacs (Qnil);
9369 set_buffer_internal (XBUFFER (XWINDOW (window)->contents));
9370 goto replay_sequence;
9374 /* Expand mode-line and scroll-bar events into two events:
9375 use posn as a fake prefix key. */
9376 if (SYMBOLP (posn)
9377 && (NILP (fake_prefixed_keys)
9378 || NILP (Fmemq (key, fake_prefixed_keys))))
9380 if (bufsize - t <= 1)
9381 error ("Key sequence too long");
9383 keybuf[t] = posn;
9384 keybuf[t + 1] = key;
9385 mock_input = t + 2;
9387 /* Record that a fake prefix key has been generated
9388 for KEY. Don't modify the event; this would
9389 prevent proper action when the event is pushed
9390 back into unread-command-events. */
9391 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9392 goto replay_key;
9395 else if (CONSP (XCDR (key))
9396 && CONSP (EVENT_START (key))
9397 && CONSP (XCDR (EVENT_START (key))))
9399 Lisp_Object posn;
9401 posn = POSN_POSN (EVENT_START (key));
9402 /* Handle menu-bar events:
9403 insert the dummy prefix event `menu-bar'. */
9404 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9406 if (bufsize - t <= 1)
9407 error ("Key sequence too long");
9408 keybuf[t] = posn;
9409 keybuf[t + 1] = key;
9411 /* Zap the position in key, so we know that we've
9412 expanded it, and don't try to do so again. */
9413 POSN_SET_POSN (EVENT_START (key), list1 (posn));
9415 mock_input = t + 2;
9416 goto replay_sequence;
9418 else if (CONSP (posn))
9420 /* We're looking at the second event of a
9421 sequence which we expanded before. Set
9422 last_real_key_start appropriately. */
9423 if (last_real_key_start == t && t > 0)
9424 last_real_key_start = t - 1;
9429 /* We have finally decided that KEY is something we might want
9430 to look up. */
9431 new_binding = follow_key (current_binding, key);
9433 /* If KEY wasn't bound, we'll try some fallbacks. */
9434 if (!NILP (new_binding))
9435 /* This is needed for the following scenario:
9436 event 0: a down-event that gets dropped by calling replay_key.
9437 event 1: some normal prefix like C-h.
9438 After event 0, first_unbound is 0, after event 1 indec.start,
9439 fkey.start, and keytran.start are all 1, so when we see that
9440 C-h is bound, we need to update first_unbound. */
9441 first_unbound = max (t + 1, first_unbound);
9442 else
9444 Lisp_Object head;
9446 /* Remember the position to put an upper bound on indec.start. */
9447 first_unbound = min (t, first_unbound);
9449 head = EVENT_HEAD (key);
9451 if (SYMBOLP (head))
9453 Lisp_Object breakdown;
9454 int modifiers;
9456 breakdown = parse_modifiers (head);
9457 modifiers = XINT (XCAR (XCDR (breakdown)));
9458 /* Attempt to reduce an unbound mouse event to a simpler
9459 event that is bound:
9460 Drags reduce to clicks.
9461 Double-clicks reduce to clicks.
9462 Triple-clicks reduce to double-clicks, then to clicks.
9463 Up/Down-clicks are eliminated.
9464 Double-downs reduce to downs, then are eliminated.
9465 Triple-downs reduce to double-downs, then to downs,
9466 then are eliminated. */
9467 if (modifiers & (up_modifier | down_modifier
9468 | drag_modifier
9469 | double_modifier | triple_modifier))
9471 while (modifiers & (up_modifier | down_modifier
9472 | drag_modifier
9473 | double_modifier | triple_modifier))
9475 Lisp_Object new_head, new_click;
9476 if (modifiers & triple_modifier)
9477 modifiers ^= (double_modifier | triple_modifier);
9478 else if (modifiers & double_modifier)
9479 modifiers &= ~double_modifier;
9480 else if (modifiers & drag_modifier)
9481 modifiers &= ~drag_modifier;
9482 else
9484 /* Dispose of this `up/down' event by simply jumping
9485 back to replay_key, to get another event.
9487 Note that if this event came from mock input,
9488 then just jumping back to replay_key will just
9489 hand it to us again. So we have to wipe out any
9490 mock input.
9492 We could delete keybuf[t] and shift everything
9493 after that to the left by one spot, but we'd also
9494 have to fix up any variable that points into
9495 keybuf, and shifting isn't really necessary
9496 anyway.
9498 Adding prefixes for non-textual mouse clicks
9499 creates two characters of mock input, and both
9500 must be thrown away. If we're only looking at
9501 the prefix now, we can just jump back to
9502 replay_key. On the other hand, if we've already
9503 processed the prefix, and now the actual click
9504 itself is giving us trouble, then we've lost the
9505 state of the keymaps we want to backtrack to, and
9506 we need to replay the whole sequence to rebuild
9509 Beyond that, only function key expansion could
9510 create more than two keys, but that should never
9511 generate mouse events, so it's okay to zero
9512 mock_input in that case too.
9514 FIXME: The above paragraph seems just plain
9515 wrong, if you consider things like
9516 xterm-mouse-mode. -stef
9518 Isn't this just the most wonderful code ever? */
9520 /* If mock_input > t + 1, the above simplification
9521 will actually end up dropping keys on the floor.
9522 This is probably OK for now, but even
9523 if mock_input <= t + 1, we need to adjust indec,
9524 fkey, and keytran.
9525 Typical case [header-line down-mouse-N]:
9526 mock_input = 2, t = 1, fkey.end = 1,
9527 last_real_key_start = 0. */
9528 if (indec.end > last_real_key_start)
9530 indec.end = indec.start
9531 = min (last_real_key_start, indec.start);
9532 indec.map = indec.parent;
9533 if (fkey.end > last_real_key_start)
9535 fkey.end = fkey.start
9536 = min (last_real_key_start, fkey.start);
9537 fkey.map = fkey.parent;
9538 if (keytran.end > last_real_key_start)
9540 keytran.end = keytran.start
9541 = min (last_real_key_start, keytran.start);
9542 keytran.map = keytran.parent;
9546 if (t == last_real_key_start)
9548 mock_input = 0;
9549 goto replay_key;
9551 else
9553 mock_input = last_real_key_start;
9554 goto replay_sequence;
9558 new_head
9559 = apply_modifiers (modifiers, XCAR (breakdown));
9560 new_click = list2 (new_head, EVENT_START (key));
9562 /* Look for a binding for this new key. */
9563 new_binding = follow_key (current_binding, new_click);
9565 /* If that click is bound, go for it. */
9566 if (!NILP (new_binding))
9568 current_binding = new_binding;
9569 key = new_click;
9570 break;
9572 /* Otherwise, we'll leave key set to the drag event. */
9577 current_binding = new_binding;
9579 keybuf[t++] = key;
9580 /* Normally, last_nonmenu_event gets the previous key we read.
9581 But when a mouse popup menu is being used,
9582 we don't update last_nonmenu_event; it continues to hold the mouse
9583 event that preceded the first level of menu. */
9584 if (!used_mouse_menu)
9585 last_nonmenu_event = key;
9587 /* Record what part of this_command_keys is the current key sequence. */
9588 this_single_command_key_start = this_command_key_count - t;
9589 /* When 'input-method-function' called above causes events to be
9590 put on 'unread-post-input-method-events', and as result
9591 'reread' is set to 'true', the value of 't' can become larger
9592 than 'this_command_key_count', because 'add_command_key' is
9593 not called to update 'this_command_key_count'. If this
9594 happens, 'this_single_command_key_start' will become negative
9595 above, and any call to 'this-single-command-keys' will return
9596 a garbled vector. See bug #20223 for one such situation.
9597 Here we force 'this_single_command_key_start' to never become
9598 negative, to avoid that. */
9599 if (this_single_command_key_start < 0)
9600 this_single_command_key_start = 0;
9602 /* Look for this sequence in input-decode-map.
9603 Scan from indec.end until we find a bound suffix. */
9604 while (indec.end < t)
9606 bool done;
9607 int diff;
9609 done = keyremap_step (keybuf, bufsize, &indec, max (t, mock_input),
9610 1, &diff, prompt);
9611 if (done)
9613 mock_input = diff + max (t, mock_input);
9614 goto replay_sequence;
9618 if (!KEYMAPP (current_binding)
9619 && !test_undefined (current_binding)
9620 && indec.start >= t)
9621 /* There is a binding and it's not a prefix.
9622 (and it doesn't have any input-decode-map translation pending).
9623 There is thus no function-key in this sequence.
9624 Moving fkey.start is important in this case to allow keytran.start
9625 to go over the sequence before we return (since we keep the
9626 invariant that keytran.end <= fkey.start). */
9628 if (fkey.start < t)
9629 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9631 else
9632 /* If the sequence is unbound, see if we can hang a function key
9633 off the end of it. */
9634 /* Continue scan from fkey.end until we find a bound suffix. */
9635 while (fkey.end < indec.start)
9637 bool done;
9638 int diff;
9640 done = keyremap_step (keybuf, bufsize, &fkey,
9641 max (t, mock_input),
9642 /* If there's a binding (i.e.
9643 first_binding >= nmaps) we don't want
9644 to apply this function-key-mapping. */
9645 fkey.end + 1 == t
9646 && (test_undefined (current_binding)),
9647 &diff, prompt);
9648 if (done)
9650 mock_input = diff + max (t, mock_input);
9651 /* Adjust the input-decode-map counters. */
9652 indec.end += diff;
9653 indec.start += diff;
9655 goto replay_sequence;
9659 /* Look for this sequence in key-translation-map.
9660 Scan from keytran.end until we find a bound suffix. */
9661 while (keytran.end < fkey.start)
9663 bool done;
9664 int diff;
9666 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9667 1, &diff, prompt);
9668 if (done)
9670 mock_input = diff + max (t, mock_input);
9671 /* Adjust the function-key-map and input-decode-map counters. */
9672 indec.end += diff;
9673 indec.start += diff;
9674 fkey.end += diff;
9675 fkey.start += diff;
9677 goto replay_sequence;
9681 /* If KEY is not defined in any of the keymaps,
9682 and cannot be part of a function key or translation,
9683 and is an upper case letter
9684 use the corresponding lower-case letter instead. */
9685 if (NILP (current_binding)
9686 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t
9687 && INTEGERP (key))
9689 Lisp_Object new_key;
9690 EMACS_INT k = XINT (key);
9692 if (k & shift_modifier)
9693 XSETINT (new_key, k & ~shift_modifier);
9694 else if (CHARACTERP (make_number (k & ~CHAR_MODIFIER_MASK)))
9696 int dc = downcase (k & ~CHAR_MODIFIER_MASK);
9697 if (dc == (k & ~CHAR_MODIFIER_MASK))
9698 goto not_upcase;
9699 XSETINT (new_key, dc | (k & CHAR_MODIFIER_MASK));
9701 else
9702 goto not_upcase;
9704 original_uppercase = key;
9705 original_uppercase_position = t - 1;
9707 /* We have to do this unconditionally, regardless of whether
9708 the lower-case char is defined in the keymaps, because they
9709 might get translated through function-key-map. */
9710 keybuf[t - 1] = new_key;
9711 mock_input = max (t, mock_input);
9712 shift_translated = true;
9714 goto replay_sequence;
9717 not_upcase:
9718 if (NILP (current_binding)
9719 && help_char_p (EVENT_HEAD (key)) && t > 1)
9721 read_key_sequence_cmd = Vprefix_help_command;
9722 /* The Microsoft C compiler can't handle the goto that
9723 would go here. */
9724 dummyflag = true;
9725 break;
9728 /* If KEY is not defined in any of the keymaps,
9729 and cannot be part of a function key or translation,
9730 and is a shifted function key,
9731 use the corresponding unshifted function key instead. */
9732 if (NILP (current_binding)
9733 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t)
9735 Lisp_Object breakdown = parse_modifiers (key);
9736 int modifiers
9737 = CONSP (breakdown) ? (XINT (XCAR (XCDR (breakdown)))) : 0;
9739 if (modifiers & shift_modifier
9740 /* Treat uppercase keys as shifted. */
9741 || (INTEGERP (key)
9742 && (KEY_TO_CHAR (key)
9743 < XCHAR_TABLE (BVAR (current_buffer, downcase_table))->header.size)
9744 && uppercasep (KEY_TO_CHAR (key))))
9746 Lisp_Object new_key
9747 = (modifiers & shift_modifier
9748 ? apply_modifiers (modifiers & ~shift_modifier,
9749 XCAR (breakdown))
9750 : make_number (downcase (KEY_TO_CHAR (key)) | modifiers));
9752 original_uppercase = key;
9753 original_uppercase_position = t - 1;
9755 /* We have to do this unconditionally, regardless of whether
9756 the lower-case char is defined in the keymaps, because they
9757 might get translated through function-key-map. */
9758 keybuf[t - 1] = new_key;
9759 mock_input = max (t, mock_input);
9760 /* Reset fkey (and consequently keytran) to apply
9761 function-key-map on the result, so that S-backspace is
9762 correctly mapped to DEL (via backspace). OTOH,
9763 input-decode-map doesn't need to go through it again. */
9764 fkey.start = fkey.end = 0;
9765 keytran.start = keytran.end = 0;
9766 shift_translated = true;
9768 goto replay_sequence;
9772 if (!dummyflag)
9773 read_key_sequence_cmd = current_binding;
9774 read_key_sequence_remapped
9775 /* Remap command through active keymaps.
9776 Do the remapping here, before the unbind_to so it uses the keymaps
9777 of the appropriate buffer. */
9778 = SYMBOLP (read_key_sequence_cmd)
9779 ? Fcommand_remapping (read_key_sequence_cmd, Qnil, Qnil)
9780 : Qnil;
9782 unread_switch_frame = delayed_switch_frame;
9783 unbind_to (count, Qnil);
9785 /* Don't downcase the last character if the caller says don't.
9786 Don't downcase it if the result is undefined, either. */
9787 if ((dont_downcase_last || NILP (current_binding))
9788 && t > 0
9789 && t - 1 == original_uppercase_position)
9791 keybuf[t - 1] = original_uppercase;
9792 shift_translated = false;
9795 if (shift_translated)
9796 Vthis_command_keys_shift_translated = Qt;
9798 /* Occasionally we fabricate events, perhaps by expanding something
9799 according to function-key-map, or by adding a prefix symbol to a
9800 mouse click in the scroll bar or modeline. In this cases, return
9801 the entire generated key sequence, even if we hit an unbound
9802 prefix or a definition before the end. This means that you will
9803 be able to push back the event properly, and also means that
9804 read-key-sequence will always return a logical unit.
9806 Better ideas? */
9807 for (; t < mock_input; t++)
9808 add_command_key (keybuf[t]);
9809 echo_update ();
9811 return t;
9814 static Lisp_Object
9815 read_key_sequence_vs (Lisp_Object prompt, Lisp_Object continue_echo,
9816 Lisp_Object dont_downcase_last,
9817 Lisp_Object can_return_switch_frame,
9818 Lisp_Object cmd_loop, bool allow_string)
9820 Lisp_Object keybuf[30];
9821 int i;
9822 ptrdiff_t count = SPECPDL_INDEX ();
9824 if (!NILP (prompt))
9825 CHECK_STRING (prompt);
9826 maybe_quit ();
9828 specbind (Qinput_method_exit_on_first_char,
9829 (NILP (cmd_loop) ? Qt : Qnil));
9830 specbind (Qinput_method_use_echo_area,
9831 (NILP (cmd_loop) ? Qt : Qnil));
9833 if (NILP (continue_echo))
9835 this_command_key_count = 0;
9836 this_single_command_key_start = 0;
9839 #ifdef HAVE_WINDOW_SYSTEM
9840 if (display_hourglass_p)
9841 cancel_hourglass ();
9842 #endif
9844 i = read_key_sequence (keybuf, ARRAYELTS (keybuf),
9845 prompt, ! NILP (dont_downcase_last),
9846 ! NILP (can_return_switch_frame), 0, 0);
9848 #if 0 /* The following is fine for code reading a key sequence and
9849 then proceeding with a lengthy computation, but it's not good
9850 for code reading keys in a loop, like an input method. */
9851 #ifdef HAVE_WINDOW_SYSTEM
9852 if (display_hourglass_p)
9853 start_hourglass ();
9854 #endif
9855 #endif
9857 if (i == -1)
9859 Vquit_flag = Qt;
9860 maybe_quit ();
9863 return unbind_to (count,
9864 ((allow_string ? make_event_array : Fvector)
9865 (i, keybuf)));
9868 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9869 doc: /* Read a sequence of keystrokes and return as a string or vector.
9870 The sequence is sufficient to specify a non-prefix command in the
9871 current local and global maps.
9873 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9874 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9875 as a continuation of the previous key.
9877 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9878 convert the last event to lower case. (Normally any upper case event
9879 is converted to lower case if the original event is undefined and the lower
9880 case equivalent is defined.) A non-nil value is appropriate for reading
9881 a key sequence to be defined.
9883 A C-g typed while in this function is treated like any other character,
9884 and `quit-flag' is not set.
9886 If the key sequence starts with a mouse click, then the sequence is read
9887 using the keymaps of the buffer of the window clicked in, not the buffer
9888 of the selected window as normal.
9890 `read-key-sequence' drops unbound button-down events, since you normally
9891 only care about the click or drag events which follow them. If a drag
9892 or multi-click event is unbound, but the corresponding click event would
9893 be bound, `read-key-sequence' turns the event into a click event at the
9894 drag's starting position. This means that you don't have to distinguish
9895 between click and drag, double, or triple events unless you want to.
9897 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9898 lines separating windows, and scroll bars with imaginary keys
9899 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9901 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9902 function will process a switch-frame event if the user switches frames
9903 before typing anything. If the user switches frames in the middle of a
9904 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9905 is nil, then the event will be put off until after the current key sequence.
9907 `read-key-sequence' checks `function-key-map' for function key
9908 sequences, where they wouldn't conflict with ordinary bindings. See
9909 `function-key-map' for more details.
9911 The optional fifth argument CMD-LOOP, if non-nil, means
9912 that this key sequence is being read by something that will
9913 read commands one after another. It should be nil if the caller
9914 will read just one key sequence. */)
9915 (Lisp_Object prompt, Lisp_Object continue_echo, Lisp_Object dont_downcase_last, Lisp_Object can_return_switch_frame, Lisp_Object cmd_loop)
9917 return read_key_sequence_vs (prompt, continue_echo, dont_downcase_last,
9918 can_return_switch_frame, cmd_loop, true);
9921 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9922 Sread_key_sequence_vector, 1, 5, 0,
9923 doc: /* Like `read-key-sequence' but always return a vector. */)
9924 (Lisp_Object prompt, Lisp_Object continue_echo, Lisp_Object dont_downcase_last, Lisp_Object can_return_switch_frame, Lisp_Object cmd_loop)
9926 return read_key_sequence_vs (prompt, continue_echo, dont_downcase_last,
9927 can_return_switch_frame, cmd_loop, false);
9930 /* Return true if input events are pending. */
9932 bool
9933 detect_input_pending (void)
9935 return input_pending || get_input_pending (0);
9938 /* Return true if input events other than mouse movements are
9939 pending. */
9941 bool
9942 detect_input_pending_ignore_squeezables (void)
9944 return input_pending || get_input_pending (READABLE_EVENTS_IGNORE_SQUEEZABLES);
9947 /* Return true if input events are pending, and run any pending timers. */
9949 bool
9950 detect_input_pending_run_timers (bool do_display)
9952 unsigned old_timers_run = timers_run;
9954 if (!input_pending)
9955 get_input_pending (READABLE_EVENTS_DO_TIMERS_NOW);
9957 if (old_timers_run != timers_run && do_display)
9958 redisplay_preserve_echo_area (8);
9960 return input_pending;
9963 /* This is called in some cases before a possible quit.
9964 It cases the next call to detect_input_pending to recompute input_pending.
9965 So calling this function unnecessarily can't do any harm. */
9967 void
9968 clear_input_pending (void)
9970 input_pending = false;
9973 /* Return true if there are pending requeued events.
9974 This isn't used yet. The hope is to make wait_reading_process_output
9975 call it, and return if it runs Lisp code that unreads something.
9976 The problem is, kbd_buffer_get_event needs to be fixed to know what
9977 to do in that case. It isn't trivial. */
9979 bool
9980 requeued_events_pending_p (void)
9982 return (CONSP (Vunread_command_events));
9985 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 1, 0,
9986 doc: /* Return t if command input is currently available with no wait.
9987 Actually, the value is nil only if we can be sure that no input is available;
9988 if there is a doubt, the value is t.
9990 If CHECK-TIMERS is non-nil, timers that are ready to run will do so. */)
9991 (Lisp_Object check_timers)
9993 if (CONSP (Vunread_command_events)
9994 || !NILP (Vunread_post_input_method_events)
9995 || !NILP (Vunread_input_method_events))
9996 return (Qt);
9998 /* Process non-user-visible events (Bug#10195). */
9999 process_special_events ();
10001 return (get_input_pending ((NILP (check_timers)
10002 ? 0 : READABLE_EVENTS_DO_TIMERS_NOW)
10003 | READABLE_EVENTS_FILTER_EVENTS)
10004 ? Qt : Qnil);
10007 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 1, 0,
10008 doc: /* Return vector of last few events, not counting those from keyboard macros.
10009 If INCLUDE-CMDS is non-nil, include the commands that were run,
10010 represented as events of the form (nil . COMMAND). */)
10011 (Lisp_Object include_cmds)
10013 bool cmds = !NILP (include_cmds);
10015 if (!total_keys
10016 || (cmds && total_keys < NUM_RECENT_KEYS))
10017 return Fvector (total_keys,
10018 XVECTOR (recent_keys)->contents);
10019 else
10021 Lisp_Object es = Qnil;
10022 int i = (total_keys < NUM_RECENT_KEYS
10023 ? 0 : recent_keys_index);
10024 eassert (recent_keys_index < NUM_RECENT_KEYS);
10027 Lisp_Object e = AREF (recent_keys, i);
10028 if (cmds || !CONSP (e) || !NILP (XCAR (e)))
10029 es = Fcons (e, es);
10030 if (++i >= NUM_RECENT_KEYS)
10031 i = 0;
10032 } while (i != recent_keys_index);
10033 es = Fnreverse (es);
10034 return Fvconcat (1, &es);
10038 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10039 doc: /* Return the key sequence that invoked this command.
10040 However, if the command has called `read-key-sequence', it returns
10041 the last key sequence that has been read.
10042 The value is a string or a vector.
10044 See also `this-command-keys-vector'. */)
10045 (void)
10047 return make_event_array (this_command_key_count,
10048 XVECTOR (this_command_keys)->contents);
10051 DEFUN ("set--this-command-keys", Fset__this_command_keys,
10052 Sset__this_command_keys, 1, 1, 0,
10053 doc: /* Set the vector to be returned by `this-command-keys'.
10054 The argument KEYS must be a string.
10055 Internal use only. */)
10056 (Lisp_Object keys)
10058 CHECK_STRING (keys);
10060 this_command_key_count = 0;
10061 this_single_command_key_start = 0;
10062 int key0 = SREF (keys, 0);
10064 /* Kludge alert: this makes M-x be in the form expected by
10065 novice.el. (248 is \370, a.k.a. "Meta-x".) Any better ideas? */
10066 if (key0 == 248)
10067 add_command_key (make_number ('x' | meta_modifier));
10068 else
10069 add_command_key (make_number (key0));
10070 for (ptrdiff_t i = 1; i < SCHARS (keys); i++)
10071 add_command_key (make_number (SREF (keys, i)));
10072 return Qnil;
10075 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10076 doc: /* Return the key sequence that invoked this command, as a vector.
10077 However, if the command has called `read-key-sequence', it returns
10078 the last key sequence that has been read.
10080 See also `this-command-keys'. */)
10081 (void)
10083 return Fvector (this_command_key_count,
10084 XVECTOR (this_command_keys)->contents);
10087 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10088 Sthis_single_command_keys, 0, 0, 0,
10089 doc: /* Return the key sequence that invoked this command.
10090 More generally, it returns the last key sequence read, either by
10091 the command loop or by `read-key-sequence'.
10092 Unlike `this-command-keys', this function's value
10093 does not include prefix arguments.
10094 The value is always a vector. */)
10095 (void)
10097 return Fvector (this_command_key_count
10098 - this_single_command_key_start,
10099 (XVECTOR (this_command_keys)->contents
10100 + this_single_command_key_start));
10103 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10104 Sthis_single_command_raw_keys, 0, 0, 0,
10105 doc: /* Return the raw events that were read for this command.
10106 More generally, it returns the last key sequence read, either by
10107 the command loop or by `read-key-sequence'.
10108 Unlike `this-single-command-keys', this function's value
10109 shows the events before all translations (except for input methods).
10110 The value is always a vector. */)
10111 (void)
10113 return Fvector (raw_keybuf_count, XVECTOR (raw_keybuf)->contents);
10116 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10117 Sclear_this_command_keys, 0, 1, 0,
10118 doc: /* Clear out the vector that `this-command-keys' returns.
10119 Also clear the record of the last 100 events, unless optional arg
10120 KEEP-RECORD is non-nil. */)
10121 (Lisp_Object keep_record)
10123 int i;
10125 this_command_key_count = 0;
10127 if (NILP (keep_record))
10129 for (i = 0; i < ASIZE (recent_keys); ++i)
10130 ASET (recent_keys, i, Qnil);
10131 total_keys = 0;
10132 recent_keys_index = 0;
10134 return Qnil;
10137 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10138 doc: /* Return the current depth in recursive edits. */)
10139 (void)
10141 EMACS_INT sum;
10142 INT_ADD_WRAPV (command_loop_level, minibuf_level, &sum);
10143 return make_number (sum);
10146 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10147 "FOpen dribble file: ",
10148 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10149 If FILE is nil, close any open dribble file.
10150 The file will be closed when Emacs exits.
10152 Be aware that this records ALL characters you type!
10153 This may include sensitive information such as passwords. */)
10154 (Lisp_Object file)
10156 if (dribble)
10158 block_input ();
10159 fclose (dribble);
10160 unblock_input ();
10161 dribble = 0;
10163 if (!NILP (file))
10165 int fd;
10166 Lisp_Object encfile;
10168 file = Fexpand_file_name (file, Qnil);
10169 encfile = ENCODE_FILE (file);
10170 fd = emacs_open (SSDATA (encfile), O_WRONLY | O_CREAT | O_EXCL, 0600);
10171 if (fd < 0 && errno == EEXIST
10172 && (unlink (SSDATA (encfile)) == 0 || errno == ENOENT))
10173 fd = emacs_open (SSDATA (encfile), O_WRONLY | O_CREAT | O_EXCL, 0600);
10174 dribble = fd < 0 ? 0 : fdopen (fd, "w");
10175 if (dribble == 0)
10176 report_file_error ("Opening dribble", file);
10178 return Qnil;
10181 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10182 doc: /* Discard the contents of the terminal input buffer.
10183 Also end any kbd macro being defined. */)
10184 (void)
10186 if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
10188 /* Discard the last command from the macro. */
10189 Fcancel_kbd_macro_events ();
10190 end_kbd_macro ();
10193 Vunread_command_events = Qnil;
10195 discard_tty_input ();
10197 kbd_fetch_ptr = kbd_store_ptr;
10198 input_pending = false;
10200 return Qnil;
10203 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10204 doc: /* Stop Emacs and return to superior process. You can resume later.
10205 If `cannot-suspend' is non-nil, or if the system doesn't support job
10206 control, run a subshell instead.
10208 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10209 to be read as terminal input by Emacs's parent, after suspension.
10211 Before suspending, run the normal hook `suspend-hook'.
10212 After resumption run the normal hook `suspend-resume-hook'.
10214 Some operating systems cannot stop the Emacs process and resume it later.
10215 On such systems, Emacs starts a subshell instead of suspending. */)
10216 (Lisp_Object stuffstring)
10218 ptrdiff_t count = SPECPDL_INDEX ();
10219 int old_height, old_width;
10220 int width, height;
10222 if (tty_list && tty_list->next)
10223 error ("There are other tty frames open; close them before suspending Emacs");
10225 if (!NILP (stuffstring))
10226 CHECK_STRING (stuffstring);
10228 run_hook (intern ("suspend-hook"));
10230 get_tty_size (fileno (CURTTY ()->input), &old_width, &old_height);
10231 reset_all_sys_modes ();
10232 /* sys_suspend can get an error if it tries to fork a subshell
10233 and the system resources aren't available for that. */
10234 record_unwind_protect_void (init_all_sys_modes);
10235 stuff_buffered_input (stuffstring);
10236 if (cannot_suspend)
10237 sys_subshell ();
10238 else
10239 sys_suspend ();
10240 unbind_to (count, Qnil);
10242 /* Check if terminal/window size has changed.
10243 Note that this is not useful when we are running directly
10244 with a window system; but suspend should be disabled in that case. */
10245 get_tty_size (fileno (CURTTY ()->input), &width, &height);
10246 if (width != old_width || height != old_height)
10247 change_frame_size (SELECTED_FRAME (), width,
10248 height - FRAME_MENU_BAR_LINES (SELECTED_FRAME ()),
10249 0, 0, 0, 0);
10251 run_hook (intern ("suspend-resume-hook"));
10253 return Qnil;
10256 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10257 Then in any case stuff anything Emacs has read ahead and not used. */
10259 void
10260 stuff_buffered_input (Lisp_Object stuffstring)
10262 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10263 register unsigned char *p;
10265 if (STRINGP (stuffstring))
10267 register ptrdiff_t count;
10269 p = SDATA (stuffstring);
10270 count = SBYTES (stuffstring);
10271 while (count-- > 0)
10272 stuff_char (*p++);
10273 stuff_char ('\n');
10276 /* Anything we have read ahead, put back for the shell to read. */
10277 /* ?? What should this do when we have multiple keyboards??
10278 Should we ignore anything that was typed in at the "wrong" kboard?
10280 rms: we should stuff everything back into the kboard
10281 it came from. */
10282 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10285 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10286 kbd_fetch_ptr = kbd_buffer;
10287 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10288 stuff_char (kbd_fetch_ptr->ie.code);
10290 clear_event (kbd_fetch_ptr);
10293 input_pending = false;
10294 #endif /* SIGTSTP */
10297 void
10298 set_waiting_for_input (struct timespec *time_to_clear)
10300 input_available_clear_time = time_to_clear;
10302 /* Tell handle_interrupt to throw back to read_char, */
10303 waiting_for_input = true;
10305 /* If handle_interrupt was called before and buffered a C-g,
10306 make it run again now, to avoid timing error. */
10307 if (!NILP (Vquit_flag))
10308 quit_throw_to_read_char (0);
10311 void
10312 clear_waiting_for_input (void)
10314 /* Tell handle_interrupt not to throw back to read_char, */
10315 waiting_for_input = false;
10316 input_available_clear_time = 0;
10319 /* The SIGINT handler.
10321 If we have a frame on the controlling tty, we assume that the
10322 SIGINT was generated by C-g, so we call handle_interrupt.
10323 Otherwise, tell maybe_quit to kill Emacs. */
10325 static void
10326 handle_interrupt_signal (int sig)
10328 /* See if we have an active terminal on our controlling tty. */
10329 struct terminal *terminal = get_named_terminal (DEV_TTY);
10330 if (!terminal)
10332 /* If there are no frames there, let's pretend that we are a
10333 well-behaving UN*X program and quit. We must not call Lisp
10334 in a signal handler, so tell maybe_quit to exit when it is
10335 safe. */
10336 Vquit_flag = Qkill_emacs;
10338 else
10340 /* Otherwise, the SIGINT was probably generated by C-g. */
10342 /* Set internal_last_event_frame to the top frame of the
10343 controlling tty, if we have a frame there. We disable the
10344 interrupt key on secondary ttys, so the SIGINT must have come
10345 from the controlling tty. */
10346 internal_last_event_frame = terminal->display_info.tty->top_frame;
10348 handle_interrupt (1);
10352 static void
10353 deliver_interrupt_signal (int sig)
10355 deliver_process_signal (sig, handle_interrupt_signal);
10358 /* Output MSG directly to standard output, without buffering. Ignore
10359 failures. This is safe in a signal handler. */
10360 static void
10361 write_stdout (char const *msg)
10363 ignore_value (write (STDOUT_FILENO, msg, strlen (msg)));
10366 /* Read a byte from stdin, without buffering. Safe in signal handlers. */
10367 static int
10368 read_stdin (void)
10370 char c;
10371 return read (STDIN_FILENO, &c, 1) == 1 ? c : EOF;
10374 /* If Emacs is stuck because `inhibit-quit' is true, then keep track
10375 of the number of times C-g has been requested. If C-g is pressed
10376 enough times, then quit anyway. See bug#6585. */
10377 static int volatile force_quit_count;
10379 /* This routine is called at interrupt level in response to C-g.
10381 It is called from the SIGINT handler or kbd_buffer_store_event.
10383 If `waiting_for_input' is non zero, then unless `echoing' is
10384 nonzero, immediately throw back to read_char.
10386 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10387 eval to throw, when it gets a chance. If quit-flag is already
10388 non-nil, it stops the job right away. */
10390 static void
10391 handle_interrupt (bool in_signal_handler)
10393 char c;
10395 cancel_echoing ();
10397 /* XXX This code needs to be revised for multi-tty support. */
10398 if (!NILP (Vquit_flag) && get_named_terminal (DEV_TTY))
10400 if (! in_signal_handler)
10402 /* If SIGINT isn't blocked, don't let us be interrupted by
10403 a SIGINT. It might be harmful due to non-reentrancy
10404 in I/O functions. */
10405 sigset_t blocked;
10406 sigemptyset (&blocked);
10407 sigaddset (&blocked, SIGINT);
10408 pthread_sigmask (SIG_BLOCK, &blocked, 0);
10409 fflush_unlocked (stdout);
10412 reset_all_sys_modes ();
10414 #ifdef SIGTSTP
10416 * On systems which can suspend the current process and return to the original
10417 * shell, this command causes the user to end up back at the shell.
10418 * The "Auto-save" and "Abort" questions are not asked until
10419 * the user elects to return to emacs, at which point he can save the current
10420 * job and either dump core or continue.
10422 sys_suspend ();
10423 #else
10424 /* Perhaps should really fork an inferior shell?
10425 But that would not provide any way to get back
10426 to the original shell, ever. */
10427 write_stdout ("No support for stopping a process"
10428 " on this operating system;\n"
10429 "you can continue or abort.\n");
10430 #endif /* not SIGTSTP */
10431 #ifdef MSDOS
10432 /* We must remain inside the screen area when the internal terminal
10433 is used. Note that [Enter] is not echoed by dos. */
10434 cursor_to (SELECTED_FRAME (), 0, 0);
10435 #endif
10437 write_stdout ("Emacs is resuming after an emergency escape.\n");
10439 /* It doesn't work to autosave while GC is in progress;
10440 the code used for auto-saving doesn't cope with the mark bit. */
10441 if (!gc_in_progress)
10443 write_stdout ("Auto-save? (y or n) ");
10444 c = read_stdin ();
10445 if (c == 'y' || c == 'Y')
10447 Fdo_auto_save (Qt, Qnil);
10448 #ifdef MSDOS
10449 write_stdout ("\r\nAuto-save done");
10450 #else
10451 write_stdout ("Auto-save done\n");
10452 #endif
10454 while (c != '\n')
10455 c = read_stdin ();
10457 else
10459 /* During GC, it must be safe to reenable quitting again. */
10460 Vinhibit_quit = Qnil;
10461 write_stdout
10463 #ifdef MSDOS
10464 "\r\n"
10465 #endif
10466 "Garbage collection in progress; cannot auto-save now\r\n"
10467 "but will instead do a real quit"
10468 " after garbage collection ends\r\n");
10471 #ifdef MSDOS
10472 write_stdout ("\r\nAbort? (y or n) ");
10473 #else
10474 write_stdout ("Abort (and dump core)? (y or n) ");
10475 #endif
10476 c = read_stdin ();
10477 if (c == 'y' || c == 'Y')
10478 emacs_abort ();
10479 while (c != '\n')
10480 c = read_stdin ();
10481 #ifdef MSDOS
10482 write_stdout ("\r\nContinuing...\r\n");
10483 #else /* not MSDOS */
10484 write_stdout ("Continuing...\n");
10485 #endif /* not MSDOS */
10486 init_all_sys_modes ();
10488 else
10490 /* Request quit when it's safe. */
10491 int count = NILP (Vquit_flag) ? 1 : force_quit_count + 1;
10492 force_quit_count = count;
10493 if (count == 3)
10494 Vinhibit_quit = Qnil;
10495 Vquit_flag = Qt;
10498 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
10500 /* TODO: The longjmp in this call throws the NS event loop integration off,
10501 and it seems to do fine without this. Probably some attention
10502 needs to be paid to the setting of waiting_for_input in
10503 wait_reading_process_output() under HAVE_NS because of the call
10504 to ns_select there (needed because otherwise events aren't picked up
10505 outside of polling since we don't get SIGIO like X and we don't have a
10506 separate event loop thread like W32. */
10507 #ifndef HAVE_NS
10508 if (waiting_for_input && !echoing)
10509 quit_throw_to_read_char (in_signal_handler);
10510 #endif
10513 /* Handle a C-g by making read_char return C-g. */
10515 static void
10516 quit_throw_to_read_char (bool from_signal)
10518 /* When not called from a signal handler it is safe to call
10519 Lisp. */
10520 if (!from_signal && EQ (Vquit_flag, Qkill_emacs))
10521 Fkill_emacs (Qnil);
10523 /* Prevent another signal from doing this before we finish. */
10524 clear_waiting_for_input ();
10525 input_pending = false;
10527 Vunread_command_events = Qnil;
10529 if (FRAMEP (internal_last_event_frame)
10530 && !EQ (internal_last_event_frame, selected_frame))
10531 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10532 0, 0, Qnil);
10534 sys_longjmp (getcjmp, 1);
10537 DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,
10538 Sset_input_interrupt_mode, 1, 1, 0,
10539 doc: /* Set interrupt mode of reading keyboard input.
10540 If INTERRUPT is non-nil, Emacs will use input interrupts;
10541 otherwise Emacs uses CBREAK mode.
10543 See also `current-input-mode'. */)
10544 (Lisp_Object interrupt)
10546 bool new_interrupt_input;
10547 #ifdef USABLE_SIGIO
10548 #ifdef HAVE_X_WINDOWS
10549 if (x_display_list != NULL)
10551 /* When using X, don't give the user a real choice,
10552 because we haven't implemented the mechanisms to support it. */
10553 new_interrupt_input = true;
10555 else
10556 #endif /* HAVE_X_WINDOWS */
10557 new_interrupt_input = !NILP (interrupt);
10558 #else /* not USABLE_SIGIO */
10559 new_interrupt_input = false;
10560 #endif /* not USABLE_SIGIO */
10562 if (new_interrupt_input != interrupt_input)
10564 #ifdef POLL_FOR_INPUT
10565 stop_polling ();
10566 #endif
10567 #ifndef DOS_NT
10568 /* this causes startup screen to be restored and messes with the mouse */
10569 reset_all_sys_modes ();
10570 interrupt_input = new_interrupt_input;
10571 init_all_sys_modes ();
10572 #else
10573 interrupt_input = new_interrupt_input;
10574 #endif
10576 #ifdef POLL_FOR_INPUT
10577 poll_suppress_count = 1;
10578 start_polling ();
10579 #endif
10581 return Qnil;
10584 DEFUN ("set-output-flow-control", Fset_output_flow_control, Sset_output_flow_control, 1, 2, 0,
10585 doc: /* Enable or disable ^S/^Q flow control for output to TERMINAL.
10586 If FLOW is non-nil, flow control is enabled and you cannot use C-s or
10587 C-q in key sequences.
10589 This setting only has an effect on tty terminals and only when
10590 Emacs reads input in CBREAK mode; see `set-input-interrupt-mode'.
10592 See also `current-input-mode'. */)
10593 (Lisp_Object flow, Lisp_Object terminal)
10595 struct terminal *t = decode_tty_terminal (terminal);
10596 struct tty_display_info *tty;
10598 if (!t)
10599 return Qnil;
10600 tty = t->display_info.tty;
10602 if (tty->flow_control != !NILP (flow))
10604 #ifndef DOS_NT
10605 /* This causes startup screen to be restored and messes with the mouse. */
10606 reset_sys_modes (tty);
10607 #endif
10609 tty->flow_control = !NILP (flow);
10611 #ifndef DOS_NT
10612 init_sys_modes (tty);
10613 #endif
10615 return Qnil;
10618 DEFUN ("set-input-meta-mode", Fset_input_meta_mode, Sset_input_meta_mode, 1, 2, 0,
10619 doc: /* Enable or disable 8-bit input on TERMINAL.
10620 If META is t, Emacs will accept 8-bit input, and interpret the 8th
10621 bit as the Meta modifier.
10623 If META is nil, Emacs will ignore the top bit, on the assumption it is
10624 parity.
10626 Otherwise, Emacs will accept and pass through 8-bit input without
10627 specially interpreting the top bit.
10629 This setting only has an effect on tty terminal devices.
10631 Optional parameter TERMINAL specifies the tty terminal device to use.
10632 It may be a terminal object, a frame, or nil for the terminal used by
10633 the currently selected frame.
10635 See also `current-input-mode'. */)
10636 (Lisp_Object meta, Lisp_Object terminal)
10638 struct terminal *t = decode_tty_terminal (terminal);
10639 struct tty_display_info *tty;
10640 int new_meta;
10642 if (!t)
10643 return Qnil;
10644 tty = t->display_info.tty;
10646 if (NILP (meta))
10647 new_meta = 0;
10648 else if (EQ (meta, Qt))
10649 new_meta = 1;
10650 else
10651 new_meta = 2;
10653 if (tty->meta_key != new_meta)
10655 #ifndef DOS_NT
10656 /* this causes startup screen to be restored and messes with the mouse */
10657 reset_sys_modes (tty);
10658 #endif
10660 tty->meta_key = new_meta;
10662 #ifndef DOS_NT
10663 init_sys_modes (tty);
10664 #endif
10666 return Qnil;
10669 DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_char, 1, 1, 0,
10670 doc: /* Specify character used for quitting.
10671 QUIT must be an ASCII character.
10673 This function only has an effect on the controlling tty of the Emacs
10674 process.
10676 See also `current-input-mode'. */)
10677 (Lisp_Object quit)
10679 struct terminal *t = get_named_terminal (DEV_TTY);
10680 struct tty_display_info *tty;
10682 if (!t)
10683 return Qnil;
10684 tty = t->display_info.tty;
10686 if (NILP (quit) || !INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400)
10687 error ("QUIT must be an ASCII character");
10689 #ifndef DOS_NT
10690 /* this causes startup screen to be restored and messes with the mouse */
10691 reset_sys_modes (tty);
10692 #endif
10694 /* Don't let this value be out of range. */
10695 quit_char = XINT (quit) & (tty->meta_key == 0 ? 0177 : 0377);
10697 #ifndef DOS_NT
10698 init_sys_modes (tty);
10699 #endif
10701 return Qnil;
10704 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10705 doc: /* Set mode of reading keyboard input.
10706 First arg INTERRUPT non-nil means use input interrupts;
10707 nil means use CBREAK mode.
10708 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10709 (no effect except in CBREAK mode).
10710 Third arg META t means accept 8-bit input (for a Meta key).
10711 META nil means ignore the top bit, on the assumption it is parity.
10712 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10713 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10714 See also `current-input-mode'. */)
10715 (Lisp_Object interrupt, Lisp_Object flow, Lisp_Object meta, Lisp_Object quit)
10717 Fset_input_interrupt_mode (interrupt);
10718 Fset_output_flow_control (flow, Qnil);
10719 Fset_input_meta_mode (meta, Qnil);
10720 if (!NILP (quit))
10721 Fset_quit_char (quit);
10722 return Qnil;
10725 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10726 doc: /* Return information about the way Emacs currently reads keyboard input.
10727 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10728 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10729 nil, Emacs is using CBREAK mode.
10730 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10731 terminal; this does not apply if Emacs uses interrupt-driven input.
10732 META is t if accepting 8-bit input with 8th bit as Meta flag.
10733 META nil means ignoring the top bit, on the assumption it is parity.
10734 META is neither t nor nil if accepting 8-bit input and using
10735 all 8 bits as the character code.
10736 QUIT is the character Emacs currently uses to quit.
10737 The elements of this list correspond to the arguments of
10738 `set-input-mode'. */)
10739 (void)
10741 struct frame *sf = XFRAME (selected_frame);
10743 Lisp_Object interrupt = interrupt_input ? Qt : Qnil;
10744 Lisp_Object flow, meta;
10745 if (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
10747 flow = FRAME_TTY (sf)->flow_control ? Qt : Qnil;
10748 meta = (FRAME_TTY (sf)->meta_key == 2
10749 ? make_number (0)
10750 : (CURTTY ()->meta_key == 1 ? Qt : Qnil));
10752 else
10754 flow = Qnil;
10755 meta = Qt;
10757 Lisp_Object quit = make_number (quit_char);
10759 return list4 (interrupt, flow, meta, quit);
10762 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
10763 doc: /* Return position information for pixel coordinates X and Y.
10764 By default, X and Y are relative to text area of the selected window.
10765 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
10766 If optional fourth arg WHOLE is non-nil, X is relative to the left
10767 edge of the window.
10769 The return value is similar to a mouse click position:
10770 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10771 IMAGE (DX . DY) (WIDTH . HEIGHT))
10772 The `posn-' functions access elements of such lists. */)
10773 (Lisp_Object x, Lisp_Object y, Lisp_Object frame_or_window, Lisp_Object whole)
10775 CHECK_NUMBER (x);
10776 /* We allow X of -1, for the newline in a R2L line that overflowed
10777 into the left fringe. */
10778 if (XINT (x) != -1)
10779 CHECK_NATNUM (x);
10780 CHECK_NATNUM (y);
10782 if (NILP (frame_or_window))
10783 frame_or_window = selected_window;
10785 if (WINDOWP (frame_or_window))
10787 struct window *w = decode_live_window (frame_or_window);
10789 XSETINT (x, (XINT (x)
10790 + WINDOW_LEFT_EDGE_X (w)
10791 + (NILP (whole)
10792 ? window_box_left_offset (w, TEXT_AREA)
10793 : 0)));
10794 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
10795 frame_or_window = w->frame;
10798 CHECK_LIVE_FRAME (frame_or_window);
10800 return make_lispy_position (XFRAME (frame_or_window), x, y, 0);
10803 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
10804 doc: /* Return position information for buffer position POS in WINDOW.
10805 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10807 Return nil if POS is not visible in WINDOW. Otherwise,
10808 the return value is similar to that returned by `event-start' for
10809 a mouse click at the upper left corner of the glyph corresponding
10810 to POS:
10811 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10812 IMAGE (DX . DY) (WIDTH . HEIGHT))
10813 The `posn-' functions access elements of such lists. */)
10814 (Lisp_Object pos, Lisp_Object window)
10816 Lisp_Object tem;
10818 if (NILP (window))
10819 window = selected_window;
10821 tem = Fpos_visible_in_window_p (pos, window, Qt);
10822 if (!NILP (tem))
10824 Lisp_Object x = XCAR (tem);
10825 Lisp_Object y = XCAR (XCDR (tem));
10826 Lisp_Object aux_info = XCDR (XCDR (tem));
10827 int y_coord = XINT (y);
10829 /* Point invisible due to hscrolling? X can be -1 when a
10830 newline in a R2L line overflows into the left fringe. */
10831 if (XINT (x) < -1)
10832 return Qnil;
10833 if (!NILP (aux_info) && y_coord < 0)
10835 int rtop = XINT (XCAR (aux_info));
10837 y = make_number (y_coord + rtop);
10839 tem = Fposn_at_x_y (x, y, window, Qnil);
10842 return tem;
10845 /* Set up a new kboard object with reasonable initial values.
10846 TYPE is a window system for which this keyboard is used. */
10848 static void
10849 init_kboard (KBOARD *kb, Lisp_Object type)
10851 kset_overriding_terminal_local_map (kb, Qnil);
10852 kset_last_command (kb, Qnil);
10853 kset_real_last_command (kb, Qnil);
10854 kset_keyboard_translate_table (kb, Qnil);
10855 kset_last_repeatable_command (kb, Qnil);
10856 kset_prefix_arg (kb, Qnil);
10857 kset_last_prefix_arg (kb, Qnil);
10858 kset_kbd_queue (kb, Qnil);
10859 kb->kbd_queue_has_data = false;
10860 kb->immediate_echo = false;
10861 kset_echo_string (kb, Qnil);
10862 kset_echo_prompt (kb, Qnil);
10863 kb->kbd_macro_buffer = 0;
10864 kb->kbd_macro_bufsize = 0;
10865 kset_defining_kbd_macro (kb, Qnil);
10866 kset_last_kbd_macro (kb, Qnil);
10867 kb->reference_count = 0;
10868 kset_system_key_alist (kb, Qnil);
10869 kset_system_key_syms (kb, Qnil);
10870 kset_window_system (kb, type);
10871 kset_input_decode_map (kb, Fmake_sparse_keymap (Qnil));
10872 kset_local_function_key_map (kb, Fmake_sparse_keymap (Qnil));
10873 Fset_keymap_parent (KVAR (kb, Vlocal_function_key_map), Vfunction_key_map);
10874 kset_default_minibuffer_frame (kb, Qnil);
10877 /* Allocate and basically initialize keyboard
10878 object to use with window system TYPE. */
10880 KBOARD *
10881 allocate_kboard (Lisp_Object type)
10883 KBOARD *kb = xmalloc (sizeof *kb);
10885 init_kboard (kb, type);
10886 kb->next_kboard = all_kboards;
10887 all_kboards = kb;
10888 return kb;
10892 * Destroy the contents of a kboard object, but not the object itself.
10893 * We use this just before deleting it, or if we're going to initialize
10894 * it a second time.
10896 static void
10897 wipe_kboard (KBOARD *kb)
10899 xfree (kb->kbd_macro_buffer);
10902 /* Free KB and memory referenced from it. */
10904 void
10905 delete_kboard (KBOARD *kb)
10907 KBOARD **kbp;
10909 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10910 if (*kbp == NULL)
10911 emacs_abort ();
10912 *kbp = kb->next_kboard;
10914 /* Prevent a dangling reference to KB. */
10915 if (kb == current_kboard
10916 && FRAMEP (selected_frame)
10917 && FRAME_LIVE_P (XFRAME (selected_frame)))
10919 current_kboard = FRAME_KBOARD (XFRAME (selected_frame));
10920 single_kboard = false;
10921 if (current_kboard == kb)
10922 emacs_abort ();
10925 wipe_kboard (kb);
10926 xfree (kb);
10929 void
10930 init_keyboard (void)
10932 /* This is correct before outermost invocation of the editor loop. */
10933 command_loop_level = -1;
10934 quit_char = Ctl ('g');
10935 Vunread_command_events = Qnil;
10936 timer_idleness_start_time = invalid_timespec ();
10937 total_keys = 0;
10938 recent_keys_index = 0;
10939 kbd_fetch_ptr = kbd_buffer;
10940 kbd_store_ptr = kbd_buffer;
10941 do_mouse_tracking = Qnil;
10942 input_pending = false;
10943 interrupt_input_blocked = 0;
10944 pending_signals = false;
10946 /* This means that command_loop_1 won't try to select anything the first
10947 time through. */
10948 internal_last_event_frame = Qnil;
10949 Vlast_event_frame = internal_last_event_frame;
10951 current_kboard = initial_kboard;
10952 /* Re-initialize the keyboard again. */
10953 wipe_kboard (current_kboard);
10954 /* A value of nil for Vwindow_system normally means a tty, but we also use
10955 it for the initial terminal since there is no window system there. */
10956 init_kboard (current_kboard, Qnil);
10958 if (!noninteractive)
10960 /* Before multi-tty support, these handlers used to be installed
10961 only if the current session was a tty session. Now an Emacs
10962 session may have multiple display types, so we always handle
10963 SIGINT. There is special code in handle_interrupt_signal to exit
10964 Emacs on SIGINT when there are no termcap frames on the
10965 controlling terminal. */
10966 struct sigaction action;
10967 emacs_sigaction_init (&action, deliver_interrupt_signal);
10968 sigaction (SIGINT, &action, 0);
10969 #ifndef DOS_NT
10970 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10971 SIGQUIT and we can't tell which one it will give us. */
10972 sigaction (SIGQUIT, &action, 0);
10973 #endif /* not DOS_NT */
10975 #ifdef USABLE_SIGIO
10976 if (!noninteractive)
10978 struct sigaction action;
10979 emacs_sigaction_init (&action, deliver_input_available_signal);
10980 sigaction (SIGIO, &action, 0);
10982 #endif
10984 /* Use interrupt input by default, if it works and noninterrupt input
10985 has deficiencies. */
10987 #ifdef INTERRUPT_INPUT
10988 interrupt_input = 1;
10989 #else
10990 interrupt_input = 0;
10991 #endif
10993 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
10994 dribble = 0;
10996 if (keyboard_init_hook)
10997 (*keyboard_init_hook) ();
10999 #ifdef POLL_FOR_INPUT
11000 poll_timer = NULL;
11001 poll_suppress_count = 1;
11002 start_polling ();
11003 #endif
11006 /* This type's only use is in syms_of_keyboard, to put properties on the
11007 event header symbols. */
11008 struct event_head
11010 short var;
11011 short kind;
11014 static const struct event_head head_table[] = {
11015 {SYMBOL_INDEX (Qmouse_movement), SYMBOL_INDEX (Qmouse_movement)},
11016 {SYMBOL_INDEX (Qscroll_bar_movement), SYMBOL_INDEX (Qmouse_movement)},
11018 /* Some of the event heads. */
11019 {SYMBOL_INDEX (Qswitch_frame), SYMBOL_INDEX (Qswitch_frame)},
11021 {SYMBOL_INDEX (Qfocus_in), SYMBOL_INDEX (Qfocus_in)},
11022 {SYMBOL_INDEX (Qfocus_out), SYMBOL_INDEX (Qfocus_out)},
11023 {SYMBOL_INDEX (Qmove_frame), SYMBOL_INDEX (Qmove_frame)},
11024 {SYMBOL_INDEX (Qdelete_frame), SYMBOL_INDEX (Qdelete_frame)},
11025 {SYMBOL_INDEX (Qiconify_frame), SYMBOL_INDEX (Qiconify_frame)},
11026 {SYMBOL_INDEX (Qmake_frame_visible), SYMBOL_INDEX (Qmake_frame_visible)},
11027 /* `select-window' should be handled just like `switch-frame'
11028 in read_key_sequence. */
11029 {SYMBOL_INDEX (Qselect_window), SYMBOL_INDEX (Qswitch_frame)}
11032 void
11033 syms_of_keyboard (void)
11035 pending_funcalls = Qnil;
11036 staticpro (&pending_funcalls);
11038 Vlispy_mouse_stem = build_pure_c_string ("mouse");
11039 staticpro (&Vlispy_mouse_stem);
11041 regular_top_level_message = build_pure_c_string ("Back to top level");
11042 #ifdef HAVE_STACK_OVERFLOW_HANDLING
11043 recover_top_level_message
11044 = build_pure_c_string ("Re-entering top level after C stack overflow");
11045 #endif
11046 DEFVAR_LISP ("internal--top-level-message", Vinternal__top_level_message,
11047 doc: /* Message displayed by `normal-top-level'. */);
11048 Vinternal__top_level_message = regular_top_level_message;
11050 /* Tool-bars. */
11051 DEFSYM (QCimage, ":image");
11052 DEFSYM (Qhelp_echo, "help-echo");
11053 DEFSYM (QCrtl, ":rtl");
11055 staticpro (&item_properties);
11056 item_properties = Qnil;
11058 staticpro (&tool_bar_item_properties);
11059 tool_bar_item_properties = Qnil;
11060 staticpro (&tool_bar_items_vector);
11061 tool_bar_items_vector = Qnil;
11063 DEFSYM (Qtimer_event_handler, "timer-event-handler");
11065 /* Non-nil disable property on a command means do not execute it;
11066 call disabled-command-function's value instead. */
11067 DEFSYM (Qdisabled, "disabled");
11069 DEFSYM (Qundefined, "undefined");
11071 /* Hooks to run before and after each command. */
11072 DEFSYM (Qpre_command_hook, "pre-command-hook");
11073 DEFSYM (Qpost_command_hook, "post-command-hook");
11075 DEFSYM (Qundo_auto__add_boundary, "undo-auto--add-boundary");
11076 DEFSYM (Qundo_auto__undoably_changed_buffers,
11077 "undo-auto--undoably-changed-buffers");
11079 DEFSYM (Qdeferred_action_function, "deferred-action-function");
11080 DEFSYM (Qdelayed_warnings_hook, "delayed-warnings-hook");
11081 DEFSYM (Qfunction_key, "function-key");
11083 /* The values of Qevent_kind properties. */
11084 DEFSYM (Qmouse_click, "mouse-click");
11086 DEFSYM (Qdrag_n_drop, "drag-n-drop");
11087 DEFSYM (Qsave_session, "save-session");
11088 DEFSYM (Qconfig_changed_event, "config-changed-event");
11090 /* Menu and tool bar item parts. */
11091 DEFSYM (Qmenu_enable, "menu-enable");
11093 #ifdef HAVE_NTGUI
11094 DEFSYM (Qlanguage_change, "language-change");
11095 DEFSYM (Qend_session, "end-session");
11096 #endif
11098 #ifdef HAVE_DBUS
11099 DEFSYM (Qdbus_event, "dbus-event");
11100 #endif
11102 #ifdef HAVE_XWIDGETS
11103 DEFSYM (Qxwidget_event, "xwidget-event");
11104 #endif
11106 #ifdef USE_FILE_NOTIFY
11107 DEFSYM (Qfile_notify, "file-notify");
11108 #endif /* USE_FILE_NOTIFY */
11110 /* Menu and tool bar item parts. */
11111 DEFSYM (QCenable, ":enable");
11112 DEFSYM (QCvisible, ":visible");
11113 DEFSYM (QChelp, ":help");
11114 DEFSYM (QCfilter, ":filter");
11115 DEFSYM (QCbutton, ":button");
11116 DEFSYM (QCkeys, ":keys");
11117 DEFSYM (QCkey_sequence, ":key-sequence");
11119 /* Non-nil disable property on a command means
11120 do not execute it; call disabled-command-function's value instead. */
11121 DEFSYM (QCtoggle, ":toggle");
11122 DEFSYM (QCradio, ":radio");
11123 DEFSYM (QClabel, ":label");
11124 DEFSYM (QCvert_only, ":vert-only");
11126 /* Symbols to use for parts of windows. */
11127 DEFSYM (Qvertical_line, "vertical-line");
11128 DEFSYM (Qright_divider, "right-divider");
11129 DEFSYM (Qbottom_divider, "bottom-divider");
11131 DEFSYM (Qmouse_fixup_help_message, "mouse-fixup-help-message");
11133 DEFSYM (Qabove_handle, "above-handle");
11134 DEFSYM (Qhandle, "handle");
11135 DEFSYM (Qbelow_handle, "below-handle");
11136 DEFSYM (Qup, "up");
11137 DEFSYM (Qdown, "down");
11138 DEFSYM (Qtop, "top");
11139 DEFSYM (Qbottom, "bottom");
11140 DEFSYM (Qend_scroll, "end-scroll");
11141 DEFSYM (Qratio, "ratio");
11142 DEFSYM (Qbefore_handle, "before-handle");
11143 DEFSYM (Qhorizontal_handle, "horizontal-handle");
11144 DEFSYM (Qafter_handle, "after-handle");
11145 DEFSYM (Qleft, "left");
11146 DEFSYM (Qright, "right");
11147 DEFSYM (Qleftmost, "leftmost");
11148 DEFSYM (Qrightmost, "rightmost");
11150 /* Properties of event headers. */
11151 DEFSYM (Qevent_kind, "event-kind");
11152 DEFSYM (Qevent_symbol_elements, "event-symbol-elements");
11154 /* An event header symbol HEAD may have a property named
11155 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
11156 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
11157 mask of modifiers applied to it. If present, this is used to help
11158 speed up parse_modifiers. */
11159 DEFSYM (Qevent_symbol_element_mask, "event-symbol-element-mask");
11161 /* An unmodified event header BASE may have a property named
11162 Qmodifier_cache, which is an alist mapping modifier masks onto
11163 modified versions of BASE. If present, this helps speed up
11164 apply_modifiers. */
11165 DEFSYM (Qmodifier_cache, "modifier-cache");
11167 DEFSYM (Qrecompute_lucid_menubar, "recompute-lucid-menubar");
11168 DEFSYM (Qactivate_menubar_hook, "activate-menubar-hook");
11170 DEFSYM (Qpolling_period, "polling-period");
11172 DEFSYM (Qgui_set_selection, "gui-set-selection");
11174 /* The primary selection. */
11175 DEFSYM (QPRIMARY, "PRIMARY");
11177 DEFSYM (Qhandle_switch_frame, "handle-switch-frame");
11178 DEFSYM (Qhandle_select_window, "handle-select-window");
11180 DEFSYM (Qinput_method_exit_on_first_char, "input-method-exit-on-first-char");
11181 DEFSYM (Qinput_method_use_echo_area, "input-method-use-echo-area");
11183 DEFSYM (Qhelp_form_show, "help-form-show");
11185 DEFSYM (Qecho_keystrokes, "echo-keystrokes");
11187 Fset (Qinput_method_exit_on_first_char, Qnil);
11188 Fset (Qinput_method_use_echo_area, Qnil);
11190 /* Symbols for dragging internal borders. */
11191 DEFSYM (Qdrag_internal_border, "drag-internal-border");
11192 DEFSYM (Qleft_edge, "left-edge");
11193 DEFSYM (Qtop_left_corner, "top-left-corner");
11194 DEFSYM (Qtop_edge, "top-edge");
11195 DEFSYM (Qtop_right_corner, "top-right-corner");
11196 DEFSYM (Qright_edge, "right-edge");
11197 DEFSYM (Qbottom_right_corner, "bottom-right-corner");
11198 DEFSYM (Qbottom_edge, "bottom-edge");
11199 DEFSYM (Qbottom_left_corner, "bottom-left-corner");
11201 /* Symbols to head events. */
11202 DEFSYM (Qmouse_movement, "mouse-movement");
11203 DEFSYM (Qscroll_bar_movement, "scroll-bar-movement");
11204 DEFSYM (Qswitch_frame, "switch-frame");
11205 DEFSYM (Qfocus_in, "focus-in");
11206 DEFSYM (Qfocus_out, "focus-out");
11207 DEFSYM (Qmove_frame, "move-frame");
11208 DEFSYM (Qdelete_frame, "delete-frame");
11209 DEFSYM (Qiconify_frame, "iconify-frame");
11210 DEFSYM (Qmake_frame_visible, "make-frame-visible");
11211 DEFSYM (Qselect_window, "select-window");
11212 DEFSYM (Qselection_request, "selection-request");
11214 int i;
11216 for (i = 0; i < ARRAYELTS (head_table); i++)
11218 const struct event_head *p = &head_table[i];
11219 Lisp_Object var = builtin_lisp_symbol (p->var);
11220 Lisp_Object kind = builtin_lisp_symbol (p->kind);
11221 Fput (var, Qevent_kind, kind);
11222 Fput (var, Qevent_symbol_elements, list1 (var));
11226 button_down_location = Fmake_vector (make_number (5), Qnil);
11227 staticpro (&button_down_location);
11228 mouse_syms = Fmake_vector (make_number (5), Qnil);
11229 staticpro (&mouse_syms);
11230 wheel_syms = Fmake_vector (make_number (ARRAYELTS (lispy_wheel_names)),
11231 Qnil);
11232 staticpro (&wheel_syms);
11235 int i;
11236 int len = ARRAYELTS (modifier_names);
11238 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11239 for (i = 0; i < len; i++)
11240 if (modifier_names[i])
11241 ASET (modifier_symbols, i, intern_c_string (modifier_names[i]));
11242 staticpro (&modifier_symbols);
11245 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11246 staticpro (&recent_keys);
11248 this_command_keys = Fmake_vector (make_number (40), Qnil);
11249 staticpro (&this_command_keys);
11251 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11252 staticpro (&raw_keybuf);
11254 DEFSYM (Qcommand_execute, "command-execute");
11255 DEFSYM (Qinternal_echo_keystrokes_prefix, "internal-echo-keystrokes-prefix");
11257 accent_key_syms = Qnil;
11258 staticpro (&accent_key_syms);
11260 func_key_syms = Qnil;
11261 staticpro (&func_key_syms);
11263 drag_n_drop_syms = Qnil;
11264 staticpro (&drag_n_drop_syms);
11266 unread_switch_frame = Qnil;
11267 staticpro (&unread_switch_frame);
11269 internal_last_event_frame = Qnil;
11270 staticpro (&internal_last_event_frame);
11272 read_key_sequence_cmd = Qnil;
11273 staticpro (&read_key_sequence_cmd);
11274 read_key_sequence_remapped = Qnil;
11275 staticpro (&read_key_sequence_remapped);
11277 menu_bar_one_keymap_changed_items = Qnil;
11278 staticpro (&menu_bar_one_keymap_changed_items);
11280 menu_bar_items_vector = Qnil;
11281 staticpro (&menu_bar_items_vector);
11283 help_form_saved_window_configs = Qnil;
11284 staticpro (&help_form_saved_window_configs);
11286 defsubr (&Scurrent_idle_time);
11287 defsubr (&Sevent_symbol_parse_modifiers);
11288 defsubr (&Sevent_convert_list);
11289 defsubr (&Sread_key_sequence);
11290 defsubr (&Sread_key_sequence_vector);
11291 defsubr (&Srecursive_edit);
11292 defsubr (&Strack_mouse);
11293 defsubr (&Sinput_pending_p);
11294 defsubr (&Srecent_keys);
11295 defsubr (&Sthis_command_keys);
11296 defsubr (&Sthis_command_keys_vector);
11297 defsubr (&Sthis_single_command_keys);
11298 defsubr (&Sthis_single_command_raw_keys);
11299 defsubr (&Sset__this_command_keys);
11300 defsubr (&Sclear_this_command_keys);
11301 defsubr (&Ssuspend_emacs);
11302 defsubr (&Sabort_recursive_edit);
11303 defsubr (&Sexit_recursive_edit);
11304 defsubr (&Srecursion_depth);
11305 defsubr (&Scommand_error_default_function);
11306 defsubr (&Stop_level);
11307 defsubr (&Sdiscard_input);
11308 defsubr (&Sopen_dribble_file);
11309 defsubr (&Sset_input_interrupt_mode);
11310 defsubr (&Sset_output_flow_control);
11311 defsubr (&Sset_input_meta_mode);
11312 defsubr (&Sset_quit_char);
11313 defsubr (&Sset_input_mode);
11314 defsubr (&Scurrent_input_mode);
11315 defsubr (&Sposn_at_point);
11316 defsubr (&Sposn_at_x_y);
11318 DEFVAR_LISP ("last-command-event", last_command_event,
11319 doc: /* Last input event that was part of a command. */);
11321 DEFVAR_LISP ("last-nonmenu-event", last_nonmenu_event,
11322 doc: /* Last input event in a command, except for mouse menu events.
11323 Mouse menus give back keys that don't look like mouse events;
11324 this variable holds the actual mouse event that led to the menu,
11325 so that you can determine whether the command was run by mouse or not. */);
11327 DEFVAR_LISP ("last-input-event", last_input_event,
11328 doc: /* Last input event. */);
11330 DEFVAR_LISP ("unread-command-events", Vunread_command_events,
11331 doc: /* List of events to be read as the command input.
11332 These events are processed first, before actual keyboard input.
11333 Events read from this list are not normally added to `this-command-keys',
11334 as they will already have been added once as they were read for the first time.
11335 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11336 Vunread_command_events = Qnil;
11338 DEFVAR_LISP ("unread-post-input-method-events", Vunread_post_input_method_events,
11339 doc: /* List of events to be processed as input by input methods.
11340 These events are processed before `unread-command-events'
11341 and actual keyboard input, but are not given to `input-method-function'. */);
11342 Vunread_post_input_method_events = Qnil;
11344 DEFVAR_LISP ("unread-input-method-events", Vunread_input_method_events,
11345 doc: /* List of events to be processed as input by input methods.
11346 These events are processed after `unread-command-events', but
11347 before actual keyboard input.
11348 If there's an active input method, the events are given to
11349 `input-method-function'. */);
11350 Vunread_input_method_events = Qnil;
11352 DEFVAR_LISP ("meta-prefix-char", meta_prefix_char,
11353 doc: /* Meta-prefix character code.
11354 Meta-foo as command input turns into this character followed by foo. */);
11355 XSETINT (meta_prefix_char, 033);
11357 DEFVAR_KBOARD ("last-command", Vlast_command,
11358 doc: /* The last command executed.
11359 Normally a symbol with a function definition, but can be whatever was found
11360 in the keymap, or whatever the variable `this-command' was set to by that
11361 command.
11363 The value `mode-exit' is special; it means that the previous command
11364 read an event that told it to exit, and it did so and unread that event.
11365 In other words, the present command is the event that made the previous
11366 command exit.
11368 The value `kill-region' is special; it means that the previous command
11369 was a kill command.
11371 `last-command' has a separate binding for each terminal device.
11372 See Info node `(elisp)Multiple Terminals'. */);
11374 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11375 doc: /* Same as `last-command', but never altered by Lisp code.
11376 Taken from the previous value of `real-this-command'. */);
11378 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command,
11379 doc: /* Last command that may be repeated.
11380 The last command executed that was not bound to an input event.
11381 This is the command `repeat' will try to repeat.
11382 Taken from a previous value of `real-this-command'. */);
11384 DEFVAR_LISP ("this-command", Vthis_command,
11385 doc: /* The command now being executed.
11386 The command can set this variable; whatever is put here
11387 will be in `last-command' during the following command. */);
11388 Vthis_command = Qnil;
11390 DEFVAR_LISP ("real-this-command", Vreal_this_command,
11391 doc: /* This is like `this-command', except that commands should never modify it. */);
11392 Vreal_this_command = Qnil;
11394 DEFVAR_LISP ("this-command-keys-shift-translated",
11395 Vthis_command_keys_shift_translated,
11396 doc: /* Non-nil if the key sequence activating this command was shift-translated.
11397 Shift-translation occurs when there is no binding for the key sequence
11398 as entered, but a binding was found by changing an upper-case letter
11399 to lower-case, or a shifted function key to an unshifted one. */);
11400 Vthis_command_keys_shift_translated = Qnil;
11402 DEFVAR_LISP ("this-original-command", Vthis_original_command,
11403 doc: /* The command bound to the current key sequence before remapping.
11404 It equals `this-command' if the original command was not remapped through
11405 any of the active keymaps. Otherwise, the value of `this-command' is the
11406 result of looking up the original command in the active keymaps. */);
11407 Vthis_original_command = Qnil;
11409 DEFVAR_INT ("auto-save-interval", auto_save_interval,
11410 doc: /* Number of input events between auto-saves.
11411 Zero means disable autosaving due to number of characters typed. */);
11412 auto_save_interval = 300;
11414 DEFVAR_LISP ("auto-save-timeout", Vauto_save_timeout,
11415 doc: /* Number of seconds idle time before auto-save.
11416 Zero or nil means disable auto-saving due to idleness.
11417 After auto-saving due to this many seconds of idle time,
11418 Emacs also does a garbage collection if that seems to be warranted. */);
11419 XSETFASTINT (Vauto_save_timeout, 30);
11421 DEFVAR_LISP ("echo-keystrokes", Vecho_keystrokes,
11422 doc: /* Nonzero means echo unfinished commands after this many seconds of pause.
11423 The value may be integer or floating point.
11424 If the value is zero, don't echo at all. */);
11425 Vecho_keystrokes = make_number (1);
11427 DEFVAR_INT ("polling-period", polling_period,
11428 doc: /* Interval between polling for input during Lisp execution.
11429 The reason for polling is to make C-g work to stop a running program.
11430 Polling is needed only when using X windows and SIGIO does not work.
11431 Polling is automatically disabled in all other cases. */);
11432 polling_period = 2;
11434 DEFVAR_LISP ("double-click-time", Vdouble_click_time,
11435 doc: /* Maximum time between mouse clicks to make a double-click.
11436 Measured in milliseconds. The value nil means disable double-click
11437 recognition; t means double-clicks have no time limit and are detected
11438 by position only. */);
11439 Vdouble_click_time = make_number (500);
11441 DEFVAR_INT ("double-click-fuzz", double_click_fuzz,
11442 doc: /* Maximum mouse movement between clicks to make a double-click.
11443 On window-system frames, value is the number of pixels the mouse may have
11444 moved horizontally or vertically between two clicks to make a double-click.
11445 On non window-system frames, value is interpreted in units of 1/8 characters
11446 instead of pixels.
11448 This variable is also the threshold for motion of the mouse
11449 to count as a drag. */);
11450 double_click_fuzz = 3;
11452 DEFVAR_INT ("num-input-keys", num_input_keys,
11453 doc: /* Number of complete key sequences read as input so far.
11454 This includes key sequences read from keyboard macros.
11455 The number is effectively the number of interactive command invocations. */);
11456 num_input_keys = 0;
11458 DEFVAR_INT ("num-nonmacro-input-events", num_nonmacro_input_events,
11459 doc: /* Number of input events read from the keyboard so far.
11460 This does not include events generated by keyboard macros. */);
11461 num_nonmacro_input_events = 0;
11463 DEFVAR_LISP ("last-event-frame", Vlast_event_frame,
11464 doc: /* The frame in which the most recently read event occurred.
11465 If the last event came from a keyboard macro, this is set to `macro'. */);
11466 Vlast_event_frame = Qnil;
11468 /* This variable is set up in sysdep.c. */
11469 DEFVAR_LISP ("tty-erase-char", Vtty_erase_char,
11470 doc: /* The ERASE character as set by the user with stty. */);
11472 DEFVAR_LISP ("help-char", Vhelp_char,
11473 doc: /* Character to recognize as meaning Help.
11474 When it is read, do `(eval help-form)', and display result if it's a string.
11475 If the value of `help-form' is nil, this char can be read normally. */);
11476 XSETINT (Vhelp_char, Ctl ('H'));
11478 DEFVAR_LISP ("help-event-list", Vhelp_event_list,
11479 doc: /* List of input events to recognize as meaning Help.
11480 These work just like the value of `help-char' (see that). */);
11481 Vhelp_event_list = Qnil;
11483 DEFVAR_LISP ("help-form", Vhelp_form,
11484 doc: /* Form to execute when character `help-char' is read.
11485 If the form returns a string, that string is displayed.
11486 If `help-form' is nil, the help char is not recognized. */);
11487 Vhelp_form = Qnil;
11489 DEFVAR_LISP ("prefix-help-command", Vprefix_help_command,
11490 doc: /* Command to run when `help-char' character follows a prefix key.
11491 This command is used only when there is no actual binding
11492 for that character after that prefix key. */);
11493 Vprefix_help_command = Qnil;
11495 DEFVAR_LISP ("top-level", Vtop_level,
11496 doc: /* Form to evaluate when Emacs starts up.
11497 Useful to set before you dump a modified Emacs. */);
11498 Vtop_level = Qnil;
11499 XSYMBOL (Qtop_level)->declared_special = false;
11501 DEFVAR_KBOARD ("keyboard-translate-table", Vkeyboard_translate_table,
11502 doc: /* Translate table for local keyboard input, or nil.
11503 If non-nil, the value should be a char-table. Each character read
11504 from the keyboard is looked up in this char-table. If the value found
11505 there is non-nil, then it is used instead of the actual input character.
11507 The value can also be a string or vector, but this is considered obsolete.
11508 If it is a string or vector of length N, character codes N and up are left
11509 untranslated. In a vector, an element which is nil means "no translation".
11511 This is applied to the characters supplied to input methods, not their
11512 output. See also `translation-table-for-input'.
11514 This variable has a separate binding for each terminal.
11515 See Info node `(elisp)Multiple Terminals'. */);
11517 DEFVAR_BOOL ("cannot-suspend", cannot_suspend,
11518 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11519 \(Even if the operating system has support for stopping a process.) */);
11520 cannot_suspend = false;
11522 DEFVAR_BOOL ("menu-prompting", menu_prompting,
11523 doc: /* Non-nil means prompt with menus when appropriate.
11524 This is done when reading from a keymap that has a prompt string,
11525 for elements that have prompt strings.
11526 The menu is displayed on the screen
11527 if X menus were enabled at configuration
11528 time and the previous event was a mouse click prefix key.
11529 Otherwise, menu prompting uses the echo area. */);
11530 menu_prompting = true;
11532 DEFVAR_LISP ("menu-prompt-more-char", menu_prompt_more_char,
11533 doc: /* Character to see next line of menu prompt.
11534 Type this character while in a menu prompt to rotate around the lines of it. */);
11535 XSETINT (menu_prompt_more_char, ' ');
11537 DEFVAR_INT ("extra-keyboard-modifiers", extra_keyboard_modifiers,
11538 doc: /* A mask of additional modifier keys to use with every keyboard character.
11539 Emacs applies the modifiers of the character stored here to each keyboard
11540 character it reads. For example, after evaluating the expression
11541 (setq extra-keyboard-modifiers ?\\C-x)
11542 all input characters will have the control modifier applied to them.
11544 Note that the character ?\\C-@, equivalent to the integer zero, does
11545 not count as a control character; rather, it counts as a character
11546 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11547 cancels any modification. */);
11548 extra_keyboard_modifiers = 0;
11550 DEFSYM (Qdeactivate_mark, "deactivate-mark");
11551 DEFVAR_LISP ("deactivate-mark", Vdeactivate_mark,
11552 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11553 The command loop sets this to nil before each command,
11554 and tests the value when the command returns.
11555 Buffer modification stores t in this variable. */);
11556 Vdeactivate_mark = Qnil;
11557 Fmake_variable_buffer_local (Qdeactivate_mark);
11559 DEFVAR_LISP ("pre-command-hook", Vpre_command_hook,
11560 doc: /* Normal hook run before each command is executed.
11561 If an unhandled error happens in running this hook,
11562 the function in which the error occurred is unconditionally removed, since
11563 otherwise the error might happen repeatedly and make Emacs nonfunctional.
11565 See also `post-command-hook'. */);
11566 Vpre_command_hook = Qnil;
11568 DEFVAR_LISP ("post-command-hook", Vpost_command_hook,
11569 doc: /* Normal hook run after each command is executed.
11570 If an unhandled error happens in running this hook,
11571 the function in which the error occurred is unconditionally removed, since
11572 otherwise the error might happen repeatedly and make Emacs nonfunctional.
11574 It is a bad idea to use this hook for expensive processing. If
11575 unavoidable, wrap your code in `(while-no-input (redisplay) CODE)' to
11576 avoid making Emacs unresponsive while the user types.
11578 See also `pre-command-hook'. */);
11579 Vpost_command_hook = Qnil;
11581 #if 0
11582 DEFVAR_LISP ("echo-area-clear-hook", ...,
11583 doc: /* Normal hook run when clearing the echo area. */);
11584 #endif
11585 DEFSYM (Qecho_area_clear_hook, "echo-area-clear-hook");
11586 Fset (Qecho_area_clear_hook, Qnil);
11588 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", Vlucid_menu_bar_dirty_flag,
11589 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11590 Vlucid_menu_bar_dirty_flag = Qnil;
11592 DEFVAR_LISP ("menu-bar-final-items", Vmenu_bar_final_items,
11593 doc: /* List of menu bar items to move to the end of the menu bar.
11594 The elements of the list are event types that may have menu bar bindings. */);
11595 Vmenu_bar_final_items = Qnil;
11597 DEFVAR_LISP ("tool-bar-separator-image-expression", Vtool_bar_separator_image_expression,
11598 doc: /* Expression evaluating to the image spec for a tool-bar separator.
11599 This is used internally by graphical displays that do not render
11600 tool-bar separators natively. Otherwise it is unused (e.g. on GTK). */);
11601 Vtool_bar_separator_image_expression = Qnil;
11603 DEFVAR_KBOARD ("overriding-terminal-local-map",
11604 Voverriding_terminal_local_map,
11605 doc: /* Per-terminal keymap that takes precedence over all other keymaps.
11606 This variable is intended to let commands such as `universal-argument'
11607 set up a different keymap for reading the next command.
11609 `overriding-terminal-local-map' has a separate binding for each
11610 terminal device. See Info node `(elisp)Multiple Terminals'. */);
11612 DEFVAR_LISP ("overriding-local-map", Voverriding_local_map,
11613 doc: /* Keymap that replaces (overrides) local keymaps.
11614 If this variable is non-nil, Emacs looks up key bindings in this
11615 keymap INSTEAD OF the keymap char property, minor mode maps, and the
11616 buffer's local map. Hence, the only active keymaps would be
11617 `overriding-terminal-local-map', this keymap, and `global-keymap', in
11618 order of precedence. */);
11619 Voverriding_local_map = Qnil;
11621 DEFVAR_LISP ("overriding-local-map-menu-flag", Voverriding_local_map_menu_flag,
11622 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11623 Otherwise, the menu bar continues to reflect the buffer's local map
11624 and the minor mode maps regardless of `overriding-local-map'. */);
11625 Voverriding_local_map_menu_flag = Qnil;
11627 DEFVAR_LISP ("special-event-map", Vspecial_event_map,
11628 doc: /* Keymap defining bindings for special events to execute at low level. */);
11629 Vspecial_event_map = list1 (Qkeymap);
11631 DEFVAR_LISP ("track-mouse", do_mouse_tracking,
11632 doc: /* Non-nil means generate motion events for mouse motion. */);
11634 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11635 doc: /* Alist of system-specific X windows key symbols.
11636 Each element should have the form (N . SYMBOL) where N is the
11637 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11638 and SYMBOL is its name.
11640 `system-key-alist' has a separate binding for each terminal device.
11641 See Info node `(elisp)Multiple Terminals'. */);
11643 DEFVAR_KBOARD ("local-function-key-map", Vlocal_function_key_map,
11644 doc: /* Keymap that translates key sequences to key sequences during input.
11645 This is used mainly for mapping key sequences into some preferred
11646 key events (symbols).
11648 The `read-key-sequence' function replaces any subsequence bound by
11649 `local-function-key-map' with its binding. More precisely, when the
11650 active keymaps have no binding for the current key sequence but
11651 `local-function-key-map' binds a suffix of the sequence to a vector or
11652 string, `read-key-sequence' replaces the matching suffix with its
11653 binding, and continues with the new sequence.
11655 If the binding is a function, it is called with one argument (the prompt)
11656 and its return value (a key sequence) is used.
11658 The events that come from bindings in `local-function-key-map' are not
11659 themselves looked up in `local-function-key-map'.
11661 For example, suppose `local-function-key-map' binds `ESC O P' to [f1].
11662 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing
11663 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix key,
11664 typing `ESC O P x' would return [f1 x].
11666 `local-function-key-map' has a separate binding for each terminal
11667 device. See Info node `(elisp)Multiple Terminals'. If you need to
11668 define a binding on all terminals, change `function-key-map'
11669 instead. Initially, `local-function-key-map' is an empty keymap that
11670 has `function-key-map' as its parent on all terminal devices. */);
11672 DEFVAR_KBOARD ("input-decode-map", Vinput_decode_map,
11673 doc: /* Keymap that decodes input escape sequences.
11674 This is used mainly for mapping ASCII function key sequences into
11675 real Emacs function key events (symbols).
11677 The `read-key-sequence' function replaces any subsequence bound by
11678 `input-decode-map' with its binding. Contrary to `function-key-map',
11679 this map applies its rebinding regardless of the presence of an ordinary
11680 binding. So it is more like `key-translation-map' except that it applies
11681 before `function-key-map' rather than after.
11683 If the binding is a function, it is called with one argument (the prompt)
11684 and its return value (a key sequence) is used.
11686 The events that come from bindings in `input-decode-map' are not
11687 themselves looked up in `input-decode-map'. */);
11689 DEFVAR_LISP ("function-key-map", Vfunction_key_map,
11690 doc: /* The parent keymap of all `local-function-key-map' instances.
11691 Function key definitions that apply to all terminal devices should go
11692 here. If a mapping is defined in both the current
11693 `local-function-key-map' binding and this variable, then the local
11694 definition will take precedence. */);
11695 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
11697 DEFVAR_LISP ("key-translation-map", Vkey_translation_map,
11698 doc: /* Keymap of key translations that can override keymaps.
11699 This keymap works like `input-decode-map', but comes after `function-key-map'.
11700 Another difference is that it is global rather than terminal-local. */);
11701 Vkey_translation_map = Fmake_sparse_keymap (Qnil);
11703 DEFVAR_LISP ("deferred-action-list", Vdeferred_action_list,
11704 doc: /* List of deferred actions to be performed at a later time.
11705 The precise format isn't relevant here; we just check whether it is nil. */);
11706 Vdeferred_action_list = Qnil;
11708 DEFVAR_LISP ("deferred-action-function", Vdeferred_action_function,
11709 doc: /* Function to call to handle deferred actions, after each command.
11710 This function is called with no arguments after each command
11711 whenever `deferred-action-list' is non-nil. */);
11712 Vdeferred_action_function = Qnil;
11714 DEFVAR_LISP ("delayed-warnings-list", Vdelayed_warnings_list,
11715 doc: /* List of warnings to be displayed after this command.
11716 Each element must be a list (TYPE MESSAGE [LEVEL [BUFFER-NAME]]),
11717 as per the args of `display-warning' (which see).
11718 If this variable is non-nil, `delayed-warnings-hook' will be run
11719 immediately after running `post-command-hook'. */);
11720 Vdelayed_warnings_list = Qnil;
11722 DEFVAR_LISP ("timer-list", Vtimer_list,
11723 doc: /* List of active absolute time timers in order of increasing time. */);
11724 Vtimer_list = Qnil;
11726 DEFVAR_LISP ("timer-idle-list", Vtimer_idle_list,
11727 doc: /* List of active idle-time timers in order of increasing time. */);
11728 Vtimer_idle_list = Qnil;
11730 DEFVAR_LISP ("input-method-function", Vinput_method_function,
11731 doc: /* If non-nil, the function that implements the current input method.
11732 It's called with one argument, a printing character that was just read.
11733 \(That means a character with code 040...0176.)
11734 Typically this function uses `read-event' to read additional events.
11735 When it does so, it should first bind `input-method-function' to nil
11736 so it will not be called recursively.
11738 The function should return a list of zero or more events
11739 to be used as input. If it wants to put back some events
11740 to be reconsidered, separately, by the input method,
11741 it can add them to the beginning of `unread-command-events'.
11743 The input method function can find in `input-method-previous-message'
11744 the previous echo area message.
11746 The input method function should refer to the variables
11747 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11748 for guidance on what to do. */);
11749 Vinput_method_function = Qlist;
11751 DEFVAR_LISP ("input-method-previous-message",
11752 Vinput_method_previous_message,
11753 doc: /* When `input-method-function' is called, hold the previous echo area message.
11754 This variable exists because `read-event' clears the echo area
11755 before running the input method. It is nil if there was no message. */);
11756 Vinput_method_previous_message = Qnil;
11758 DEFVAR_LISP ("show-help-function", Vshow_help_function,
11759 doc: /* If non-nil, the function that implements the display of help.
11760 It's called with one argument, the help string to display. */);
11761 Vshow_help_function = Qnil;
11763 DEFVAR_LISP ("disable-point-adjustment", Vdisable_point_adjustment,
11764 doc: /* If non-nil, suppress point adjustment after executing a command.
11766 After a command is executed, if point moved into a region that has
11767 special properties (e.g. composition, display), Emacs adjusts point to
11768 the boundary of the region. But when a command leaves this variable at
11769 a non-nil value (e.g., with a setq), this point adjustment is suppressed.
11771 This variable is set to nil before reading a command, and is checked
11772 just after executing the command. */);
11773 Vdisable_point_adjustment = Qnil;
11775 DEFVAR_LISP ("global-disable-point-adjustment",
11776 Vglobal_disable_point_adjustment,
11777 doc: /* If non-nil, always suppress point adjustments.
11779 The default value is nil, in which case point adjustments are
11780 suppressed only after special commands that leave
11781 `disable-point-adjustment' (which see) at a non-nil value. */);
11782 Vglobal_disable_point_adjustment = Qnil;
11784 DEFVAR_LISP ("minibuffer-message-timeout", Vminibuffer_message_timeout,
11785 doc: /* How long to display an echo-area message when the minibuffer is active.
11786 If the value is a number, it should be specified in seconds.
11787 If the value is not a number, such messages never time out. */);
11788 Vminibuffer_message_timeout = make_number (2);
11790 DEFVAR_LISP ("throw-on-input", Vthrow_on_input,
11791 doc: /* If non-nil, any keyboard input throws to this symbol.
11792 The value of that variable is passed to `quit-flag' and later causes a
11793 peculiar kind of quitting. */);
11794 Vthrow_on_input = Qnil;
11796 DEFVAR_LISP ("command-error-function", Vcommand_error_function,
11797 doc: /* Function to output error messages.
11798 Called with three arguments:
11799 - the error data, a list of the form (SIGNALED-CONDITION . SIGNAL-DATA)
11800 such as what `condition-case' would bind its variable to,
11801 - the context (a string which normally goes at the start of the message),
11802 - the Lisp function within which the error was signaled. */);
11803 Vcommand_error_function = intern ("command-error-default-function");
11805 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
11806 Venable_disabled_menus_and_buttons,
11807 doc: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
11809 Help functions bind this to allow help on disabled menu items
11810 and tool-bar buttons. */);
11811 Venable_disabled_menus_and_buttons = Qnil;
11813 DEFVAR_LISP ("select-active-regions",
11814 Vselect_active_regions,
11815 doc: /* If non-nil, an active region automatically sets the primary selection.
11816 If the value is `only', only temporarily active regions (usually made
11817 by mouse-dragging or shift-selection) set the window selection.
11819 This takes effect only when Transient Mark mode is enabled. */);
11820 Vselect_active_regions = Qt;
11822 DEFVAR_LISP ("saved-region-selection",
11823 Vsaved_region_selection,
11824 doc: /* Contents of active region prior to buffer modification.
11825 If `select-active-regions' is non-nil, Emacs sets this to the
11826 text in the region before modifying the buffer. The next call to
11827 the function `deactivate-mark' uses this to set the window selection. */);
11828 Vsaved_region_selection = Qnil;
11830 DEFVAR_LISP ("selection-inhibit-update-commands",
11831 Vselection_inhibit_update_commands,
11832 doc: /* List of commands which should not update the selection.
11833 Normally, if `select-active-regions' is non-nil and the mark remains
11834 active after a command (i.e. the mark was not deactivated), the Emacs
11835 command loop sets the selection to the text in the region. However,
11836 if the command is in this list, the selection is not updated. */);
11837 Vselection_inhibit_update_commands
11838 = list2 (Qhandle_switch_frame, Qhandle_select_window);
11840 DEFVAR_LISP ("debug-on-event",
11841 Vdebug_on_event,
11842 doc: /* Enter debugger on this event. When Emacs
11843 receives the special event specified by this variable, it will try to
11844 break into the debugger as soon as possible instead of processing the
11845 event normally through `special-event-map'.
11847 Currently, the only supported values for this
11848 variable are `sigusr1' and `sigusr2'. */);
11849 Vdebug_on_event = intern_c_string ("sigusr2");
11851 DEFVAR_BOOL ("attempt-stack-overflow-recovery",
11852 attempt_stack_overflow_recovery,
11853 doc: /* If non-nil, attempt to recover from C stack
11854 overflow. This recovery is unsafe and may lead to deadlocks or data
11855 corruption, but it usually works and may preserve modified buffers
11856 that would otherwise be lost. If nil, treat stack overflow like any
11857 other kind of crash. */);
11858 attempt_stack_overflow_recovery = true;
11860 DEFVAR_BOOL ("attempt-orderly-shutdown-on-fatal-signal",
11861 attempt_orderly_shutdown_on_fatal_signal,
11862 doc: /* If non-nil, attempt to perform an orderly
11863 shutdown when Emacs receives a fatal signal (e.g., a crash).
11864 This cleanup is unsafe and may lead to deadlocks or data corruption,
11865 but it usually works and may preserve modified buffers that would
11866 otherwise be lost. If nil, crash immediately in response to fatal
11867 signals. */);
11868 attempt_orderly_shutdown_on_fatal_signal = true;
11870 /* Create the initial keyboard. Qt means 'unset'. */
11871 initial_kboard = allocate_kboard (Qt);
11873 DEFVAR_LISP ("while-no-input-ignore-events",
11874 Vwhile_no_input_ignore_events,
11875 doc: /* Ignored events from while-no-input. */);
11876 Vwhile_no_input_ignore_events = Qnil;
11879 void
11880 keys_of_keyboard (void)
11882 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11883 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11884 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11885 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11886 initial_define_key (meta_map, 'x', "execute-extended-command");
11888 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11889 "handle-delete-frame");
11890 #ifdef HAVE_NTGUI
11891 initial_define_lispy_key (Vspecial_event_map, "end-session",
11892 "kill-emacs");
11893 #endif
11894 initial_define_lispy_key (Vspecial_event_map, "ns-put-working-text",
11895 "ns-put-working-text");
11896 initial_define_lispy_key (Vspecial_event_map, "ns-unput-working-text",
11897 "ns-unput-working-text");
11898 /* Here we used to use `ignore-event' which would simple set prefix-arg to
11899 current-prefix-arg, as is done in `handle-switch-frame'.
11900 But `handle-switch-frame is not run from the special-map.
11901 Commands from that map are run in a special way that automatically
11902 preserves the prefix-arg. Restoring the prefix arg here is not just
11903 redundant but harmful:
11904 - C-u C-x v =
11905 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
11906 - after the first prompt, the exit-minibuffer-hook is run which may
11907 iconify a frame and thus push a `iconify-frame' event.
11908 - after running exit-minibuffer-hook, current-prefix-arg is
11909 restored to the non-nil value it had before the prompt.
11910 - we enter the second prompt.
11911 current-prefix-arg is non-nil, prefix-arg is nil.
11912 - before running the first real event, we run the special iconify-frame
11913 event, but we pass the `special' arg to command-execute so
11914 current-prefix-arg and prefix-arg are left untouched.
11915 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
11916 - the next key event will have a spuriously non-nil current-prefix-arg. */
11917 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11918 "ignore");
11919 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11920 "ignore");
11921 /* Handling it at such a low-level causes read_key_sequence to get
11922 * confused because it doesn't realize that the current_buffer was
11923 * changed by read_char.
11925 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11926 * "handle-select-window"); */
11927 initial_define_lispy_key (Vspecial_event_map, "save-session",
11928 "handle-save-session");
11930 #ifdef HAVE_DBUS
11931 /* Define a special event which is raised for dbus callback
11932 functions. */
11933 initial_define_lispy_key (Vspecial_event_map, "dbus-event",
11934 "dbus-handle-event");
11935 #endif
11937 #ifdef USE_FILE_NOTIFY
11938 /* Define a special event which is raised for notification callback
11939 functions. */
11940 initial_define_lispy_key (Vspecial_event_map, "file-notify",
11941 "file-notify-handle-event");
11942 #endif /* USE_FILE_NOTIFY */
11944 initial_define_lispy_key (Vspecial_event_map, "config-changed-event",
11945 "ignore");
11946 #if defined (WINDOWSNT)
11947 initial_define_lispy_key (Vspecial_event_map, "language-change",
11948 "ignore");
11949 #endif
11950 initial_define_lispy_key (Vspecial_event_map, "focus-in",
11951 "handle-focus-in");
11952 initial_define_lispy_key (Vspecial_event_map, "focus-out",
11953 "handle-focus-out");
11954 initial_define_lispy_key (Vspecial_event_map, "move-frame",
11955 "handle-move-frame");
11958 /* Mark the pointers in the kboard objects.
11959 Called by Fgarbage_collect. */
11960 void
11961 mark_kboards (void)
11963 KBOARD *kb;
11964 Lisp_Object *p;
11965 for (kb = all_kboards; kb; kb = kb->next_kboard)
11967 if (kb->kbd_macro_buffer)
11968 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11969 mark_object (*p);
11970 mark_object (KVAR (kb, Voverriding_terminal_local_map));
11971 mark_object (KVAR (kb, Vlast_command));
11972 mark_object (KVAR (kb, Vreal_last_command));
11973 mark_object (KVAR (kb, Vkeyboard_translate_table));
11974 mark_object (KVAR (kb, Vlast_repeatable_command));
11975 mark_object (KVAR (kb, Vprefix_arg));
11976 mark_object (KVAR (kb, Vlast_prefix_arg));
11977 mark_object (KVAR (kb, kbd_queue));
11978 mark_object (KVAR (kb, defining_kbd_macro));
11979 mark_object (KVAR (kb, Vlast_kbd_macro));
11980 mark_object (KVAR (kb, Vsystem_key_alist));
11981 mark_object (KVAR (kb, system_key_syms));
11982 mark_object (KVAR (kb, Vwindow_system));
11983 mark_object (KVAR (kb, Vinput_decode_map));
11984 mark_object (KVAR (kb, Vlocal_function_key_map));
11985 mark_object (KVAR (kb, Vdefault_minibuffer_frame));
11986 mark_object (KVAR (kb, echo_string));
11987 mark_object (KVAR (kb, echo_prompt));
11990 union buffered_input_event *event;
11991 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11993 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11994 event = kbd_buffer;
11995 /* These two special event types has no Lisp_Objects to mark. */
11996 if (event->kind != SELECTION_REQUEST_EVENT
11997 && event->kind != SELECTION_CLEAR_EVENT)
11999 mark_object (event->ie.x);
12000 mark_object (event->ie.y);
12001 mark_object (event->ie.frame_or_window);
12002 mark_object (event->ie.arg);