]> code.delx.au - gnu-emacs/blob - src/keyboard.c
-
[gnu-emacs] / src / keyboard.c
1 /* Keyboard and mouse input; editor command loop.
2
3 Copyright (C) 1985-1989, 1993-1997, 1999-2016 Free Software Foundation,
4 Inc.
5
6 This file is part of GNU Emacs.
7
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
11 (at your option) any later version.
12
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.
17
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/>. */
20
21 #include <config.h>
22
23 #include <sys/stat.h>
24
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 "systime.h"
43 #include "atimer.h"
44 #include "process.h"
45 #include <errno.h>
46
47 #ifdef HAVE_PTHREAD
48 #include <pthread.h>
49 #endif
50 #ifdef MSDOS
51 #include "msdos.h"
52 #include <time.h>
53 #else /* not MSDOS */
54 #include <sys/ioctl.h>
55 #endif /* not MSDOS */
56
57 #if defined USABLE_FIONREAD && defined USG5_4
58 # include <sys/filio.h>
59 #endif
60
61 #include "syssignal.h"
62
63 #include <sys/types.h>
64 #include <unistd.h>
65 #include <fcntl.h>
66
67 #include <ignore-value.h>
68
69 #ifdef HAVE_WINDOW_SYSTEM
70 #include TERM_HEADER
71 #endif /* HAVE_WINDOW_SYSTEM */
72
73 /* Variables for blockinput.h: */
74
75 /* Positive if interrupt input is blocked right now. */
76 volatile int interrupt_input_blocked;
77
78 /* True means an input interrupt or alarm signal has arrived.
79 The QUIT macro checks this. */
80 volatile bool pending_signals;
81
82 #define KBD_BUFFER_SIZE 4096
83
84 KBOARD *initial_kboard;
85 KBOARD *current_kboard;
86 static KBOARD *all_kboards;
87
88 /* True in the single-kboard state, false in the any-kboard state. */
89 static bool single_kboard;
90
91 #define NUM_RECENT_KEYS (300)
92
93 /* Index for storing next element into recent_keys. */
94 static int recent_keys_index;
95
96 /* Total number of elements stored into recent_keys. */
97 static int total_keys;
98
99 /* This vector holds the last NUM_RECENT_KEYS keystrokes. */
100 static Lisp_Object recent_keys;
101
102 /* Vector holding the key sequence that invoked the current command.
103 It is reused for each command, and it may be longer than the current
104 sequence; this_command_key_count indicates how many elements
105 actually mean something.
106 It's easier to staticpro a single Lisp_Object than an array. */
107 Lisp_Object this_command_keys;
108 ptrdiff_t this_command_key_count;
109
110 /* This vector is used as a buffer to record the events that were actually read
111 by read_key_sequence. */
112 static Lisp_Object raw_keybuf;
113 static int raw_keybuf_count;
114
115 #define GROW_RAW_KEYBUF \
116 if (raw_keybuf_count == ASIZE (raw_keybuf)) \
117 raw_keybuf = larger_vector (raw_keybuf, 1, -1)
118
119 /* Number of elements of this_command_keys
120 that precede this key sequence. */
121 static ptrdiff_t this_single_command_key_start;
122
123 #ifdef HAVE_STACK_OVERFLOW_HANDLING
124
125 /* For longjmp to recover from C stack overflow. */
126 sigjmp_buf return_to_command_loop;
127
128 /* Message displayed by Vtop_level when recovering from C stack overflow. */
129 static Lisp_Object recover_top_level_message;
130
131 #endif /* HAVE_STACK_OVERFLOW_HANDLING */
132
133 /* Message normally displayed by Vtop_level. */
134 static Lisp_Object regular_top_level_message;
135
136 /* For longjmp to where kbd input is being done. */
137
138 static sys_jmp_buf getcjmp;
139
140 /* True while doing kbd input. */
141 bool waiting_for_input;
142
143 /* True while displaying for echoing. Delays C-g throwing. */
144
145 static bool echoing;
146
147 /* Non-null means we can start echoing at the next input pause even
148 though there is something in the echo area. */
149
150 static struct kboard *ok_to_echo_at_next_pause;
151
152 /* The kboard last echoing, or null for none. Reset to 0 in
153 cancel_echoing. If non-null, and a current echo area message
154 exists, and echo_message_buffer is eq to the current message
155 buffer, we know that the message comes from echo_kboard. */
156
157 struct kboard *echo_kboard;
158
159 /* The buffer used for echoing. Set in echo_now, reset in
160 cancel_echoing. */
161
162 Lisp_Object echo_message_buffer;
163
164 /* True means C-g should cause immediate error-signal. */
165 bool immediate_quit;
166
167 /* Character that causes a quit. Normally C-g.
168
169 If we are running on an ordinary terminal, this must be an ordinary
170 ASCII char, since we want to make it our interrupt character.
171
172 If we are not running on an ordinary terminal, it still needs to be
173 an ordinary ASCII char. This character needs to be recognized in
174 the input interrupt handler. At this point, the keystroke is
175 represented as a struct input_event, while the desired quit
176 character is specified as a lispy event. The mapping from struct
177 input_events to lispy events cannot run in an interrupt handler,
178 and the reverse mapping is difficult for anything but ASCII
179 keystrokes.
180
181 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
182 ASCII character. */
183 int quit_char;
184
185 /* Current depth in recursive edits. */
186 EMACS_INT command_loop_level;
187
188 /* If not Qnil, this is a switch-frame event which we decided to put
189 off until the end of a key sequence. This should be read as the
190 next command input, after any unread_command_events.
191
192 read_key_sequence uses this to delay switch-frame events until the
193 end of the key sequence; Fread_char uses it to put off switch-frame
194 events until a non-ASCII event is acceptable as input. */
195 Lisp_Object unread_switch_frame;
196
197 /* Last size recorded for a current buffer which is not a minibuffer. */
198 static ptrdiff_t last_non_minibuf_size;
199
200 uintmax_t num_input_events;
201 ptrdiff_t point_before_last_command_or_undo;
202 struct buffer *buffer_before_last_command_or_undo;
203
204 /* Value of num_nonmacro_input_events as of last auto save. */
205
206 static EMACS_INT last_auto_save;
207
208 /* The value of point when the last command was started. */
209 static ptrdiff_t last_point_position;
210
211 /* The frame in which the last input event occurred, or Qmacro if the
212 last event came from a macro. We use this to determine when to
213 generate switch-frame events. This may be cleared by functions
214 like Fselect_frame, to make sure that a switch-frame event is
215 generated by the next character.
216
217 FIXME: This is modified by a signal handler so it should be volatile.
218 It's exported to Lisp, though, so it can't simply be marked
219 'volatile' here. */
220 Lisp_Object internal_last_event_frame;
221
222 /* `read_key_sequence' stores here the command definition of the
223 key sequence that it reads. */
224 static Lisp_Object read_key_sequence_cmd;
225 static Lisp_Object read_key_sequence_remapped;
226
227 /* File in which we write all commands we read. */
228 static FILE *dribble;
229
230 /* True if input is available. */
231 bool input_pending;
232
233 /* True if more input was available last time we read an event.
234
235 Since redisplay can take a significant amount of time and is not
236 indispensable to perform the user's commands, when input arrives
237 "too fast", Emacs skips redisplay. More specifically, if the next
238 command has already been input when we finish the previous command,
239 we skip the intermediate redisplay.
240
241 This is useful to try and make sure Emacs keeps up with fast input
242 rates, such as auto-repeating keys. But in some cases, this proves
243 too conservative: we may end up disabling redisplay for the whole
244 duration of a key repetition, even though we could afford to
245 redisplay every once in a while.
246
247 So we "sample" the input_pending flag before running a command and
248 use *that* value after running the command to decide whether to
249 skip redisplay or not. This way, we only skip redisplay if we
250 really can't keep up with the repeat rate.
251
252 This only makes a difference if the next input arrives while running the
253 command, which is very unlikely if the command is executed quickly.
254 IOW this tends to avoid skipping redisplay after a long running command
255 (which is a case where skipping redisplay is not very useful since the
256 redisplay time is small compared to the time it took to run the command).
257
258 A typical use case is when scrolling. Scrolling time can be split into:
259 - Time to do jit-lock on the newly displayed portion of buffer.
260 - Time to run the actual scroll command.
261 - Time to perform the redisplay.
262 Jit-lock can happen either during the command or during the redisplay.
263 In the most painful cases, the jit-lock time is the one that dominates.
264 Also jit-lock can be tweaked (via jit-lock-defer) to delay its job, at the
265 cost of temporary inaccuracy in display and scrolling.
266 So without input_was_pending, what typically happens is the following:
267 - when the command starts, there's no pending input (yet).
268 - the scroll command triggers jit-lock.
269 - during the long jit-lock time the next input arrives.
270 - at the end of the command, we check input_pending and hence decide to
271 skip redisplay.
272 - we read the next input and start over.
273 End result: all the hard work of jit-locking is "wasted" since redisplay
274 doesn't actually happens (at least not before the input rate slows down).
275 With input_was_pending redisplay is still skipped if Emacs can't keep up
276 with the input rate, but if it can keep up just enough that there's no
277 input_pending when we begin the command, then redisplay is not skipped
278 which results in better feedback to the user. */
279 static bool input_was_pending;
280
281 /* Circular buffer for pre-read keyboard input. */
282
283 static union buffered_input_event kbd_buffer[KBD_BUFFER_SIZE];
284
285 /* Pointer to next available character in kbd_buffer.
286 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
287 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
288 next available char is in kbd_buffer[0]. */
289 static union buffered_input_event *kbd_fetch_ptr;
290
291 /* Pointer to next place to store character in kbd_buffer. This
292 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
293 character should go in kbd_buffer[0]. */
294 static union buffered_input_event *volatile kbd_store_ptr;
295
296 /* The above pair of variables forms a "queue empty" flag. When we
297 enqueue a non-hook event, we increment kbd_store_ptr. When we
298 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
299 there is input available if the two pointers are not equal.
300
301 Why not just have a flag set and cleared by the enqueuing and
302 dequeuing functions? Such a flag could be screwed up by interrupts
303 at inopportune times. */
304
305 static void recursive_edit_unwind (Lisp_Object buffer);
306 static Lisp_Object command_loop (void);
307
308 static void echo_now (void);
309 static ptrdiff_t echo_length (void);
310
311 /* Incremented whenever a timer is run. */
312 unsigned timers_run;
313
314 /* Address (if not 0) of struct timespec to zero out if a SIGIO interrupt
315 happens. */
316 struct timespec *input_available_clear_time;
317
318 /* True means use SIGIO interrupts; false means use CBREAK mode.
319 Default is true if INTERRUPT_INPUT is defined. */
320 bool interrupt_input;
321
322 /* Nonzero while interrupts are temporarily deferred during redisplay. */
323 bool interrupts_deferred;
324
325 /* The time when Emacs started being idle. */
326
327 static struct timespec timer_idleness_start_time;
328
329 /* After Emacs stops being idle, this saves the last value
330 of timer_idleness_start_time from when it was idle. */
331
332 static struct timespec timer_last_idleness_start_time;
333
334 \f
335 /* Global variable declarations. */
336
337 /* Flags for readable_events. */
338 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
339 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
340 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
341
342 /* Function for init_keyboard to call with no args (if nonzero). */
343 static void (*keyboard_init_hook) (void);
344
345 static bool get_input_pending (int);
346 static bool readable_events (int);
347 static Lisp_Object read_char_x_menu_prompt (Lisp_Object,
348 Lisp_Object, bool *);
349 static Lisp_Object read_char_minibuf_menu_prompt (int, Lisp_Object);
350 static Lisp_Object make_lispy_event (struct input_event *);
351 static Lisp_Object make_lispy_movement (struct frame *, Lisp_Object,
352 enum scroll_bar_part,
353 Lisp_Object, Lisp_Object,
354 Time);
355 static Lisp_Object modify_event_symbol (ptrdiff_t, int, Lisp_Object,
356 Lisp_Object, const char *const *,
357 Lisp_Object *, ptrdiff_t);
358 static Lisp_Object make_lispy_switch_frame (Lisp_Object);
359 static Lisp_Object make_lispy_focus_in (Lisp_Object);
360 #ifdef HAVE_WINDOW_SYSTEM
361 static Lisp_Object make_lispy_focus_out (Lisp_Object);
362 #endif /* HAVE_WINDOW_SYSTEM */
363 static bool help_char_p (Lisp_Object);
364 static void save_getcjmp (sys_jmp_buf);
365 static void restore_getcjmp (sys_jmp_buf);
366 static Lisp_Object apply_modifiers (int, Lisp_Object);
367 static void restore_kboard_configuration (int);
368 static void handle_interrupt (bool);
369 static _Noreturn void quit_throw_to_read_char (bool);
370 static void timer_start_idle (void);
371 static void timer_stop_idle (void);
372 static void timer_resume_idle (void);
373 static void deliver_user_signal (int);
374 static char *find_user_signal_name (int);
375 static void store_user_signal_events (void);
376
377 /* These setters are used only in this file, so they can be private. */
378 static void
379 kset_echo_string (struct kboard *kb, Lisp_Object val)
380 {
381 kb->echo_string_ = val;
382 }
383 static void
384 kset_echo_prompt (struct kboard *kb, Lisp_Object val)
385 {
386 kb->echo_prompt_ = val;
387 }
388 static void
389 kset_kbd_queue (struct kboard *kb, Lisp_Object val)
390 {
391 kb->kbd_queue_ = val;
392 }
393 static void
394 kset_keyboard_translate_table (struct kboard *kb, Lisp_Object val)
395 {
396 kb->Vkeyboard_translate_table_ = val;
397 }
398 static void
399 kset_last_prefix_arg (struct kboard *kb, Lisp_Object val)
400 {
401 kb->Vlast_prefix_arg_ = val;
402 }
403 static void
404 kset_last_repeatable_command (struct kboard *kb, Lisp_Object val)
405 {
406 kb->Vlast_repeatable_command_ = val;
407 }
408 static void
409 kset_local_function_key_map (struct kboard *kb, Lisp_Object val)
410 {
411 kb->Vlocal_function_key_map_ = val;
412 }
413 static void
414 kset_overriding_terminal_local_map (struct kboard *kb, Lisp_Object val)
415 {
416 kb->Voverriding_terminal_local_map_ = val;
417 }
418 static void
419 kset_real_last_command (struct kboard *kb, Lisp_Object val)
420 {
421 kb->Vreal_last_command_ = val;
422 }
423 static void
424 kset_system_key_syms (struct kboard *kb, Lisp_Object val)
425 {
426 kb->system_key_syms_ = val;
427 }
428
429 \f
430 /* Add C to the echo string, without echoing it immediately. C can be
431 a character, which is pretty-printed, or a symbol, whose name is
432 printed. */
433
434 static void
435 echo_add_key (Lisp_Object c)
436 {
437 char initbuf[KEY_DESCRIPTION_SIZE + 100];
438 ptrdiff_t size = sizeof initbuf;
439 char *buffer = initbuf;
440 char *ptr = buffer;
441 Lisp_Object echo_string = KVAR (current_kboard, echo_string);
442 USE_SAFE_ALLOCA;
443
444 if (STRINGP (echo_string) && SCHARS (echo_string) > 0)
445 /* Add a space at the end as a separator between keys. */
446 ptr++[0] = ' ';
447
448 /* If someone has passed us a composite event, use its head symbol. */
449 c = EVENT_HEAD (c);
450
451 if (INTEGERP (c))
452 ptr = push_key_description (XINT (c), ptr);
453 else if (SYMBOLP (c))
454 {
455 Lisp_Object name = SYMBOL_NAME (c);
456 ptrdiff_t nbytes = SBYTES (name);
457
458 if (size - (ptr - buffer) < nbytes)
459 {
460 ptrdiff_t offset = ptr - buffer;
461 size = max (2 * size, size + nbytes);
462 buffer = SAFE_ALLOCA (size);
463 ptr = buffer + offset;
464 }
465
466 ptr += copy_text (SDATA (name), (unsigned char *) ptr, nbytes,
467 STRING_MULTIBYTE (name), 1);
468 }
469
470 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
471 && help_char_p (c))
472 {
473 static const char text[] = " (Type ? for further options)";
474 int len = sizeof text - 1;
475
476 if (size - (ptr - buffer) < len)
477 {
478 ptrdiff_t offset = ptr - buffer;
479 size += len;
480 buffer = SAFE_ALLOCA (size);
481 ptr = buffer + offset;
482 }
483
484 memcpy (ptr, text, len);
485 ptr += len;
486 }
487
488 kset_echo_string
489 (current_kboard,
490 concat2 (echo_string, make_string (buffer, ptr - buffer)));
491 SAFE_FREE ();
492 }
493
494 /* Temporarily add a dash to the end of the echo string if it's not
495 empty, so that it serves as a mini-prompt for the very next
496 character. */
497
498 static void
499 echo_dash (void)
500 {
501 /* Do nothing if not echoing at all. */
502 if (NILP (KVAR (current_kboard, echo_string)))
503 return;
504
505 if (!current_kboard->immediate_echo
506 && SCHARS (KVAR (current_kboard, echo_string)) == 0)
507 return;
508
509 /* Do nothing if we just printed a prompt. */
510 if (STRINGP (KVAR (current_kboard, echo_prompt))
511 && (SCHARS (KVAR (current_kboard, echo_prompt))
512 == SCHARS (KVAR (current_kboard, echo_string))))
513 return;
514
515 /* Do nothing if we have already put a dash at the end. */
516 if (SCHARS (KVAR (current_kboard, echo_string)) > 1)
517 {
518 Lisp_Object last_char, prev_char, idx;
519
520 idx = make_number (SCHARS (KVAR (current_kboard, echo_string)) - 2);
521 prev_char = Faref (KVAR (current_kboard, echo_string), idx);
522
523 idx = make_number (SCHARS (KVAR (current_kboard, echo_string)) - 1);
524 last_char = Faref (KVAR (current_kboard, echo_string), idx);
525
526 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
527 return;
528 }
529
530 /* Put a dash at the end of the buffer temporarily,
531 but make it go away when the next character is added. */
532 AUTO_STRING (dash, "-");
533 kset_echo_string (current_kboard,
534 concat2 (KVAR (current_kboard, echo_string), dash));
535 echo_now ();
536 }
537
538 static void
539 echo_update (void)
540 {
541 if (current_kboard->immediate_echo)
542 {
543 ptrdiff_t i;
544 Lisp_Object prompt = KVAR (current_kboard, echo_prompt);
545 Lisp_Object prefix = call0 (Qinternal_echo_keystrokes_prefix);
546 kset_echo_string (current_kboard,
547 NILP (prompt) ? prefix
548 : NILP (prefix) ? prompt
549 : concat2 (prompt, prefix));
550
551 for (i = 0; i < this_command_key_count; i++)
552 {
553 Lisp_Object c;
554
555 c = AREF (this_command_keys, i);
556 if (! (EVENT_HAS_PARAMETERS (c)
557 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
558 echo_add_key (c);
559 }
560
561 echo_now ();
562 }
563 }
564
565 /* Display the current echo string, and begin echoing if not already
566 doing so. */
567
568 static void
569 echo_now (void)
570 {
571 if (!current_kboard->immediate_echo)
572 {
573 current_kboard->immediate_echo = true;
574 echo_update ();
575 /* Put a dash at the end to invite the user to type more. */
576 echo_dash ();
577 }
578
579 echoing = true;
580 /* FIXME: Use call (Qmessage) so it can be advised (e.g. emacspeak). */
581 message3_nolog (KVAR (current_kboard, echo_string));
582 echoing = false;
583
584 /* Record in what buffer we echoed, and from which kboard. */
585 echo_message_buffer = echo_area_buffer[0];
586 echo_kboard = current_kboard;
587
588 if (waiting_for_input && !NILP (Vquit_flag))
589 quit_throw_to_read_char (0);
590 }
591
592 /* Turn off echoing, for the start of a new command. */
593
594 void
595 cancel_echoing (void)
596 {
597 current_kboard->immediate_echo = false;
598 kset_echo_prompt (current_kboard, Qnil);
599 kset_echo_string (current_kboard, Qnil);
600 ok_to_echo_at_next_pause = NULL;
601 echo_kboard = NULL;
602 echo_message_buffer = Qnil;
603 }
604
605 /* Return the length of the current echo string. */
606
607 static ptrdiff_t
608 echo_length (void)
609 {
610 return (STRINGP (KVAR (current_kboard, echo_string))
611 ? SCHARS (KVAR (current_kboard, echo_string))
612 : 0);
613 }
614
615 /* Truncate the current echo message to its first LEN chars.
616 This and echo_char get used by read_key_sequence when the user
617 switches frames while entering a key sequence. */
618
619 static void
620 echo_truncate (ptrdiff_t nchars)
621 {
622 if (STRINGP (KVAR (current_kboard, echo_string)))
623 kset_echo_string (current_kboard,
624 Fsubstring (KVAR (current_kboard, echo_string),
625 make_number (0), make_number (nchars)));
626 truncate_echo_area (nchars);
627 }
628
629 \f
630 /* Functions for manipulating this_command_keys. */
631 static void
632 add_command_key (Lisp_Object key)
633 {
634 if (this_command_key_count >= ASIZE (this_command_keys))
635 this_command_keys = larger_vector (this_command_keys, 1, -1);
636
637 ASET (this_command_keys, this_command_key_count, key);
638 ++this_command_key_count;
639 }
640
641 \f
642 Lisp_Object
643 recursive_edit_1 (void)
644 {
645 ptrdiff_t count = SPECPDL_INDEX ();
646 Lisp_Object val;
647
648 if (command_loop_level > 0)
649 {
650 specbind (Qstandard_output, Qt);
651 specbind (Qstandard_input, Qt);
652 }
653
654 #ifdef HAVE_WINDOW_SYSTEM
655 /* The command loop has started an hourglass timer, so we have to
656 cancel it here, otherwise it will fire because the recursive edit
657 can take some time. Do not check for display_hourglass_p here,
658 because it could already be nil. */
659 cancel_hourglass ();
660 #endif
661
662 /* This function may have been called from a debugger called from
663 within redisplay, for instance by Edebugging a function called
664 from fontification-functions. We want to allow redisplay in
665 the debugging session.
666
667 The recursive edit is left with a `(throw exit ...)'. The `exit'
668 tag is not caught anywhere in redisplay, i.e. when we leave the
669 recursive edit, the original redisplay leading to the recursive
670 edit will be unwound. The outcome should therefore be safe. */
671 specbind (Qinhibit_redisplay, Qnil);
672 redisplaying_p = 0;
673
674 val = command_loop ();
675 if (EQ (val, Qt))
676 Fsignal (Qquit, Qnil);
677 /* Handle throw from read_minibuf when using minibuffer
678 while it's active but we're in another window. */
679 if (STRINGP (val))
680 xsignal1 (Qerror, val);
681
682 return unbind_to (count, Qnil);
683 }
684
685 /* When an auto-save happens, record the "time", and don't do again soon. */
686
687 void
688 record_auto_save (void)
689 {
690 last_auto_save = num_nonmacro_input_events;
691 }
692
693 /* Make an auto save happen as soon as possible at command level. */
694
695 #ifdef SIGDANGER
696 void
697 force_auto_save_soon (void)
698 {
699 last_auto_save = - auto_save_interval - 1;
700
701 record_asynch_buffer_change ();
702 }
703 #endif
704 \f
705 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
706 doc: /* Invoke the editor command loop recursively.
707 To get out of the recursive edit, a command can throw to `exit' -- for
708 instance (throw \\='exit nil).
709 If you throw a value other than t, `recursive-edit' returns normally
710 to the function that called it. Throwing a t value causes
711 `recursive-edit' to quit, so that control returns to the command loop
712 one level up.
713
714 This function is called by the editor initialization to begin editing. */)
715 (void)
716 {
717 ptrdiff_t count = SPECPDL_INDEX ();
718 Lisp_Object buffer;
719
720 /* If we enter while input is blocked, don't lock up here.
721 This may happen through the debugger during redisplay. */
722 if (input_blocked_p ())
723 return Qnil;
724
725 if (command_loop_level >= 0
726 && current_buffer != XBUFFER (XWINDOW (selected_window)->contents))
727 buffer = Fcurrent_buffer ();
728 else
729 buffer = Qnil;
730
731 /* Don't do anything interesting between the increment and the
732 record_unwind_protect! Otherwise, we could get distracted and
733 never decrement the counter again. */
734 command_loop_level++;
735 update_mode_lines = 17;
736 record_unwind_protect (recursive_edit_unwind, buffer);
737
738 /* If we leave recursive_edit_1 below with a `throw' for instance,
739 like it is done in the splash screen display, we have to
740 make sure that we restore single_kboard as command_loop_1
741 would have done if it were left normally. */
742 if (command_loop_level > 0)
743 temporarily_switch_to_single_kboard (SELECTED_FRAME ());
744
745 recursive_edit_1 ();
746 return unbind_to (count, Qnil);
747 }
748
749 void
750 recursive_edit_unwind (Lisp_Object buffer)
751 {
752 if (BUFFERP (buffer))
753 Fset_buffer (buffer);
754
755 command_loop_level--;
756 update_mode_lines = 18;
757 }
758
759 \f
760 #if 0 /* These two functions are now replaced with
761 temporarily_switch_to_single_kboard. */
762 static void
763 any_kboard_state ()
764 {
765 #if 0 /* Theory: if there's anything in Vunread_command_events,
766 it will right away be read by read_key_sequence,
767 and then if we do switch KBOARDS, it will go into the side
768 queue then. So we don't need to do anything special here -- rms. */
769 if (CONSP (Vunread_command_events))
770 {
771 current_kboard->kbd_queue
772 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
773 current_kboard->kbd_queue_has_data = true;
774 }
775 Vunread_command_events = Qnil;
776 #endif
777 single_kboard = false;
778 }
779
780 /* Switch to the single-kboard state, making current_kboard
781 the only KBOARD from which further input is accepted. */
782
783 void
784 single_kboard_state ()
785 {
786 single_kboard = true;
787 }
788 #endif
789
790 /* If we're in single_kboard state for kboard KBOARD,
791 get out of it. */
792
793 void
794 not_single_kboard_state (KBOARD *kboard)
795 {
796 if (kboard == current_kboard)
797 single_kboard = false;
798 }
799
800 /* Maintain a stack of kboards, so other parts of Emacs
801 can switch temporarily to the kboard of a given frame
802 and then revert to the previous status. */
803
804 struct kboard_stack
805 {
806 KBOARD *kboard;
807 struct kboard_stack *next;
808 };
809
810 static struct kboard_stack *kboard_stack;
811
812 void
813 push_kboard (struct kboard *k)
814 {
815 struct kboard_stack *p = xmalloc (sizeof *p);
816
817 p->next = kboard_stack;
818 p->kboard = current_kboard;
819 kboard_stack = p;
820
821 current_kboard = k;
822 }
823
824 void
825 pop_kboard (void)
826 {
827 struct terminal *t;
828 struct kboard_stack *p = kboard_stack;
829 bool found = false;
830 for (t = terminal_list; t; t = t->next_terminal)
831 {
832 if (t->kboard == p->kboard)
833 {
834 current_kboard = p->kboard;
835 found = true;
836 break;
837 }
838 }
839 if (!found)
840 {
841 /* The terminal we remembered has been deleted. */
842 current_kboard = FRAME_KBOARD (SELECTED_FRAME ());
843 single_kboard = false;
844 }
845 kboard_stack = p->next;
846 xfree (p);
847 }
848
849 /* Switch to single_kboard mode, making current_kboard the only KBOARD
850 from which further input is accepted. If F is non-nil, set its
851 KBOARD as the current keyboard.
852
853 This function uses record_unwind_protect_int to return to the previous
854 state later.
855
856 If Emacs is already in single_kboard mode, and F's keyboard is
857 locked, then this function will throw an error. */
858
859 void
860 temporarily_switch_to_single_kboard (struct frame *f)
861 {
862 bool was_locked = single_kboard;
863 if (was_locked)
864 {
865 if (f != NULL && FRAME_KBOARD (f) != current_kboard)
866 /* We can not switch keyboards while in single_kboard mode.
867 In rare cases, Lisp code may call `recursive-edit' (or
868 `read-minibuffer' or `y-or-n-p') after it switched to a
869 locked frame. For example, this is likely to happen
870 when server.el connects to a new terminal while Emacs is in
871 single_kboard mode. It is best to throw an error instead
872 of presenting the user with a frozen screen. */
873 error ("Terminal %d is locked, cannot read from it",
874 FRAME_TERMINAL (f)->id);
875 else
876 /* This call is unnecessary, but helps
877 `restore_kboard_configuration' discover if somebody changed
878 `current_kboard' behind our back. */
879 push_kboard (current_kboard);
880 }
881 else if (f != NULL)
882 current_kboard = FRAME_KBOARD (f);
883 single_kboard = true;
884 record_unwind_protect_int (restore_kboard_configuration, was_locked);
885 }
886
887 #if 0 /* This function is not needed anymore. */
888 void
889 record_single_kboard_state ()
890 {
891 if (single_kboard)
892 push_kboard (current_kboard);
893 record_unwind_protect_int (restore_kboard_configuration, single_kboard);
894 }
895 #endif
896
897 static void
898 restore_kboard_configuration (int was_locked)
899 {
900 single_kboard = was_locked;
901 if (was_locked)
902 {
903 struct kboard *prev = current_kboard;
904 pop_kboard ();
905 /* The pop should not change the kboard. */
906 if (single_kboard && current_kboard != prev)
907 emacs_abort ();
908 }
909 }
910
911 \f
912 /* Handle errors that are not handled at inner levels
913 by printing an error message and returning to the editor command loop. */
914
915 static Lisp_Object
916 cmd_error (Lisp_Object data)
917 {
918 Lisp_Object old_level, old_length;
919 char macroerror[sizeof "After..kbd macro iterations: "
920 + INT_STRLEN_BOUND (EMACS_INT)];
921
922 #ifdef HAVE_WINDOW_SYSTEM
923 if (display_hourglass_p)
924 cancel_hourglass ();
925 #endif
926
927 if (!NILP (executing_kbd_macro))
928 {
929 if (executing_kbd_macro_iterations == 1)
930 sprintf (macroerror, "After 1 kbd macro iteration: ");
931 else
932 sprintf (macroerror, "After %"pI"d kbd macro iterations: ",
933 executing_kbd_macro_iterations);
934 }
935 else
936 *macroerror = 0;
937
938 Vstandard_output = Qt;
939 Vstandard_input = Qt;
940 Vexecuting_kbd_macro = Qnil;
941 executing_kbd_macro = Qnil;
942 kset_prefix_arg (current_kboard, Qnil);
943 kset_last_prefix_arg (current_kboard, Qnil);
944 cancel_echoing ();
945
946 /* Avoid unquittable loop if data contains a circular list. */
947 old_level = Vprint_level;
948 old_length = Vprint_length;
949 XSETFASTINT (Vprint_level, 10);
950 XSETFASTINT (Vprint_length, 10);
951 cmd_error_internal (data, macroerror);
952 Vprint_level = old_level;
953 Vprint_length = old_length;
954
955 Vquit_flag = Qnil;
956 Vinhibit_quit = Qnil;
957
958 return make_number (0);
959 }
960
961 /* Take actions on handling an error. DATA is the data that describes
962 the error.
963
964 CONTEXT is a C-string containing ASCII characters only which
965 describes the context in which the error happened. If we need to
966 generalize CONTEXT to allow multibyte characters, make it a Lisp
967 string. */
968
969 void
970 cmd_error_internal (Lisp_Object data, const char *context)
971 {
972 /* The immediate context is not interesting for Quits,
973 since they are asynchronous. */
974 if (EQ (XCAR (data), Qquit))
975 Vsignaling_function = Qnil;
976
977 Vquit_flag = Qnil;
978 Vinhibit_quit = Qt;
979
980 /* Use user's specified output function if any. */
981 if (!NILP (Vcommand_error_function))
982 call3 (Vcommand_error_function, data,
983 context ? build_string (context) : empty_unibyte_string,
984 Vsignaling_function);
985
986 Vsignaling_function = Qnil;
987 }
988
989 DEFUN ("command-error-default-function", Fcommand_error_default_function,
990 Scommand_error_default_function, 3, 3, 0,
991 doc: /* Produce default output for unhandled error message.
992 Default value of `command-error-function'. */)
993 (Lisp_Object data, Lisp_Object context, Lisp_Object signal)
994 {
995 struct frame *sf = SELECTED_FRAME ();
996
997 CHECK_STRING (context);
998
999 /* If the window system or terminal frame hasn't been initialized
1000 yet, or we're not interactive, write the message to stderr and exit. */
1001 if (!sf->glyphs_initialized_p
1002 /* The initial frame is a special non-displaying frame. It
1003 will be current in daemon mode when there are no frames
1004 to display, and in non-daemon mode before the real frame
1005 has finished initializing. If an error is thrown in the
1006 latter case while creating the frame, then the frame
1007 will never be displayed, so the safest thing to do is
1008 write to stderr and quit. In daemon mode, there are
1009 many other potential errors that do not prevent frames
1010 from being created, so continuing as normal is better in
1011 that case. */
1012 || (!IS_DAEMON && FRAME_INITIAL_P (sf))
1013 || noninteractive)
1014 {
1015 print_error_message (data, Qexternal_debugging_output,
1016 SSDATA (context), signal);
1017 Fterpri (Qexternal_debugging_output, Qnil);
1018 Fkill_emacs (make_number (-1));
1019 }
1020 else
1021 {
1022 clear_message (1, 0);
1023 Fdiscard_input ();
1024 message_log_maybe_newline ();
1025 bitch_at_user ();
1026
1027 print_error_message (data, Qt, SSDATA (context), signal);
1028 }
1029 return Qnil;
1030 }
1031
1032 static Lisp_Object command_loop_2 (Lisp_Object);
1033 static Lisp_Object top_level_1 (Lisp_Object);
1034
1035 /* Entry to editor-command-loop.
1036 This level has the catches for exiting/returning to editor command loop.
1037 It returns nil to exit recursive edit, t to abort it. */
1038
1039 Lisp_Object
1040 command_loop (void)
1041 {
1042 #ifdef HAVE_STACK_OVERFLOW_HANDLING
1043 /* At least on GNU/Linux, saving signal mask is important here. */
1044 if (sigsetjmp (return_to_command_loop, 1) != 0)
1045 {
1046 /* Comes here from handle_sigsegv (see sysdep.c) and
1047 stack_overflow_handler (see w32fns.c). */
1048 #ifdef WINDOWSNT
1049 w32_reset_stack_overflow_guard ();
1050 #endif
1051 init_eval ();
1052 Vinternal__top_level_message = recover_top_level_message;
1053 }
1054 else
1055 Vinternal__top_level_message = regular_top_level_message;
1056 #endif /* HAVE_STACK_OVERFLOW_HANDLING */
1057 if (command_loop_level > 0 || minibuf_level > 0)
1058 {
1059 Lisp_Object val;
1060 val = internal_catch (Qexit, command_loop_2, Qnil);
1061 executing_kbd_macro = Qnil;
1062 return val;
1063 }
1064 else
1065 while (1)
1066 {
1067 internal_catch (Qtop_level, top_level_1, Qnil);
1068 internal_catch (Qtop_level, command_loop_2, Qnil);
1069 executing_kbd_macro = Qnil;
1070
1071 /* End of file in -batch run causes exit here. */
1072 if (noninteractive)
1073 Fkill_emacs (Qt);
1074 }
1075 }
1076
1077 /* Here we catch errors in execution of commands within the
1078 editing loop, and reenter the editing loop.
1079 When there is an error, cmd_error runs and returns a non-nil
1080 value to us. A value of nil means that command_loop_1 itself
1081 returned due to end of file (or end of kbd macro). */
1082
1083 static Lisp_Object
1084 command_loop_2 (Lisp_Object ignore)
1085 {
1086 register Lisp_Object val;
1087
1088 do
1089 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1090 while (!NILP (val));
1091
1092 return Qnil;
1093 }
1094
1095 static Lisp_Object
1096 top_level_2 (void)
1097 {
1098 return Feval (Vtop_level, Qnil);
1099 }
1100
1101 static Lisp_Object
1102 top_level_1 (Lisp_Object ignore)
1103 {
1104 /* On entry to the outer level, run the startup file. */
1105 if (!NILP (Vtop_level))
1106 internal_condition_case (top_level_2, Qerror, cmd_error);
1107 else if (!NILP (Vpurify_flag))
1108 message1 ("Bare impure Emacs (standard Lisp code not loaded)");
1109 else
1110 message1 ("Bare Emacs (standard Lisp code not loaded)");
1111 return Qnil;
1112 }
1113
1114 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1115 doc: /* Exit all recursive editing levels.
1116 This also exits all active minibuffers. */
1117 attributes: noreturn)
1118 (void)
1119 {
1120 #ifdef HAVE_WINDOW_SYSTEM
1121 if (display_hourglass_p)
1122 cancel_hourglass ();
1123 #endif
1124
1125 /* Unblock input if we enter with input blocked. This may happen if
1126 redisplay traps e.g. during tool-bar update with input blocked. */
1127 totally_unblock_input ();
1128
1129 Fthrow (Qtop_level, Qnil);
1130 }
1131
1132 static _Noreturn void
1133 user_error (const char *msg)
1134 {
1135 xsignal1 (Quser_error, build_string (msg));
1136 }
1137
1138 /* _Noreturn will be added to prototype by make-docfile. */
1139 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1140 doc: /* Exit from the innermost recursive edit or minibuffer. */
1141 attributes: noreturn)
1142 (void)
1143 {
1144 if (command_loop_level > 0 || minibuf_level > 0)
1145 Fthrow (Qexit, Qnil);
1146
1147 user_error ("No recursive edit is in progress");
1148 }
1149
1150 /* _Noreturn will be added to prototype by make-docfile. */
1151 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1152 doc: /* Abort the command that requested this recursive edit or minibuffer input. */
1153 attributes: noreturn)
1154 (void)
1155 {
1156 if (command_loop_level > 0 || minibuf_level > 0)
1157 Fthrow (Qexit, Qt);
1158
1159 user_error ("No recursive edit is in progress");
1160 }
1161 \f
1162 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1163 of this function. */
1164
1165 static void
1166 tracking_off (Lisp_Object old_value)
1167 {
1168 do_mouse_tracking = old_value;
1169 if (NILP (old_value))
1170 {
1171 /* Redisplay may have been preempted because there was input
1172 available, and it assumes it will be called again after the
1173 input has been processed. If the only input available was
1174 the sort that we have just disabled, then we need to call
1175 redisplay. */
1176 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
1177 {
1178 redisplay_preserve_echo_area (6);
1179 get_input_pending (READABLE_EVENTS_DO_TIMERS_NOW);
1180 }
1181 }
1182 }
1183
1184 DEFUN ("internal--track-mouse", Ftrack_mouse, Strack_mouse, 1, 1, 0,
1185 doc: /* Call BODYFUN with mouse movement events enabled. */)
1186 (Lisp_Object bodyfun)
1187 {
1188 ptrdiff_t count = SPECPDL_INDEX ();
1189 Lisp_Object val;
1190
1191 record_unwind_protect (tracking_off, do_mouse_tracking);
1192
1193 do_mouse_tracking = Qt;
1194
1195 val = call0 (bodyfun);
1196 return unbind_to (count, val);
1197 }
1198
1199 /* If mouse has moved on some frame, return one of those frames.
1200
1201 Return 0 otherwise.
1202
1203 If ignore_mouse_drag_p is non-zero, ignore (implicit) mouse movement
1204 after resizing the tool-bar window. */
1205
1206 bool ignore_mouse_drag_p;
1207
1208 static struct frame *
1209 some_mouse_moved (void)
1210 {
1211 Lisp_Object tail, frame;
1212
1213 if (ignore_mouse_drag_p)
1214 {
1215 /* ignore_mouse_drag_p = 0; */
1216 return 0;
1217 }
1218
1219 FOR_EACH_FRAME (tail, frame)
1220 {
1221 if (XFRAME (frame)->mouse_moved)
1222 return XFRAME (frame);
1223 }
1224
1225 return 0;
1226 }
1227
1228 \f
1229 /* This is the actual command reading loop,
1230 sans error-handling encapsulation. */
1231
1232 static int read_key_sequence (Lisp_Object *, int, Lisp_Object,
1233 bool, bool, bool, bool);
1234 static void adjust_point_for_property (ptrdiff_t, bool);
1235
1236 Lisp_Object
1237 command_loop_1 (void)
1238 {
1239 EMACS_INT prev_modiff = 0;
1240 struct buffer *prev_buffer = NULL;
1241 bool already_adjusted = 0;
1242
1243 kset_prefix_arg (current_kboard, Qnil);
1244 kset_last_prefix_arg (current_kboard, Qnil);
1245 Vdeactivate_mark = Qnil;
1246 waiting_for_input = false;
1247 cancel_echoing ();
1248
1249 this_command_key_count = 0;
1250 this_single_command_key_start = 0;
1251
1252 if (NILP (Vmemory_full))
1253 {
1254 /* Make sure this hook runs after commands that get errors and
1255 throw to top level. */
1256 /* Note that the value cell will never directly contain nil
1257 if the symbol is a local variable. */
1258 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1259 safe_run_hooks (Qpost_command_hook);
1260
1261 /* If displaying a message, resize the echo area window to fit
1262 that message's size exactly. */
1263 if (!NILP (echo_area_buffer[0]))
1264 resize_echo_area_exactly ();
1265
1266 /* If there are warnings waiting, process them. */
1267 if (!NILP (Vdelayed_warnings_list))
1268 safe_run_hooks (Qdelayed_warnings_hook);
1269
1270 if (!NILP (Vdeferred_action_list))
1271 safe_run_hooks (Qdeferred_action_function);
1272 }
1273
1274 /* Do this after running Vpost_command_hook, for consistency. */
1275 kset_last_command (current_kboard, Vthis_command);
1276 kset_real_last_command (current_kboard, Vreal_this_command);
1277 if (!CONSP (last_command_event))
1278 kset_last_repeatable_command (current_kboard, Vreal_this_command);
1279
1280 while (1)
1281 {
1282 Lisp_Object cmd;
1283 Lisp_Object keybuf[30];
1284 int i;
1285
1286 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1287 Fkill_emacs (Qnil);
1288
1289 /* Make sure the current window's buffer is selected. */
1290 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->contents));
1291
1292 /* Display any malloc warning that just came out. Use while because
1293 displaying one warning can cause another. */
1294
1295 while (pending_malloc_warning)
1296 display_malloc_warning ();
1297
1298 Vdeactivate_mark = Qnil;
1299
1300 /* Don't ignore mouse movements for more than a single command
1301 loop. (This flag is set in xdisp.c whenever the tool bar is
1302 resized, because the resize moves text up or down, and would
1303 generate false mouse drag events if we don't ignore them.) */
1304 ignore_mouse_drag_p = 0;
1305
1306 /* If minibuffer on and echo area in use,
1307 wait a short time and redraw minibuffer. */
1308
1309 if (minibuf_level
1310 && !NILP (echo_area_buffer[0])
1311 && EQ (minibuf_window, echo_area_window)
1312 && NUMBERP (Vminibuffer_message_timeout))
1313 {
1314 /* Bind inhibit-quit to t so that C-g gets read in
1315 rather than quitting back to the minibuffer. */
1316 ptrdiff_t count = SPECPDL_INDEX ();
1317 specbind (Qinhibit_quit, Qt);
1318
1319 sit_for (Vminibuffer_message_timeout, 0, 2);
1320
1321 /* Clear the echo area. */
1322 message1 (0);
1323 safe_run_hooks (Qecho_area_clear_hook);
1324
1325 unbind_to (count, Qnil);
1326
1327 /* If a C-g came in before, treat it as input now. */
1328 if (!NILP (Vquit_flag))
1329 {
1330 Vquit_flag = Qnil;
1331 Vunread_command_events = list1 (make_number (quit_char));
1332 }
1333 }
1334
1335 /* If it has changed current-menubar from previous value,
1336 really recompute the menubar from the value. */
1337 if (! NILP (Vlucid_menu_bar_dirty_flag)
1338 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1339 call0 (Qrecompute_lucid_menubar);
1340
1341 Vthis_command = Qnil;
1342 Vreal_this_command = Qnil;
1343 Vthis_original_command = Qnil;
1344 Vthis_command_keys_shift_translated = Qnil;
1345
1346 /* Read next key sequence; i gets its length. */
1347 i = read_key_sequence (keybuf, ARRAYELTS (keybuf),
1348 Qnil, 0, 1, 1, 0);
1349
1350 /* A filter may have run while we were reading the input. */
1351 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1352 Fkill_emacs (Qnil);
1353 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->contents));
1354
1355 ++num_input_keys;
1356
1357 /* Now we have read a key sequence of length I,
1358 or else I is 0 and we found end of file. */
1359
1360 if (i == 0) /* End of file -- happens only in */
1361 return Qnil; /* a kbd macro, at the end. */
1362 /* -1 means read_key_sequence got a menu that was rejected.
1363 Just loop around and read another command. */
1364 if (i == -1)
1365 {
1366 cancel_echoing ();
1367 this_command_key_count = 0;
1368 this_single_command_key_start = 0;
1369 goto finalize;
1370 }
1371
1372 last_command_event = keybuf[i - 1];
1373
1374 /* If the previous command tried to force a specific window-start,
1375 forget about that, in case this command moves point far away
1376 from that position. But also throw away beg_unchanged and
1377 end_unchanged information in that case, so that redisplay will
1378 update the whole window properly. */
1379 if (XWINDOW (selected_window)->force_start)
1380 {
1381 struct buffer *b;
1382 XWINDOW (selected_window)->force_start = 0;
1383 b = XBUFFER (XWINDOW (selected_window)->contents);
1384 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1385 }
1386
1387 cmd = read_key_sequence_cmd;
1388 if (!NILP (Vexecuting_kbd_macro))
1389 {
1390 if (!NILP (Vquit_flag))
1391 {
1392 Vexecuting_kbd_macro = Qt;
1393 QUIT; /* Make some noise. */
1394 /* Will return since macro now empty. */
1395 }
1396 }
1397
1398 /* Do redisplay processing after this command except in special
1399 cases identified below. */
1400 prev_buffer = current_buffer;
1401 prev_modiff = MODIFF;
1402 last_point_position = PT;
1403
1404 /* By default, we adjust point to a boundary of a region that
1405 has such a property that should be treated intangible
1406 (e.g. composition, display). But, some commands will set
1407 this variable differently. */
1408 Vdisable_point_adjustment = Qnil;
1409
1410 /* Process filters and timers may have messed with deactivate-mark.
1411 reset it before we execute the command. */
1412 Vdeactivate_mark = Qnil;
1413
1414 /* Remap command through active keymaps. */
1415 Vthis_original_command = cmd;
1416 if (!NILP (read_key_sequence_remapped))
1417 cmd = read_key_sequence_remapped;
1418
1419 /* Execute the command. */
1420
1421 {
1422 total_keys += total_keys < NUM_RECENT_KEYS;
1423 ASET (recent_keys, recent_keys_index,
1424 Fcons (Qnil, cmd));
1425 if (++recent_keys_index >= NUM_RECENT_KEYS)
1426 recent_keys_index = 0;
1427 }
1428 Vthis_command = cmd;
1429 Vreal_this_command = cmd;
1430 safe_run_hooks (Qpre_command_hook);
1431
1432 already_adjusted = 0;
1433
1434 if (NILP (Vthis_command))
1435 /* nil means key is undefined. */
1436 call0 (Qundefined);
1437 else
1438 {
1439 /* Here for a command that isn't executed directly. */
1440
1441 #ifdef HAVE_WINDOW_SYSTEM
1442 ptrdiff_t scount = SPECPDL_INDEX ();
1443
1444 if (display_hourglass_p
1445 && NILP (Vexecuting_kbd_macro))
1446 {
1447 record_unwind_protect_void (cancel_hourglass);
1448 start_hourglass ();
1449 }
1450 #endif
1451
1452 /* Ensure that we have added appropriate undo-boundaries as a
1453 result of changes from the last command. */
1454 call0 (Qundo_auto__add_boundary);
1455
1456 /* Record point and buffer, so we can put point into the undo
1457 information if necessary. */
1458 point_before_last_command_or_undo = PT;
1459 buffer_before_last_command_or_undo = current_buffer;
1460
1461 call1 (Qcommand_execute, Vthis_command);
1462
1463 #ifdef HAVE_WINDOW_SYSTEM
1464 /* Do not check display_hourglass_p here, because
1465 `command-execute' could change it, but we should cancel
1466 hourglass cursor anyway.
1467 But don't cancel the hourglass within a macro
1468 just because a command in the macro finishes. */
1469 if (NILP (Vexecuting_kbd_macro))
1470 unbind_to (scount, Qnil);
1471 #endif
1472 }
1473 kset_last_prefix_arg (current_kboard, Vcurrent_prefix_arg);
1474
1475 safe_run_hooks (Qpost_command_hook);
1476
1477 /* If displaying a message, resize the echo area window to fit
1478 that message's size exactly. */
1479 if (!NILP (echo_area_buffer[0]))
1480 resize_echo_area_exactly ();
1481
1482 /* If there are warnings waiting, process them. */
1483 if (!NILP (Vdelayed_warnings_list))
1484 safe_run_hooks (Qdelayed_warnings_hook);
1485
1486 safe_run_hooks (Qdeferred_action_function);
1487
1488 kset_last_command (current_kboard, Vthis_command);
1489 kset_real_last_command (current_kboard, Vreal_this_command);
1490 if (!CONSP (last_command_event))
1491 kset_last_repeatable_command (current_kboard, Vreal_this_command);
1492
1493 this_command_key_count = 0;
1494 this_single_command_key_start = 0;
1495
1496 if (current_kboard->immediate_echo
1497 && !NILP (call0 (Qinternal_echo_keystrokes_prefix)))
1498 {
1499 current_kboard->immediate_echo = false;
1500 /* Refresh the echo message. */
1501 echo_now ();
1502 }
1503 else
1504 cancel_echoing ();
1505
1506 if (!NILP (BVAR (current_buffer, mark_active))
1507 && !NILP (Vrun_hooks))
1508 {
1509 /* In Emacs 22, setting transient-mark-mode to `only' was a
1510 way of turning it on for just one command. This usage is
1511 obsolete, but support it anyway. */
1512 if (EQ (Vtransient_mark_mode, Qidentity))
1513 Vtransient_mark_mode = Qnil;
1514 else if (EQ (Vtransient_mark_mode, Qonly))
1515 Vtransient_mark_mode = Qidentity;
1516
1517 if (!NILP (Vdeactivate_mark))
1518 /* If `select-active-regions' is non-nil, this call to
1519 `deactivate-mark' also sets the PRIMARY selection. */
1520 call0 (Qdeactivate_mark);
1521 else
1522 {
1523 /* Even if not deactivating the mark, set PRIMARY if
1524 `select-active-regions' is non-nil. */
1525 if (!NILP (Fwindow_system (Qnil))
1526 /* Even if mark_active is non-nil, the actual buffer
1527 marker may not have been set yet (Bug#7044). */
1528 && XMARKER (BVAR (current_buffer, mark))->buffer
1529 && (EQ (Vselect_active_regions, Qonly)
1530 ? EQ (CAR_SAFE (Vtransient_mark_mode), Qonly)
1531 : (!NILP (Vselect_active_regions)
1532 && !NILP (Vtransient_mark_mode)))
1533 && NILP (Fmemq (Vthis_command,
1534 Vselection_inhibit_update_commands)))
1535 {
1536 Lisp_Object txt
1537 = call1 (Fsymbol_value (Qregion_extract_function), Qnil);
1538 if (XINT (Flength (txt)) > 0)
1539 /* Don't set empty selections. */
1540 call2 (Qgui_set_selection, QPRIMARY, txt);
1541 }
1542
1543 if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1544 run_hook (intern ("activate-mark-hook"));
1545 }
1546
1547 Vsaved_region_selection = Qnil;
1548 }
1549
1550 finalize:
1551
1552 if (current_buffer == prev_buffer
1553 && XBUFFER (XWINDOW (selected_window)->contents) == current_buffer
1554 && last_point_position != PT
1555 && NILP (Vdisable_point_adjustment)
1556 && NILP (Vglobal_disable_point_adjustment))
1557 {
1558 if (last_point_position > BEGV
1559 && last_point_position < ZV
1560 && (composition_adjust_point (last_point_position,
1561 last_point_position)
1562 != last_point_position))
1563 /* The last point was temporarily set within a grapheme
1564 cluster to prevent automatic composition. To recover
1565 the automatic composition, we must update the
1566 display. */
1567 windows_or_buffers_changed = 21;
1568 if (!already_adjusted)
1569 adjust_point_for_property (last_point_position,
1570 MODIFF != prev_modiff);
1571 }
1572
1573 /* Install chars successfully executed in kbd macro. */
1574
1575 if (!NILP (KVAR (current_kboard, defining_kbd_macro))
1576 && NILP (KVAR (current_kboard, Vprefix_arg)))
1577 finalize_kbd_macro_chars ();
1578 }
1579 }
1580
1581 Lisp_Object
1582 read_menu_command (void)
1583 {
1584 Lisp_Object keybuf[30];
1585 ptrdiff_t count = SPECPDL_INDEX ();
1586 int i;
1587
1588 /* We don't want to echo the keystrokes while navigating the
1589 menus. */
1590 specbind (Qecho_keystrokes, make_number (0));
1591
1592 i = read_key_sequence (keybuf, ARRAYELTS (keybuf),
1593 Qnil, 0, 1, 1, 1);
1594
1595 unbind_to (count, Qnil);
1596
1597 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1598 Fkill_emacs (Qnil);
1599 if (i == 0 || i == -1)
1600 return Qt;
1601
1602 return read_key_sequence_cmd;
1603 }
1604
1605 /* Adjust point to a boundary of a region that has such a property
1606 that should be treated intangible. For the moment, we check
1607 `composition', `display' and `invisible' properties.
1608 LAST_PT is the last position of point. */
1609
1610 static void
1611 adjust_point_for_property (ptrdiff_t last_pt, bool modified)
1612 {
1613 ptrdiff_t beg, end;
1614 Lisp_Object val, overlay, tmp;
1615 /* When called after buffer modification, we should temporarily
1616 suppress the point adjustment for automatic composition so that a
1617 user can keep inserting another character at point or keep
1618 deleting characters around point. */
1619 bool check_composition = ! modified;
1620 bool check_display = true, check_invisible = true;
1621 ptrdiff_t orig_pt = PT;
1622
1623 eassert (XBUFFER (XWINDOW (selected_window)->contents) == current_buffer);
1624
1625 /* FIXME: cycling is probably not necessary because these properties
1626 can't be usefully combined anyway. */
1627 while (check_composition || check_display || check_invisible)
1628 {
1629 /* FIXME: check `intangible'. */
1630 if (check_composition
1631 && PT > BEGV && PT < ZV
1632 && (beg = composition_adjust_point (last_pt, PT)) != PT)
1633 {
1634 SET_PT (beg);
1635 check_display = check_invisible = true;
1636 }
1637 check_composition = false;
1638 if (check_display
1639 && PT > BEGV && PT < ZV
1640 && !NILP (val = get_char_property_and_overlay
1641 (make_number (PT), Qdisplay, selected_window,
1642 &overlay))
1643 && display_prop_intangible_p (val, overlay, PT, PT_BYTE)
1644 && (!OVERLAYP (overlay)
1645 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
1646 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
1647 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
1648 && (beg < PT /* && end > PT <- It's always the case. */
1649 || (beg <= PT && STRINGP (val) && SCHARS (val) == 0)))
1650 {
1651 eassert (end > PT);
1652 SET_PT (PT < last_pt
1653 ? (STRINGP (val) && SCHARS (val) == 0
1654 ? max (beg - 1, BEGV)
1655 : beg)
1656 : end);
1657 check_composition = check_invisible = true;
1658 }
1659 check_display = false;
1660 if (check_invisible && PT > BEGV && PT < ZV)
1661 {
1662 int inv;
1663 bool ellipsis = false;
1664 beg = end = PT;
1665
1666 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1667 while (end < ZV
1668 #if 0
1669 /* FIXME: We should stop if we find a spot between
1670 two runs of `invisible' where inserted text would
1671 be visible. This is important when we have two
1672 invisible boundaries that enclose an area: if the
1673 area is empty, we need this test in order to make
1674 it possible to place point in the middle rather
1675 than skip both boundaries. However, this code
1676 also stops anywhere in a non-sticky text-property,
1677 which breaks (e.g.) Org mode. */
1678 && (val = Fget_pos_property (make_number (end),
1679 Qinvisible, Qnil),
1680 TEXT_PROP_MEANS_INVISIBLE (val))
1681 #endif
1682 && !NILP (val = get_char_property_and_overlay
1683 (make_number (end), Qinvisible, Qnil, &overlay))
1684 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1685 {
1686 ellipsis = ellipsis || inv > 1
1687 || (OVERLAYP (overlay)
1688 && (!NILP (Foverlay_get (overlay, Qafter_string))
1689 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1690 tmp = Fnext_single_char_property_change
1691 (make_number (end), Qinvisible, Qnil, Qnil);
1692 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
1693 }
1694 while (beg > BEGV
1695 #if 0
1696 && (val = Fget_pos_property (make_number (beg),
1697 Qinvisible, Qnil),
1698 TEXT_PROP_MEANS_INVISIBLE (val))
1699 #endif
1700 && !NILP (val = get_char_property_and_overlay
1701 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
1702 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1703 {
1704 ellipsis = ellipsis || inv > 1
1705 || (OVERLAYP (overlay)
1706 && (!NILP (Foverlay_get (overlay, Qafter_string))
1707 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1708 tmp = Fprevious_single_char_property_change
1709 (make_number (beg), Qinvisible, Qnil, Qnil);
1710 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
1711 }
1712
1713 /* Move away from the inside area. */
1714 if (beg < PT && end > PT)
1715 {
1716 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
1717 /* We haven't moved yet (so we don't need to fear
1718 infinite-looping) and we were outside the range
1719 before (so either end of the range still corresponds
1720 to a move in the right direction): pretend we moved
1721 less than we actually did, so that we still have
1722 more freedom below in choosing which end of the range
1723 to go to. */
1724 ? (orig_pt = -1, PT < last_pt ? end : beg)
1725 /* We either have moved already or the last point
1726 was already in the range: we don't get to choose
1727 which end of the range we have to go to. */
1728 : (PT < last_pt ? beg : end));
1729 check_composition = check_display = true;
1730 }
1731 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
1732 the point to something other than its argument, due to
1733 point-motion hooks, intangibility, etc. */
1734 eassert (PT == beg || PT == end);
1735 #endif
1736
1737 /* Pretend the area doesn't exist if the buffer is not
1738 modified. */
1739 if (!modified && !ellipsis && beg < end)
1740 {
1741 if (last_pt == beg && PT == end && end < ZV)
1742 (check_composition = check_display = true, SET_PT (end + 1));
1743 else if (last_pt == end && PT == beg && beg > BEGV)
1744 (check_composition = check_display = true, SET_PT (beg - 1));
1745 else if (PT == ((PT < last_pt) ? beg : end))
1746 /* We've already moved as far as we can. Trying to go
1747 to the other end would mean moving backwards and thus
1748 could lead to an infinite loop. */
1749 ;
1750 else if (val = Fget_pos_property (make_number (PT),
1751 Qinvisible, Qnil),
1752 TEXT_PROP_MEANS_INVISIBLE (val)
1753 && (val = (Fget_pos_property
1754 (make_number (PT == beg ? end : beg),
1755 Qinvisible, Qnil)),
1756 !TEXT_PROP_MEANS_INVISIBLE (val)))
1757 (check_composition = check_display = true,
1758 SET_PT (PT == beg ? end : beg));
1759 }
1760 }
1761 check_invisible = false;
1762 }
1763 }
1764
1765 /* Subroutine for safe_run_hooks: run the hook, which is ARGS[1]. */
1766
1767 static Lisp_Object
1768 safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *args)
1769 {
1770 eassert (nargs == 2);
1771 return call0 (args[1]);
1772 }
1773
1774 /* Subroutine for safe_run_hooks: handle an error by clearing out the function
1775 from the hook. */
1776
1777 static Lisp_Object
1778 safe_run_hooks_error (Lisp_Object error, ptrdiff_t nargs, Lisp_Object *args)
1779 {
1780 eassert (nargs == 2);
1781 AUTO_STRING (format, "Error in %s (%S): %S");
1782 Lisp_Object hook = args[0];
1783 Lisp_Object fun = args[1];
1784 CALLN (Fmessage, format, hook, fun, error);
1785
1786 if (SYMBOLP (hook))
1787 {
1788 Lisp_Object val;
1789 bool found = false;
1790 Lisp_Object newval = Qnil;
1791 for (val = find_symbol_value (hook); CONSP (val); val = XCDR (val))
1792 if (EQ (fun, XCAR (val)))
1793 found = true;
1794 else
1795 newval = Fcons (XCAR (val), newval);
1796 if (found)
1797 return Fset (hook, Fnreverse (newval));
1798 /* Not found in the local part of the hook. Let's look at the global
1799 part. */
1800 newval = Qnil;
1801 for (val = (NILP (Fdefault_boundp (hook)) ? Qnil
1802 : Fdefault_value (hook));
1803 CONSP (val); val = XCDR (val))
1804 if (EQ (fun, XCAR (val)))
1805 found = true;
1806 else
1807 newval = Fcons (XCAR (val), newval);
1808 if (found)
1809 return Fset_default (hook, Fnreverse (newval));
1810 }
1811 return Qnil;
1812 }
1813
1814 static Lisp_Object
1815 safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Object *args)
1816 {
1817 eassert (nargs == 2);
1818 /* Yes, run_hook_with_args works with args in the other order. */
1819 internal_condition_case_n (safe_run_hooks_1,
1820 2, ((Lisp_Object []) {args[1], args[0]}),
1821 Qt, safe_run_hooks_error);
1822 return Qnil;
1823 }
1824
1825 /* If we get an error while running the hook, cause the hook variable
1826 to be nil. Also inhibit quits, so that C-g won't cause the hook
1827 to mysteriously evaporate. */
1828
1829 void
1830 safe_run_hooks (Lisp_Object hook)
1831 {
1832 ptrdiff_t count = SPECPDL_INDEX ();
1833
1834 specbind (Qinhibit_quit, Qt);
1835 run_hook_with_args (2, ((Lisp_Object []) {hook, hook}), safe_run_hook_funcall);
1836 unbind_to (count, Qnil);
1837 }
1838
1839 \f
1840 /* Nonzero means polling for input is temporarily suppressed. */
1841
1842 int poll_suppress_count;
1843
1844
1845 #ifdef POLL_FOR_INPUT
1846
1847 /* Asynchronous timer for polling. */
1848
1849 static struct atimer *poll_timer;
1850
1851 /* Poll for input, so that we catch a C-g if it comes in. */
1852 void
1853 poll_for_input_1 (void)
1854 {
1855 if (! input_blocked_p ()
1856 && !waiting_for_input)
1857 gobble_input ();
1858 }
1859
1860 /* Timer callback function for poll_timer. TIMER is equal to
1861 poll_timer. */
1862
1863 static void
1864 poll_for_input (struct atimer *timer)
1865 {
1866 if (poll_suppress_count == 0)
1867 pending_signals = true;
1868 }
1869
1870 #endif /* POLL_FOR_INPUT */
1871
1872 /* Begin signals to poll for input, if they are appropriate.
1873 This function is called unconditionally from various places. */
1874
1875 void
1876 start_polling (void)
1877 {
1878 #ifdef POLL_FOR_INPUT
1879 /* XXX This condition was (read_socket_hook && !interrupt_input),
1880 but read_socket_hook is not global anymore. Let's pretend that
1881 it's always set. */
1882 if (!interrupt_input)
1883 {
1884 /* Turn alarm handling on unconditionally. It might have
1885 been turned off in process.c. */
1886 turn_on_atimers (1);
1887
1888 /* If poll timer doesn't exist, or we need one with
1889 a different interval, start a new one. */
1890 if (poll_timer == NULL
1891 || poll_timer->interval.tv_sec != polling_period)
1892 {
1893 time_t period = max (1, min (polling_period, TYPE_MAXIMUM (time_t)));
1894 struct timespec interval = make_timespec (period, 0);
1895
1896 if (poll_timer)
1897 cancel_atimer (poll_timer);
1898
1899 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
1900 poll_for_input, NULL);
1901 }
1902
1903 /* Let the timer's callback function poll for input
1904 if this becomes zero. */
1905 --poll_suppress_count;
1906 }
1907 #endif
1908 }
1909
1910 /* True if we are using polling to handle input asynchronously. */
1911
1912 bool
1913 input_polling_used (void)
1914 {
1915 #ifdef POLL_FOR_INPUT
1916 /* XXX This condition was (read_socket_hook && !interrupt_input),
1917 but read_socket_hook is not global anymore. Let's pretend that
1918 it's always set. */
1919 return !interrupt_input;
1920 #else
1921 return 0;
1922 #endif
1923 }
1924
1925 /* Turn off polling. */
1926
1927 void
1928 stop_polling (void)
1929 {
1930 #ifdef POLL_FOR_INPUT
1931 /* XXX This condition was (read_socket_hook && !interrupt_input),
1932 but read_socket_hook is not global anymore. Let's pretend that
1933 it's always set. */
1934 if (!interrupt_input)
1935 ++poll_suppress_count;
1936 #endif
1937 }
1938
1939 /* Set the value of poll_suppress_count to COUNT
1940 and start or stop polling accordingly. */
1941
1942 void
1943 set_poll_suppress_count (int count)
1944 {
1945 #ifdef POLL_FOR_INPUT
1946 if (count == 0 && poll_suppress_count != 0)
1947 {
1948 poll_suppress_count = 1;
1949 start_polling ();
1950 }
1951 else if (count != 0 && poll_suppress_count == 0)
1952 {
1953 stop_polling ();
1954 }
1955 poll_suppress_count = count;
1956 #endif
1957 }
1958
1959 /* Bind polling_period to a value at least N.
1960 But don't decrease it. */
1961
1962 void
1963 bind_polling_period (int n)
1964 {
1965 #ifdef POLL_FOR_INPUT
1966 EMACS_INT new = polling_period;
1967
1968 if (n > new)
1969 new = n;
1970
1971 stop_other_atimers (poll_timer);
1972 stop_polling ();
1973 specbind (Qpolling_period, make_number (new));
1974 /* Start a new alarm with the new period. */
1975 start_polling ();
1976 #endif
1977 }
1978 \f
1979 /* Apply the control modifier to CHARACTER. */
1980
1981 int
1982 make_ctrl_char (int c)
1983 {
1984 /* Save the upper bits here. */
1985 int upper = c & ~0177;
1986
1987 if (! ASCII_CHAR_P (c))
1988 return c |= ctrl_modifier;
1989
1990 c &= 0177;
1991
1992 /* Everything in the columns containing the upper-case letters
1993 denotes a control character. */
1994 if (c >= 0100 && c < 0140)
1995 {
1996 int oc = c;
1997 c &= ~0140;
1998 /* Set the shift modifier for a control char
1999 made from a shifted letter. But only for letters! */
2000 if (oc >= 'A' && oc <= 'Z')
2001 c |= shift_modifier;
2002 }
2003
2004 /* The lower-case letters denote control characters too. */
2005 else if (c >= 'a' && c <= 'z')
2006 c &= ~0140;
2007
2008 /* Include the bits for control and shift
2009 only if the basic ASCII code can't indicate them. */
2010 else if (c >= ' ')
2011 c |= ctrl_modifier;
2012
2013 /* Replace the high bits. */
2014 c |= (upper & ~ctrl_modifier);
2015
2016 return c;
2017 }
2018
2019 /* Display the help-echo property of the character after the mouse pointer.
2020 Either show it in the echo area, or call show-help-function to display
2021 it by other means (maybe in a tooltip).
2022
2023 If HELP is nil, that means clear the previous help echo.
2024
2025 If HELP is a string, display that string. If HELP is a function,
2026 call it with OBJECT and POS as arguments; the function should
2027 return a help string or nil for none. For all other types of HELP,
2028 evaluate it to obtain a string.
2029
2030 WINDOW is the window in which the help was generated, if any.
2031 It is nil if not in a window.
2032
2033 If OBJECT is a buffer, POS is the position in the buffer where the
2034 `help-echo' text property was found.
2035
2036 If OBJECT is an overlay, that overlay has a `help-echo' property,
2037 and POS is the position in the overlay's buffer under the mouse.
2038
2039 If OBJECT is a string (an overlay string or a string displayed with
2040 the `display' property). POS is the position in that string under
2041 the mouse.
2042
2043 Note: this function may only be called with HELP nil or a string
2044 from X code running asynchronously. */
2045
2046 void
2047 show_help_echo (Lisp_Object help, Lisp_Object window, Lisp_Object object,
2048 Lisp_Object pos)
2049 {
2050 if (!NILP (help) && !STRINGP (help))
2051 {
2052 if (FUNCTIONP (help))
2053 help = safe_call (4, help, window, object, pos);
2054 else
2055 help = safe_eval (help);
2056
2057 if (!STRINGP (help))
2058 return;
2059 }
2060
2061 if (!noninteractive && STRINGP (help))
2062 {
2063 /* The mouse-fixup-help-message Lisp function can call
2064 mouse_position_hook, which resets the mouse_moved flags.
2065 This causes trouble if we are trying to read a mouse motion
2066 event (i.e., if we are inside a `track-mouse' form), so we
2067 restore the mouse_moved flag. */
2068 struct frame *f = NILP (do_mouse_tracking) ? NULL : some_mouse_moved ();
2069 help = call1 (Qmouse_fixup_help_message, help);
2070 if (f)
2071 f->mouse_moved = true;
2072 }
2073
2074 if (STRINGP (help) || NILP (help))
2075 {
2076 if (!NILP (Vshow_help_function))
2077 call1 (Vshow_help_function, Fsubstitute_command_keys (help));
2078 help_echo_showing_p = STRINGP (help);
2079 }
2080 }
2081
2082
2083 \f
2084 /* Input of single characters from keyboard. */
2085
2086 static Lisp_Object kbd_buffer_get_event (KBOARD **kbp, bool *used_mouse_menu,
2087 struct timespec *end_time);
2088 static void record_char (Lisp_Object c);
2089
2090 static Lisp_Object help_form_saved_window_configs;
2091 static void
2092 read_char_help_form_unwind (void)
2093 {
2094 Lisp_Object window_config = XCAR (help_form_saved_window_configs);
2095 help_form_saved_window_configs = XCDR (help_form_saved_window_configs);
2096 if (!NILP (window_config))
2097 Fset_window_configuration (window_config);
2098 }
2099
2100 #define STOP_POLLING \
2101 do { if (! polling_stopped_here) stop_polling (); \
2102 polling_stopped_here = true; } while (0)
2103
2104 #define RESUME_POLLING \
2105 do { if (polling_stopped_here) start_polling (); \
2106 polling_stopped_here = false; } while (0)
2107
2108 static Lisp_Object
2109 read_event_from_main_queue (struct timespec *end_time,
2110 sys_jmp_buf local_getcjmp,
2111 bool *used_mouse_menu)
2112 {
2113 Lisp_Object c = Qnil;
2114 sys_jmp_buf save_jump;
2115 KBOARD *kb IF_LINT (= NULL);
2116
2117 start:
2118
2119 /* Read from the main queue, and if that gives us something we can't use yet,
2120 we put it on the appropriate side queue and try again. */
2121
2122 if (end_time && timespec_cmp (*end_time, current_timespec ()) <= 0)
2123 return c;
2124
2125 /* Actually read a character, waiting if necessary. */
2126 save_getcjmp (save_jump);
2127 restore_getcjmp (local_getcjmp);
2128 if (!end_time)
2129 timer_start_idle ();
2130 c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time);
2131 restore_getcjmp (save_jump);
2132
2133 if (! NILP (c) && (kb != current_kboard))
2134 {
2135 Lisp_Object last = KVAR (kb, kbd_queue);
2136 if (CONSP (last))
2137 {
2138 while (CONSP (XCDR (last)))
2139 last = XCDR (last);
2140 if (!NILP (XCDR (last)))
2141 emacs_abort ();
2142 }
2143 if (!CONSP (last))
2144 kset_kbd_queue (kb, list1 (c));
2145 else
2146 XSETCDR (last, list1 (c));
2147 kb->kbd_queue_has_data = true;
2148 c = Qnil;
2149 if (single_kboard)
2150 goto start;
2151 current_kboard = kb;
2152 return make_number (-2);
2153 }
2154
2155 /* Terminate Emacs in batch mode if at eof. */
2156 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2157 Fkill_emacs (make_number (1));
2158
2159 if (INTEGERP (c))
2160 {
2161 /* Add in any extra modifiers, where appropriate. */
2162 if ((extra_keyboard_modifiers & CHAR_CTL)
2163 || ((extra_keyboard_modifiers & 0177) < ' '
2164 && (extra_keyboard_modifiers & 0177) != 0))
2165 XSETINT (c, make_ctrl_char (XINT (c)));
2166
2167 /* Transfer any other modifier bits directly from
2168 extra_keyboard_modifiers to c. Ignore the actual character code
2169 in the low 16 bits of extra_keyboard_modifiers. */
2170 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2171 }
2172
2173 return c;
2174 }
2175
2176
2177
2178 /* Like `read_event_from_main_queue' but applies keyboard-coding-system
2179 to tty input. */
2180 static Lisp_Object
2181 read_decoded_event_from_main_queue (struct timespec *end_time,
2182 sys_jmp_buf local_getcjmp,
2183 Lisp_Object prev_event,
2184 bool *used_mouse_menu)
2185 {
2186 #define MAX_ENCODED_BYTES 16
2187 #ifndef WINDOWSNT
2188 Lisp_Object events[MAX_ENCODED_BYTES];
2189 int n = 0;
2190 #endif
2191 while (true)
2192 {
2193 Lisp_Object nextevt
2194 = read_event_from_main_queue (end_time, local_getcjmp,
2195 used_mouse_menu);
2196 #ifdef WINDOWSNT
2197 /* w32_console already returns decoded events. It either reads
2198 Unicode characters from the Windows keyboard input, or
2199 converts characters encoded in the current codepage into
2200 Unicode. See w32inevt.c:key_event, near its end. */
2201 return nextevt;
2202 #else
2203 struct frame *frame = XFRAME (selected_frame);
2204 struct terminal *terminal = frame->terminal;
2205 if (!((FRAME_TERMCAP_P (frame) || FRAME_MSDOS_P (frame))
2206 /* Don't apply decoding if we're just reading a raw event
2207 (e.g. reading bytes sent by the xterm to specify the position
2208 of a mouse click). */
2209 && (!EQ (prev_event, Qt))
2210 && (TERMINAL_KEYBOARD_CODING (terminal)->common_flags
2211 & CODING_REQUIRE_DECODING_MASK)))
2212 return nextevt; /* No decoding needed. */
2213 else
2214 {
2215 int meta_key = terminal->display_info.tty->meta_key;
2216 eassert (n < MAX_ENCODED_BYTES);
2217 events[n++] = nextevt;
2218 if (NATNUMP (nextevt)
2219 && XINT (nextevt) < (meta_key == 1 ? 0x80 : 0x100))
2220 { /* An encoded byte sequence, let's try to decode it. */
2221 struct coding_system *coding
2222 = TERMINAL_KEYBOARD_CODING (terminal);
2223
2224 if (raw_text_coding_system_p (coding))
2225 {
2226 int i;
2227 if (meta_key != 2)
2228 for (i = 0; i < n; i++)
2229 events[i] = make_number (XINT (events[i]) & ~0x80);
2230 }
2231 else
2232 {
2233 unsigned char src[MAX_ENCODED_BYTES];
2234 unsigned char dest[MAX_ENCODED_BYTES * MAX_MULTIBYTE_LENGTH];
2235 int i;
2236 for (i = 0; i < n; i++)
2237 src[i] = XINT (events[i]);
2238 if (meta_key != 2)
2239 for (i = 0; i < n; i++)
2240 src[i] &= ~0x80;
2241 coding->destination = dest;
2242 coding->dst_bytes = sizeof dest;
2243 decode_coding_c_string (coding, src, n, Qnil);
2244 eassert (coding->produced_char <= n);
2245 if (coding->produced_char == 0)
2246 { /* The encoded sequence is incomplete. */
2247 if (n < MAX_ENCODED_BYTES) /* Avoid buffer overflow. */
2248 continue; /* Read on! */
2249 }
2250 else
2251 {
2252 const unsigned char *p = coding->destination;
2253 eassert (coding->carryover_bytes == 0);
2254 n = 0;
2255 while (n < coding->produced_char)
2256 events[n++] = make_number (STRING_CHAR_ADVANCE (p));
2257 }
2258 }
2259 }
2260 /* Now `events' should hold decoded events.
2261 Normally, n should be equal to 1, but better not rely on it.
2262 We can only return one event here, so return the first we
2263 had and keep the others (if any) for later. */
2264 while (n > 1)
2265 Vunread_command_events
2266 = Fcons (events[--n], Vunread_command_events);
2267 return events[0];
2268 }
2269 #endif
2270 }
2271 }
2272
2273 static bool
2274 echo_keystrokes_p (void)
2275 {
2276 return (FLOATP (Vecho_keystrokes) ? XFLOAT_DATA (Vecho_keystrokes) > 0.0
2277 : INTEGERP (Vecho_keystrokes) ? XINT (Vecho_keystrokes) > 0 : false);
2278 }
2279
2280 /* Read a character from the keyboard; call the redisplay if needed. */
2281 /* commandflag 0 means do not autosave, but do redisplay.
2282 -1 means do not redisplay, but do autosave.
2283 -2 means do neither.
2284 1 means do both.
2285
2286 The argument MAP is a keymap for menu prompting.
2287
2288 PREV_EVENT is the previous input event, or nil if we are reading
2289 the first event of a key sequence (or not reading a key sequence).
2290 If PREV_EVENT is t, that is a "magic" value that says
2291 not to run input methods, but in other respects to act as if
2292 not reading a key sequence.
2293
2294 If USED_MOUSE_MENU is non-null, then set *USED_MOUSE_MENU to true
2295 if we used a mouse menu to read the input, or false otherwise. If
2296 USED_MOUSE_MENU is null, don't dereference it.
2297
2298 Value is -2 when we find input on another keyboard. A second call
2299 to read_char will read it.
2300
2301 If END_TIME is non-null, it is a pointer to a struct timespec
2302 specifying the maximum time to wait until. If no input arrives by
2303 that time, stop waiting and return nil.
2304
2305 Value is t if we showed a menu and the user rejected it. */
2306
2307 Lisp_Object
2308 read_char (int commandflag, Lisp_Object map,
2309 Lisp_Object prev_event,
2310 bool *used_mouse_menu, struct timespec *end_time)
2311 {
2312 Lisp_Object c;
2313 ptrdiff_t jmpcount;
2314 sys_jmp_buf local_getcjmp;
2315 sys_jmp_buf save_jump;
2316 Lisp_Object tem, save;
2317 volatile Lisp_Object previous_echo_area_message;
2318 volatile Lisp_Object also_record;
2319 volatile bool reread, recorded;
2320 bool volatile polling_stopped_here = false;
2321 struct kboard *orig_kboard = current_kboard;
2322
2323 also_record = Qnil;
2324
2325 c = Qnil;
2326 previous_echo_area_message = Qnil;
2327
2328 retry:
2329
2330 recorded = false;
2331
2332 if (CONSP (Vunread_post_input_method_events))
2333 {
2334 c = XCAR (Vunread_post_input_method_events);
2335 Vunread_post_input_method_events
2336 = XCDR (Vunread_post_input_method_events);
2337
2338 /* Undo what read_char_x_menu_prompt did when it unread
2339 additional keys returned by Fx_popup_menu. */
2340 if (CONSP (c)
2341 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2342 && NILP (XCDR (c)))
2343 c = XCAR (c);
2344
2345 reread = true;
2346 goto reread_first;
2347 }
2348 else
2349 reread = false;
2350
2351
2352 if (CONSP (Vunread_command_events))
2353 {
2354 bool was_disabled = false;
2355
2356 c = XCAR (Vunread_command_events);
2357 Vunread_command_events = XCDR (Vunread_command_events);
2358
2359 /* Undo what sit-for did when it unread additional keys
2360 inside universal-argument. */
2361
2362 if (CONSP (c) && EQ (XCAR (c), Qt))
2363 c = XCDR (c);
2364 else
2365 reread = true;
2366
2367 /* Undo what read_char_x_menu_prompt did when it unread
2368 additional keys returned by Fx_popup_menu. */
2369 if (CONSP (c)
2370 && EQ (XCDR (c), Qdisabled)
2371 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2372 {
2373 was_disabled = true;
2374 c = XCAR (c);
2375 }
2376
2377 /* If the queued event is something that used the mouse,
2378 set used_mouse_menu accordingly. */
2379 if (used_mouse_menu
2380 /* Also check was_disabled so last-nonmenu-event won't return
2381 a bad value when submenus are involved. (Bug#447) */
2382 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar) || was_disabled))
2383 *used_mouse_menu = true;
2384
2385 goto reread_for_input_method;
2386 }
2387
2388 if (CONSP (Vunread_input_method_events))
2389 {
2390 c = XCAR (Vunread_input_method_events);
2391 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2392
2393 /* Undo what read_char_x_menu_prompt did when it unread
2394 additional keys returned by Fx_popup_menu. */
2395 if (CONSP (c)
2396 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2397 && NILP (XCDR (c)))
2398 c = XCAR (c);
2399 reread = true;
2400 goto reread_for_input_method;
2401 }
2402
2403 if (!NILP (Vexecuting_kbd_macro))
2404 {
2405 /* We set this to Qmacro; since that's not a frame, nobody will
2406 try to switch frames on us, and the selected window will
2407 remain unchanged.
2408
2409 Since this event came from a macro, it would be misleading to
2410 leave internal_last_event_frame set to wherever the last
2411 real event came from. Normally, a switch-frame event selects
2412 internal_last_event_frame after each command is read, but
2413 events read from a macro should never cause a new frame to be
2414 selected. */
2415 Vlast_event_frame = internal_last_event_frame = Qmacro;
2416
2417 /* Exit the macro if we are at the end.
2418 Also, some things replace the macro with t
2419 to force an early exit. */
2420 if (EQ (Vexecuting_kbd_macro, Qt)
2421 || executing_kbd_macro_index >= XFASTINT (Flength (Vexecuting_kbd_macro)))
2422 {
2423 XSETINT (c, -1);
2424 goto exit;
2425 }
2426
2427 c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index));
2428 if (STRINGP (Vexecuting_kbd_macro)
2429 && (XFASTINT (c) & 0x80) && (XFASTINT (c) <= 0xff))
2430 XSETFASTINT (c, CHAR_META | (XFASTINT (c) & ~0x80));
2431
2432 executing_kbd_macro_index++;
2433
2434 goto from_macro;
2435 }
2436
2437 if (!NILP (unread_switch_frame))
2438 {
2439 c = unread_switch_frame;
2440 unread_switch_frame = Qnil;
2441
2442 /* This event should make it into this_command_keys, and get echoed
2443 again, so we do not set `reread'. */
2444 goto reread_first;
2445 }
2446
2447 /* If redisplay was requested. */
2448 if (commandflag >= 0)
2449 {
2450 bool echo_current = EQ (echo_message_buffer, echo_area_buffer[0]);
2451
2452 /* If there is pending input, process any events which are not
2453 user-visible, such as X selection_request events. */
2454 if (input_pending
2455 || detect_input_pending_run_timers (0))
2456 swallow_events (false); /* May clear input_pending. */
2457
2458 /* Redisplay if no pending input. */
2459 while (!(input_pending
2460 && (input_was_pending || !redisplay_dont_pause)))
2461 {
2462 input_was_pending = input_pending;
2463 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2464 redisplay_preserve_echo_area (5);
2465 else
2466 redisplay ();
2467
2468 if (!input_pending)
2469 /* Normal case: no input arrived during redisplay. */
2470 break;
2471
2472 /* Input arrived and pre-empted redisplay.
2473 Process any events which are not user-visible. */
2474 swallow_events (false);
2475 /* If that cleared input_pending, try again to redisplay. */
2476 }
2477
2478 /* Prevent the redisplay we just did
2479 from messing up echoing of the input after the prompt. */
2480 if (commandflag == 0 && echo_current)
2481 echo_message_buffer = echo_area_buffer[0];
2482
2483 }
2484
2485 /* Message turns off echoing unless more keystrokes turn it on again.
2486
2487 The code in 20.x for the condition was
2488
2489 1. echo_area_glyphs && *echo_area_glyphs
2490 2. && echo_area_glyphs != current_kboard->echobuf
2491 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2492
2493 (1) means there's a current message displayed
2494
2495 (2) means it's not the message from echoing from the current
2496 kboard.
2497
2498 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2499 is set to a non-null value. This is done in read_char and it is
2500 set to echo_area_glyphs. That means
2501 ok_to_echo_at_next_pause is either null or
2502 current_kboard->echobuf with the appropriate current_kboard at
2503 that time.
2504
2505 So, condition (3) means in clear text ok_to_echo_at_next_pause
2506 must be either null, or the current message isn't from echoing at
2507 all, or it's from echoing from a different kboard than the
2508 current one. */
2509
2510 if (/* There currently is something in the echo area. */
2511 !NILP (echo_area_buffer[0])
2512 && (/* It's an echo from a different kboard. */
2513 echo_kboard != current_kboard
2514 /* Or we explicitly allow overwriting whatever there is. */
2515 || ok_to_echo_at_next_pause == NULL))
2516 cancel_echoing ();
2517 else
2518 echo_dash ();
2519
2520 /* Try reading a character via menu prompting in the minibuf.
2521 Try this before the sit-for, because the sit-for
2522 would do the wrong thing if we are supposed to do
2523 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2524 after a mouse event so don't try a minibuf menu. */
2525 c = Qnil;
2526 if (KEYMAPP (map) && INTERACTIVE
2527 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2528 /* Don't bring up a menu if we already have another event. */
2529 && NILP (Vunread_command_events)
2530 && !detect_input_pending_run_timers (0))
2531 {
2532 c = read_char_minibuf_menu_prompt (commandflag, map);
2533
2534 if (INTEGERP (c) && XINT (c) == -2)
2535 return c; /* wrong_kboard_jmpbuf */
2536
2537 if (! NILP (c))
2538 goto exit;
2539 }
2540
2541 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2542 We will do that below, temporarily for short sections of code,
2543 when appropriate. local_getcjmp must be in effect
2544 around any call to sit_for or kbd_buffer_get_event;
2545 it *must not* be in effect when we call redisplay. */
2546
2547 jmpcount = SPECPDL_INDEX ();
2548 if (sys_setjmp (local_getcjmp))
2549 {
2550 /* Handle quits while reading the keyboard. */
2551 /* We must have saved the outer value of getcjmp here,
2552 so restore it now. */
2553 restore_getcjmp (save_jump);
2554 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
2555 unbind_to (jmpcount, Qnil);
2556 XSETINT (c, quit_char);
2557 internal_last_event_frame = selected_frame;
2558 Vlast_event_frame = internal_last_event_frame;
2559 /* If we report the quit char as an event,
2560 don't do so more than once. */
2561 if (!NILP (Vinhibit_quit))
2562 Vquit_flag = Qnil;
2563
2564 {
2565 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2566 if (kb != current_kboard)
2567 {
2568 Lisp_Object last = KVAR (kb, kbd_queue);
2569 /* We shouldn't get here if we were in single-kboard mode! */
2570 if (single_kboard)
2571 emacs_abort ();
2572 if (CONSP (last))
2573 {
2574 while (CONSP (XCDR (last)))
2575 last = XCDR (last);
2576 if (!NILP (XCDR (last)))
2577 emacs_abort ();
2578 }
2579 if (!CONSP (last))
2580 kset_kbd_queue (kb, list1 (c));
2581 else
2582 XSETCDR (last, list1 (c));
2583 kb->kbd_queue_has_data = true;
2584 current_kboard = kb;
2585 return make_number (-2); /* wrong_kboard_jmpbuf */
2586 }
2587 }
2588 goto non_reread;
2589 }
2590
2591 /* Start idle timers if no time limit is supplied. We don't do it
2592 if a time limit is supplied to avoid an infinite recursion in the
2593 situation where an idle timer calls `sit-for'. */
2594
2595 if (!end_time)
2596 timer_start_idle ();
2597
2598 /* If in middle of key sequence and minibuffer not active,
2599 start echoing if enough time elapses. */
2600
2601 if (minibuf_level == 0
2602 && !end_time
2603 && !current_kboard->immediate_echo
2604 && (this_command_key_count > 0
2605 || !NILP (call0 (Qinternal_echo_keystrokes_prefix)))
2606 && ! noninteractive
2607 && echo_keystrokes_p ()
2608 && (/* No message. */
2609 NILP (echo_area_buffer[0])
2610 /* Or empty message. */
2611 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2612 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2613 /* Or already echoing from same kboard. */
2614 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2615 /* Or not echoing before and echoing allowed. */
2616 || (!echo_kboard && ok_to_echo_at_next_pause)))
2617 {
2618 /* After a mouse event, start echoing right away.
2619 This is because we are probably about to display a menu,
2620 and we don't want to delay before doing so. */
2621 if (EVENT_HAS_PARAMETERS (prev_event))
2622 echo_now ();
2623 else
2624 {
2625 Lisp_Object tem0;
2626
2627 save_getcjmp (save_jump);
2628 restore_getcjmp (local_getcjmp);
2629 tem0 = sit_for (Vecho_keystrokes, 1, 1);
2630 restore_getcjmp (save_jump);
2631 if (EQ (tem0, Qt)
2632 && ! CONSP (Vunread_command_events))
2633 echo_now ();
2634 }
2635 }
2636
2637 /* Maybe auto save due to number of keystrokes. */
2638
2639 if (commandflag != 0 && commandflag != -2
2640 && auto_save_interval > 0
2641 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2642 && !detect_input_pending_run_timers (0))
2643 {
2644 Fdo_auto_save (Qnil, Qnil);
2645 /* Hooks can actually change some buffers in auto save. */
2646 redisplay ();
2647 }
2648
2649 /* Try reading using an X menu.
2650 This is never confused with reading using the minibuf
2651 because the recursive call of read_char in read_char_minibuf_menu_prompt
2652 does not pass on any keymaps. */
2653
2654 if (KEYMAPP (map) && INTERACTIVE
2655 && !NILP (prev_event)
2656 && EVENT_HAS_PARAMETERS (prev_event)
2657 && !EQ (XCAR (prev_event), Qmenu_bar)
2658 && !EQ (XCAR (prev_event), Qtool_bar)
2659 /* Don't bring up a menu if we already have another event. */
2660 && NILP (Vunread_command_events))
2661 {
2662 c = read_char_x_menu_prompt (map, prev_event, used_mouse_menu);
2663
2664 /* Now that we have read an event, Emacs is not idle. */
2665 if (!end_time)
2666 timer_stop_idle ();
2667
2668 goto exit;
2669 }
2670
2671 /* Maybe autosave and/or garbage collect due to idleness. */
2672
2673 if (INTERACTIVE && NILP (c))
2674 {
2675 int delay_level;
2676 ptrdiff_t buffer_size;
2677
2678 /* Slow down auto saves logarithmically in size of current buffer,
2679 and garbage collect while we're at it. */
2680 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2681 last_non_minibuf_size = Z - BEG;
2682 buffer_size = (last_non_minibuf_size >> 8) + 1;
2683 delay_level = 0;
2684 while (buffer_size > 64)
2685 delay_level++, buffer_size -= buffer_size >> 2;
2686 if (delay_level < 4) delay_level = 4;
2687 /* delay_level is 4 for files under around 50k, 7 at 100k,
2688 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2689
2690 /* Auto save if enough time goes by without input. */
2691 if (commandflag != 0 && commandflag != -2
2692 && num_nonmacro_input_events > last_auto_save
2693 && INTEGERP (Vauto_save_timeout)
2694 && XINT (Vauto_save_timeout) > 0)
2695 {
2696 Lisp_Object tem0;
2697 EMACS_INT timeout = XFASTINT (Vauto_save_timeout);
2698
2699 timeout = min (timeout, MOST_POSITIVE_FIXNUM / delay_level * 4);
2700 timeout = delay_level * timeout / 4;
2701 save_getcjmp (save_jump);
2702 restore_getcjmp (local_getcjmp);
2703 tem0 = sit_for (make_number (timeout), 1, 1);
2704 restore_getcjmp (save_jump);
2705
2706 if (EQ (tem0, Qt)
2707 && ! CONSP (Vunread_command_events))
2708 {
2709 Fdo_auto_save (Qnil, Qnil);
2710 redisplay ();
2711 }
2712 }
2713
2714 /* If there is still no input available, ask for GC. */
2715 if (!detect_input_pending_run_timers (0))
2716 maybe_gc ();
2717 }
2718
2719 /* Notify the caller if an autosave hook, or a timer, sentinel or
2720 filter in the sit_for calls above have changed the current
2721 kboard. This could happen if they use the minibuffer or start a
2722 recursive edit, like the fancy splash screen in server.el's
2723 filter. If this longjmp wasn't here, read_key_sequence would
2724 interpret the next key sequence using the wrong translation
2725 tables and function keymaps. */
2726 if (NILP (c) && current_kboard != orig_kboard)
2727 return make_number (-2); /* wrong_kboard_jmpbuf */
2728
2729 /* If this has become non-nil here, it has been set by a timer
2730 or sentinel or filter. */
2731 if (CONSP (Vunread_command_events))
2732 {
2733 c = XCAR (Vunread_command_events);
2734 Vunread_command_events = XCDR (Vunread_command_events);
2735
2736 if (CONSP (c) && EQ (XCAR (c), Qt))
2737 c = XCDR (c);
2738 else
2739 reread = true;
2740 }
2741
2742 /* Read something from current KBOARD's side queue, if possible. */
2743
2744 if (NILP (c))
2745 {
2746 if (current_kboard->kbd_queue_has_data)
2747 {
2748 if (!CONSP (KVAR (current_kboard, kbd_queue)))
2749 emacs_abort ();
2750 c = XCAR (KVAR (current_kboard, kbd_queue));
2751 kset_kbd_queue (current_kboard,
2752 XCDR (KVAR (current_kboard, kbd_queue)));
2753 if (NILP (KVAR (current_kboard, kbd_queue)))
2754 current_kboard->kbd_queue_has_data = false;
2755 input_pending = readable_events (0);
2756 if (EVENT_HAS_PARAMETERS (c)
2757 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2758 internal_last_event_frame = XCAR (XCDR (c));
2759 Vlast_event_frame = internal_last_event_frame;
2760 }
2761 }
2762
2763 /* If current_kboard's side queue is empty check the other kboards.
2764 If one of them has data that we have not yet seen here,
2765 switch to it and process the data waiting for it.
2766
2767 Note: if the events queued up for another kboard
2768 have already been seen here, and therefore are not a complete command,
2769 the kbd_queue_has_data field is 0, so we skip that kboard here.
2770 That's to avoid an infinite loop switching between kboards here. */
2771 if (NILP (c) && !single_kboard)
2772 {
2773 KBOARD *kb;
2774 for (kb = all_kboards; kb; kb = kb->next_kboard)
2775 if (kb->kbd_queue_has_data)
2776 {
2777 current_kboard = kb;
2778 return make_number (-2); /* wrong_kboard_jmpbuf */
2779 }
2780 }
2781
2782 wrong_kboard:
2783
2784 STOP_POLLING;
2785
2786 if (NILP (c))
2787 {
2788 c = read_decoded_event_from_main_queue (end_time, local_getcjmp,
2789 prev_event, used_mouse_menu);
2790 if (NILP (c) && end_time
2791 && timespec_cmp (*end_time, current_timespec ()) <= 0)
2792 {
2793 goto exit;
2794 }
2795
2796 if (EQ (c, make_number (-2)))
2797 return c;
2798 }
2799
2800 non_reread:
2801
2802 if (!end_time)
2803 timer_stop_idle ();
2804 RESUME_POLLING;
2805
2806 if (NILP (c))
2807 {
2808 if (commandflag >= 0
2809 && !input_pending && !detect_input_pending_run_timers (0))
2810 redisplay ();
2811
2812 goto wrong_kboard;
2813 }
2814
2815 /* Buffer switch events are only for internal wakeups
2816 so don't show them to the user.
2817 Also, don't record a key if we already did. */
2818 if (BUFFERP (c))
2819 goto exit;
2820
2821 /* Process special events within read_char
2822 and loop around to read another event. */
2823 save = Vquit_flag;
2824 Vquit_flag = Qnil;
2825 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2826 Vquit_flag = save;
2827
2828 if (!NILP (tem))
2829 {
2830 struct buffer *prev_buffer = current_buffer;
2831 last_input_event = c;
2832 call4 (Qcommand_execute, tem, Qnil, Fvector (1, &last_input_event), Qt);
2833
2834 if (CONSP (c) && EQ (XCAR (c), Qselect_window) && !end_time)
2835 /* We stopped being idle for this event; undo that. This
2836 prevents automatic window selection (under
2837 mouse_autoselect_window from acting as a real input event, for
2838 example banishing the mouse under mouse-avoidance-mode. */
2839 timer_resume_idle ();
2840
2841 if (current_buffer != prev_buffer)
2842 {
2843 /* The command may have changed the keymaps. Pretend there
2844 is input in another keyboard and return. This will
2845 recalculate keymaps. */
2846 c = make_number (-2);
2847 goto exit;
2848 }
2849 else
2850 goto retry;
2851 }
2852
2853 /* Handle things that only apply to characters. */
2854 if (INTEGERP (c))
2855 {
2856 /* If kbd_buffer_get_event gave us an EOF, return that. */
2857 if (XINT (c) == -1)
2858 goto exit;
2859
2860 if ((STRINGP (KVAR (current_kboard, Vkeyboard_translate_table))
2861 && UNSIGNED_CMP (XFASTINT (c), <,
2862 SCHARS (KVAR (current_kboard,
2863 Vkeyboard_translate_table))))
2864 || (VECTORP (KVAR (current_kboard, Vkeyboard_translate_table))
2865 && UNSIGNED_CMP (XFASTINT (c), <,
2866 ASIZE (KVAR (current_kboard,
2867 Vkeyboard_translate_table))))
2868 || (CHAR_TABLE_P (KVAR (current_kboard, Vkeyboard_translate_table))
2869 && CHARACTERP (c)))
2870 {
2871 Lisp_Object d;
2872 d = Faref (KVAR (current_kboard, Vkeyboard_translate_table), c);
2873 /* nil in keyboard-translate-table means no translation. */
2874 if (!NILP (d))
2875 c = d;
2876 }
2877 }
2878
2879 /* If this event is a mouse click in the menu bar,
2880 return just menu-bar for now. Modify the mouse click event
2881 so we won't do this twice, then queue it up. */
2882 if (EVENT_HAS_PARAMETERS (c)
2883 && CONSP (XCDR (c))
2884 && CONSP (EVENT_START (c))
2885 && CONSP (XCDR (EVENT_START (c))))
2886 {
2887 Lisp_Object posn;
2888
2889 posn = POSN_POSN (EVENT_START (c));
2890 /* Handle menu-bar events:
2891 insert the dummy prefix event `menu-bar'. */
2892 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2893 {
2894 /* Change menu-bar to (menu-bar) as the event "position". */
2895 POSN_SET_POSN (EVENT_START (c), list1 (posn));
2896
2897 also_record = c;
2898 Vunread_command_events = Fcons (c, Vunread_command_events);
2899 c = posn;
2900 }
2901 }
2902
2903 /* Store these characters into recent_keys, the dribble file if any,
2904 and the keyboard macro being defined, if any. */
2905 record_char (c);
2906 recorded = true;
2907 if (! NILP (also_record))
2908 record_char (also_record);
2909
2910 /* Wipe the echo area.
2911 But first, if we are about to use an input method,
2912 save the echo area contents for it to refer to. */
2913 if (INTEGERP (c)
2914 && ! NILP (Vinput_method_function)
2915 && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127)
2916 {
2917 previous_echo_area_message = Fcurrent_message ();
2918 Vinput_method_previous_message = previous_echo_area_message;
2919 }
2920
2921 /* Now wipe the echo area, except for help events which do their
2922 own stuff with the echo area. */
2923 if (!CONSP (c)
2924 || (!(EQ (Qhelp_echo, XCAR (c)))
2925 && !(EQ (Qswitch_frame, XCAR (c)))
2926 /* Don't wipe echo area for select window events: These might
2927 get delayed via `mouse-autoselect-window' (Bug#11304). */
2928 && !(EQ (Qselect_window, XCAR (c)))))
2929 {
2930 if (!NILP (echo_area_buffer[0]))
2931 {
2932 safe_run_hooks (Qecho_area_clear_hook);
2933 clear_message (1, 0);
2934 }
2935 }
2936
2937 reread_for_input_method:
2938 from_macro:
2939 /* Pass this to the input method, if appropriate. */
2940 if (INTEGERP (c)
2941 && ! NILP (Vinput_method_function)
2942 /* Don't run the input method within a key sequence,
2943 after the first event of the key sequence. */
2944 && NILP (prev_event)
2945 && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127)
2946 {
2947 Lisp_Object keys;
2948 ptrdiff_t key_count;
2949 ptrdiff_t command_key_start;
2950 ptrdiff_t count = SPECPDL_INDEX ();
2951
2952 /* Save the echo status. */
2953 bool saved_immediate_echo = current_kboard->immediate_echo;
2954 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
2955 Lisp_Object saved_echo_string = KVAR (current_kboard, echo_string);
2956 Lisp_Object saved_echo_prompt = KVAR (current_kboard, echo_prompt);
2957
2958 /* Save the this_command_keys status. */
2959 key_count = this_command_key_count;
2960 command_key_start = this_single_command_key_start;
2961
2962 if (key_count > 0)
2963 keys = Fcopy_sequence (this_command_keys);
2964 else
2965 keys = Qnil;
2966
2967 /* Clear out this_command_keys. */
2968 this_command_key_count = 0;
2969 this_single_command_key_start = 0;
2970
2971 /* Now wipe the echo area. */
2972 if (!NILP (echo_area_buffer[0]))
2973 safe_run_hooks (Qecho_area_clear_hook);
2974 clear_message (1, 0);
2975 echo_truncate (0);
2976
2977 /* If we are not reading a key sequence,
2978 never use the echo area. */
2979 if (!KEYMAPP (map))
2980 {
2981 specbind (Qinput_method_use_echo_area, Qt);
2982 }
2983
2984 /* Call the input method. */
2985 tem = call1 (Vinput_method_function, c);
2986
2987 tem = unbind_to (count, tem);
2988
2989 /* Restore the saved echoing state
2990 and this_command_keys state. */
2991 this_command_key_count = key_count;
2992 this_single_command_key_start = command_key_start;
2993 if (key_count > 0)
2994 this_command_keys = keys;
2995
2996 cancel_echoing ();
2997 ok_to_echo_at_next_pause = saved_ok_to_echo;
2998 kset_echo_string (current_kboard, saved_echo_string);
2999 kset_echo_prompt (current_kboard, saved_echo_prompt);
3000 if (saved_immediate_echo)
3001 echo_now ();
3002
3003 /* The input method can return no events. */
3004 if (! CONSP (tem))
3005 {
3006 /* Bring back the previous message, if any. */
3007 if (! NILP (previous_echo_area_message))
3008 message_with_string ("%s", previous_echo_area_message, 0);
3009 goto retry;
3010 }
3011 /* It returned one event or more. */
3012 c = XCAR (tem);
3013 Vunread_post_input_method_events
3014 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3015 }
3016 /* When we consume events from the various unread-*-events lists, we
3017 bypass the code that records input, so record these events now if
3018 they were not recorded already. */
3019 if (!recorded)
3020 {
3021 record_char (c);
3022 recorded = true;
3023 }
3024
3025 reread_first:
3026
3027 /* Display help if not echoing. */
3028 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3029 {
3030 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3031 Lisp_Object help, object, position, window, htem;
3032
3033 htem = Fcdr (XCDR (c));
3034 help = Fcar (htem);
3035 htem = Fcdr (htem);
3036 window = Fcar (htem);
3037 htem = Fcdr (htem);
3038 object = Fcar (htem);
3039 htem = Fcdr (htem);
3040 position = Fcar (htem);
3041
3042 show_help_echo (help, window, object, position);
3043
3044 /* We stopped being idle for this event; undo that. */
3045 if (!end_time)
3046 timer_resume_idle ();
3047 goto retry;
3048 }
3049
3050 if ((! reread || this_command_key_count == 0)
3051 && !end_time)
3052 {
3053
3054 /* Don't echo mouse motion events. */
3055 if (! (EVENT_HAS_PARAMETERS (c)
3056 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3057 /* Once we reread a character, echoing can happen
3058 the next time we pause to read a new one. */
3059 ok_to_echo_at_next_pause = current_kboard;
3060
3061 /* Record this character as part of the current key. */
3062 add_command_key (c);
3063 if (! NILP (also_record))
3064 add_command_key (also_record);
3065
3066 echo_update ();
3067 }
3068
3069 last_input_event = c;
3070 num_input_events++;
3071
3072 /* Process the help character specially if enabled. */
3073 if (!NILP (Vhelp_form) && help_char_p (c))
3074 {
3075 ptrdiff_t count = SPECPDL_INDEX ();
3076
3077 help_form_saved_window_configs
3078 = Fcons (Fcurrent_window_configuration (Qnil),
3079 help_form_saved_window_configs);
3080 record_unwind_protect_void (read_char_help_form_unwind);
3081 call0 (Qhelp_form_show);
3082
3083 cancel_echoing ();
3084 do
3085 {
3086 c = read_char (0, Qnil, Qnil, 0, NULL);
3087 if (EVENT_HAS_PARAMETERS (c)
3088 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_click))
3089 XSETCAR (help_form_saved_window_configs, Qnil);
3090 }
3091 while (BUFFERP (c));
3092 /* Remove the help from the frame. */
3093 unbind_to (count, Qnil);
3094
3095 redisplay ();
3096 if (EQ (c, make_number (040)))
3097 {
3098 cancel_echoing ();
3099 do
3100 c = read_char (0, Qnil, Qnil, 0, NULL);
3101 while (BUFFERP (c));
3102 }
3103 }
3104
3105 exit:
3106 RESUME_POLLING;
3107 input_was_pending = input_pending;
3108 return c;
3109 }
3110
3111 /* Record a key that came from a mouse menu.
3112 Record it for echoing, for this-command-keys, and so on. */
3113
3114 static void
3115 record_menu_key (Lisp_Object c)
3116 {
3117 /* Wipe the echo area. */
3118 clear_message (1, 0);
3119
3120 record_char (c);
3121
3122 /* Once we reread a character, echoing can happen
3123 the next time we pause to read a new one. */
3124 ok_to_echo_at_next_pause = NULL;
3125
3126 /* Record this character as part of the current key. */
3127 add_command_key (c);
3128 echo_update ();
3129
3130 /* Re-reading in the middle of a command. */
3131 last_input_event = c;
3132 num_input_events++;
3133 }
3134
3135 /* Return true if should recognize C as "the help character". */
3136
3137 static bool
3138 help_char_p (Lisp_Object c)
3139 {
3140 Lisp_Object tail;
3141
3142 if (EQ (c, Vhelp_char))
3143 return 1;
3144 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3145 if (EQ (c, XCAR (tail)))
3146 return 1;
3147 return 0;
3148 }
3149
3150 /* Record the input event C in various ways. */
3151
3152 static void
3153 record_char (Lisp_Object c)
3154 {
3155 int recorded = 0;
3156
3157 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3158 {
3159 /* To avoid filling recent_keys with help-echo and mouse-movement
3160 events, we filter out repeated help-echo events, only store the
3161 first and last in a series of mouse-movement events, and don't
3162 store repeated help-echo events which are only separated by
3163 mouse-movement events. */
3164
3165 Lisp_Object ev1, ev2, ev3;
3166 int ix1, ix2, ix3;
3167
3168 if ((ix1 = recent_keys_index - 1) < 0)
3169 ix1 = NUM_RECENT_KEYS - 1;
3170 ev1 = AREF (recent_keys, ix1);
3171
3172 if ((ix2 = ix1 - 1) < 0)
3173 ix2 = NUM_RECENT_KEYS - 1;
3174 ev2 = AREF (recent_keys, ix2);
3175
3176 if ((ix3 = ix2 - 1) < 0)
3177 ix3 = NUM_RECENT_KEYS - 1;
3178 ev3 = AREF (recent_keys, ix3);
3179
3180 if (EQ (XCAR (c), Qhelp_echo))
3181 {
3182 /* Don't record `help-echo' in recent_keys unless it shows some help
3183 message, and a different help than the previously recorded
3184 event. */
3185 Lisp_Object help, last_help;
3186
3187 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3188 if (!STRINGP (help))
3189 recorded = 1;
3190 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3191 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3192 recorded = 1;
3193 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3194 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3195 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3196 recorded = -1;
3197 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3198 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3199 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3200 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3201 recorded = -2;
3202 }
3203 else if (EQ (XCAR (c), Qmouse_movement))
3204 {
3205 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3206 So additional mouse movement events replace the last element. */
3207 Lisp_Object last_window, window;
3208
3209 window = Fcar_safe (Fcar_safe (XCDR (c)));
3210 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3211 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3212 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3213 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3214 {
3215 ASET (recent_keys, ix1, c);
3216 recorded = 1;
3217 }
3218 }
3219 }
3220 else
3221 store_kbd_macro_char (c);
3222
3223 if (!recorded)
3224 {
3225 total_keys += total_keys < NUM_RECENT_KEYS;
3226 ASET (recent_keys, recent_keys_index, c);
3227 if (++recent_keys_index >= NUM_RECENT_KEYS)
3228 recent_keys_index = 0;
3229 }
3230 else if (recorded < 0)
3231 {
3232 /* We need to remove one or two events from recent_keys.
3233 To do this, we simply put nil at those events and move the
3234 recent_keys_index backwards over those events. Usually,
3235 users will never see those nil events, as they will be
3236 overwritten by the command keys entered to see recent_keys
3237 (e.g. C-h l). */
3238
3239 while (recorded++ < 0 && total_keys > 0)
3240 {
3241 if (total_keys < NUM_RECENT_KEYS)
3242 total_keys--;
3243 if (--recent_keys_index < 0)
3244 recent_keys_index = NUM_RECENT_KEYS - 1;
3245 ASET (recent_keys, recent_keys_index, Qnil);
3246 }
3247 }
3248
3249 num_nonmacro_input_events++;
3250
3251 /* Write c to the dribble file. If c is a lispy event, write
3252 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3253 If you, dear reader, have a better idea, you've got the source. :-) */
3254 if (dribble)
3255 {
3256 block_input ();
3257 if (INTEGERP (c))
3258 {
3259 if (XUINT (c) < 0x100)
3260 putc (XUINT (c), dribble);
3261 else
3262 fprintf (dribble, " 0x%"pI"x", XUINT (c));
3263 }
3264 else
3265 {
3266 Lisp_Object dribblee;
3267
3268 /* If it's a structured event, take the event header. */
3269 dribblee = EVENT_HEAD (c);
3270
3271 if (SYMBOLP (dribblee))
3272 {
3273 putc ('<', dribble);
3274 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3275 SBYTES (SYMBOL_NAME (dribblee)),
3276 dribble);
3277 putc ('>', dribble);
3278 }
3279 }
3280
3281 fflush (dribble);
3282 unblock_input ();
3283 }
3284 }
3285
3286 /* Copy out or in the info on where C-g should throw to.
3287 This is used when running Lisp code from within get_char,
3288 in case get_char is called recursively.
3289 See read_process_output. */
3290
3291 static void
3292 save_getcjmp (sys_jmp_buf temp)
3293 {
3294 memcpy (temp, getcjmp, sizeof getcjmp);
3295 }
3296
3297 static void
3298 restore_getcjmp (sys_jmp_buf temp)
3299 {
3300 memcpy (getcjmp, temp, sizeof getcjmp);
3301 }
3302 \f
3303 /* Low level keyboard/mouse input.
3304 kbd_buffer_store_event places events in kbd_buffer, and
3305 kbd_buffer_get_event retrieves them. */
3306
3307 /* Return true if there are any events in the queue that read-char
3308 would return. If this returns false, a read-char would block. */
3309 static bool
3310 readable_events (int flags)
3311 {
3312 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3313 timer_check ();
3314
3315 /* If the buffer contains only FOCUS_IN_EVENT events, and
3316 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3317 if (kbd_fetch_ptr != kbd_store_ptr)
3318 {
3319 if (flags & (READABLE_EVENTS_FILTER_EVENTS
3320 #ifdef USE_TOOLKIT_SCROLL_BARS
3321 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3322 #endif
3323 ))
3324 {
3325 union buffered_input_event *event = kbd_fetch_ptr;
3326
3327 do
3328 {
3329 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3330 event = kbd_buffer;
3331 if (!(
3332 #ifdef USE_TOOLKIT_SCROLL_BARS
3333 (flags & READABLE_EVENTS_FILTER_EVENTS) &&
3334 #endif
3335 event->kind == FOCUS_IN_EVENT)
3336 #ifdef USE_TOOLKIT_SCROLL_BARS
3337 && !((flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3338 && (event->kind == SCROLL_BAR_CLICK_EVENT
3339 || event->kind == HORIZONTAL_SCROLL_BAR_CLICK_EVENT)
3340 && event->ie.part == scroll_bar_handle
3341 && event->ie.modifiers == 0)
3342 #endif
3343 && !((flags & READABLE_EVENTS_FILTER_EVENTS)
3344 && event->kind == BUFFER_SWITCH_EVENT))
3345 return 1;
3346 event++;
3347 }
3348 while (event != kbd_store_ptr);
3349 }
3350 else
3351 return 1;
3352 }
3353
3354 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3355 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3356 return 1;
3357 if (single_kboard)
3358 {
3359 if (current_kboard->kbd_queue_has_data)
3360 return 1;
3361 }
3362 else
3363 {
3364 KBOARD *kb;
3365 for (kb = all_kboards; kb; kb = kb->next_kboard)
3366 if (kb->kbd_queue_has_data)
3367 return 1;
3368 }
3369 return 0;
3370 }
3371
3372 /* Set this for debugging, to have a way to get out */
3373 int stop_character EXTERNALLY_VISIBLE;
3374
3375 static KBOARD *
3376 event_to_kboard (struct input_event *event)
3377 {
3378 /* Not applicable for these special events. */
3379 if (event->kind == SELECTION_REQUEST_EVENT
3380 || event->kind == SELECTION_CLEAR_EVENT)
3381 return NULL;
3382 else
3383 {
3384 Lisp_Object obj = event->frame_or_window;
3385 /* There are some events that set this field to nil or string. */
3386 if (WINDOWP (obj))
3387 obj = WINDOW_FRAME (XWINDOW (obj));
3388 /* Also ignore dead frames here. */
3389 return ((FRAMEP (obj) && FRAME_LIVE_P (XFRAME (obj)))
3390 ? FRAME_KBOARD (XFRAME (obj)) : NULL);
3391 }
3392 }
3393
3394 #ifdef subprocesses
3395 /* Return the number of slots occupied in kbd_buffer. */
3396
3397 static int
3398 kbd_buffer_nr_stored (void)
3399 {
3400 return kbd_fetch_ptr == kbd_store_ptr
3401 ? 0
3402 : (kbd_fetch_ptr < kbd_store_ptr
3403 ? kbd_store_ptr - kbd_fetch_ptr
3404 : ((kbd_buffer + KBD_BUFFER_SIZE) - kbd_fetch_ptr
3405 + (kbd_store_ptr - kbd_buffer)));
3406 }
3407 #endif /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3408
3409 void
3410 kbd_buffer_store_event (register struct input_event *event)
3411 {
3412 kbd_buffer_store_event_hold (event, 0);
3413 }
3414
3415 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3416
3417 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3418 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3419 Else, if EVENT is a quit event, store the quit event
3420 in HOLD_QUIT, and return (thus ignoring further events).
3421
3422 This is used to postpone the processing of the quit event until all
3423 subsequent input events have been parsed (and discarded). */
3424
3425 void
3426 kbd_buffer_store_buffered_event (union buffered_input_event *event,
3427 struct input_event *hold_quit)
3428 {
3429 if (event->kind == NO_EVENT)
3430 emacs_abort ();
3431
3432 if (hold_quit && hold_quit->kind != NO_EVENT)
3433 return;
3434
3435 if (event->kind == ASCII_KEYSTROKE_EVENT)
3436 {
3437 int c = event->ie.code & 0377;
3438
3439 if (event->ie.modifiers & ctrl_modifier)
3440 c = make_ctrl_char (c);
3441
3442 c |= (event->ie.modifiers
3443 & (meta_modifier | alt_modifier
3444 | hyper_modifier | super_modifier));
3445
3446 if (c == quit_char)
3447 {
3448 KBOARD *kb = FRAME_KBOARD (XFRAME (event->ie.frame_or_window));
3449
3450 if (single_kboard && kb != current_kboard)
3451 {
3452 kset_kbd_queue
3453 (kb, list2 (make_lispy_switch_frame (event->ie.frame_or_window),
3454 make_number (c)));
3455 kb->kbd_queue_has_data = true;
3456 union buffered_input_event *sp;
3457 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3458 {
3459 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3460 sp = kbd_buffer;
3461
3462 if (event_to_kboard (&sp->ie) == kb)
3463 {
3464 sp->ie.kind = NO_EVENT;
3465 sp->ie.frame_or_window = Qnil;
3466 sp->ie.arg = Qnil;
3467 }
3468 }
3469 return;
3470 }
3471
3472 if (hold_quit)
3473 {
3474 *hold_quit = event->ie;
3475 return;
3476 }
3477
3478 /* If this results in a quit_char being returned to Emacs as
3479 input, set Vlast_event_frame properly. If this doesn't
3480 get returned to Emacs as an event, the next event read
3481 will set Vlast_event_frame again, so this is safe to do. */
3482 {
3483 Lisp_Object focus;
3484
3485 focus = FRAME_FOCUS_FRAME (XFRAME (event->ie.frame_or_window));
3486 if (NILP (focus))
3487 focus = event->ie.frame_or_window;
3488 internal_last_event_frame = focus;
3489 Vlast_event_frame = focus;
3490 }
3491
3492 handle_interrupt (0);
3493 return;
3494 }
3495
3496 if (c && c == stop_character)
3497 {
3498 sys_suspend ();
3499 return;
3500 }
3501 }
3502 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3503 Just ignore the second one. */
3504 else if (event->kind == BUFFER_SWITCH_EVENT
3505 && kbd_fetch_ptr != kbd_store_ptr
3506 && ((kbd_store_ptr == kbd_buffer
3507 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3508 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3509 return;
3510
3511 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3512 kbd_store_ptr = kbd_buffer;
3513
3514 /* Don't let the very last slot in the buffer become full,
3515 since that would make the two pointers equal,
3516 and that is indistinguishable from an empty buffer.
3517 Discard the event if it would fill the last slot. */
3518 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3519 {
3520 *kbd_store_ptr = *event;
3521 ++kbd_store_ptr;
3522 #ifdef subprocesses
3523 if (kbd_buffer_nr_stored () > KBD_BUFFER_SIZE / 2
3524 && ! kbd_on_hold_p ())
3525 {
3526 /* Don't read keyboard input until we have processed kbd_buffer.
3527 This happens when pasting text longer than KBD_BUFFER_SIZE/2. */
3528 hold_keyboard_input ();
3529 unrequest_sigio ();
3530 stop_polling ();
3531 }
3532 #endif /* subprocesses */
3533 }
3534
3535 /* If we're inside while-no-input, and this event qualifies
3536 as input, set quit-flag to cause an interrupt. */
3537 if (!NILP (Vthrow_on_input)
3538 && event->kind != FOCUS_IN_EVENT
3539 && event->kind != FOCUS_OUT_EVENT
3540 && event->kind != HELP_EVENT
3541 && event->kind != ICONIFY_EVENT
3542 && event->kind != DEICONIFY_EVENT)
3543 {
3544 Vquit_flag = Vthrow_on_input;
3545 /* If we're inside a function that wants immediate quits,
3546 do it now. */
3547 if (immediate_quit && NILP (Vinhibit_quit))
3548 {
3549 immediate_quit = false;
3550 QUIT;
3551 }
3552 }
3553 }
3554
3555
3556 #ifdef HAVE_X11
3557
3558 /* Put a selection input event back in the head of the event queue. */
3559
3560 void
3561 kbd_buffer_unget_event (struct selection_input_event *event)
3562 {
3563 if (kbd_fetch_ptr == kbd_buffer)
3564 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3565
3566 /* Don't let the very last slot in the buffer become full, */
3567 union buffered_input_event *kp = kbd_fetch_ptr - 1;
3568 if (kp != kbd_store_ptr)
3569 {
3570 kp->sie = *event;
3571 kbd_fetch_ptr = kp;
3572 }
3573 }
3574
3575 #endif
3576
3577 /* Limit help event positions to this range, to avoid overflow problems. */
3578 #define INPUT_EVENT_POS_MAX \
3579 ((ptrdiff_t) min (PTRDIFF_MAX, min (TYPE_MAXIMUM (Time) / 2, \
3580 MOST_POSITIVE_FIXNUM)))
3581 #define INPUT_EVENT_POS_MIN (-1 - INPUT_EVENT_POS_MAX)
3582
3583 /* Return a Time that encodes position POS. POS must be in range. */
3584
3585 static Time
3586 position_to_Time (ptrdiff_t pos)
3587 {
3588 eassert (INPUT_EVENT_POS_MIN <= pos && pos <= INPUT_EVENT_POS_MAX);
3589 return pos;
3590 }
3591
3592 /* Return the position that ENCODED_POS encodes.
3593 Avoid signed integer overflow. */
3594
3595 static ptrdiff_t
3596 Time_to_position (Time encoded_pos)
3597 {
3598 if (encoded_pos <= INPUT_EVENT_POS_MAX)
3599 return encoded_pos;
3600 Time encoded_pos_min = INPUT_EVENT_POS_MIN;
3601 eassert (encoded_pos_min <= encoded_pos);
3602 ptrdiff_t notpos = -1 - encoded_pos;
3603 return -1 - notpos;
3604 }
3605
3606 /* Generate a HELP_EVENT input_event and store it in the keyboard
3607 buffer.
3608
3609 HELP is the help form.
3610
3611 FRAME and WINDOW are the frame and window where the help is
3612 generated. OBJECT is the Lisp object where the help was found (a
3613 buffer, a string, an overlay, or nil if neither from a string nor
3614 from a buffer). POS is the position within OBJECT where the help
3615 was found. */
3616
3617 void
3618 gen_help_event (Lisp_Object help, Lisp_Object frame, Lisp_Object window,
3619 Lisp_Object object, ptrdiff_t pos)
3620 {
3621 struct input_event event;
3622
3623 event.kind = HELP_EVENT;
3624 event.frame_or_window = frame;
3625 event.arg = object;
3626 event.x = WINDOWP (window) ? window : frame;
3627 event.y = help;
3628 event.timestamp = position_to_Time (pos);
3629 kbd_buffer_store_event (&event);
3630 }
3631
3632
3633 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3634
3635 void
3636 kbd_buffer_store_help_event (Lisp_Object frame, Lisp_Object help)
3637 {
3638 struct input_event event;
3639
3640 event.kind = HELP_EVENT;
3641 event.frame_or_window = frame;
3642 event.arg = Qnil;
3643 event.x = Qnil;
3644 event.y = help;
3645 event.timestamp = 0;
3646 kbd_buffer_store_event (&event);
3647 }
3648
3649 \f
3650 /* Discard any mouse events in the event buffer by setting them to
3651 NO_EVENT. */
3652 void
3653 discard_mouse_events (void)
3654 {
3655 union buffered_input_event *sp;
3656 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3657 {
3658 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3659 sp = kbd_buffer;
3660
3661 if (sp->kind == MOUSE_CLICK_EVENT
3662 || sp->kind == WHEEL_EVENT
3663 || sp->kind == HORIZ_WHEEL_EVENT
3664 #ifdef HAVE_GPM
3665 || sp->kind == GPM_CLICK_EVENT
3666 #endif
3667 || sp->kind == SCROLL_BAR_CLICK_EVENT
3668 || sp->kind == HORIZONTAL_SCROLL_BAR_CLICK_EVENT)
3669 {
3670 sp->kind = NO_EVENT;
3671 }
3672 }
3673 }
3674
3675
3676 /* Return true if there are any real events waiting in the event
3677 buffer, not counting `NO_EVENT's.
3678
3679 Discard NO_EVENT events at the front of the input queue, possibly
3680 leaving the input queue empty if there are no real input events. */
3681
3682 bool
3683 kbd_buffer_events_waiting (void)
3684 {
3685 union buffered_input_event *sp;
3686
3687 for (sp = kbd_fetch_ptr;
3688 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3689 ++sp)
3690 {
3691 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3692 sp = kbd_buffer;
3693 }
3694
3695 kbd_fetch_ptr = sp;
3696 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3697 }
3698
3699 \f
3700 /* Clear input event EVENT. */
3701
3702 static void
3703 clear_event (union buffered_input_event *event)
3704 {
3705 event->kind = NO_EVENT;
3706 }
3707
3708
3709 /* Read one event from the event buffer, waiting if necessary.
3710 The value is a Lisp object representing the event.
3711 The value is nil for an event that should be ignored,
3712 or that was handled here.
3713 We always read and discard one event. */
3714
3715 static Lisp_Object
3716 kbd_buffer_get_event (KBOARD **kbp,
3717 bool *used_mouse_menu,
3718 struct timespec *end_time)
3719 {
3720 Lisp_Object obj;
3721
3722 #ifdef subprocesses
3723 if (kbd_on_hold_p () && kbd_buffer_nr_stored () < KBD_BUFFER_SIZE / 4)
3724 {
3725 /* Start reading input again because we have processed enough to
3726 be able to accept new events again. */
3727 unhold_keyboard_input ();
3728 request_sigio ();
3729 start_polling ();
3730 }
3731 #endif /* subprocesses */
3732
3733 #if !defined HAVE_DBUS && !defined USE_FILE_NOTIFY
3734 if (noninteractive
3735 /* In case we are running as a daemon, only do this before
3736 detaching from the terminal. */
3737 || (IS_DAEMON && DAEMON_RUNNING))
3738 {
3739 int c = getchar ();
3740 XSETINT (obj, c);
3741 *kbp = current_kboard;
3742 return obj;
3743 }
3744 #endif /* !defined HAVE_DBUS && !defined USE_FILE_NOTIFY */
3745
3746 /* Wait until there is input available. */
3747 for (;;)
3748 {
3749 /* Break loop if there's an unread command event. Needed in
3750 moused window autoselection which uses a timer to insert such
3751 events. */
3752 if (CONSP (Vunread_command_events))
3753 break;
3754
3755 if (kbd_fetch_ptr != kbd_store_ptr)
3756 break;
3757 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3758 break;
3759
3760 /* If the quit flag is set, then read_char will return
3761 quit_char, so that counts as "available input." */
3762 if (!NILP (Vquit_flag))
3763 quit_throw_to_read_char (0);
3764
3765 /* One way or another, wait until input is available; then, if
3766 interrupt handlers have not read it, read it now. */
3767
3768 #ifdef USABLE_SIGIO
3769 gobble_input ();
3770 #endif
3771 if (kbd_fetch_ptr != kbd_store_ptr)
3772 break;
3773 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3774 break;
3775 if (end_time)
3776 {
3777 struct timespec now = current_timespec ();
3778 if (timespec_cmp (*end_time, now) <= 0)
3779 return Qnil; /* Finished waiting. */
3780 else
3781 {
3782 struct timespec duration = timespec_sub (*end_time, now);
3783 wait_reading_process_output (min (duration.tv_sec,
3784 WAIT_READING_MAX),
3785 duration.tv_nsec,
3786 -1, 1, Qnil, NULL, 0);
3787 }
3788 }
3789 else
3790 {
3791 bool do_display = true;
3792
3793 if (FRAME_TERMCAP_P (SELECTED_FRAME ()))
3794 {
3795 struct tty_display_info *tty = CURTTY ();
3796
3797 /* When this TTY is displaying a menu, we must prevent
3798 any redisplay, because we modify the frame's glyph
3799 matrix behind the back of the display engine. */
3800 if (tty->showing_menu)
3801 do_display = false;
3802 }
3803
3804 wait_reading_process_output (0, 0, -1, do_display, Qnil, NULL, 0);
3805 }
3806
3807 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3808 gobble_input ();
3809 }
3810
3811 if (CONSP (Vunread_command_events))
3812 {
3813 Lisp_Object first;
3814 first = XCAR (Vunread_command_events);
3815 Vunread_command_events = XCDR (Vunread_command_events);
3816 *kbp = current_kboard;
3817 return first;
3818 }
3819
3820 /* At this point, we know that there is a readable event available
3821 somewhere. If the event queue is empty, then there must be a
3822 mouse movement enabled and available. */
3823 if (kbd_fetch_ptr != kbd_store_ptr)
3824 {
3825 union buffered_input_event *event;
3826
3827 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3828 ? kbd_fetch_ptr
3829 : kbd_buffer);
3830
3831 *kbp = event_to_kboard (&event->ie);
3832 if (*kbp == 0)
3833 *kbp = current_kboard; /* Better than returning null ptr? */
3834
3835 obj = Qnil;
3836
3837 /* These two kinds of events get special handling
3838 and don't actually appear to the command loop.
3839 We return nil for them. */
3840 if (event->kind == SELECTION_REQUEST_EVENT
3841 || event->kind == SELECTION_CLEAR_EVENT)
3842 {
3843 #ifdef HAVE_X11
3844 /* Remove it from the buffer before processing it,
3845 since otherwise swallow_events will see it
3846 and process it again. */
3847 struct selection_input_event copy = event->sie;
3848 kbd_fetch_ptr = event + 1;
3849 input_pending = readable_events (0);
3850 x_handle_selection_event (&copy);
3851 #else
3852 /* We're getting selection request events, but we don't have
3853 a window system. */
3854 emacs_abort ();
3855 #endif
3856 }
3857
3858 #if defined (HAVE_NS)
3859 else if (event->kind == NS_TEXT_EVENT)
3860 {
3861 if (event->ie.code == KEY_NS_PUT_WORKING_TEXT)
3862 obj = list1 (intern ("ns-put-working-text"));
3863 else
3864 obj = list1 (intern ("ns-unput-working-text"));
3865 kbd_fetch_ptr = event + 1;
3866 if (used_mouse_menu)
3867 *used_mouse_menu = true;
3868 }
3869 #endif
3870
3871 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
3872 || defined (HAVE_NS)
3873 else if (event->kind == DELETE_WINDOW_EVENT)
3874 {
3875 /* Make an event (delete-frame (FRAME)). */
3876 obj = list2 (Qdelete_frame, list1 (event->ie.frame_or_window));
3877 kbd_fetch_ptr = event + 1;
3878 }
3879 #endif
3880 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
3881 || defined (HAVE_NS)
3882 else if (event->kind == ICONIFY_EVENT)
3883 {
3884 /* Make an event (iconify-frame (FRAME)). */
3885 obj = list2 (Qiconify_frame, list1 (event->ie.frame_or_window));
3886 kbd_fetch_ptr = event + 1;
3887 }
3888 else if (event->kind == DEICONIFY_EVENT)
3889 {
3890 /* Make an event (make-frame-visible (FRAME)). */
3891 obj = list2 (Qmake_frame_visible, list1 (event->ie.frame_or_window));
3892 kbd_fetch_ptr = event + 1;
3893 }
3894 #endif
3895 else if (event->kind == BUFFER_SWITCH_EVENT)
3896 {
3897 /* The value doesn't matter here; only the type is tested. */
3898 XSETBUFFER (obj, current_buffer);
3899 kbd_fetch_ptr = event + 1;
3900 }
3901 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
3902 || defined (HAVE_NS) || defined (USE_GTK)
3903 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
3904 {
3905 kbd_fetch_ptr = event + 1;
3906 input_pending = readable_events (0);
3907 if (FRAME_LIVE_P (XFRAME (event->ie.frame_or_window)))
3908 x_activate_menubar (XFRAME (event->ie.frame_or_window));
3909 }
3910 #endif
3911 #ifdef HAVE_NTGUI
3912 else if (event->kind == LANGUAGE_CHANGE_EVENT)
3913 {
3914 /* Make an event (language-change FRAME CODEPAGE LANGUAGE-ID). */
3915 obj = list4 (Qlanguage_change,
3916 event->ie.frame_or_window,
3917 make_number (event->ie.code),
3918 make_number (event->ie.modifiers));
3919 kbd_fetch_ptr = event + 1;
3920 }
3921 #endif
3922 #ifdef USE_FILE_NOTIFY
3923 else if (event->kind == FILE_NOTIFY_EVENT)
3924 {
3925 #ifdef HAVE_W32NOTIFY
3926 /* Make an event (file-notify (DESCRIPTOR ACTION FILE) CALLBACK). */
3927 obj = list3 (Qfile_notify, event->ie.arg, event->ie.frame_or_window);
3928 #else
3929 obj = make_lispy_event (&event->ie);
3930 #endif
3931 kbd_fetch_ptr = event + 1;
3932 }
3933 #endif /* USE_FILE_NOTIFY */
3934 else if (event->kind == SAVE_SESSION_EVENT)
3935 {
3936 obj = list2 (Qsave_session, event->ie.arg);
3937 kbd_fetch_ptr = event + 1;
3938 }
3939 /* Just discard these, by returning nil.
3940 With MULTI_KBOARD, these events are used as placeholders
3941 when we need to randomly delete events from the queue.
3942 (They shouldn't otherwise be found in the buffer,
3943 but on some machines it appears they do show up
3944 even without MULTI_KBOARD.) */
3945 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
3946 mouse events during a popup-menu call. */
3947 else if (event->kind == NO_EVENT)
3948 kbd_fetch_ptr = event + 1;
3949 else if (event->kind == HELP_EVENT)
3950 {
3951 Lisp_Object object, position, help, frame, window;
3952
3953 frame = event->ie.frame_or_window;
3954 object = event->ie.arg;
3955 position = make_number (Time_to_position (event->ie.timestamp));
3956 window = event->ie.x;
3957 help = event->ie.y;
3958 clear_event (event);
3959
3960 kbd_fetch_ptr = event + 1;
3961 if (!WINDOWP (window))
3962 window = Qnil;
3963 obj = Fcons (Qhelp_echo,
3964 list5 (frame, help, window, object, position));
3965 }
3966 else if (event->kind == FOCUS_IN_EVENT)
3967 {
3968 /* Notification of a FocusIn event. The frame receiving the
3969 focus is in event->frame_or_window. Generate a
3970 switch-frame event if necessary. */
3971 Lisp_Object frame, focus;
3972
3973 frame = event->ie.frame_or_window;
3974 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3975 if (FRAMEP (focus))
3976 frame = focus;
3977
3978 if (
3979 #ifdef HAVE_X11
3980 ! NILP (event->ie.arg)
3981 &&
3982 #endif
3983 !EQ (frame, internal_last_event_frame)
3984 && !EQ (frame, selected_frame))
3985 obj = make_lispy_switch_frame (frame);
3986 else
3987 obj = make_lispy_focus_in (frame);
3988
3989 internal_last_event_frame = frame;
3990 kbd_fetch_ptr = event + 1;
3991 }
3992 else if (event->kind == FOCUS_OUT_EVENT)
3993 {
3994 #ifdef HAVE_WINDOW_SYSTEM
3995
3996 Display_Info *di;
3997 Lisp_Object frame = event->ie.frame_or_window;
3998 bool focused = false;
3999
4000 for (di = x_display_list; di && ! focused; di = di->next)
4001 focused = di->x_highlight_frame != 0;
4002
4003 if (!focused)
4004 obj = make_lispy_focus_out (frame);
4005
4006 #endif /* HAVE_WINDOW_SYSTEM */
4007
4008 kbd_fetch_ptr = event + 1;
4009 }
4010 #ifdef HAVE_DBUS
4011 else if (event->kind == DBUS_EVENT)
4012 {
4013 obj = make_lispy_event (&event->ie);
4014 kbd_fetch_ptr = event + 1;
4015 }
4016 #endif
4017 #ifdef HAVE_XWIDGETS
4018 else if (event->kind == XWIDGET_EVENT)
4019 {
4020 obj = make_lispy_event (&event->ie);
4021 kbd_fetch_ptr = event + 1;
4022 }
4023 #endif
4024 else if (event->kind == CONFIG_CHANGED_EVENT)
4025 {
4026 obj = make_lispy_event (&event->ie);
4027 kbd_fetch_ptr = event + 1;
4028 }
4029 else
4030 {
4031 /* If this event is on a different frame, return a switch-frame this
4032 time, and leave the event in the queue for next time. */
4033 Lisp_Object frame;
4034 Lisp_Object focus;
4035
4036 frame = event->ie.frame_or_window;
4037 if (CONSP (frame))
4038 frame = XCAR (frame);
4039 else if (WINDOWP (frame))
4040 frame = WINDOW_FRAME (XWINDOW (frame));
4041
4042 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4043 if (! NILP (focus))
4044 frame = focus;
4045
4046 if (! EQ (frame, internal_last_event_frame)
4047 && !EQ (frame, selected_frame))
4048 obj = make_lispy_switch_frame (frame);
4049 internal_last_event_frame = frame;
4050
4051 /* If we didn't decide to make a switch-frame event, go ahead
4052 and build a real event from the queue entry. */
4053
4054 if (NILP (obj))
4055 {
4056 obj = make_lispy_event (&event->ie);
4057
4058 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4059 || defined (HAVE_NS) || defined (USE_GTK)
4060 /* If this was a menu selection, then set the flag to inhibit
4061 writing to last_nonmenu_event. Don't do this if the event
4062 we're returning is (menu-bar), though; that indicates the
4063 beginning of the menu sequence, and we might as well leave
4064 that as the `event with parameters' for this selection. */
4065 if (used_mouse_menu
4066 && !EQ (event->ie.frame_or_window, event->ie.arg)
4067 && (event->kind == MENU_BAR_EVENT
4068 || event->kind == TOOL_BAR_EVENT))
4069 *used_mouse_menu = true;
4070 #endif
4071 #ifdef HAVE_NS
4072 /* Certain system events are non-key events. */
4073 if (used_mouse_menu
4074 && event->kind == NS_NONKEY_EVENT)
4075 *used_mouse_menu = true;
4076 #endif
4077
4078 /* Wipe out this event, to catch bugs. */
4079 clear_event (event);
4080 kbd_fetch_ptr = event + 1;
4081 }
4082 }
4083 }
4084 /* Try generating a mouse motion event. */
4085 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4086 {
4087 struct frame *f = some_mouse_moved ();
4088 Lisp_Object bar_window;
4089 enum scroll_bar_part part;
4090 Lisp_Object x, y;
4091 Time t;
4092
4093 *kbp = current_kboard;
4094 /* Note that this uses F to determine which terminal to look at.
4095 If there is no valid info, it does not store anything
4096 so x remains nil. */
4097 x = Qnil;
4098
4099 /* XXX Can f or mouse_position_hook be NULL here? */
4100 if (f && FRAME_TERMINAL (f)->mouse_position_hook)
4101 (*FRAME_TERMINAL (f)->mouse_position_hook) (&f, 0, &bar_window,
4102 &part, &x, &y, &t);
4103
4104 obj = Qnil;
4105
4106 /* Decide if we should generate a switch-frame event. Don't
4107 generate switch-frame events for motion outside of all Emacs
4108 frames. */
4109 if (!NILP (x) && f)
4110 {
4111 Lisp_Object frame;
4112
4113 frame = FRAME_FOCUS_FRAME (f);
4114 if (NILP (frame))
4115 XSETFRAME (frame, f);
4116
4117 if (! EQ (frame, internal_last_event_frame)
4118 && !EQ (frame, selected_frame))
4119 obj = make_lispy_switch_frame (frame);
4120 internal_last_event_frame = frame;
4121 }
4122
4123 /* If we didn't decide to make a switch-frame event, go ahead and
4124 return a mouse-motion event. */
4125 if (!NILP (x) && NILP (obj))
4126 obj = make_lispy_movement (f, bar_window, part, x, y, t);
4127 }
4128 else
4129 /* We were promised by the above while loop that there was
4130 something for us to read! */
4131 emacs_abort ();
4132
4133 input_pending = readable_events (0);
4134
4135 Vlast_event_frame = internal_last_event_frame;
4136
4137 return (obj);
4138 }
4139 \f
4140 /* Process any non-user-visible events (currently X selection events),
4141 without reading any user-visible events. */
4142
4143 static void
4144 process_special_events (void)
4145 {
4146 union buffered_input_event *event;
4147
4148 for (event = kbd_fetch_ptr; event != kbd_store_ptr; ++event)
4149 {
4150 if (event == kbd_buffer + KBD_BUFFER_SIZE)
4151 {
4152 event = kbd_buffer;
4153 if (event == kbd_store_ptr)
4154 break;
4155 }
4156
4157 /* If we find a stored X selection request, handle it now. */
4158 if (event->kind == SELECTION_REQUEST_EVENT
4159 || event->kind == SELECTION_CLEAR_EVENT)
4160 {
4161 #ifdef HAVE_X11
4162
4163 /* Remove the event from the fifo buffer before processing;
4164 otherwise swallow_events called recursively could see it
4165 and process it again. To do this, we move the events
4166 between kbd_fetch_ptr and EVENT one slot to the right,
4167 cyclically. */
4168
4169 struct selection_input_event copy = event->sie;
4170 union buffered_input_event *beg
4171 = (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
4172 ? kbd_buffer : kbd_fetch_ptr;
4173
4174 if (event > beg)
4175 memmove (beg + 1, beg, (event - beg) * sizeof *beg);
4176 else if (event < beg)
4177 {
4178 if (event > kbd_buffer)
4179 memmove (kbd_buffer + 1, kbd_buffer,
4180 (event - kbd_buffer) * sizeof *kbd_buffer);
4181 *kbd_buffer = *(kbd_buffer + KBD_BUFFER_SIZE - 1);
4182 if (beg < kbd_buffer + KBD_BUFFER_SIZE - 1)
4183 memmove (beg + 1, beg,
4184 (kbd_buffer + KBD_BUFFER_SIZE - 1 - beg) * sizeof *beg);
4185 }
4186
4187 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
4188 kbd_fetch_ptr = kbd_buffer + 1;
4189 else
4190 kbd_fetch_ptr++;
4191
4192 input_pending = readable_events (0);
4193 x_handle_selection_event (&copy);
4194 #else
4195 /* We're getting selection request events, but we don't have
4196 a window system. */
4197 emacs_abort ();
4198 #endif
4199 }
4200 }
4201 }
4202
4203 /* Process any events that are not user-visible, run timer events that
4204 are ripe, and return, without reading any user-visible events. */
4205
4206 void
4207 swallow_events (bool do_display)
4208 {
4209 unsigned old_timers_run;
4210
4211 process_special_events ();
4212
4213 old_timers_run = timers_run;
4214 get_input_pending (READABLE_EVENTS_DO_TIMERS_NOW);
4215
4216 if (!input_pending && timers_run != old_timers_run && do_display)
4217 redisplay_preserve_echo_area (7);
4218 }
4219 \f
4220 /* Record the start of when Emacs is idle,
4221 for the sake of running idle-time timers. */
4222
4223 static void
4224 timer_start_idle (void)
4225 {
4226 /* If we are already in the idle state, do nothing. */
4227 if (timespec_valid_p (timer_idleness_start_time))
4228 return;
4229
4230 timer_idleness_start_time = current_timespec ();
4231 timer_last_idleness_start_time = timer_idleness_start_time;
4232
4233 /* Mark all idle-time timers as once again candidates for running. */
4234 call0 (intern ("internal-timer-start-idle"));
4235 }
4236
4237 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4238
4239 static void
4240 timer_stop_idle (void)
4241 {
4242 timer_idleness_start_time = invalid_timespec ();
4243 }
4244
4245 /* Resume idle timer from last idle start time. */
4246
4247 static void
4248 timer_resume_idle (void)
4249 {
4250 if (timespec_valid_p (timer_idleness_start_time))
4251 return;
4252
4253 timer_idleness_start_time = timer_last_idleness_start_time;
4254 }
4255
4256 /* List of elisp functions to call, delayed because they were generated in
4257 a context where Elisp could not be safely run (e.g. redisplay, signal,
4258 ...). Each element has the form (FUN . ARGS). */
4259 Lisp_Object pending_funcalls;
4260
4261 /* Return true if TIMER is a valid timer, placing its value into *RESULT. */
4262 static bool
4263 decode_timer (Lisp_Object timer, struct timespec *result)
4264 {
4265 Lisp_Object *vec;
4266
4267 if (! (VECTORP (timer) && ASIZE (timer) == 9))
4268 return 0;
4269 vec = XVECTOR (timer)->contents;
4270 if (! NILP (vec[0]))
4271 return 0;
4272 if (! INTEGERP (vec[2]))
4273 return false;
4274
4275 struct lisp_time t;
4276 if (decode_time_components (vec[1], vec[2], vec[3], vec[8], &t, 0) <= 0)
4277 return false;
4278 *result = lisp_to_timespec (t);
4279 return timespec_valid_p (*result);
4280 }
4281
4282
4283 /* Check whether a timer has fired. To prevent larger problems we simply
4284 disregard elements that are not proper timers. Do not make a circular
4285 timer list for the time being.
4286
4287 Returns the time to wait until the next timer fires. If a
4288 timer is triggering now, return zero.
4289 If no timer is active, return -1.
4290
4291 If a timer is ripe, we run it, with quitting turned off.
4292 In that case we return 0 to indicate that a new timer_check_2 call
4293 should be done. */
4294
4295 static struct timespec
4296 timer_check_2 (Lisp_Object timers, Lisp_Object idle_timers)
4297 {
4298 struct timespec nexttime;
4299 struct timespec now;
4300 struct timespec idleness_now;
4301 Lisp_Object chosen_timer;
4302
4303 nexttime = invalid_timespec ();
4304
4305 chosen_timer = Qnil;
4306
4307 /* First run the code that was delayed. */
4308 while (CONSP (pending_funcalls))
4309 {
4310 Lisp_Object funcall = XCAR (pending_funcalls);
4311 pending_funcalls = XCDR (pending_funcalls);
4312 safe_call2 (Qapply, XCAR (funcall), XCDR (funcall));
4313 }
4314
4315 if (CONSP (timers) || CONSP (idle_timers))
4316 {
4317 now = current_timespec ();
4318 idleness_now = (timespec_valid_p (timer_idleness_start_time)
4319 ? timespec_sub (now, timer_idleness_start_time)
4320 : make_timespec (0, 0));
4321 }
4322
4323 while (CONSP (timers) || CONSP (idle_timers))
4324 {
4325 Lisp_Object timer = Qnil, idle_timer = Qnil;
4326 struct timespec timer_time, idle_timer_time;
4327 struct timespec difference;
4328 struct timespec timer_difference = invalid_timespec ();
4329 struct timespec idle_timer_difference = invalid_timespec ();
4330 bool ripe, timer_ripe = 0, idle_timer_ripe = 0;
4331
4332 /* Set TIMER and TIMER_DIFFERENCE
4333 based on the next ordinary timer.
4334 TIMER_DIFFERENCE is the distance in time from NOW to when
4335 this timer becomes ripe.
4336 Skip past invalid timers and timers already handled. */
4337 if (CONSP (timers))
4338 {
4339 timer = XCAR (timers);
4340 if (! decode_timer (timer, &timer_time))
4341 {
4342 timers = XCDR (timers);
4343 continue;
4344 }
4345
4346 timer_ripe = timespec_cmp (timer_time, now) <= 0;
4347 timer_difference = (timer_ripe
4348 ? timespec_sub (now, timer_time)
4349 : timespec_sub (timer_time, now));
4350 }
4351
4352 /* Likewise for IDLE_TIMER and IDLE_TIMER_DIFFERENCE
4353 based on the next idle timer. */
4354 if (CONSP (idle_timers))
4355 {
4356 idle_timer = XCAR (idle_timers);
4357 if (! decode_timer (idle_timer, &idle_timer_time))
4358 {
4359 idle_timers = XCDR (idle_timers);
4360 continue;
4361 }
4362
4363 idle_timer_ripe = timespec_cmp (idle_timer_time, idleness_now) <= 0;
4364 idle_timer_difference
4365 = (idle_timer_ripe
4366 ? timespec_sub (idleness_now, idle_timer_time)
4367 : timespec_sub (idle_timer_time, idleness_now));
4368 }
4369
4370 /* Decide which timer is the next timer,
4371 and set CHOSEN_TIMER, DIFFERENCE, and RIPE accordingly.
4372 Also step down the list where we found that timer. */
4373
4374 if (timespec_valid_p (timer_difference)
4375 && (! timespec_valid_p (idle_timer_difference)
4376 || idle_timer_ripe < timer_ripe
4377 || (idle_timer_ripe == timer_ripe
4378 && ((timer_ripe
4379 ? timespec_cmp (idle_timer_difference,
4380 timer_difference)
4381 : timespec_cmp (timer_difference,
4382 idle_timer_difference))
4383 < 0))))
4384 {
4385 chosen_timer = timer;
4386 timers = XCDR (timers);
4387 difference = timer_difference;
4388 ripe = timer_ripe;
4389 }
4390 else
4391 {
4392 chosen_timer = idle_timer;
4393 idle_timers = XCDR (idle_timers);
4394 difference = idle_timer_difference;
4395 ripe = idle_timer_ripe;
4396 }
4397
4398 /* If timer is ripe, run it if it hasn't been run. */
4399 if (ripe)
4400 {
4401 if (NILP (AREF (chosen_timer, 0)))
4402 {
4403 ptrdiff_t count = SPECPDL_INDEX ();
4404 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4405
4406 /* Mark the timer as triggered to prevent problems if the lisp
4407 code fails to reschedule it right. */
4408 ASET (chosen_timer, 0, Qt);
4409
4410 specbind (Qinhibit_quit, Qt);
4411
4412 call1 (Qtimer_event_handler, chosen_timer);
4413 Vdeactivate_mark = old_deactivate_mark;
4414 timers_run++;
4415 unbind_to (count, Qnil);
4416
4417 /* Since we have handled the event,
4418 we don't need to tell the caller to wake up and do it. */
4419 /* But the caller must still wait for the next timer, so
4420 return 0 to indicate that. */
4421 }
4422
4423 nexttime = make_timespec (0, 0);
4424 break;
4425 }
4426 else
4427 /* When we encounter a timer that is still waiting,
4428 return the amount of time to wait before it is ripe. */
4429 {
4430 return difference;
4431 }
4432 }
4433
4434 /* No timers are pending in the future. */
4435 /* Return 0 if we generated an event, and -1 if not. */
4436 return nexttime;
4437 }
4438
4439
4440 /* Check whether a timer has fired. To prevent larger problems we simply
4441 disregard elements that are not proper timers. Do not make a circular
4442 timer list for the time being.
4443
4444 Returns the time to wait until the next timer fires.
4445 If no timer is active, return an invalid value.
4446
4447 As long as any timer is ripe, we run it. */
4448
4449 struct timespec
4450 timer_check (void)
4451 {
4452 struct timespec nexttime;
4453 Lisp_Object timers, idle_timers;
4454
4455 Lisp_Object tem = Vinhibit_quit;
4456 Vinhibit_quit = Qt;
4457
4458 /* We use copies of the timers' lists to allow a timer to add itself
4459 again, without locking up Emacs if the newly added timer is
4460 already ripe when added. */
4461
4462 /* Always consider the ordinary timers. */
4463 timers = Fcopy_sequence (Vtimer_list);
4464 /* Consider the idle timers only if Emacs is idle. */
4465 if (timespec_valid_p (timer_idleness_start_time))
4466 idle_timers = Fcopy_sequence (Vtimer_idle_list);
4467 else
4468 idle_timers = Qnil;
4469
4470 Vinhibit_quit = tem;
4471
4472 do
4473 {
4474 nexttime = timer_check_2 (timers, idle_timers);
4475 }
4476 while (nexttime.tv_sec == 0 && nexttime.tv_nsec == 0);
4477
4478 return nexttime;
4479 }
4480
4481 DEFUN ("current-idle-time", Fcurrent_idle_time, Scurrent_idle_time, 0, 0, 0,
4482 doc: /* Return the current length of Emacs idleness, or nil.
4483 The value when Emacs is idle is a list of four integers (HIGH LOW USEC PSEC)
4484 in the same style as (current-time).
4485
4486 The value when Emacs is not idle is nil.
4487
4488 PSEC is a multiple of the system clock resolution. */)
4489 (void)
4490 {
4491 if (timespec_valid_p (timer_idleness_start_time))
4492 return make_lisp_time (timespec_sub (current_timespec (),
4493 timer_idleness_start_time));
4494
4495 return Qnil;
4496 }
4497 \f
4498 /* Caches for modify_event_symbol. */
4499 static Lisp_Object accent_key_syms;
4500 static Lisp_Object func_key_syms;
4501 static Lisp_Object mouse_syms;
4502 static Lisp_Object wheel_syms;
4503 static Lisp_Object drag_n_drop_syms;
4504
4505 /* This is a list of keysym codes for special "accent" characters.
4506 It parallels lispy_accent_keys. */
4507
4508 static const int lispy_accent_codes[] =
4509 {
4510 #ifdef XK_dead_circumflex
4511 XK_dead_circumflex,
4512 #else
4513 0,
4514 #endif
4515 #ifdef XK_dead_grave
4516 XK_dead_grave,
4517 #else
4518 0,
4519 #endif
4520 #ifdef XK_dead_tilde
4521 XK_dead_tilde,
4522 #else
4523 0,
4524 #endif
4525 #ifdef XK_dead_diaeresis
4526 XK_dead_diaeresis,
4527 #else
4528 0,
4529 #endif
4530 #ifdef XK_dead_macron
4531 XK_dead_macron,
4532 #else
4533 0,
4534 #endif
4535 #ifdef XK_dead_degree
4536 XK_dead_degree,
4537 #else
4538 0,
4539 #endif
4540 #ifdef XK_dead_acute
4541 XK_dead_acute,
4542 #else
4543 0,
4544 #endif
4545 #ifdef XK_dead_cedilla
4546 XK_dead_cedilla,
4547 #else
4548 0,
4549 #endif
4550 #ifdef XK_dead_breve
4551 XK_dead_breve,
4552 #else
4553 0,
4554 #endif
4555 #ifdef XK_dead_ogonek
4556 XK_dead_ogonek,
4557 #else
4558 0,
4559 #endif
4560 #ifdef XK_dead_caron
4561 XK_dead_caron,
4562 #else
4563 0,
4564 #endif
4565 #ifdef XK_dead_doubleacute
4566 XK_dead_doubleacute,
4567 #else
4568 0,
4569 #endif
4570 #ifdef XK_dead_abovedot
4571 XK_dead_abovedot,
4572 #else
4573 0,
4574 #endif
4575 #ifdef XK_dead_abovering
4576 XK_dead_abovering,
4577 #else
4578 0,
4579 #endif
4580 #ifdef XK_dead_iota
4581 XK_dead_iota,
4582 #else
4583 0,
4584 #endif
4585 #ifdef XK_dead_belowdot
4586 XK_dead_belowdot,
4587 #else
4588 0,
4589 #endif
4590 #ifdef XK_dead_voiced_sound
4591 XK_dead_voiced_sound,
4592 #else
4593 0,
4594 #endif
4595 #ifdef XK_dead_semivoiced_sound
4596 XK_dead_semivoiced_sound,
4597 #else
4598 0,
4599 #endif
4600 #ifdef XK_dead_hook
4601 XK_dead_hook,
4602 #else
4603 0,
4604 #endif
4605 #ifdef XK_dead_horn
4606 XK_dead_horn,
4607 #else
4608 0,
4609 #endif
4610 };
4611
4612 /* This is a list of Lisp names for special "accent" characters.
4613 It parallels lispy_accent_codes. */
4614
4615 static const char *const lispy_accent_keys[] =
4616 {
4617 "dead-circumflex",
4618 "dead-grave",
4619 "dead-tilde",
4620 "dead-diaeresis",
4621 "dead-macron",
4622 "dead-degree",
4623 "dead-acute",
4624 "dead-cedilla",
4625 "dead-breve",
4626 "dead-ogonek",
4627 "dead-caron",
4628 "dead-doubleacute",
4629 "dead-abovedot",
4630 "dead-abovering",
4631 "dead-iota",
4632 "dead-belowdot",
4633 "dead-voiced-sound",
4634 "dead-semivoiced-sound",
4635 "dead-hook",
4636 "dead-horn",
4637 };
4638
4639 #ifdef HAVE_NTGUI
4640 #define FUNCTION_KEY_OFFSET 0x0
4641
4642 const char *const lispy_function_keys[] =
4643 {
4644 0, /* 0 */
4645
4646 0, /* VK_LBUTTON 0x01 */
4647 0, /* VK_RBUTTON 0x02 */
4648 "cancel", /* VK_CANCEL 0x03 */
4649 0, /* VK_MBUTTON 0x04 */
4650
4651 0, 0, 0, /* 0x05 .. 0x07 */
4652
4653 "backspace", /* VK_BACK 0x08 */
4654 "tab", /* VK_TAB 0x09 */
4655
4656 0, 0, /* 0x0A .. 0x0B */
4657
4658 "clear", /* VK_CLEAR 0x0C */
4659 "return", /* VK_RETURN 0x0D */
4660
4661 0, 0, /* 0x0E .. 0x0F */
4662
4663 0, /* VK_SHIFT 0x10 */
4664 0, /* VK_CONTROL 0x11 */
4665 0, /* VK_MENU 0x12 */
4666 "pause", /* VK_PAUSE 0x13 */
4667 "capslock", /* VK_CAPITAL 0x14 */
4668 "kana", /* VK_KANA/VK_HANGUL 0x15 */
4669 0, /* 0x16 */
4670 "junja", /* VK_JUNJA 0x17 */
4671 "final", /* VK_FINAL 0x18 */
4672 "kanji", /* VK_KANJI/VK_HANJA 0x19 */
4673 0, /* 0x1A */
4674 "escape", /* VK_ESCAPE 0x1B */
4675 "convert", /* VK_CONVERT 0x1C */
4676 "non-convert", /* VK_NONCONVERT 0x1D */
4677 "accept", /* VK_ACCEPT 0x1E */
4678 "mode-change", /* VK_MODECHANGE 0x1F */
4679 0, /* VK_SPACE 0x20 */
4680 "prior", /* VK_PRIOR 0x21 */
4681 "next", /* VK_NEXT 0x22 */
4682 "end", /* VK_END 0x23 */
4683 "home", /* VK_HOME 0x24 */
4684 "left", /* VK_LEFT 0x25 */
4685 "up", /* VK_UP 0x26 */
4686 "right", /* VK_RIGHT 0x27 */
4687 "down", /* VK_DOWN 0x28 */
4688 "select", /* VK_SELECT 0x29 */
4689 "print", /* VK_PRINT 0x2A */
4690 "execute", /* VK_EXECUTE 0x2B */
4691 "snapshot", /* VK_SNAPSHOT 0x2C */
4692 "insert", /* VK_INSERT 0x2D */
4693 "delete", /* VK_DELETE 0x2E */
4694 "help", /* VK_HELP 0x2F */
4695
4696 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4697
4698 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4699
4700 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4701
4702 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4703
4704 0, 0, 0, 0, 0, 0, 0, 0, 0,
4705 0, 0, 0, 0, 0, 0, 0, 0, 0,
4706 0, 0, 0, 0, 0, 0, 0, 0,
4707
4708 "lwindow", /* VK_LWIN 0x5B */
4709 "rwindow", /* VK_RWIN 0x5C */
4710 "apps", /* VK_APPS 0x5D */
4711 0, /* 0x5E */
4712 "sleep",
4713 "kp-0", /* VK_NUMPAD0 0x60 */
4714 "kp-1", /* VK_NUMPAD1 0x61 */
4715 "kp-2", /* VK_NUMPAD2 0x62 */
4716 "kp-3", /* VK_NUMPAD3 0x63 */
4717 "kp-4", /* VK_NUMPAD4 0x64 */
4718 "kp-5", /* VK_NUMPAD5 0x65 */
4719 "kp-6", /* VK_NUMPAD6 0x66 */
4720 "kp-7", /* VK_NUMPAD7 0x67 */
4721 "kp-8", /* VK_NUMPAD8 0x68 */
4722 "kp-9", /* VK_NUMPAD9 0x69 */
4723 "kp-multiply", /* VK_MULTIPLY 0x6A */
4724 "kp-add", /* VK_ADD 0x6B */
4725 "kp-separator", /* VK_SEPARATOR 0x6C */
4726 "kp-subtract", /* VK_SUBTRACT 0x6D */
4727 "kp-decimal", /* VK_DECIMAL 0x6E */
4728 "kp-divide", /* VK_DIVIDE 0x6F */
4729 "f1", /* VK_F1 0x70 */
4730 "f2", /* VK_F2 0x71 */
4731 "f3", /* VK_F3 0x72 */
4732 "f4", /* VK_F4 0x73 */
4733 "f5", /* VK_F5 0x74 */
4734 "f6", /* VK_F6 0x75 */
4735 "f7", /* VK_F7 0x76 */
4736 "f8", /* VK_F8 0x77 */
4737 "f9", /* VK_F9 0x78 */
4738 "f10", /* VK_F10 0x79 */
4739 "f11", /* VK_F11 0x7A */
4740 "f12", /* VK_F12 0x7B */
4741 "f13", /* VK_F13 0x7C */
4742 "f14", /* VK_F14 0x7D */
4743 "f15", /* VK_F15 0x7E */
4744 "f16", /* VK_F16 0x7F */
4745 "f17", /* VK_F17 0x80 */
4746 "f18", /* VK_F18 0x81 */
4747 "f19", /* VK_F19 0x82 */
4748 "f20", /* VK_F20 0x83 */
4749 "f21", /* VK_F21 0x84 */
4750 "f22", /* VK_F22 0x85 */
4751 "f23", /* VK_F23 0x86 */
4752 "f24", /* VK_F24 0x87 */
4753
4754 0, 0, 0, 0, /* 0x88 .. 0x8B */
4755 0, 0, 0, 0, /* 0x8C .. 0x8F */
4756
4757 "kp-numlock", /* VK_NUMLOCK 0x90 */
4758 "scroll", /* VK_SCROLL 0x91 */
4759 /* Not sure where the following block comes from.
4760 Windows headers have NEC and Fujitsu specific keys in
4761 this block, but nothing generic. */
4762 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4763 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4764 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4765 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4766 "kp-end", /* VK_NUMPAD_END 0x96 */
4767 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4768 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4769 "kp-up", /* VK_NUMPAD_UP 0x99 */
4770 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4771 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4772 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4773 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4774
4775 0, 0, /* 0x9E .. 0x9F */
4776
4777 /*
4778 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4779 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4780 * No other API or message will distinguish left and right keys this way.
4781 * 0xA0 .. 0xA5
4782 */
4783 0, 0, 0, 0, 0, 0,
4784
4785 /* Multimedia keys. These are handled as WM_APPCOMMAND, which allows us
4786 to enable them selectively, and gives access to a few more functions.
4787 See lispy_multimedia_keys below. */
4788 0, 0, 0, 0, 0, 0, 0, /* 0xA6 .. 0xAC Browser */
4789 0, 0, 0, /* 0xAD .. 0xAF Volume */
4790 0, 0, 0, 0, /* 0xB0 .. 0xB3 Media */
4791 0, 0, 0, 0, /* 0xB4 .. 0xB7 Apps */
4792
4793 /* 0xB8 .. 0xC0 "OEM" keys - all seem to be punctuation. */
4794 0, 0, 0, 0, 0, 0, 0, 0, 0,
4795
4796 /* 0xC1 - 0xDA unallocated, 0xDB-0xDF more OEM keys */
4797 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4798 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4799
4800 0, /* 0xE0 */
4801 "ax", /* VK_OEM_AX 0xE1 */
4802 0, /* VK_OEM_102 0xE2 */
4803 "ico-help", /* VK_ICO_HELP 0xE3 */
4804 "ico-00", /* VK_ICO_00 0xE4 */
4805 0, /* VK_PROCESSKEY 0xE5 - used by IME */
4806 "ico-clear", /* VK_ICO_CLEAR 0xE6 */
4807 0, /* VK_PACKET 0xE7 - used to pass Unicode chars */
4808 0, /* 0xE8 */
4809 "reset", /* VK_OEM_RESET 0xE9 */
4810 "jump", /* VK_OEM_JUMP 0xEA */
4811 "oem-pa1", /* VK_OEM_PA1 0xEB */
4812 "oem-pa2", /* VK_OEM_PA2 0xEC */
4813 "oem-pa3", /* VK_OEM_PA3 0xED */
4814 "wsctrl", /* VK_OEM_WSCTRL 0xEE */
4815 "cusel", /* VK_OEM_CUSEL 0xEF */
4816 "oem-attn", /* VK_OEM_ATTN 0xF0 */
4817 "finish", /* VK_OEM_FINISH 0xF1 */
4818 "copy", /* VK_OEM_COPY 0xF2 */
4819 "auto", /* VK_OEM_AUTO 0xF3 */
4820 "enlw", /* VK_OEM_ENLW 0xF4 */
4821 "backtab", /* VK_OEM_BACKTAB 0xF5 */
4822 "attn", /* VK_ATTN 0xF6 */
4823 "crsel", /* VK_CRSEL 0xF7 */
4824 "exsel", /* VK_EXSEL 0xF8 */
4825 "ereof", /* VK_EREOF 0xF9 */
4826 "play", /* VK_PLAY 0xFA */
4827 "zoom", /* VK_ZOOM 0xFB */
4828 "noname", /* VK_NONAME 0xFC */
4829 "pa1", /* VK_PA1 0xFD */
4830 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4831 0 /* 0xFF */
4832 };
4833
4834 /* Some of these duplicate the "Media keys" on newer keyboards,
4835 but they are delivered to the application in a different way. */
4836 static const char *const lispy_multimedia_keys[] =
4837 {
4838 0,
4839 "browser-back",
4840 "browser-forward",
4841 "browser-refresh",
4842 "browser-stop",
4843 "browser-search",
4844 "browser-favorites",
4845 "browser-home",
4846 "volume-mute",
4847 "volume-down",
4848 "volume-up",
4849 "media-next",
4850 "media-previous",
4851 "media-stop",
4852 "media-play-pause",
4853 "mail",
4854 "media-select",
4855 "app-1",
4856 "app-2",
4857 "bass-down",
4858 "bass-boost",
4859 "bass-up",
4860 "treble-down",
4861 "treble-up",
4862 "mic-volume-mute",
4863 "mic-volume-down",
4864 "mic-volume-up",
4865 "help",
4866 "find",
4867 "new",
4868 "open",
4869 "close",
4870 "save",
4871 "print",
4872 "undo",
4873 "redo",
4874 "copy",
4875 "cut",
4876 "paste",
4877 "mail-reply",
4878 "mail-forward",
4879 "mail-send",
4880 "spell-check",
4881 "toggle-dictate-command",
4882 "mic-toggle",
4883 "correction-list",
4884 "media-play",
4885 "media-pause",
4886 "media-record",
4887 "media-fast-forward",
4888 "media-rewind",
4889 "media-channel-up",
4890 "media-channel-down"
4891 };
4892
4893 #else /* not HAVE_NTGUI */
4894
4895 /* This should be dealt with in XTread_socket now, and that doesn't
4896 depend on the client system having the Kana syms defined. See also
4897 the XK_kana_A case below. */
4898 #if 0
4899 #ifdef XK_kana_A
4900 static const char *const lispy_kana_keys[] =
4901 {
4902 /* X Keysym value */
4903 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4904 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4905 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4906 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4907 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4908 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4909 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4910 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4911 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4912 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4913 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4914 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4915 "kana-i", "kana-u", "kana-e", "kana-o",
4916 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4917 "prolongedsound", "kana-A", "kana-I", "kana-U",
4918 "kana-E", "kana-O", "kana-KA", "kana-KI",
4919 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4920 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4921 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4922 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4923 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4924 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4925 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4926 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4927 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4928 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4929 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4930 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4931 };
4932 #endif /* XK_kana_A */
4933 #endif /* 0 */
4934
4935 #define FUNCTION_KEY_OFFSET 0xff00
4936
4937 /* You'll notice that this table is arranged to be conveniently
4938 indexed by X Windows keysym values. */
4939 static const char *const lispy_function_keys[] =
4940 {
4941 /* X Keysym value */
4942
4943 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4944 "backspace", "tab", "linefeed", "clear",
4945 0, "return", 0, 0,
4946 0, 0, 0, "pause", /* 0xff10...1f */
4947 0, 0, 0, 0, 0, 0, 0, "escape",
4948 0, 0, 0, 0,
4949 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4950 "romaji", "hiragana", "katakana", "hiragana-katakana",
4951 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4952 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4953 "eisu-toggle", /* 0xff30...3f */
4954 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4955 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4956
4957 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4958 "down", "prior", "next", "end",
4959 "begin", 0, 0, 0, 0, 0, 0, 0,
4960 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4961 "print",
4962 "execute",
4963 "insert",
4964 0, /* 0xff64 */
4965 "undo",
4966 "redo",
4967 "menu",
4968 "find",
4969 "cancel",
4970 "help",
4971 "break", /* 0xff6b */
4972
4973 0, 0, 0, 0,
4974 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4975 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4976 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4977 0, 0, 0, 0, 0, 0, 0, 0,
4978 "kp-tab", /* 0xff89 */
4979 0, 0, 0,
4980 "kp-enter", /* 0xff8d */
4981 0, 0, 0,
4982 "kp-f1", /* 0xff91 */
4983 "kp-f2",
4984 "kp-f3",
4985 "kp-f4",
4986 "kp-home", /* 0xff95 */
4987 "kp-left",
4988 "kp-up",
4989 "kp-right",
4990 "kp-down",
4991 "kp-prior", /* kp-page-up */
4992 "kp-next", /* kp-page-down */
4993 "kp-end",
4994 "kp-begin",
4995 "kp-insert",
4996 "kp-delete",
4997 0, /* 0xffa0 */
4998 0, 0, 0, 0, 0, 0, 0, 0, 0,
4999 "kp-multiply", /* 0xffaa */
5000 "kp-add",
5001 "kp-separator",
5002 "kp-subtract",
5003 "kp-decimal",
5004 "kp-divide", /* 0xffaf */
5005 "kp-0", /* 0xffb0 */
5006 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5007 0, /* 0xffba */
5008 0, 0,
5009 "kp-equal", /* 0xffbd */
5010 "f1", /* 0xffbe */ /* IsFunctionKey */
5011 "f2",
5012 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5013 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5014 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5015 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5016 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5017 0, 0, 0, 0, 0, 0, 0, 0,
5018 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5019 0, 0, 0, 0, 0, 0, 0, "delete"
5020 };
5021
5022 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5023 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5024
5025 static const char *const iso_lispy_function_keys[] =
5026 {
5027 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5028 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5029 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5030 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5031 "iso-lefttab", /* 0xfe20 */
5032 "iso-move-line-up", "iso-move-line-down",
5033 "iso-partial-line-up", "iso-partial-line-down",
5034 "iso-partial-space-left", "iso-partial-space-right",
5035 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5036 "iso-release-margin-left", "iso-release-margin-right",
5037 "iso-release-both-margins",
5038 "iso-fast-cursor-left", "iso-fast-cursor-right",
5039 "iso-fast-cursor-up", "iso-fast-cursor-down",
5040 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5041 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5042 };
5043
5044 #endif /* not HAVE_NTGUI */
5045
5046 static Lisp_Object Vlispy_mouse_stem;
5047
5048 static const char *const lispy_wheel_names[] =
5049 {
5050 "wheel-up", "wheel-down", "wheel-left", "wheel-right"
5051 };
5052
5053 /* drag-n-drop events are generated when a set of selected files are
5054 dragged from another application and dropped onto an Emacs window. */
5055 static const char *const lispy_drag_n_drop_names[] =
5056 {
5057 "drag-n-drop"
5058 };
5059
5060 /* An array of symbol indexes of scroll bar parts, indexed by an enum
5061 scroll_bar_part value. Note that Qnil corresponds to
5062 scroll_bar_nowhere and should not appear in Lisp events. */
5063 static short const scroll_bar_parts[] = {
5064 SYMBOL_INDEX (Qnil), SYMBOL_INDEX (Qabove_handle), SYMBOL_INDEX (Qhandle),
5065 SYMBOL_INDEX (Qbelow_handle), SYMBOL_INDEX (Qup), SYMBOL_INDEX (Qdown),
5066 SYMBOL_INDEX (Qtop), SYMBOL_INDEX (Qbottom), SYMBOL_INDEX (Qend_scroll),
5067 SYMBOL_INDEX (Qratio), SYMBOL_INDEX (Qbefore_handle),
5068 SYMBOL_INDEX (Qhorizontal_handle), SYMBOL_INDEX (Qafter_handle),
5069 SYMBOL_INDEX (Qleft), SYMBOL_INDEX (Qright), SYMBOL_INDEX (Qleftmost),
5070 SYMBOL_INDEX (Qrightmost), SYMBOL_INDEX (Qend_scroll), SYMBOL_INDEX (Qratio)
5071 };
5072
5073 /* A vector, indexed by button number, giving the down-going location
5074 of currently depressed buttons, both scroll bar and non-scroll bar.
5075
5076 The elements have the form
5077 (BUTTON-NUMBER MODIFIER-MASK . REST)
5078 where REST is the cdr of a position as it would be reported in the event.
5079
5080 The make_lispy_event function stores positions here to tell the
5081 difference between click and drag events, and to store the starting
5082 location to be included in drag events. */
5083
5084 static Lisp_Object button_down_location;
5085
5086 /* Information about the most recent up-going button event: Which
5087 button, what location, and what time. */
5088
5089 static int last_mouse_button;
5090 static int last_mouse_x;
5091 static int last_mouse_y;
5092 static Time button_down_time;
5093
5094 /* The number of clicks in this multiple-click. */
5095
5096 static int double_click_count;
5097
5098 /* X and Y are frame-relative coordinates for a click or wheel event.
5099 Return a Lisp-style event list. */
5100
5101 static Lisp_Object
5102 make_lispy_position (struct frame *f, Lisp_Object x, Lisp_Object y,
5103 Time t)
5104 {
5105 enum window_part part;
5106 Lisp_Object posn = Qnil;
5107 Lisp_Object extra_info = Qnil;
5108 /* Coordinate pixel positions to return. */
5109 int xret = 0, yret = 0;
5110 /* The window under frame pixel coordinates (x,y) */
5111 Lisp_Object window = f
5112 ? window_from_coordinates (f, XINT (x), XINT (y), &part, 0)
5113 : Qnil;
5114
5115 if (WINDOWP (window))
5116 {
5117 /* It's a click in window WINDOW at frame coordinates (X,Y) */
5118 struct window *w = XWINDOW (window);
5119 Lisp_Object string_info = Qnil;
5120 ptrdiff_t textpos = 0;
5121 int col = -1, row = -1;
5122 int dx = -1, dy = -1;
5123 int width = -1, height = -1;
5124 Lisp_Object object = Qnil;
5125
5126 /* Pixel coordinates relative to the window corner. */
5127 int wx = XINT (x) - WINDOW_LEFT_EDGE_X (w);
5128 int wy = XINT (y) - WINDOW_TOP_EDGE_Y (w);
5129
5130 /* For text area clicks, return X, Y relative to the corner of
5131 this text area. Note that dX, dY etc are set below, by
5132 buffer_posn_from_coords. */
5133 if (part == ON_TEXT)
5134 {
5135 xret = XINT (x) - window_box_left (w, TEXT_AREA);
5136 yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5137 }
5138 /* For mode line and header line clicks, return X, Y relative to
5139 the left window edge. Use mode_line_string to look for a
5140 string on the click position. */
5141 else if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5142 {
5143 Lisp_Object string;
5144 ptrdiff_t charpos;
5145
5146 posn = (part == ON_MODE_LINE) ? Qmode_line : Qheader_line;
5147 /* Note that mode_line_string takes COL, ROW as pixels and
5148 converts them to characters. */
5149 col = wx;
5150 row = wy;
5151 string = mode_line_string (w, part, &col, &row, &charpos,
5152 &object, &dx, &dy, &width, &height);
5153 if (STRINGP (string))
5154 string_info = Fcons (string, make_number (charpos));
5155 textpos = -1;
5156
5157 xret = wx;
5158 yret = wy;
5159 }
5160 /* For fringes and margins, Y is relative to the area's (and the
5161 window's) top edge, while X is meaningless. */
5162 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5163 {
5164 Lisp_Object string;
5165 ptrdiff_t charpos;
5166
5167 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5168 col = wx;
5169 row = wy;
5170 string = marginal_area_string (w, part, &col, &row, &charpos,
5171 &object, &dx, &dy, &width, &height);
5172 if (STRINGP (string))
5173 string_info = Fcons (string, make_number (charpos));
5174 xret = wx;
5175 yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5176 }
5177 else if (part == ON_LEFT_FRINGE)
5178 {
5179 posn = Qleft_fringe;
5180 col = 0;
5181 xret = wx;
5182 dx = wx
5183 - (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5184 ? 0 : window_box_width (w, LEFT_MARGIN_AREA));
5185 dy = yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5186 }
5187 else if (part == ON_RIGHT_FRINGE)
5188 {
5189 posn = Qright_fringe;
5190 col = 0;
5191 xret = wx;
5192 dx = wx
5193 - window_box_width (w, LEFT_MARGIN_AREA)
5194 - window_box_width (w, TEXT_AREA)
5195 - (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5196 ? window_box_width (w, RIGHT_MARGIN_AREA)
5197 : 0);
5198 dy = yret = wy - WINDOW_HEADER_LINE_HEIGHT (w);
5199 }
5200 else if (part == ON_VERTICAL_BORDER)
5201 {
5202 posn = Qvertical_line;
5203 width = 1;
5204 dx = 0;
5205 xret = wx;
5206 dy = yret = wy;
5207 }
5208 else if (part == ON_VERTICAL_SCROLL_BAR)
5209 {
5210 posn = Qvertical_scroll_bar;
5211 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
5212 dx = xret = wx;
5213 dy = yret = wy;
5214 }
5215 else if (part == ON_HORIZONTAL_SCROLL_BAR)
5216 {
5217 posn = Qhorizontal_scroll_bar;
5218 width = WINDOW_SCROLL_BAR_AREA_HEIGHT (w);
5219 dx = xret = wx;
5220 dy = yret = wy;
5221 }
5222 else if (part == ON_RIGHT_DIVIDER)
5223 {
5224 posn = Qright_divider;
5225 width = WINDOW_RIGHT_DIVIDER_WIDTH (w);
5226 dx = xret = wx;
5227 dy = yret = wy;
5228 }
5229 else if (part == ON_BOTTOM_DIVIDER)
5230 {
5231 posn = Qbottom_divider;
5232 width = WINDOW_BOTTOM_DIVIDER_WIDTH (w);
5233 dx = xret = wx;
5234 dy = yret = wy;
5235 }
5236
5237 /* For clicks in the text area, fringes, margins, or vertical
5238 scroll bar, call buffer_posn_from_coords to extract TEXTPOS,
5239 the buffer position nearest to the click. */
5240 if (!textpos)
5241 {
5242 Lisp_Object string2, object2 = Qnil;
5243 struct display_pos p;
5244 int dx2, dy2;
5245 int width2, height2;
5246 /* The pixel X coordinate passed to buffer_posn_from_coords
5247 is the X coordinate relative to the text area for clicks
5248 in text-area, right-margin/fringe and right-side vertical
5249 scroll bar, zero otherwise. */
5250 int x2
5251 = (part == ON_TEXT) ? xret
5252 : (part == ON_RIGHT_FRINGE || part == ON_RIGHT_MARGIN
5253 || (part == ON_VERTICAL_SCROLL_BAR
5254 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
5255 ? (XINT (x) - window_box_left (w, TEXT_AREA))
5256 : 0;
5257 int y2 = wy;
5258
5259 string2 = buffer_posn_from_coords (w, &x2, &y2, &p,
5260 &object2, &dx2, &dy2,
5261 &width2, &height2);
5262 textpos = CHARPOS (p.pos);
5263 if (col < 0) col = x2;
5264 if (row < 0) row = y2;
5265 if (dx < 0) dx = dx2;
5266 if (dy < 0) dy = dy2;
5267 if (width < 0) width = width2;
5268 if (height < 0) height = height2;
5269
5270 if (NILP (posn))
5271 {
5272 posn = make_number (textpos);
5273 if (STRINGP (string2))
5274 string_info = Fcons (string2,
5275 make_number (CHARPOS (p.string_pos)));
5276 }
5277 if (NILP (object))
5278 object = object2;
5279 }
5280
5281 #ifdef HAVE_WINDOW_SYSTEM
5282 if (IMAGEP (object))
5283 {
5284 Lisp_Object image_map, hotspot;
5285 if ((image_map = Fplist_get (XCDR (object), QCmap),
5286 !NILP (image_map))
5287 && (hotspot = find_hot_spot (image_map, dx, dy),
5288 CONSP (hotspot))
5289 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5290 posn = XCAR (hotspot);
5291 }
5292 #endif
5293
5294 /* Object info. */
5295 extra_info
5296 = list3 (object,
5297 Fcons (make_number (dx), make_number (dy)),
5298 Fcons (make_number (width), make_number (height)));
5299
5300 /* String info. */
5301 extra_info = Fcons (string_info,
5302 Fcons (textpos < 0 ? Qnil : make_number (textpos),
5303 Fcons (Fcons (make_number (col),
5304 make_number (row)),
5305 extra_info)));
5306 }
5307 else if (f != 0)
5308 {
5309 /* Return mouse pixel coordinates here. */
5310 XSETFRAME (window, f);
5311 xret = XINT (x);
5312 yret = XINT (y);
5313 }
5314 else
5315 window = Qnil;
5316
5317 return Fcons (window,
5318 Fcons (posn,
5319 Fcons (Fcons (make_number (xret),
5320 make_number (yret)),
5321 Fcons (make_number (t),
5322 extra_info))));
5323 }
5324
5325 /* Return non-zero if F is a GUI frame that uses some toolkit-managed
5326 menu bar. This really means that Emacs draws and manages the menu
5327 bar as part of its normal display, and therefore can compute its
5328 geometry. */
5329 static bool
5330 toolkit_menubar_in_use (struct frame *f)
5331 {
5332 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
5333 return !(!FRAME_WINDOW_P (f));
5334 #else
5335 return false;
5336 #endif
5337 }
5338
5339 /* Build the part of Lisp event which represents scroll bar state from
5340 EV. TYPE is one of Qvertical_scroll_bar or Qhorizontal_scroll_bar. */
5341
5342 static Lisp_Object
5343 make_scroll_bar_position (struct input_event *ev, Lisp_Object type)
5344 {
5345 return list5 (ev->frame_or_window, type, Fcons (ev->x, ev->y),
5346 make_number (ev->timestamp),
5347 builtin_lisp_symbol (scroll_bar_parts[ev->part]));
5348 }
5349
5350 /* Given a struct input_event, build the lisp event which represents
5351 it. If EVENT is 0, build a mouse movement event from the mouse
5352 movement buffer, which should have a movement event in it.
5353
5354 Note that events must be passed to this function in the order they
5355 are received; this function stores the location of button presses
5356 in order to build drag events when the button is released. */
5357
5358 static Lisp_Object
5359 make_lispy_event (struct input_event *event)
5360 {
5361 int i;
5362
5363 switch (event->kind)
5364 {
5365 /* A simple keystroke. */
5366 case ASCII_KEYSTROKE_EVENT:
5367 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5368 {
5369 Lisp_Object lispy_c;
5370 EMACS_INT c = event->code;
5371 if (event->kind == ASCII_KEYSTROKE_EVENT)
5372 {
5373 c &= 0377;
5374 eassert (c == event->code);
5375 /* Turn ASCII characters into control characters
5376 when proper. */
5377 if (event->modifiers & ctrl_modifier)
5378 {
5379 c = make_ctrl_char (c);
5380 event->modifiers &= ~ctrl_modifier;
5381 }
5382 }
5383
5384 /* Add in the other modifier bits. The shift key was taken care
5385 of by the X code. */
5386 c |= (event->modifiers
5387 & (meta_modifier | alt_modifier
5388 | hyper_modifier | super_modifier | ctrl_modifier));
5389 /* Distinguish Shift-SPC from SPC. */
5390 if ((event->code) == 040
5391 && event->modifiers & shift_modifier)
5392 c |= shift_modifier;
5393 button_down_time = 0;
5394 XSETFASTINT (lispy_c, c);
5395 return lispy_c;
5396 }
5397
5398 #ifdef HAVE_NS
5399 /* NS_NONKEY_EVENTs are just like NON_ASCII_KEYSTROKE_EVENTs,
5400 except that they are non-key events (last-nonmenu-event is nil). */
5401 case NS_NONKEY_EVENT:
5402 #endif
5403
5404 /* A function key. The symbol may need to have modifier prefixes
5405 tacked onto it. */
5406 case NON_ASCII_KEYSTROKE_EVENT:
5407 button_down_time = 0;
5408
5409 for (i = 0; i < ARRAYELTS (lispy_accent_codes); i++)
5410 if (event->code == lispy_accent_codes[i])
5411 return modify_event_symbol (i,
5412 event->modifiers,
5413 Qfunction_key, Qnil,
5414 lispy_accent_keys, &accent_key_syms,
5415 ARRAYELTS (lispy_accent_keys));
5416
5417 #if 0
5418 #ifdef XK_kana_A
5419 if (event->code >= 0x400 && event->code < 0x500)
5420 return modify_event_symbol (event->code - 0x400,
5421 event->modifiers & ~shift_modifier,
5422 Qfunction_key, Qnil,
5423 lispy_kana_keys, &func_key_syms,
5424 ARRAYELTS (lispy_kana_keys));
5425 #endif /* XK_kana_A */
5426 #endif /* 0 */
5427
5428 #ifdef ISO_FUNCTION_KEY_OFFSET
5429 if (event->code < FUNCTION_KEY_OFFSET
5430 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5431 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5432 event->modifiers,
5433 Qfunction_key, Qnil,
5434 iso_lispy_function_keys, &func_key_syms,
5435 ARRAYELTS (iso_lispy_function_keys));
5436 #endif
5437
5438 if ((FUNCTION_KEY_OFFSET <= event->code
5439 && (event->code
5440 < FUNCTION_KEY_OFFSET + ARRAYELTS (lispy_function_keys)))
5441 && lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5442 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5443 event->modifiers,
5444 Qfunction_key, Qnil,
5445 lispy_function_keys, &func_key_syms,
5446 ARRAYELTS (lispy_function_keys));
5447
5448 /* Handle system-specific or unknown keysyms.
5449 We need to use an alist rather than a vector as the cache
5450 since we can't make a vector long enough. */
5451 if (NILP (KVAR (current_kboard, system_key_syms)))
5452 kset_system_key_syms (current_kboard, Fcons (Qnil, Qnil));
5453 return modify_event_symbol (event->code,
5454 event->modifiers,
5455 Qfunction_key,
5456 KVAR (current_kboard, Vsystem_key_alist),
5457 0, &KVAR (current_kboard, system_key_syms),
5458 PTRDIFF_MAX);
5459
5460 #ifdef HAVE_NTGUI
5461 case MULTIMEDIA_KEY_EVENT:
5462 if (event->code < ARRAYELTS (lispy_multimedia_keys)
5463 && event->code > 0 && lispy_multimedia_keys[event->code])
5464 {
5465 return modify_event_symbol (event->code, event->modifiers,
5466 Qfunction_key, Qnil,
5467 lispy_multimedia_keys, &func_key_syms,
5468 ARRAYELTS (lispy_multimedia_keys));
5469 }
5470 return Qnil;
5471 #endif
5472
5473 /* A mouse click. Figure out where it is, decide whether it's
5474 a press, click or drag, and build the appropriate structure. */
5475 case MOUSE_CLICK_EVENT:
5476 #ifdef HAVE_GPM
5477 case GPM_CLICK_EVENT:
5478 #endif
5479 #ifndef USE_TOOLKIT_SCROLL_BARS
5480 case SCROLL_BAR_CLICK_EVENT:
5481 case HORIZONTAL_SCROLL_BAR_CLICK_EVENT:
5482 #endif
5483 {
5484 int button = event->code;
5485 bool is_double;
5486 Lisp_Object position;
5487 Lisp_Object *start_pos_ptr;
5488 Lisp_Object start_pos;
5489
5490 position = Qnil;
5491
5492 /* Build the position as appropriate for this mouse click. */
5493 if (event->kind == MOUSE_CLICK_EVENT
5494 #ifdef HAVE_GPM
5495 || event->kind == GPM_CLICK_EVENT
5496 #endif
5497 )
5498 {
5499 struct frame *f = XFRAME (event->frame_or_window);
5500 int row, column;
5501
5502 /* Ignore mouse events that were made on frame that
5503 have been deleted. */
5504 if (! FRAME_LIVE_P (f))
5505 return Qnil;
5506
5507 /* EVENT->x and EVENT->y are frame-relative pixel
5508 coordinates at this place. Under old redisplay, COLUMN
5509 and ROW are set to frame relative glyph coordinates
5510 which are then used to determine whether this click is
5511 in a menu (non-toolkit version). */
5512 if (!toolkit_menubar_in_use (f))
5513 {
5514 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5515 &column, &row, NULL, 1);
5516
5517 /* In the non-toolkit version, clicks on the menu bar
5518 are ordinary button events in the event buffer.
5519 Distinguish them, and invoke the menu.
5520
5521 (In the toolkit version, the toolkit handles the
5522 menu bar and Emacs doesn't know about it until
5523 after the user makes a selection.) */
5524 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5525 && (event->modifiers & down_modifier))
5526 {
5527 Lisp_Object items, item;
5528
5529 /* Find the menu bar item under `column'. */
5530 item = Qnil;
5531 items = FRAME_MENU_BAR_ITEMS (f);
5532 for (i = 0; i < ASIZE (items); i += 4)
5533 {
5534 Lisp_Object pos, string;
5535 string = AREF (items, i + 1);
5536 pos = AREF (items, i + 3);
5537 if (NILP (string))
5538 break;
5539 if (column >= XINT (pos)
5540 && column < XINT (pos) + SCHARS (string))
5541 {
5542 item = AREF (items, i);
5543 break;
5544 }
5545 }
5546
5547 /* ELisp manual 2.4b says (x y) are window
5548 relative but code says they are
5549 frame-relative. */
5550 position = list4 (event->frame_or_window,
5551 Qmenu_bar,
5552 Fcons (event->x, event->y),
5553 make_number (event->timestamp));
5554
5555 return list2 (item, position);
5556 }
5557 }
5558
5559 position = make_lispy_position (f, event->x, event->y,
5560 event->timestamp);
5561 }
5562 #ifndef USE_TOOLKIT_SCROLL_BARS
5563 else
5564 /* It's a scrollbar click. */
5565 position = make_scroll_bar_position (event, Qvertical_scroll_bar);
5566 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5567
5568 if (button >= ASIZE (button_down_location))
5569 {
5570 ptrdiff_t incr = button - ASIZE (button_down_location) + 1;
5571 button_down_location = larger_vector (button_down_location,
5572 incr, -1);
5573 mouse_syms = larger_vector (mouse_syms, incr, -1);
5574 }
5575
5576 start_pos_ptr = aref_addr (button_down_location, button);
5577 start_pos = *start_pos_ptr;
5578 *start_pos_ptr = Qnil;
5579
5580 {
5581 /* On window-system frames, use the value of
5582 double-click-fuzz as is. On other frames, interpret it
5583 as a multiple of 1/8 characters. */
5584 struct frame *f;
5585 int fuzz;
5586
5587 if (WINDOWP (event->frame_or_window))
5588 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5589 else if (FRAMEP (event->frame_or_window))
5590 f = XFRAME (event->frame_or_window);
5591 else
5592 emacs_abort ();
5593
5594 if (FRAME_WINDOW_P (f))
5595 fuzz = double_click_fuzz;
5596 else
5597 fuzz = double_click_fuzz / 8;
5598
5599 is_double = (button == last_mouse_button
5600 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5601 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5602 && button_down_time != 0
5603 && (EQ (Vdouble_click_time, Qt)
5604 || (NATNUMP (Vdouble_click_time)
5605 && (event->timestamp - button_down_time
5606 < XFASTINT (Vdouble_click_time)))));
5607 }
5608
5609 last_mouse_button = button;
5610 last_mouse_x = XINT (event->x);
5611 last_mouse_y = XINT (event->y);
5612
5613 /* If this is a button press, squirrel away the location, so
5614 we can decide later whether it was a click or a drag. */
5615 if (event->modifiers & down_modifier)
5616 {
5617 if (is_double)
5618 {
5619 double_click_count++;
5620 event->modifiers |= ((double_click_count > 2)
5621 ? triple_modifier
5622 : double_modifier);
5623 }
5624 else
5625 double_click_count = 1;
5626 button_down_time = event->timestamp;
5627 *start_pos_ptr = Fcopy_alist (position);
5628 ignore_mouse_drag_p = 0;
5629 }
5630
5631 /* Now we're releasing a button - check the co-ordinates to
5632 see if this was a click or a drag. */
5633 else if (event->modifiers & up_modifier)
5634 {
5635 /* If we did not see a down before this up, ignore the up.
5636 Probably this happened because the down event chose a
5637 menu item. It would be an annoyance to treat the
5638 release of the button that chose the menu item as a
5639 separate event. */
5640
5641 if (!CONSP (start_pos))
5642 return Qnil;
5643
5644 event->modifiers &= ~up_modifier;
5645
5646 {
5647 Lisp_Object new_down, down;
5648 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5649
5650 /* The third element of every position
5651 should be the (x,y) pair. */
5652 down = Fcar (Fcdr (Fcdr (start_pos)));
5653 new_down = Fcar (Fcdr (Fcdr (position)));
5654
5655 if (CONSP (down)
5656 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5657 {
5658 xdiff = XINT (XCAR (new_down)) - XINT (XCAR (down));
5659 ydiff = XINT (XCDR (new_down)) - XINT (XCDR (down));
5660 }
5661
5662 if (ignore_mouse_drag_p)
5663 {
5664 event->modifiers |= click_modifier;
5665 ignore_mouse_drag_p = 0;
5666 }
5667 else if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5668 && ydiff < double_click_fuzz && ydiff > - double_click_fuzz
5669 /* Maybe the mouse has moved a lot, caused scrolling, and
5670 eventually ended up at the same screen position (but
5671 not buffer position) in which case it is a drag, not
5672 a click. */
5673 /* FIXME: OTOH if the buffer position has changed
5674 because of a timer or process filter rather than
5675 because of mouse movement, it should be considered as
5676 a click. But mouse-drag-region completely ignores
5677 this case and it hasn't caused any real problem, so
5678 it's probably OK to ignore it as well. */
5679 && EQ (Fcar (Fcdr (start_pos)), Fcar (Fcdr (position))))
5680 /* Mouse hasn't moved (much). */
5681 event->modifiers |= click_modifier;
5682 else
5683 {
5684 button_down_time = 0;
5685 event->modifiers |= drag_modifier;
5686 }
5687
5688 /* Don't check is_double; treat this as multiple
5689 if the down-event was multiple. */
5690 if (double_click_count > 1)
5691 event->modifiers |= ((double_click_count > 2)
5692 ? triple_modifier
5693 : double_modifier);
5694 }
5695 }
5696 else
5697 /* Every mouse event should either have the down_modifier or
5698 the up_modifier set. */
5699 emacs_abort ();
5700
5701 {
5702 /* Get the symbol we should use for the mouse click. */
5703 Lisp_Object head;
5704
5705 head = modify_event_symbol (button,
5706 event->modifiers,
5707 Qmouse_click, Vlispy_mouse_stem,
5708 NULL,
5709 &mouse_syms,
5710 ASIZE (mouse_syms));
5711 if (event->modifiers & drag_modifier)
5712 return list3 (head, start_pos, position);
5713 else if (event->modifiers & (double_modifier | triple_modifier))
5714 return list3 (head, position, make_number (double_click_count));
5715 else
5716 return list2 (head, position);
5717 }
5718 }
5719
5720 case WHEEL_EVENT:
5721 case HORIZ_WHEEL_EVENT:
5722 {
5723 Lisp_Object position;
5724 Lisp_Object head;
5725
5726 /* Build the position as appropriate for this mouse click. */
5727 struct frame *f = XFRAME (event->frame_or_window);
5728
5729 /* Ignore wheel events that were made on frame that have been
5730 deleted. */
5731 if (! FRAME_LIVE_P (f))
5732 return Qnil;
5733
5734 position = make_lispy_position (f, event->x, event->y,
5735 event->timestamp);
5736
5737 /* Set double or triple modifiers to indicate the wheel speed. */
5738 {
5739 /* On window-system frames, use the value of
5740 double-click-fuzz as is. On other frames, interpret it
5741 as a multiple of 1/8 characters. */
5742 struct frame *fr;
5743 int fuzz;
5744 int symbol_num;
5745 bool is_double;
5746
5747 if (WINDOWP (event->frame_or_window))
5748 fr = XFRAME (XWINDOW (event->frame_or_window)->frame);
5749 else if (FRAMEP (event->frame_or_window))
5750 fr = XFRAME (event->frame_or_window);
5751 else
5752 emacs_abort ();
5753
5754 fuzz = FRAME_WINDOW_P (fr)
5755 ? double_click_fuzz : double_click_fuzz / 8;
5756
5757 if (event->modifiers & up_modifier)
5758 {
5759 /* Emit a wheel-up event. */
5760 event->modifiers &= ~up_modifier;
5761 symbol_num = 0;
5762 }
5763 else if (event->modifiers & down_modifier)
5764 {
5765 /* Emit a wheel-down event. */
5766 event->modifiers &= ~down_modifier;
5767 symbol_num = 1;
5768 }
5769 else
5770 /* Every wheel event should either have the down_modifier or
5771 the up_modifier set. */
5772 emacs_abort ();
5773
5774 if (event->kind == HORIZ_WHEEL_EVENT)
5775 symbol_num += 2;
5776
5777 is_double = (last_mouse_button == - (1 + symbol_num)
5778 && (eabs (XINT (event->x) - last_mouse_x) <= fuzz)
5779 && (eabs (XINT (event->y) - last_mouse_y) <= fuzz)
5780 && button_down_time != 0
5781 && (EQ (Vdouble_click_time, Qt)
5782 || (NATNUMP (Vdouble_click_time)
5783 && (event->timestamp - button_down_time
5784 < XFASTINT (Vdouble_click_time)))));
5785 if (is_double)
5786 {
5787 double_click_count++;
5788 event->modifiers |= ((double_click_count > 2)
5789 ? triple_modifier
5790 : double_modifier);
5791 }
5792 else
5793 {
5794 double_click_count = 1;
5795 event->modifiers |= click_modifier;
5796 }
5797
5798 button_down_time = event->timestamp;
5799 /* Use a negative value to distinguish wheel from mouse button. */
5800 last_mouse_button = - (1 + symbol_num);
5801 last_mouse_x = XINT (event->x);
5802 last_mouse_y = XINT (event->y);
5803
5804 /* Get the symbol we should use for the wheel event. */
5805 head = modify_event_symbol (symbol_num,
5806 event->modifiers,
5807 Qmouse_click,
5808 Qnil,
5809 lispy_wheel_names,
5810 &wheel_syms,
5811 ASIZE (wheel_syms));
5812 }
5813
5814 if (event->modifiers & (double_modifier | triple_modifier))
5815 return list3 (head, position, make_number (double_click_count));
5816 else
5817 return list2 (head, position);
5818 }
5819
5820
5821 #ifdef USE_TOOLKIT_SCROLL_BARS
5822
5823 /* We don't have down and up events if using toolkit scroll bars,
5824 so make this always a click event. Store in the `part' of
5825 the Lisp event a symbol which maps to the following actions:
5826
5827 `above_handle' page up
5828 `below_handle' page down
5829 `up' line up
5830 `down' line down
5831 `top' top of buffer
5832 `bottom' bottom of buffer
5833 `handle' thumb has been dragged.
5834 `end-scroll' end of interaction with scroll bar
5835
5836 The incoming input_event contains in its `part' member an
5837 index of type `enum scroll_bar_part' which we can use as an
5838 index in scroll_bar_parts to get the appropriate symbol. */
5839
5840 case SCROLL_BAR_CLICK_EVENT:
5841 {
5842 Lisp_Object position, head;
5843
5844 position = make_scroll_bar_position (event, Qvertical_scroll_bar);
5845
5846 /* Always treat scroll bar events as clicks. */
5847 event->modifiers |= click_modifier;
5848 event->modifiers &= ~up_modifier;
5849
5850 if (event->code >= ASIZE (mouse_syms))
5851 mouse_syms = larger_vector (mouse_syms,
5852 event->code - ASIZE (mouse_syms) + 1,
5853 -1);
5854
5855 /* Get the symbol we should use for the mouse click. */
5856 head = modify_event_symbol (event->code,
5857 event->modifiers,
5858 Qmouse_click,
5859 Vlispy_mouse_stem,
5860 NULL, &mouse_syms,
5861 ASIZE (mouse_syms));
5862 return list2 (head, position);
5863 }
5864
5865 case HORIZONTAL_SCROLL_BAR_CLICK_EVENT:
5866 {
5867 Lisp_Object position, head;
5868
5869 position = make_scroll_bar_position (event, Qhorizontal_scroll_bar);
5870
5871 /* Always treat scroll bar events as clicks. */
5872 event->modifiers |= click_modifier;
5873 event->modifiers &= ~up_modifier;
5874
5875 if (event->code >= ASIZE (mouse_syms))
5876 mouse_syms = larger_vector (mouse_syms,
5877 event->code - ASIZE (mouse_syms) + 1,
5878 -1);
5879
5880 /* Get the symbol we should use for the mouse click. */
5881 head = modify_event_symbol (event->code,
5882 event->modifiers,
5883 Qmouse_click,
5884 Vlispy_mouse_stem,
5885 NULL, &mouse_syms,
5886 ASIZE (mouse_syms));
5887 return list2 (head, position);
5888 }
5889
5890 #endif /* USE_TOOLKIT_SCROLL_BARS */
5891
5892 case DRAG_N_DROP_EVENT:
5893 {
5894 struct frame *f;
5895 Lisp_Object head, position;
5896 Lisp_Object files;
5897
5898 f = XFRAME (event->frame_or_window);
5899 files = event->arg;
5900
5901 /* Ignore mouse events that were made on frames that
5902 have been deleted. */
5903 if (! FRAME_LIVE_P (f))
5904 return Qnil;
5905
5906 position = make_lispy_position (f, event->x, event->y,
5907 event->timestamp);
5908
5909 head = modify_event_symbol (0, event->modifiers,
5910 Qdrag_n_drop, Qnil,
5911 lispy_drag_n_drop_names,
5912 &drag_n_drop_syms, 1);
5913 return list3 (head, position, files);
5914 }
5915
5916 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
5917 || defined (HAVE_NS) || defined (USE_GTK)
5918 case MENU_BAR_EVENT:
5919 if (EQ (event->arg, event->frame_or_window))
5920 /* This is the prefix key. We translate this to
5921 `(menu_bar)' because the code in keyboard.c for menu
5922 events, which we use, relies on this. */
5923 return list1 (Qmenu_bar);
5924 return event->arg;
5925 #endif
5926
5927 case SELECT_WINDOW_EVENT:
5928 /* Make an event (select-window (WINDOW)). */
5929 return list2 (Qselect_window, list1 (event->frame_or_window));
5930
5931 case TOOL_BAR_EVENT:
5932 if (EQ (event->arg, event->frame_or_window))
5933 /* This is the prefix key. We translate this to
5934 `(tool_bar)' because the code in keyboard.c for tool bar
5935 events, which we use, relies on this. */
5936 return list1 (Qtool_bar);
5937 else if (SYMBOLP (event->arg))
5938 return apply_modifiers (event->modifiers, event->arg);
5939 return event->arg;
5940
5941 case USER_SIGNAL_EVENT:
5942 /* A user signal. */
5943 {
5944 char *name = find_user_signal_name (event->code);
5945 if (!name)
5946 emacs_abort ();
5947 return intern (name);
5948 }
5949
5950 case SAVE_SESSION_EVENT:
5951 return Qsave_session;
5952
5953 #ifdef HAVE_DBUS
5954 case DBUS_EVENT:
5955 {
5956 return Fcons (Qdbus_event, event->arg);
5957 }
5958 #endif /* HAVE_DBUS */
5959
5960 #ifdef HAVE_XWIDGETS
5961 case XWIDGET_EVENT:
5962 {
5963 return Fcons (Qxwidget_event, event->arg);
5964 }
5965 #endif
5966
5967 #if defined HAVE_INOTIFY || defined HAVE_KQUEUE || defined HAVE_GFILENOTIFY
5968 case FILE_NOTIFY_EVENT:
5969 {
5970 return Fcons (Qfile_notify, event->arg);
5971 }
5972 #endif /* HAVE_INOTIFY || HAVE_KQUEUE || HAVE_GFILENOTIFY */
5973
5974 case CONFIG_CHANGED_EVENT:
5975 return list3 (Qconfig_changed_event,
5976 event->arg, event->frame_or_window);
5977
5978 /* The 'kind' field of the event is something we don't recognize. */
5979 default:
5980 emacs_abort ();
5981 }
5982 }
5983
5984 static Lisp_Object
5985 make_lispy_movement (struct frame *frame, Lisp_Object bar_window, enum scroll_bar_part part,
5986 Lisp_Object x, Lisp_Object y, Time t)
5987 {
5988 /* Is it a scroll bar movement? */
5989 if (frame && ! NILP (bar_window))
5990 {
5991 Lisp_Object part_sym;
5992
5993 part_sym = builtin_lisp_symbol (scroll_bar_parts[part]);
5994 return list2 (Qscroll_bar_movement,
5995 list5 (bar_window,
5996 Qvertical_scroll_bar,
5997 Fcons (x, y),
5998 make_number (t),
5999 part_sym));
6000 }
6001 /* Or is it an ordinary mouse movement? */
6002 else
6003 {
6004 Lisp_Object position;
6005 position = make_lispy_position (frame, x, y, t);
6006 return list2 (Qmouse_movement, position);
6007 }
6008 }
6009
6010 /* Construct a switch frame event. */
6011 static Lisp_Object
6012 make_lispy_switch_frame (Lisp_Object frame)
6013 {
6014 return list2 (Qswitch_frame, frame);
6015 }
6016
6017 static Lisp_Object
6018 make_lispy_focus_in (Lisp_Object frame)
6019 {
6020 return list2 (Qfocus_in, frame);
6021 }
6022
6023 #ifdef HAVE_WINDOW_SYSTEM
6024
6025 static Lisp_Object
6026 make_lispy_focus_out (Lisp_Object frame)
6027 {
6028 return list2 (Qfocus_out, frame);
6029 }
6030
6031 #endif /* HAVE_WINDOW_SYSTEM */
6032
6033 /* Manipulating modifiers. */
6034
6035 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6036
6037 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6038 SYMBOL's name of the end of the modifiers; the string from this
6039 position is the unmodified symbol name.
6040
6041 This doesn't use any caches. */
6042
6043 static int
6044 parse_modifiers_uncached (Lisp_Object symbol, ptrdiff_t *modifier_end)
6045 {
6046 Lisp_Object name;
6047 ptrdiff_t i;
6048 int modifiers;
6049
6050 CHECK_SYMBOL (symbol);
6051
6052 modifiers = 0;
6053 name = SYMBOL_NAME (symbol);
6054
6055 for (i = 0; i < SBYTES (name) - 1; )
6056 {
6057 ptrdiff_t this_mod_end = 0;
6058 int this_mod = 0;
6059
6060 /* See if the name continues with a modifier word.
6061 Check that the word appears, but don't check what follows it.
6062 Set this_mod and this_mod_end to record what we find. */
6063
6064 switch (SREF (name, i))
6065 {
6066 #define SINGLE_LETTER_MOD(BIT) \
6067 (this_mod_end = i + 1, this_mod = BIT)
6068
6069 case 'A':
6070 SINGLE_LETTER_MOD (alt_modifier);
6071 break;
6072
6073 case 'C':
6074 SINGLE_LETTER_MOD (ctrl_modifier);
6075 break;
6076
6077 case 'H':
6078 SINGLE_LETTER_MOD (hyper_modifier);
6079 break;
6080
6081 case 'M':
6082 SINGLE_LETTER_MOD (meta_modifier);
6083 break;
6084
6085 case 'S':
6086 SINGLE_LETTER_MOD (shift_modifier);
6087 break;
6088
6089 case 's':
6090 SINGLE_LETTER_MOD (super_modifier);
6091 break;
6092
6093 #undef SINGLE_LETTER_MOD
6094
6095 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6096 if (i + LEN + 1 <= SBYTES (name) \
6097 && ! memcmp (SDATA (name) + i, NAME, LEN)) \
6098 { \
6099 this_mod_end = i + LEN; \
6100 this_mod = BIT; \
6101 }
6102
6103 case 'd':
6104 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6105 MULTI_LETTER_MOD (down_modifier, "down", 4);
6106 MULTI_LETTER_MOD (double_modifier, "double", 6);
6107 break;
6108
6109 case 't':
6110 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6111 break;
6112
6113 case 'u':
6114 MULTI_LETTER_MOD (up_modifier, "up", 2);
6115 break;
6116 #undef MULTI_LETTER_MOD
6117
6118 }
6119
6120 /* If we found no modifier, stop looking for them. */
6121 if (this_mod_end == 0)
6122 break;
6123
6124 /* Check there is a dash after the modifier, so that it
6125 really is a modifier. */
6126 if (this_mod_end >= SBYTES (name)
6127 || SREF (name, this_mod_end) != '-')
6128 break;
6129
6130 /* This modifier is real; look for another. */
6131 modifiers |= this_mod;
6132 i = this_mod_end + 1;
6133 }
6134
6135 /* Should we include the `click' modifier? */
6136 if (! (modifiers & (down_modifier | drag_modifier
6137 | double_modifier | triple_modifier))
6138 && i + 7 == SBYTES (name)
6139 && memcmp (SDATA (name) + i, "mouse-", 6) == 0
6140 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
6141 modifiers |= click_modifier;
6142
6143 if (! (modifiers & (double_modifier | triple_modifier))
6144 && i + 6 < SBYTES (name)
6145 && memcmp (SDATA (name) + i, "wheel-", 6) == 0)
6146 modifiers |= click_modifier;
6147
6148 if (modifier_end)
6149 *modifier_end = i;
6150
6151 return modifiers;
6152 }
6153
6154 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6155 prepended to the string BASE[0..BASE_LEN-1].
6156 This doesn't use any caches. */
6157 static Lisp_Object
6158 apply_modifiers_uncached (int modifiers, char *base, int base_len, int base_len_byte)
6159 {
6160 /* Since BASE could contain nulls, we can't use intern here; we have
6161 to use Fintern, which expects a genuine Lisp_String, and keeps a
6162 reference to it. */
6163 char new_mods[sizeof "A-C-H-M-S-s-up-down-drag-double-triple-"];
6164 int mod_len;
6165
6166 {
6167 char *p = new_mods;
6168
6169 /* Mouse events should not exhibit the `up' modifier once they
6170 leave the event queue only accessible to C code; `up' will
6171 always be turned into a click or drag event before being
6172 presented to lisp code. But since lisp events can be
6173 synthesized bypassing the event queue and pushed into
6174 `unread-command-events' or its companions, it's better to just
6175 deal with unexpected modifier combinations. */
6176
6177 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6178 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6179 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6180 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6181 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6182 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6183 if (modifiers & double_modifier) p = stpcpy (p, "double-");
6184 if (modifiers & triple_modifier) p = stpcpy (p, "triple-");
6185 if (modifiers & up_modifier) p = stpcpy (p, "up-");
6186 if (modifiers & down_modifier) p = stpcpy (p, "down-");
6187 if (modifiers & drag_modifier) p = stpcpy (p, "drag-");
6188 /* The click modifier is denoted by the absence of other modifiers. */
6189
6190 *p = '\0';
6191
6192 mod_len = p - new_mods;
6193 }
6194
6195 {
6196 Lisp_Object new_name;
6197
6198 new_name = make_uninit_multibyte_string (mod_len + base_len,
6199 mod_len + base_len_byte);
6200 memcpy (SDATA (new_name), new_mods, mod_len);
6201 memcpy (SDATA (new_name) + mod_len, base, base_len_byte);
6202
6203 return Fintern (new_name, Qnil);
6204 }
6205 }
6206
6207
6208 static const char *const modifier_names[] =
6209 {
6210 "up", "down", "drag", "click", "double", "triple", 0, 0,
6211 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6212 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6213 };
6214 #define NUM_MOD_NAMES ARRAYELTS (modifier_names)
6215
6216 static Lisp_Object modifier_symbols;
6217
6218 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6219 static Lisp_Object
6220 lispy_modifier_list (int modifiers)
6221 {
6222 Lisp_Object modifier_list;
6223 int i;
6224
6225 modifier_list = Qnil;
6226 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6227 if (modifiers & (1<<i))
6228 modifier_list = Fcons (AREF (modifier_symbols, i),
6229 modifier_list);
6230
6231 return modifier_list;
6232 }
6233
6234
6235 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6236 where UNMODIFIED is the unmodified form of SYMBOL,
6237 MASK is the set of modifiers present in SYMBOL's name.
6238 This is similar to parse_modifiers_uncached, but uses the cache in
6239 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6240 Qevent_symbol_elements property. */
6241
6242 #define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTERBITS) - 1))
6243
6244 Lisp_Object
6245 parse_modifiers (Lisp_Object symbol)
6246 {
6247 Lisp_Object elements;
6248
6249 if (INTEGERP (symbol))
6250 return list2i (KEY_TO_CHAR (symbol), XINT (symbol) & CHAR_MODIFIER_MASK);
6251 else if (!SYMBOLP (symbol))
6252 return Qnil;
6253
6254 elements = Fget (symbol, Qevent_symbol_element_mask);
6255 if (CONSP (elements))
6256 return elements;
6257 else
6258 {
6259 ptrdiff_t end;
6260 int modifiers = parse_modifiers_uncached (symbol, &end);
6261 Lisp_Object unmodified;
6262 Lisp_Object mask;
6263
6264 unmodified = Fintern (make_string (SSDATA (SYMBOL_NAME (symbol)) + end,
6265 SBYTES (SYMBOL_NAME (symbol)) - end),
6266 Qnil);
6267
6268 if (modifiers & ~INTMASK)
6269 emacs_abort ();
6270 XSETFASTINT (mask, modifiers);
6271 elements = list2 (unmodified, mask);
6272
6273 /* Cache the parsing results on SYMBOL. */
6274 Fput (symbol, Qevent_symbol_element_mask,
6275 elements);
6276 Fput (symbol, Qevent_symbol_elements,
6277 Fcons (unmodified, lispy_modifier_list (modifiers)));
6278
6279 /* Since we know that SYMBOL is modifiers applied to unmodified,
6280 it would be nice to put that in unmodified's cache.
6281 But we can't, since we're not sure that parse_modifiers is
6282 canonical. */
6283
6284 return elements;
6285 }
6286 }
6287
6288 DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,
6289 Sevent_symbol_parse_modifiers, 1, 1, 0,
6290 doc: /* Parse the event symbol. For internal use. */)
6291 (Lisp_Object symbol)
6292 {
6293 /* Fill the cache if needed. */
6294 parse_modifiers (symbol);
6295 /* Ignore the result (which is stored on Qevent_symbol_element_mask)
6296 and use the Lispier representation stored on Qevent_symbol_elements
6297 instead. */
6298 return Fget (symbol, Qevent_symbol_elements);
6299 }
6300
6301 /* Apply the modifiers MODIFIERS to the symbol BASE.
6302 BASE must be unmodified.
6303
6304 This is like apply_modifiers_uncached, but uses BASE's
6305 Qmodifier_cache property, if present.
6306
6307 apply_modifiers copies the value of BASE's Qevent_kind property to
6308 the modified symbol. */
6309 static Lisp_Object
6310 apply_modifiers (int modifiers, Lisp_Object base)
6311 {
6312 Lisp_Object cache, idx, entry, new_symbol;
6313
6314 /* Mask out upper bits. We don't know where this value's been. */
6315 modifiers &= INTMASK;
6316
6317 if (INTEGERP (base))
6318 return make_number (XINT (base) | modifiers);
6319
6320 /* The click modifier never figures into cache indices. */
6321 cache = Fget (base, Qmodifier_cache);
6322 XSETFASTINT (idx, (modifiers & ~click_modifier));
6323 entry = assq_no_quit (idx, cache);
6324
6325 if (CONSP (entry))
6326 new_symbol = XCDR (entry);
6327 else
6328 {
6329 /* We have to create the symbol ourselves. */
6330 new_symbol = apply_modifiers_uncached (modifiers,
6331 SSDATA (SYMBOL_NAME (base)),
6332 SCHARS (SYMBOL_NAME (base)),
6333 SBYTES (SYMBOL_NAME (base)));
6334
6335 /* Add the new symbol to the base's cache. */
6336 entry = Fcons (idx, new_symbol);
6337 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6338
6339 /* We have the parsing info now for free, so we could add it to
6340 the caches:
6341 XSETFASTINT (idx, modifiers);
6342 Fput (new_symbol, Qevent_symbol_element_mask,
6343 list2 (base, idx));
6344 Fput (new_symbol, Qevent_symbol_elements,
6345 Fcons (base, lispy_modifier_list (modifiers)));
6346 Sadly, this is only correct if `base' is indeed a base event,
6347 which is not necessarily the case. -stef */
6348 }
6349
6350 /* Make sure this symbol is of the same kind as BASE.
6351
6352 You'd think we could just set this once and for all when we
6353 intern the symbol above, but reorder_modifiers may call us when
6354 BASE's property isn't set right; we can't assume that just
6355 because it has a Qmodifier_cache property it must have its
6356 Qevent_kind set right as well. */
6357 if (NILP (Fget (new_symbol, Qevent_kind)))
6358 {
6359 Lisp_Object kind;
6360
6361 kind = Fget (base, Qevent_kind);
6362 if (! NILP (kind))
6363 Fput (new_symbol, Qevent_kind, kind);
6364 }
6365
6366 return new_symbol;
6367 }
6368
6369
6370 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6371 return a symbol with the modifiers placed in the canonical order.
6372 Canonical order is alphabetical, except for down and drag, which
6373 always come last. The 'click' modifier is never written out.
6374
6375 Fdefine_key calls this to make sure that (for example) C-M-foo
6376 and M-C-foo end up being equivalent in the keymap. */
6377
6378 Lisp_Object
6379 reorder_modifiers (Lisp_Object symbol)
6380 {
6381 /* It's hopefully okay to write the code this way, since everything
6382 will soon be in caches, and no consing will be done at all. */
6383 Lisp_Object parsed;
6384
6385 parsed = parse_modifiers (symbol);
6386 return apply_modifiers (XFASTINT (XCAR (XCDR (parsed))),
6387 XCAR (parsed));
6388 }
6389
6390
6391 /* For handling events, we often want to produce a symbol whose name
6392 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6393 to some base, like the name of a function key or mouse button.
6394 modify_event_symbol produces symbols of this sort.
6395
6396 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6397 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6398 in the table.
6399
6400 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6401 into symbol names, or a string specifying a name stem used to
6402 construct a symbol name or the form `STEM-N', where N is the decimal
6403 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6404 non-nil; otherwise NAME_TABLE is used.
6405
6406 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6407 persist between calls to modify_event_symbol that it can use to
6408 store a cache of the symbols it's generated for this NAME_TABLE
6409 before. The object stored there may be a vector or an alist.
6410
6411 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6412
6413 MODIFIERS is a set of modifier bits (as given in struct input_events)
6414 whose prefixes should be applied to the symbol name.
6415
6416 SYMBOL_KIND is the value to be placed in the event_kind property of
6417 the returned symbol.
6418
6419 The symbols we create are supposed to have an
6420 `event-symbol-elements' property, which lists the modifiers present
6421 in the symbol's name. */
6422
6423 static Lisp_Object
6424 modify_event_symbol (ptrdiff_t symbol_num, int modifiers, Lisp_Object symbol_kind,
6425 Lisp_Object name_alist_or_stem, const char *const *name_table,
6426 Lisp_Object *symbol_table, ptrdiff_t table_size)
6427 {
6428 Lisp_Object value;
6429 Lisp_Object symbol_int;
6430
6431 /* Get rid of the "vendor-specific" bit here. */
6432 XSETINT (symbol_int, symbol_num & 0xffffff);
6433
6434 /* Is this a request for a valid symbol? */
6435 if (symbol_num < 0 || symbol_num >= table_size)
6436 return Qnil;
6437
6438 if (CONSP (*symbol_table))
6439 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6440
6441 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6442 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6443 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6444 we've never used that symbol before. */
6445 else
6446 {
6447 if (! VECTORP (*symbol_table)
6448 || ASIZE (*symbol_table) != table_size)
6449 {
6450 Lisp_Object size;
6451
6452 XSETFASTINT (size, table_size);
6453 *symbol_table = Fmake_vector (size, Qnil);
6454 }
6455
6456 value = AREF (*symbol_table, symbol_num);
6457 }
6458
6459 /* Have we already used this symbol before? */
6460 if (NILP (value))
6461 {
6462 /* No; let's create it. */
6463 if (CONSP (name_alist_or_stem))
6464 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6465 else if (STRINGP (name_alist_or_stem))
6466 {
6467 char *buf;
6468 ptrdiff_t len = (SBYTES (name_alist_or_stem)
6469 + sizeof "-" + INT_STRLEN_BOUND (EMACS_INT));
6470 USE_SAFE_ALLOCA;
6471 buf = SAFE_ALLOCA (len);
6472 esprintf (buf, "%s-%"pI"d", SDATA (name_alist_or_stem),
6473 XINT (symbol_int) + 1);
6474 value = intern (buf);
6475 SAFE_FREE ();
6476 }
6477 else if (name_table != 0 && name_table[symbol_num])
6478 value = intern (name_table[symbol_num]);
6479
6480 #ifdef HAVE_WINDOW_SYSTEM
6481 if (NILP (value))
6482 {
6483 char *name = x_get_keysym_name (symbol_num);
6484 if (name)
6485 value = intern (name);
6486 }
6487 #endif
6488
6489 if (NILP (value))
6490 {
6491 char buf[sizeof "key-" + INT_STRLEN_BOUND (EMACS_INT)];
6492 sprintf (buf, "key-%"pD"d", symbol_num);
6493 value = intern (buf);
6494 }
6495
6496 if (CONSP (*symbol_table))
6497 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6498 else
6499 ASET (*symbol_table, symbol_num, value);
6500
6501 /* Fill in the cache entries for this symbol; this also
6502 builds the Qevent_symbol_elements property, which the user
6503 cares about. */
6504 apply_modifiers (modifiers & click_modifier, value);
6505 Fput (value, Qevent_kind, symbol_kind);
6506 }
6507
6508 /* Apply modifiers to that symbol. */
6509 return apply_modifiers (modifiers, value);
6510 }
6511 \f
6512 /* Convert a list that represents an event type,
6513 such as (ctrl meta backspace), into the usual representation of that
6514 event type as a number or a symbol. */
6515
6516 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6517 doc: /* Convert the event description list EVENT-DESC to an event type.
6518 EVENT-DESC should contain one base event type (a character or symbol)
6519 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6520 drag, down, double or triple). The base must be last.
6521 The return value is an event type (a character or symbol) which
6522 has the same base event type and all the specified modifiers. */)
6523 (Lisp_Object event_desc)
6524 {
6525 Lisp_Object base;
6526 int modifiers = 0;
6527 Lisp_Object rest;
6528
6529 base = Qnil;
6530 rest = event_desc;
6531 while (CONSP (rest))
6532 {
6533 Lisp_Object elt;
6534 int this = 0;
6535
6536 elt = XCAR (rest);
6537 rest = XCDR (rest);
6538
6539 /* Given a symbol, see if it is a modifier name. */
6540 if (SYMBOLP (elt) && CONSP (rest))
6541 this = parse_solitary_modifier (elt);
6542
6543 if (this != 0)
6544 modifiers |= this;
6545 else if (!NILP (base))
6546 error ("Two bases given in one event");
6547 else
6548 base = elt;
6549
6550 }
6551
6552 /* Let the symbol A refer to the character A. */
6553 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6554 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6555
6556 if (INTEGERP (base))
6557 {
6558 /* Turn (shift a) into A. */
6559 if ((modifiers & shift_modifier) != 0
6560 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6561 {
6562 XSETINT (base, XINT (base) - ('a' - 'A'));
6563 modifiers &= ~shift_modifier;
6564 }
6565
6566 /* Turn (control a) into C-a. */
6567 if (modifiers & ctrl_modifier)
6568 return make_number ((modifiers & ~ctrl_modifier)
6569 | make_ctrl_char (XINT (base)));
6570 else
6571 return make_number (modifiers | XINT (base));
6572 }
6573 else if (SYMBOLP (base))
6574 return apply_modifiers (modifiers, base);
6575 else
6576 error ("Invalid base event");
6577 }
6578
6579 /* Try to recognize SYMBOL as a modifier name.
6580 Return the modifier flag bit, or 0 if not recognized. */
6581
6582 int
6583 parse_solitary_modifier (Lisp_Object symbol)
6584 {
6585 Lisp_Object name = SYMBOL_NAME (symbol);
6586
6587 switch (SREF (name, 0))
6588 {
6589 #define SINGLE_LETTER_MOD(BIT) \
6590 if (SBYTES (name) == 1) \
6591 return BIT;
6592
6593 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6594 if (LEN == SBYTES (name) \
6595 && ! memcmp (SDATA (name), NAME, LEN)) \
6596 return BIT;
6597
6598 case 'A':
6599 SINGLE_LETTER_MOD (alt_modifier);
6600 break;
6601
6602 case 'a':
6603 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6604 break;
6605
6606 case 'C':
6607 SINGLE_LETTER_MOD (ctrl_modifier);
6608 break;
6609
6610 case 'c':
6611 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6612 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6613 break;
6614
6615 case 'H':
6616 SINGLE_LETTER_MOD (hyper_modifier);
6617 break;
6618
6619 case 'h':
6620 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6621 break;
6622
6623 case 'M':
6624 SINGLE_LETTER_MOD (meta_modifier);
6625 break;
6626
6627 case 'm':
6628 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6629 break;
6630
6631 case 'S':
6632 SINGLE_LETTER_MOD (shift_modifier);
6633 break;
6634
6635 case 's':
6636 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6637 MULTI_LETTER_MOD (super_modifier, "super", 5);
6638 SINGLE_LETTER_MOD (super_modifier);
6639 break;
6640
6641 case 'd':
6642 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6643 MULTI_LETTER_MOD (down_modifier, "down", 4);
6644 MULTI_LETTER_MOD (double_modifier, "double", 6);
6645 break;
6646
6647 case 't':
6648 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6649 break;
6650
6651 case 'u':
6652 MULTI_LETTER_MOD (up_modifier, "up", 2);
6653 break;
6654
6655 #undef SINGLE_LETTER_MOD
6656 #undef MULTI_LETTER_MOD
6657 }
6658
6659 return 0;
6660 }
6661
6662 /* Return true if EVENT is a list whose elements are all integers or symbols.
6663 Such a list is not valid as an event,
6664 but it can be a Lucid-style event type list. */
6665
6666 bool
6667 lucid_event_type_list_p (Lisp_Object object)
6668 {
6669 Lisp_Object tail;
6670
6671 if (! CONSP (object))
6672 return 0;
6673
6674 if (EQ (XCAR (object), Qhelp_echo)
6675 || EQ (XCAR (object), Qvertical_line)
6676 || EQ (XCAR (object), Qmode_line)
6677 || EQ (XCAR (object), Qheader_line))
6678 return 0;
6679
6680 for (tail = object; CONSP (tail); tail = XCDR (tail))
6681 {
6682 Lisp_Object elt;
6683 elt = XCAR (tail);
6684 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6685 return 0;
6686 }
6687
6688 return NILP (tail);
6689 }
6690 \f
6691 /* Return true if terminal input chars are available.
6692 Also, store the return value into INPUT_PENDING.
6693
6694 Serves the purpose of ioctl (0, FIONREAD, ...)
6695 but works even if FIONREAD does not exist.
6696 (In fact, this may actually read some input.)
6697
6698 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6699 timer events that are ripe.
6700 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6701 events (FOCUS_IN_EVENT).
6702 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6703 movements and toolkit scroll bar thumb drags. */
6704
6705 static bool
6706 get_input_pending (int flags)
6707 {
6708 /* First of all, have we already counted some input? */
6709 input_pending = (!NILP (Vquit_flag) || readable_events (flags));
6710
6711 /* If input is being read as it arrives, and we have none, there is none. */
6712 if (!input_pending && (!interrupt_input || interrupts_deferred))
6713 {
6714 /* Try to read some input and see how much we get. */
6715 gobble_input ();
6716 input_pending = (!NILP (Vquit_flag) || readable_events (flags));
6717 }
6718
6719 return input_pending;
6720 }
6721
6722 /* Put a BUFFER_SWITCH_EVENT in the buffer
6723 so that read_key_sequence will notice the new current buffer. */
6724
6725 void
6726 record_asynch_buffer_change (void)
6727 {
6728 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6729 The purpose of the event is to make read_key_sequence look up the
6730 keymaps again. If we aren't in read_key_sequence, we don't need one,
6731 and the event could cause trouble by messing up (input-pending-p).
6732 Note: Fwaiting_for_user_input_p always returns nil when async
6733 subprocesses aren't supported. */
6734 if (!NILP (Fwaiting_for_user_input_p ()))
6735 {
6736 struct input_event event;
6737
6738 EVENT_INIT (event);
6739 event.kind = BUFFER_SWITCH_EVENT;
6740 event.frame_or_window = Qnil;
6741 event.arg = Qnil;
6742
6743 /* Make sure no interrupt happens while storing the event. */
6744 #ifdef USABLE_SIGIO
6745 if (interrupt_input)
6746 kbd_buffer_store_event (&event);
6747 else
6748 #endif
6749 {
6750 stop_polling ();
6751 kbd_buffer_store_event (&event);
6752 start_polling ();
6753 }
6754 }
6755 }
6756
6757 /* Read any terminal input already buffered up by the system
6758 into the kbd_buffer, but do not wait.
6759
6760 Return the number of keyboard chars read, or -1 meaning
6761 this is a bad time to try to read input. */
6762
6763 int
6764 gobble_input (void)
6765 {
6766 int nread = 0;
6767 bool err = false;
6768 struct terminal *t;
6769
6770 /* Store pending user signal events, if any. */
6771 store_user_signal_events ();
6772
6773 /* Loop through the available terminals, and call their input hooks. */
6774 t = terminal_list;
6775 while (t)
6776 {
6777 struct terminal *next = t->next_terminal;
6778
6779 if (t->read_socket_hook)
6780 {
6781 int nr;
6782 struct input_event hold_quit;
6783
6784 if (input_blocked_p ())
6785 {
6786 pending_signals = true;
6787 break;
6788 }
6789
6790 EVENT_INIT (hold_quit);
6791 hold_quit.kind = NO_EVENT;
6792
6793 /* No need for FIONREAD or fcntl; just say don't wait. */
6794 while ((nr = (*t->read_socket_hook) (t, &hold_quit)) > 0)
6795 nread += nr;
6796
6797 if (nr == -1) /* Not OK to read input now. */
6798 {
6799 err = true;
6800 }
6801 else if (nr == -2) /* Non-transient error. */
6802 {
6803 /* The terminal device terminated; it should be closed. */
6804
6805 /* Kill Emacs if this was our last terminal. */
6806 if (!terminal_list->next_terminal)
6807 /* Formerly simply reported no input, but that
6808 sometimes led to a failure of Emacs to terminate.
6809 SIGHUP seems appropriate if we can't reach the
6810 terminal. */
6811 /* ??? Is it really right to send the signal just to
6812 this process rather than to the whole process
6813 group? Perhaps on systems with FIONREAD Emacs is
6814 alone in its group. */
6815 terminate_due_to_signal (SIGHUP, 10);
6816
6817 /* XXX Is calling delete_terminal safe here? It calls delete_frame. */
6818 {
6819 Lisp_Object tmp;
6820 XSETTERMINAL (tmp, t);
6821 Fdelete_terminal (tmp, Qnoelisp);
6822 }
6823 }
6824
6825 /* If there was no error, make sure the pointer
6826 is visible for all frames on this terminal. */
6827 if (nr >= 0)
6828 {
6829 Lisp_Object tail, frame;
6830
6831 FOR_EACH_FRAME (tail, frame)
6832 {
6833 struct frame *f = XFRAME (frame);
6834 if (FRAME_TERMINAL (f) == t)
6835 frame_make_pointer_visible (f);
6836 }
6837 }
6838
6839 if (hold_quit.kind != NO_EVENT)
6840 kbd_buffer_store_event (&hold_quit);
6841 }
6842
6843 t = next;
6844 }
6845
6846 if (err && !nread)
6847 nread = -1;
6848
6849 return nread;
6850 }
6851
6852 /* This is the tty way of reading available input.
6853
6854 Note that each terminal device has its own `struct terminal' object,
6855 and so this function is called once for each individual termcap
6856 terminal. The first parameter indicates which terminal to read from. */
6857
6858 int
6859 tty_read_avail_input (struct terminal *terminal,
6860 struct input_event *hold_quit)
6861 {
6862 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6863 the kbd_buffer can really hold. That may prevent loss
6864 of characters on some systems when input is stuffed at us. */
6865 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6866 int n_to_read, i;
6867 struct tty_display_info *tty = terminal->display_info.tty;
6868 int nread = 0;
6869 #ifdef subprocesses
6870 int buffer_free = KBD_BUFFER_SIZE - kbd_buffer_nr_stored () - 1;
6871
6872 if (kbd_on_hold_p () || buffer_free <= 0)
6873 return 0;
6874 #endif /* subprocesses */
6875
6876 if (!terminal->name) /* Don't read from a dead terminal. */
6877 return 0;
6878
6879 if (terminal->type != output_termcap
6880 && terminal->type != output_msdos_raw)
6881 emacs_abort ();
6882
6883 /* XXX I think the following code should be moved to separate hook
6884 functions in system-dependent files. */
6885 #ifdef WINDOWSNT
6886 /* FIXME: AFAIK, tty_read_avail_input is not used under w32 since the non-GUI
6887 code sets read_socket_hook to w32_console_read_socket instead! */
6888 return 0;
6889 #else /* not WINDOWSNT */
6890 if (! tty->term_initted) /* In case we get called during bootstrap. */
6891 return 0;
6892
6893 if (! tty->input)
6894 return 0; /* The terminal is suspended. */
6895
6896 #ifdef MSDOS
6897 n_to_read = dos_keysns ();
6898 if (n_to_read == 0)
6899 return 0;
6900
6901 cbuf[0] = dos_keyread ();
6902 nread = 1;
6903
6904 #else /* not MSDOS */
6905 #ifdef HAVE_GPM
6906 if (gpm_tty == tty)
6907 {
6908 Gpm_Event event;
6909 struct input_event gpm_hold_quit;
6910 int gpm, fd = gpm_fd;
6911
6912 EVENT_INIT (gpm_hold_quit);
6913 gpm_hold_quit.kind = NO_EVENT;
6914
6915 /* gpm==1 if event received.
6916 gpm==0 if the GPM daemon has closed the connection, in which case
6917 Gpm_GetEvent closes gpm_fd and clears it to -1, which is why
6918 we save it in `fd' so close_gpm can remove it from the
6919 select masks.
6920 gpm==-1 if a protocol error or EWOULDBLOCK; the latter is normal. */
6921 while (gpm = Gpm_GetEvent (&event), gpm == 1) {
6922 nread += handle_one_term_event (tty, &event, &gpm_hold_quit);
6923 }
6924 if (gpm == 0)
6925 /* Presumably the GPM daemon has closed the connection. */
6926 close_gpm (fd);
6927 if (gpm_hold_quit.kind != NO_EVENT)
6928 kbd_buffer_store_event (&gpm_hold_quit);
6929 if (nread)
6930 return nread;
6931 }
6932 #endif /* HAVE_GPM */
6933
6934 /* Determine how many characters we should *try* to read. */
6935 #ifdef USABLE_FIONREAD
6936 /* Find out how much input is available. */
6937 if (ioctl (fileno (tty->input), FIONREAD, &n_to_read) < 0)
6938 {
6939 if (! noninteractive)
6940 return -2; /* Close this terminal. */
6941 else
6942 n_to_read = 0;
6943 }
6944 if (n_to_read == 0)
6945 return 0;
6946 if (n_to_read > sizeof cbuf)
6947 n_to_read = sizeof cbuf;
6948 #elif defined USG || defined CYGWIN
6949 /* Read some input if available, but don't wait. */
6950 n_to_read = sizeof cbuf;
6951 fcntl (fileno (tty->input), F_SETFL, O_NONBLOCK);
6952 #else
6953 # error "Cannot read without possibly delaying"
6954 #endif
6955
6956 #ifdef subprocesses
6957 /* Don't read more than we can store. */
6958 if (n_to_read > buffer_free)
6959 n_to_read = buffer_free;
6960 #endif /* subprocesses */
6961
6962 /* Now read; for one reason or another, this will not block.
6963 NREAD is set to the number of chars read. */
6964 do
6965 {
6966 nread = emacs_read (fileno (tty->input), (char *) cbuf, n_to_read);
6967 /* POSIX infers that processes which are not in the session leader's
6968 process group won't get SIGHUPs at logout time. BSDI adheres to
6969 this part standard and returns -1 from read (0) with errno==EIO
6970 when the control tty is taken away.
6971 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6972 if (nread == -1 && errno == EIO)
6973 return -2; /* Close this terminal. */
6974 #if defined (AIX) && defined (_BSD)
6975 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6976 This looks incorrect, but it isn't, because _BSD causes
6977 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6978 and that causes a value other than 0 when there is no input. */
6979 if (nread == 0)
6980 return -2; /* Close this terminal. */
6981 #endif
6982 }
6983 while (
6984 /* We used to retry the read if it was interrupted.
6985 But this does the wrong thing when O_NONBLOCK causes
6986 an EAGAIN error. Does anybody know of a situation
6987 where a retry is actually needed? */
6988 #if 0
6989 nread < 0 && (errno == EAGAIN || errno == EFAULT
6990 #ifdef EBADSLT
6991 || errno == EBADSLT
6992 #endif
6993 )
6994 #else
6995 0
6996 #endif
6997 );
6998
6999 #ifndef USABLE_FIONREAD
7000 #if defined (USG) || defined (CYGWIN)
7001 fcntl (fileno (tty->input), F_SETFL, 0);
7002 #endif /* USG or CYGWIN */
7003 #endif /* no FIONREAD */
7004
7005 if (nread <= 0)
7006 return nread;
7007
7008 #endif /* not MSDOS */
7009 #endif /* not WINDOWSNT */
7010
7011 for (i = 0; i < nread; i++)
7012 {
7013 struct input_event buf;
7014 EVENT_INIT (buf);
7015 buf.kind = ASCII_KEYSTROKE_EVENT;
7016 buf.modifiers = 0;
7017 if (tty->meta_key == 1 && (cbuf[i] & 0x80))
7018 buf.modifiers = meta_modifier;
7019 if (tty->meta_key != 2)
7020 cbuf[i] &= ~0x80;
7021
7022 buf.code = cbuf[i];
7023 /* Set the frame corresponding to the active tty. Note that the
7024 value of selected_frame is not reliable here, redisplay tends
7025 to temporarily change it. */
7026 buf.frame_or_window = tty->top_frame;
7027 buf.arg = Qnil;
7028
7029 kbd_buffer_store_event (&buf);
7030 /* Don't look at input that follows a C-g too closely.
7031 This reduces lossage due to autorepeat on C-g. */
7032 if (buf.kind == ASCII_KEYSTROKE_EVENT
7033 && buf.code == quit_char)
7034 break;
7035 }
7036
7037 return nread;
7038 }
7039 \f
7040 static void
7041 handle_async_input (void)
7042 {
7043 #ifdef USABLE_SIGIO
7044 while (1)
7045 {
7046 int nread = gobble_input ();
7047 /* -1 means it's not ok to read the input now.
7048 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
7049 0 means there was no keyboard input available. */
7050 if (nread <= 0)
7051 break;
7052 }
7053 #endif
7054 }
7055
7056 void
7057 process_pending_signals (void)
7058 {
7059 pending_signals = false;
7060 handle_async_input ();
7061 do_pending_atimers ();
7062 }
7063
7064 /* Undo any number of BLOCK_INPUT calls down to level LEVEL,
7065 and reinvoke any pending signal if the level is now 0 and
7066 a fatal error is not already in progress. */
7067
7068 void
7069 unblock_input_to (int level)
7070 {
7071 interrupt_input_blocked = level;
7072 if (level == 0)
7073 {
7074 if (pending_signals && !fatal_error_in_progress)
7075 process_pending_signals ();
7076 }
7077 else if (level < 0)
7078 emacs_abort ();
7079 }
7080
7081 /* End critical section.
7082
7083 If doing signal-driven input, and a signal came in when input was
7084 blocked, reinvoke the signal handler now to deal with it.
7085
7086 It will also process queued input, if it was not read before.
7087 When a longer code sequence does not use block/unblock input
7088 at all, the whole input gathered up to the next call to
7089 unblock_input will be processed inside that call. */
7090
7091 void
7092 unblock_input (void)
7093 {
7094 unblock_input_to (interrupt_input_blocked - 1);
7095 }
7096
7097 /* Undo any number of BLOCK_INPUT calls,
7098 and also reinvoke any pending signal. */
7099
7100 void
7101 totally_unblock_input (void)
7102 {
7103 unblock_input_to (0);
7104 }
7105
7106 #ifdef USABLE_SIGIO
7107
7108 void
7109 handle_input_available_signal (int sig)
7110 {
7111 pending_signals = true;
7112
7113 if (input_available_clear_time)
7114 *input_available_clear_time = make_timespec (0, 0);
7115 }
7116
7117 static void
7118 deliver_input_available_signal (int sig)
7119 {
7120 deliver_process_signal (sig, handle_input_available_signal);
7121 }
7122 #endif /* USABLE_SIGIO */
7123
7124 \f
7125 /* User signal events. */
7126
7127 struct user_signal_info
7128 {
7129 /* Signal number. */
7130 int sig;
7131
7132 /* Name of the signal. */
7133 char *name;
7134
7135 /* Number of pending signals. */
7136 int npending;
7137
7138 struct user_signal_info *next;
7139 };
7140
7141 /* List of user signals. */
7142 static struct user_signal_info *user_signals = NULL;
7143
7144 /* Function called when handling user signals. */
7145 void (*handle_user_signal_hook) (int);
7146
7147 void
7148 add_user_signal (int sig, const char *name)
7149 {
7150 struct sigaction action;
7151 struct user_signal_info *p;
7152
7153 for (p = user_signals; p; p = p->next)
7154 if (p->sig == sig)
7155 /* Already added. */
7156 return;
7157
7158 p = xmalloc (sizeof *p);
7159 p->sig = sig;
7160 p->name = xstrdup (name);
7161 p->npending = 0;
7162 p->next = user_signals;
7163 user_signals = p;
7164
7165 emacs_sigaction_init (&action, deliver_user_signal);
7166 sigaction (sig, &action, 0);
7167 }
7168
7169 static void
7170 handle_user_signal (int sig)
7171 {
7172 struct user_signal_info *p;
7173 const char *special_event_name = NULL;
7174
7175 if (SYMBOLP (Vdebug_on_event))
7176 special_event_name = SSDATA (SYMBOL_NAME (Vdebug_on_event));
7177
7178 for (p = user_signals; p; p = p->next)
7179 if (p->sig == sig)
7180 {
7181 if (special_event_name
7182 && strcmp (special_event_name, p->name) == 0)
7183 {
7184 /* Enter the debugger in many ways. */
7185 debug_on_next_call = true;
7186 debug_on_quit = true;
7187 Vquit_flag = Qt;
7188 Vinhibit_quit = Qnil;
7189
7190 /* Eat the event. */
7191 break;
7192 }
7193
7194 p->npending++;
7195 if (handle_user_signal_hook)
7196 (*handle_user_signal_hook) (sig);
7197 #ifdef USABLE_SIGIO
7198 if (interrupt_input)
7199 handle_input_available_signal (sig);
7200 else
7201 #endif
7202 {
7203 /* Tell wait_reading_process_output that it needs to wake
7204 up and look around. */
7205 if (input_available_clear_time)
7206 *input_available_clear_time = make_timespec (0, 0);
7207 }
7208 break;
7209 }
7210 }
7211
7212 static void
7213 deliver_user_signal (int sig)
7214 {
7215 deliver_process_signal (sig, handle_user_signal);
7216 }
7217
7218 static char *
7219 find_user_signal_name (int sig)
7220 {
7221 struct user_signal_info *p;
7222
7223 for (p = user_signals; p; p = p->next)
7224 if (p->sig == sig)
7225 return p->name;
7226
7227 return NULL;
7228 }
7229
7230 static void
7231 store_user_signal_events (void)
7232 {
7233 struct user_signal_info *p;
7234 struct input_event buf;
7235 bool buf_initialized = false;
7236
7237 for (p = user_signals; p; p = p->next)
7238 if (p->npending > 0)
7239 {
7240 if (! buf_initialized)
7241 {
7242 memset (&buf, 0, sizeof buf);
7243 buf.kind = USER_SIGNAL_EVENT;
7244 buf.frame_or_window = selected_frame;
7245 buf_initialized = true;
7246 }
7247
7248 do
7249 {
7250 buf.code = p->sig;
7251 kbd_buffer_store_event (&buf);
7252 p->npending--;
7253 }
7254 while (p->npending > 0);
7255 }
7256 }
7257
7258 \f
7259 static void menu_bar_item (Lisp_Object, Lisp_Object, Lisp_Object, void *);
7260 static Lisp_Object menu_bar_one_keymap_changed_items;
7261
7262 /* These variables hold the vector under construction within
7263 menu_bar_items and its subroutines, and the current index
7264 for storing into that vector. */
7265 static Lisp_Object menu_bar_items_vector;
7266 static int menu_bar_items_index;
7267
7268
7269 static const char *separator_names[] = {
7270 "space",
7271 "no-line",
7272 "single-line",
7273 "double-line",
7274 "single-dashed-line",
7275 "double-dashed-line",
7276 "shadow-etched-in",
7277 "shadow-etched-out",
7278 "shadow-etched-in-dash",
7279 "shadow-etched-out-dash",
7280 "shadow-double-etched-in",
7281 "shadow-double-etched-out",
7282 "shadow-double-etched-in-dash",
7283 "shadow-double-etched-out-dash",
7284 0,
7285 };
7286
7287 /* Return true if LABEL specifies a separator. */
7288
7289 bool
7290 menu_separator_name_p (const char *label)
7291 {
7292 if (!label)
7293 return 0;
7294 else if (strlen (label) > 3
7295 && memcmp (label, "--", 2) == 0
7296 && label[2] != '-')
7297 {
7298 int i;
7299 label += 2;
7300 for (i = 0; separator_names[i]; ++i)
7301 if (strcmp (label, separator_names[i]) == 0)
7302 return 1;
7303 }
7304 else
7305 {
7306 /* It's a separator if it contains only dashes. */
7307 while (*label == '-')
7308 ++label;
7309 return (*label == 0);
7310 }
7311
7312 return 0;
7313 }
7314
7315
7316 /* Return a vector of menu items for a menu bar, appropriate
7317 to the current buffer. Each item has three elements in the vector:
7318 KEY STRING MAPLIST.
7319
7320 OLD is an old vector we can optionally reuse, or nil. */
7321
7322 Lisp_Object
7323 menu_bar_items (Lisp_Object old)
7324 {
7325 /* The number of keymaps we're scanning right now, and the number of
7326 keymaps we have allocated space for. */
7327 ptrdiff_t nmaps;
7328
7329 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7330 in the current keymaps, or nil where it is not a prefix. */
7331 Lisp_Object *maps;
7332
7333 Lisp_Object mapsbuf[3];
7334 Lisp_Object def, tail;
7335
7336 ptrdiff_t mapno;
7337 Lisp_Object oquit;
7338
7339 USE_SAFE_ALLOCA;
7340
7341 /* In order to build the menus, we need to call the keymap
7342 accessors. They all call QUIT. But this function is called
7343 during redisplay, during which a quit is fatal. So inhibit
7344 quitting while building the menus.
7345 We do this instead of specbind because (1) errors will clear it anyway
7346 and (2) this avoids risk of specpdl overflow. */
7347 oquit = Vinhibit_quit;
7348 Vinhibit_quit = Qt;
7349
7350 if (!NILP (old))
7351 menu_bar_items_vector = old;
7352 else
7353 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
7354 menu_bar_items_index = 0;
7355
7356 /* Build our list of keymaps.
7357 If we recognize a function key and replace its escape sequence in
7358 keybuf with its symbol, or if the sequence starts with a mouse
7359 click and we need to switch buffers, we jump back here to rebuild
7360 the initial keymaps from the current buffer. */
7361 {
7362 Lisp_Object *tmaps;
7363
7364 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7365 if (!NILP (Voverriding_local_map_menu_flag)
7366 && !NILP (Voverriding_local_map))
7367 {
7368 /* Yes, use them (if non-nil) as well as the global map. */
7369 maps = mapsbuf;
7370 nmaps = 0;
7371 if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
7372 maps[nmaps++] = KVAR (current_kboard, Voverriding_terminal_local_map);
7373 if (!NILP (Voverriding_local_map))
7374 maps[nmaps++] = Voverriding_local_map;
7375 }
7376 else
7377 {
7378 /* No, so use major and minor mode keymaps and keymap property.
7379 Note that menu-bar bindings in the local-map and keymap
7380 properties may not work reliable, as they are only
7381 recognized when the menu-bar (or mode-line) is updated,
7382 which does not normally happen after every command. */
7383 ptrdiff_t nminor = current_minor_maps (NULL, &tmaps);
7384 SAFE_NALLOCA (maps, 1, nminor + 4);
7385 nmaps = 0;
7386 Lisp_Object tem = KVAR (current_kboard, Voverriding_terminal_local_map);
7387 if (!NILP (tem) && !NILP (Voverriding_local_map_menu_flag))
7388 maps[nmaps++] = tem;
7389 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7390 maps[nmaps++] = tem;
7391 if (nminor != 0)
7392 {
7393 memcpy (maps + nmaps, tmaps, nminor * sizeof (maps[0]));
7394 nmaps += nminor;
7395 }
7396 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7397 }
7398 maps[nmaps++] = current_global_map;
7399 }
7400
7401 /* Look up in each map the dummy prefix key `menu-bar'. */
7402
7403 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7404 if (!NILP (maps[mapno]))
7405 {
7406 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7407 0, 1);
7408 if (CONSP (def))
7409 {
7410 menu_bar_one_keymap_changed_items = Qnil;
7411 map_keymap_canonical (def, menu_bar_item, Qnil, NULL);
7412 }
7413 }
7414
7415 /* Move to the end those items that should be at the end. */
7416
7417 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7418 {
7419 int i;
7420 int end = menu_bar_items_index;
7421
7422 for (i = 0; i < end; i += 4)
7423 if (EQ (XCAR (tail), AREF (menu_bar_items_vector, i)))
7424 {
7425 Lisp_Object tem0, tem1, tem2, tem3;
7426 /* Move the item at index I to the end,
7427 shifting all the others forward. */
7428 tem0 = AREF (menu_bar_items_vector, i + 0);
7429 tem1 = AREF (menu_bar_items_vector, i + 1);
7430 tem2 = AREF (menu_bar_items_vector, i + 2);
7431 tem3 = AREF (menu_bar_items_vector, i + 3);
7432 if (end > i + 4)
7433 memmove (aref_addr (menu_bar_items_vector, i),
7434 aref_addr (menu_bar_items_vector, i + 4),
7435 (end - i - 4) * word_size);
7436 ASET (menu_bar_items_vector, end - 4, tem0);
7437 ASET (menu_bar_items_vector, end - 3, tem1);
7438 ASET (menu_bar_items_vector, end - 2, tem2);
7439 ASET (menu_bar_items_vector, end - 1, tem3);
7440 break;
7441 }
7442 }
7443
7444 /* Add nil, nil, nil, nil at the end. */
7445 {
7446 int i = menu_bar_items_index;
7447 if (i + 4 > ASIZE (menu_bar_items_vector))
7448 menu_bar_items_vector
7449 = larger_vector (menu_bar_items_vector, 4, -1);
7450 /* Add this item. */
7451 ASET (menu_bar_items_vector, i, Qnil); i++;
7452 ASET (menu_bar_items_vector, i, Qnil); i++;
7453 ASET (menu_bar_items_vector, i, Qnil); i++;
7454 ASET (menu_bar_items_vector, i, Qnil); i++;
7455 menu_bar_items_index = i;
7456 }
7457
7458 Vinhibit_quit = oquit;
7459 SAFE_FREE ();
7460 return menu_bar_items_vector;
7461 }
7462 \f
7463 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7464 If there's already an item for KEY, add this DEF to it. */
7465
7466 Lisp_Object item_properties;
7467
7468 static void
7469 menu_bar_item (Lisp_Object key, Lisp_Object item, Lisp_Object dummy1, void *dummy2)
7470 {
7471 int i;
7472 bool parsed;
7473 Lisp_Object tem;
7474
7475 if (EQ (item, Qundefined))
7476 {
7477 /* If a map has an explicit `undefined' as definition,
7478 discard any previously made menu bar item. */
7479
7480 for (i = 0; i < menu_bar_items_index; i += 4)
7481 if (EQ (key, AREF (menu_bar_items_vector, i)))
7482 {
7483 if (menu_bar_items_index > i + 4)
7484 memmove (aref_addr (menu_bar_items_vector, i),
7485 aref_addr (menu_bar_items_vector, i + 4),
7486 (menu_bar_items_index - i - 4) * word_size);
7487 menu_bar_items_index -= 4;
7488 }
7489 }
7490
7491 /* If this keymap has already contributed to this KEY,
7492 don't contribute to it a second time. */
7493 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7494 if (!NILP (tem) || NILP (item))
7495 return;
7496
7497 menu_bar_one_keymap_changed_items
7498 = Fcons (key, menu_bar_one_keymap_changed_items);
7499
7500 /* We add to menu_bar_one_keymap_changed_items before doing the
7501 parse_menu_item, so that if it turns out it wasn't a menu item,
7502 it still correctly hides any further menu item. */
7503 parsed = parse_menu_item (item, 1);
7504 if (!parsed)
7505 return;
7506
7507 item = AREF (item_properties, ITEM_PROPERTY_DEF);
7508
7509 /* Find any existing item for this KEY. */
7510 for (i = 0; i < menu_bar_items_index; i += 4)
7511 if (EQ (key, AREF (menu_bar_items_vector, i)))
7512 break;
7513
7514 /* If we did not find this KEY, add it at the end. */
7515 if (i == menu_bar_items_index)
7516 {
7517 /* If vector is too small, get a bigger one. */
7518 if (i + 4 > ASIZE (menu_bar_items_vector))
7519 menu_bar_items_vector = larger_vector (menu_bar_items_vector, 4, -1);
7520 /* Add this item. */
7521 ASET (menu_bar_items_vector, i, key); i++;
7522 ASET (menu_bar_items_vector, i,
7523 AREF (item_properties, ITEM_PROPERTY_NAME)); i++;
7524 ASET (menu_bar_items_vector, i, list1 (item)); i++;
7525 ASET (menu_bar_items_vector, i, make_number (0)); i++;
7526 menu_bar_items_index = i;
7527 }
7528 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7529 else
7530 {
7531 Lisp_Object old;
7532 old = AREF (menu_bar_items_vector, i + 2);
7533 /* If the new and the old items are not both keymaps,
7534 the lookup will only find `item'. */
7535 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7536 ASET (menu_bar_items_vector, i + 2, item);
7537 }
7538 }
7539 \f
7540 /* This is used as the handler when calling menu_item_eval_property. */
7541 static Lisp_Object
7542 menu_item_eval_property_1 (Lisp_Object arg)
7543 {
7544 /* If we got a quit from within the menu computation,
7545 quit all the way out of it. This takes care of C-] in the debugger. */
7546 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7547 Fsignal (Qquit, Qnil);
7548
7549 return Qnil;
7550 }
7551
7552 static Lisp_Object
7553 eval_dyn (Lisp_Object form)
7554 {
7555 return Feval (form, Qnil);
7556 }
7557
7558 /* Evaluate an expression and return the result (or nil if something
7559 went wrong). Used to evaluate dynamic parts of menu items. */
7560 Lisp_Object
7561 menu_item_eval_property (Lisp_Object sexpr)
7562 {
7563 ptrdiff_t count = SPECPDL_INDEX ();
7564 Lisp_Object val;
7565 specbind (Qinhibit_redisplay, Qt);
7566 val = internal_condition_case_1 (eval_dyn, sexpr, Qerror,
7567 menu_item_eval_property_1);
7568 return unbind_to (count, val);
7569 }
7570
7571 /* This function parses a menu item and leaves the result in the
7572 vector item_properties.
7573 ITEM is a key binding, a possible menu item.
7574 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7575 top level.
7576 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7577 parse_menu_item returns true if the item is a menu item and false
7578 otherwise. */
7579
7580 bool
7581 parse_menu_item (Lisp_Object item, int inmenubar)
7582 {
7583 Lisp_Object def, tem, item_string, start;
7584 Lisp_Object filter;
7585 Lisp_Object keyhint;
7586 int i;
7587
7588 filter = Qnil;
7589 keyhint = Qnil;
7590
7591 if (!CONSP (item))
7592 return 0;
7593
7594 /* Create item_properties vector if necessary. */
7595 if (NILP (item_properties))
7596 item_properties
7597 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7598
7599 /* Initialize optional entries. */
7600 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7601 ASET (item_properties, i, Qnil);
7602 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7603
7604 /* Save the item here to protect it from GC. */
7605 ASET (item_properties, ITEM_PROPERTY_ITEM, item);
7606
7607 item_string = XCAR (item);
7608
7609 start = item;
7610 item = XCDR (item);
7611 if (STRINGP (item_string))
7612 {
7613 /* Old format menu item. */
7614 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
7615
7616 /* Maybe help string. */
7617 if (CONSP (item) && STRINGP (XCAR (item)))
7618 {
7619 ASET (item_properties, ITEM_PROPERTY_HELP,
7620 Fsubstitute_command_keys (XCAR (item)));
7621 start = item;
7622 item = XCDR (item);
7623 }
7624
7625 /* Maybe an obsolete key binding cache. */
7626 if (CONSP (item) && CONSP (XCAR (item))
7627 && (NILP (XCAR (XCAR (item)))
7628 || VECTORP (XCAR (XCAR (item)))))
7629 item = XCDR (item);
7630
7631 /* This is the real definition--the function to run. */
7632 ASET (item_properties, ITEM_PROPERTY_DEF, item);
7633
7634 /* Get enable property, if any. */
7635 if (SYMBOLP (item))
7636 {
7637 tem = Fget (item, Qmenu_enable);
7638 if (!NILP (Venable_disabled_menus_and_buttons))
7639 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7640 else if (!NILP (tem))
7641 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
7642 }
7643 }
7644 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7645 {
7646 /* New format menu item. */
7647 ASET (item_properties, ITEM_PROPERTY_NAME, XCAR (item));
7648 start = XCDR (item);
7649 if (CONSP (start))
7650 {
7651 /* We have a real binding. */
7652 ASET (item_properties, ITEM_PROPERTY_DEF, XCAR (start));
7653
7654 item = XCDR (start);
7655 /* Is there an obsolete cache list with key equivalences. */
7656 if (CONSP (item) && CONSP (XCAR (item)))
7657 item = XCDR (item);
7658
7659 /* Parse properties. */
7660 while (CONSP (item) && CONSP (XCDR (item)))
7661 {
7662 tem = XCAR (item);
7663 item = XCDR (item);
7664
7665 if (EQ (tem, QCenable))
7666 {
7667 if (!NILP (Venable_disabled_menus_and_buttons))
7668 ASET (item_properties, ITEM_PROPERTY_ENABLE, Qt);
7669 else
7670 ASET (item_properties, ITEM_PROPERTY_ENABLE, XCAR (item));
7671 }
7672 else if (EQ (tem, QCvisible))
7673 {
7674 /* If got a visible property and that evaluates to nil
7675 then ignore this item. */
7676 tem = menu_item_eval_property (XCAR (item));
7677 if (NILP (tem))
7678 return 0;
7679 }
7680 else if (EQ (tem, QChelp))
7681 {
7682 Lisp_Object help = XCAR (item);
7683 if (STRINGP (help))
7684 help = Fsubstitute_command_keys (help);
7685 ASET (item_properties, ITEM_PROPERTY_HELP, help);
7686 }
7687 else if (EQ (tem, QCfilter))
7688 filter = item;
7689 else if (EQ (tem, QCkey_sequence))
7690 {
7691 tem = XCAR (item);
7692 if (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem))
7693 /* Be GC protected. Set keyhint to item instead of tem. */
7694 keyhint = item;
7695 }
7696 else if (EQ (tem, QCkeys))
7697 {
7698 tem = XCAR (item);
7699 if (CONSP (tem) || STRINGP (tem))
7700 ASET (item_properties, ITEM_PROPERTY_KEYEQ, tem);
7701 }
7702 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7703 {
7704 Lisp_Object type;
7705 tem = XCAR (item);
7706 type = XCAR (tem);
7707 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7708 {
7709 ASET (item_properties, ITEM_PROPERTY_SELECTED,
7710 XCDR (tem));
7711 ASET (item_properties, ITEM_PROPERTY_TYPE, type);
7712 }
7713 }
7714 item = XCDR (item);
7715 }
7716 }
7717 else if (inmenubar || !NILP (start))
7718 return 0;
7719 }
7720 else
7721 return 0; /* not a menu item */
7722
7723 /* If item string is not a string, evaluate it to get string.
7724 If we don't get a string, skip this item. */
7725 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7726 if (!(STRINGP (item_string)))
7727 {
7728 item_string = menu_item_eval_property (item_string);
7729 if (!STRINGP (item_string))
7730 return 0;
7731 ASET (item_properties, ITEM_PROPERTY_NAME, item_string);
7732 }
7733
7734 /* If got a filter apply it on definition. */
7735 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7736 if (!NILP (filter))
7737 {
7738 def = menu_item_eval_property (list2 (XCAR (filter),
7739 list2 (Qquote, def)));
7740
7741 ASET (item_properties, ITEM_PROPERTY_DEF, def);
7742 }
7743
7744 /* Enable or disable selection of item. */
7745 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7746 if (!EQ (tem, Qt))
7747 {
7748 tem = menu_item_eval_property (tem);
7749 if (inmenubar && NILP (tem))
7750 return 0; /* Ignore disabled items in menu bar. */
7751 ASET (item_properties, ITEM_PROPERTY_ENABLE, tem);
7752 }
7753
7754 /* If we got no definition, this item is just unselectable text which
7755 is OK in a submenu but not in the menubar. */
7756 if (NILP (def))
7757 return (!inmenubar);
7758
7759 /* See if this is a separate pane or a submenu. */
7760 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7761 tem = get_keymap (def, 0, 1);
7762 /* For a subkeymap, just record its details and exit. */
7763 if (CONSP (tem))
7764 {
7765 ASET (item_properties, ITEM_PROPERTY_MAP, tem);
7766 ASET (item_properties, ITEM_PROPERTY_DEF, tem);
7767 return 1;
7768 }
7769
7770 /* At the top level in the menu bar, do likewise for commands also.
7771 The menu bar does not display equivalent key bindings anyway.
7772 ITEM_PROPERTY_DEF is already set up properly. */
7773 if (inmenubar > 0)
7774 return 1;
7775
7776 { /* This is a command. See if there is an equivalent key binding. */
7777 Lisp_Object keyeq = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7778 AUTO_STRING (space_space, " ");
7779
7780 /* The previous code preferred :key-sequence to :keys, so we
7781 preserve this behavior. */
7782 if (STRINGP (keyeq) && !CONSP (keyhint))
7783 keyeq = concat2 (space_space, Fsubstitute_command_keys (keyeq));
7784 else
7785 {
7786 Lisp_Object prefix = keyeq;
7787 Lisp_Object keys = Qnil;
7788
7789 if (CONSP (prefix))
7790 {
7791 def = XCAR (prefix);
7792 prefix = XCDR (prefix);
7793 }
7794 else
7795 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7796
7797 if (CONSP (keyhint) && !NILP (XCAR (keyhint)))
7798 {
7799 keys = XCAR (keyhint);
7800 tem = Fkey_binding (keys, Qnil, Qnil, Qnil);
7801
7802 /* We have a suggested key. Is it bound to the command? */
7803 if (NILP (tem)
7804 || (!EQ (tem, def)
7805 /* If the command is an alias for another
7806 (such as lmenu.el set it up), check if the
7807 original command matches the cached command. */
7808 && !(SYMBOLP (def)
7809 && EQ (tem, XSYMBOL (def)->function))))
7810 keys = Qnil;
7811 }
7812
7813 if (NILP (keys))
7814 keys = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qnil);
7815
7816 if (!NILP (keys))
7817 {
7818 tem = Fkey_description (keys, Qnil);
7819 if (CONSP (prefix))
7820 {
7821 if (STRINGP (XCAR (prefix)))
7822 tem = concat2 (XCAR (prefix), tem);
7823 if (STRINGP (XCDR (prefix)))
7824 tem = concat2 (tem, XCDR (prefix));
7825 }
7826 keyeq = concat2 (space_space, tem);
7827 }
7828 else
7829 keyeq = Qnil;
7830 }
7831
7832 /* If we have an equivalent key binding, use that. */
7833 ASET (item_properties, ITEM_PROPERTY_KEYEQ, keyeq);
7834 }
7835
7836 /* Include this when menu help is implemented.
7837 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7838 if (!(NILP (tem) || STRINGP (tem)))
7839 {
7840 tem = menu_item_eval_property (tem);
7841 if (!STRINGP (tem))
7842 tem = Qnil;
7843 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7844 }
7845 */
7846
7847 /* Handle radio buttons or toggle boxes. */
7848 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7849 if (!NILP (tem))
7850 ASET (item_properties, ITEM_PROPERTY_SELECTED,
7851 menu_item_eval_property (tem));
7852
7853 return 1;
7854 }
7855
7856
7857 \f
7858 /***********************************************************************
7859 Tool-bars
7860 ***********************************************************************/
7861
7862 /* A vector holding tool bar items while they are parsed in function
7863 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7864 in the vector. */
7865
7866 static Lisp_Object tool_bar_items_vector;
7867
7868 /* A vector holding the result of parse_tool_bar_item. Layout is like
7869 the one for a single item in tool_bar_items_vector. */
7870
7871 static Lisp_Object tool_bar_item_properties;
7872
7873 /* Next free index in tool_bar_items_vector. */
7874
7875 static int ntool_bar_items;
7876
7877 /* Function prototypes. */
7878
7879 static void init_tool_bar_items (Lisp_Object);
7880 static void process_tool_bar_item (Lisp_Object, Lisp_Object, Lisp_Object,
7881 void *);
7882 static bool parse_tool_bar_item (Lisp_Object, Lisp_Object);
7883 static void append_tool_bar_item (void);
7884
7885
7886 /* Return a vector of tool bar items for keymaps currently in effect.
7887 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7888 tool bar items found. */
7889
7890 Lisp_Object
7891 tool_bar_items (Lisp_Object reuse, int *nitems)
7892 {
7893 Lisp_Object *maps;
7894 Lisp_Object mapsbuf[3];
7895 ptrdiff_t nmaps, i;
7896 Lisp_Object oquit;
7897 Lisp_Object *tmaps;
7898 USE_SAFE_ALLOCA;
7899
7900 *nitems = 0;
7901
7902 /* In order to build the menus, we need to call the keymap
7903 accessors. They all call QUIT. But this function is called
7904 during redisplay, during which a quit is fatal. So inhibit
7905 quitting while building the menus. We do this instead of
7906 specbind because (1) errors will clear it anyway and (2) this
7907 avoids risk of specpdl overflow. */
7908 oquit = Vinhibit_quit;
7909 Vinhibit_quit = Qt;
7910
7911 /* Initialize tool_bar_items_vector and protect it from GC. */
7912 init_tool_bar_items (reuse);
7913
7914 /* Build list of keymaps in maps. Set nmaps to the number of maps
7915 to process. */
7916
7917 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7918 if (!NILP (Voverriding_local_map_menu_flag)
7919 && !NILP (Voverriding_local_map))
7920 {
7921 /* Yes, use them (if non-nil) as well as the global map. */
7922 maps = mapsbuf;
7923 nmaps = 0;
7924 if (!NILP (KVAR (current_kboard, Voverriding_terminal_local_map)))
7925 maps[nmaps++] = KVAR (current_kboard, Voverriding_terminal_local_map);
7926 if (!NILP (Voverriding_local_map))
7927 maps[nmaps++] = Voverriding_local_map;
7928 }
7929 else
7930 {
7931 /* No, so use major and minor mode keymaps and keymap property.
7932 Note that tool-bar bindings in the local-map and keymap
7933 properties may not work reliable, as they are only
7934 recognized when the tool-bar (or mode-line) is updated,
7935 which does not normally happen after every command. */
7936 ptrdiff_t nminor = current_minor_maps (NULL, &tmaps);
7937 SAFE_NALLOCA (maps, 1, nminor + 4);
7938 nmaps = 0;
7939 Lisp_Object tem = KVAR (current_kboard, Voverriding_terminal_local_map);
7940 if (!NILP (tem) && !NILP (Voverriding_local_map_menu_flag))
7941 maps[nmaps++] = tem;
7942 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7943 maps[nmaps++] = tem;
7944 if (nminor != 0)
7945 {
7946 memcpy (maps + nmaps, tmaps, nminor * sizeof (maps[0]));
7947 nmaps += nminor;
7948 }
7949 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7950 }
7951
7952 /* Add global keymap at the end. */
7953 maps[nmaps++] = current_global_map;
7954
7955 /* Process maps in reverse order and look up in each map the prefix
7956 key `tool-bar'. */
7957 for (i = nmaps - 1; i >= 0; --i)
7958 if (!NILP (maps[i]))
7959 {
7960 Lisp_Object keymap;
7961
7962 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7963 if (CONSP (keymap))
7964 map_keymap (keymap, process_tool_bar_item, Qnil, NULL, 1);
7965 }
7966
7967 Vinhibit_quit = oquit;
7968 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7969 SAFE_FREE ();
7970 return tool_bar_items_vector;
7971 }
7972
7973
7974 /* Process the definition of KEY which is DEF. */
7975
7976 static void
7977 process_tool_bar_item (Lisp_Object key, Lisp_Object def, Lisp_Object data, void *args)
7978 {
7979 int i;
7980
7981 if (EQ (def, Qundefined))
7982 {
7983 /* If a map has an explicit `undefined' as definition,
7984 discard any previously made item. */
7985 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7986 {
7987 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7988
7989 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7990 {
7991 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7992 memmove (v, v + TOOL_BAR_ITEM_NSLOTS,
7993 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7994 * word_size));
7995 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7996 break;
7997 }
7998 }
7999 }
8000 else if (parse_tool_bar_item (key, def))
8001 /* Append a new tool bar item to tool_bar_items_vector. Accept
8002 more than one definition for the same key. */
8003 append_tool_bar_item ();
8004 }
8005
8006 /* Access slot with index IDX of vector tool_bar_item_properties. */
8007 #define PROP(IDX) AREF (tool_bar_item_properties, (IDX))
8008 static void
8009 set_prop (ptrdiff_t idx, Lisp_Object val)
8010 {
8011 ASET (tool_bar_item_properties, idx, val);
8012 }
8013
8014
8015 /* Parse a tool bar item specification ITEM for key KEY and return the
8016 result in tool_bar_item_properties. Value is false if ITEM is
8017 invalid.
8018
8019 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
8020
8021 CAPTION is the caption of the item, If it's not a string, it is
8022 evaluated to get a string.
8023
8024 BINDING is the tool bar item's binding. Tool-bar items with keymaps
8025 as binding are currently ignored.
8026
8027 The following properties are recognized:
8028
8029 - `:enable FORM'.
8030
8031 FORM is evaluated and specifies whether the tool bar item is
8032 enabled or disabled.
8033
8034 - `:visible FORM'
8035
8036 FORM is evaluated and specifies whether the tool bar item is visible.
8037
8038 - `:filter FUNCTION'
8039
8040 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
8041 result is stored as the new binding.
8042
8043 - `:button (TYPE SELECTED)'
8044
8045 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8046 and specifies whether the button is selected (pressed) or not.
8047
8048 - `:image IMAGES'
8049
8050 IMAGES is either a single image specification or a vector of four
8051 image specifications. See enum tool_bar_item_images.
8052
8053 - `:help HELP-STRING'.
8054
8055 Gives a help string to display for the tool bar item.
8056
8057 - `:label LABEL-STRING'.
8058
8059 A text label to show with the tool bar button if labels are enabled. */
8060
8061 static bool
8062 parse_tool_bar_item (Lisp_Object key, Lisp_Object item)
8063 {
8064 Lisp_Object filter = Qnil;
8065 Lisp_Object caption;
8066 int i;
8067 bool have_label = false;
8068
8069 /* Definition looks like `(menu-item CAPTION BINDING PROPS...)'.
8070 Rule out items that aren't lists, don't start with
8071 `menu-item' or whose rest following `tool-bar-item' is not a
8072 list. */
8073 if (!CONSP (item))
8074 return 0;
8075
8076 /* As an exception, allow old-style menu separators. */
8077 if (STRINGP (XCAR (item)))
8078 item = list1 (XCAR (item));
8079 else if (!EQ (XCAR (item), Qmenu_item)
8080 || (item = XCDR (item), !CONSP (item)))
8081 return 0;
8082
8083 /* Create tool_bar_item_properties vector if necessary. Reset it to
8084 defaults. */
8085 if (VECTORP (tool_bar_item_properties))
8086 {
8087 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
8088 set_prop (i, Qnil);
8089 }
8090 else
8091 tool_bar_item_properties
8092 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
8093
8094 /* Set defaults. */
8095 set_prop (TOOL_BAR_ITEM_KEY, key);
8096 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qt);
8097
8098 /* Get the caption of the item. If the caption is not a string,
8099 evaluate it to get a string. If we don't get a string, skip this
8100 item. */
8101 caption = XCAR (item);
8102 if (!STRINGP (caption))
8103 {
8104 caption = menu_item_eval_property (caption);
8105 if (!STRINGP (caption))
8106 return 0;
8107 }
8108 set_prop (TOOL_BAR_ITEM_CAPTION, caption);
8109
8110 /* If the rest following the caption is not a list, the menu item is
8111 either a separator, or invalid. */
8112 item = XCDR (item);
8113 if (!CONSP (item))
8114 {
8115 if (menu_separator_name_p (SSDATA (caption)))
8116 {
8117 set_prop (TOOL_BAR_ITEM_TYPE, Qt);
8118 #if !defined (USE_GTK) && !defined (HAVE_NS)
8119 /* If we use build_desired_tool_bar_string to render the
8120 tool bar, the separator is rendered as an image. */
8121 set_prop (TOOL_BAR_ITEM_IMAGES,
8122 (menu_item_eval_property
8123 (Vtool_bar_separator_image_expression)));
8124 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qnil);
8125 set_prop (TOOL_BAR_ITEM_SELECTED_P, Qnil);
8126 set_prop (TOOL_BAR_ITEM_CAPTION, Qnil);
8127 #endif
8128 return 1;
8129 }
8130 return 0;
8131 }
8132
8133 /* Store the binding. */
8134 set_prop (TOOL_BAR_ITEM_BINDING, XCAR (item));
8135 item = XCDR (item);
8136
8137 /* Ignore cached key binding, if any. */
8138 if (CONSP (item) && CONSP (XCAR (item)))
8139 item = XCDR (item);
8140
8141 /* Process the rest of the properties. */
8142 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
8143 {
8144 Lisp_Object ikey, value;
8145
8146 ikey = XCAR (item);
8147 value = XCAR (XCDR (item));
8148
8149 if (EQ (ikey, QCenable))
8150 {
8151 /* `:enable FORM'. */
8152 if (!NILP (Venable_disabled_menus_and_buttons))
8153 set_prop (TOOL_BAR_ITEM_ENABLED_P, Qt);
8154 else
8155 set_prop (TOOL_BAR_ITEM_ENABLED_P, value);
8156 }
8157 else if (EQ (ikey, QCvisible))
8158 {
8159 /* `:visible FORM'. If got a visible property and that
8160 evaluates to nil then ignore this item. */
8161 if (NILP (menu_item_eval_property (value)))
8162 return 0;
8163 }
8164 else if (EQ (ikey, QChelp))
8165 /* `:help HELP-STRING'. */
8166 set_prop (TOOL_BAR_ITEM_HELP, value);
8167 else if (EQ (ikey, QCvert_only))
8168 /* `:vert-only t/nil'. */
8169 set_prop (TOOL_BAR_ITEM_VERT_ONLY, value);
8170 else if (EQ (ikey, QClabel))
8171 {
8172 const char *bad_label = "!!?GARBLED ITEM?!!";
8173 /* `:label LABEL-STRING'. */
8174 set_prop (TOOL_BAR_ITEM_LABEL,
8175 STRINGP (value) ? value : build_string (bad_label));
8176 have_label = true;
8177 }
8178 else if (EQ (ikey, QCfilter))
8179 /* ':filter FORM'. */
8180 filter = value;
8181 else if (EQ (ikey, QCbutton) && CONSP (value))
8182 {
8183 /* `:button (TYPE . SELECTED)'. */
8184 Lisp_Object type, selected;
8185
8186 type = XCAR (value);
8187 selected = XCDR (value);
8188 if (EQ (type, QCtoggle) || EQ (type, QCradio))
8189 {
8190 set_prop (TOOL_BAR_ITEM_SELECTED_P, selected);
8191 set_prop (TOOL_BAR_ITEM_TYPE, type);
8192 }
8193 }
8194 else if (EQ (ikey, QCimage)
8195 && (CONSP (value)
8196 || (VECTORP (value) && ASIZE (value) == 4)))
8197 /* Value is either a single image specification or a vector
8198 of 4 such specifications for the different button states. */
8199 set_prop (TOOL_BAR_ITEM_IMAGES, value);
8200 else if (EQ (ikey, QCrtl))
8201 /* ':rtl STRING' */
8202 set_prop (TOOL_BAR_ITEM_RTL_IMAGE, value);
8203 }
8204
8205
8206 if (!have_label)
8207 {
8208 /* Try to make one from caption and key. */
8209 Lisp_Object tkey = PROP (TOOL_BAR_ITEM_KEY);
8210 Lisp_Object tcapt = PROP (TOOL_BAR_ITEM_CAPTION);
8211 const char *label = SYMBOLP (tkey) ? SSDATA (SYMBOL_NAME (tkey)) : "";
8212 const char *capt = STRINGP (tcapt) ? SSDATA (tcapt) : "";
8213 ptrdiff_t max_lbl =
8214 2 * max (0, min (tool_bar_max_label_size, STRING_BYTES_BOUND / 2));
8215 char *buf = xmalloc (max_lbl + 1);
8216 Lisp_Object new_lbl;
8217 ptrdiff_t caption_len = strlen (capt);
8218
8219 if (caption_len <= max_lbl && capt[0] != '\0')
8220 {
8221 strcpy (buf, capt);
8222 while (caption_len > 0 && buf[caption_len - 1] == '.')
8223 caption_len--;
8224 buf[caption_len] = '\0';
8225 label = capt = buf;
8226 }
8227
8228 if (strlen (label) <= max_lbl && label[0] != '\0')
8229 {
8230 ptrdiff_t j;
8231 if (label != buf)
8232 strcpy (buf, label);
8233
8234 for (j = 0; buf[j] != '\0'; ++j)
8235 if (buf[j] == '-')
8236 buf[j] = ' ';
8237 label = buf;
8238 }
8239 else
8240 label = "";
8241
8242 new_lbl = Fupcase_initials (build_string (label));
8243 if (SCHARS (new_lbl) <= tool_bar_max_label_size)
8244 set_prop (TOOL_BAR_ITEM_LABEL, new_lbl);
8245 else
8246 set_prop (TOOL_BAR_ITEM_LABEL, empty_unibyte_string);
8247 xfree (buf);
8248 }
8249
8250 /* If got a filter apply it on binding. */
8251 if (!NILP (filter))
8252 set_prop (TOOL_BAR_ITEM_BINDING,
8253 (menu_item_eval_property
8254 (list2 (filter,
8255 list2 (Qquote,
8256 PROP (TOOL_BAR_ITEM_BINDING))))));
8257
8258 /* See if the binding is a keymap. Give up if it is. */
8259 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
8260 return 0;
8261
8262 /* Enable or disable selection of item. */
8263 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
8264 set_prop (TOOL_BAR_ITEM_ENABLED_P,
8265 menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P)));
8266
8267 /* Handle radio buttons or toggle boxes. */
8268 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
8269 set_prop (TOOL_BAR_ITEM_SELECTED_P,
8270 menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P)));
8271
8272 return 1;
8273
8274 #undef PROP
8275 }
8276
8277
8278 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8279 that can be reused. */
8280
8281 static void
8282 init_tool_bar_items (Lisp_Object reuse)
8283 {
8284 if (VECTORP (reuse))
8285 tool_bar_items_vector = reuse;
8286 else
8287 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
8288 ntool_bar_items = 0;
8289 }
8290
8291
8292 /* Append parsed tool bar item properties from
8293 tool_bar_item_properties */
8294
8295 static void
8296 append_tool_bar_item (void)
8297 {
8298 ptrdiff_t incr
8299 = (ntool_bar_items
8300 - (ASIZE (tool_bar_items_vector) - TOOL_BAR_ITEM_NSLOTS));
8301
8302 /* Enlarge tool_bar_items_vector if necessary. */
8303 if (incr > 0)
8304 tool_bar_items_vector = larger_vector (tool_bar_items_vector, incr, -1);
8305
8306 /* Append entries from tool_bar_item_properties to the end of
8307 tool_bar_items_vector. */
8308 vcopy (tool_bar_items_vector, ntool_bar_items,
8309 XVECTOR (tool_bar_item_properties)->contents, TOOL_BAR_ITEM_NSLOTS);
8310 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
8311 }
8312
8313
8314
8315
8316 \f
8317 /* Read a character using menus based on the keymap MAP.
8318 Return nil if there are no menus in the maps.
8319 Return t if we displayed a menu but the user rejected it.
8320
8321 PREV_EVENT is the previous input event, or nil if we are reading
8322 the first event of a key sequence.
8323
8324 If USED_MOUSE_MENU is non-null, set *USED_MOUSE_MENU to true
8325 if we used a mouse menu to read the input, or false otherwise. If
8326 USED_MOUSE_MENU is null, don't dereference it.
8327
8328 The prompting is done based on the prompt-string of the map
8329 and the strings associated with various map elements.
8330
8331 This can be done with X menus or with menus put in the minibuf.
8332 These are done in different ways, depending on how the input will be read.
8333 Menus using X are done after auto-saving in read-char, getting the input
8334 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8335 and do auto-saving in the inner call of read_char. */
8336
8337 static Lisp_Object
8338 read_char_x_menu_prompt (Lisp_Object map,
8339 Lisp_Object prev_event, bool *used_mouse_menu)
8340 {
8341 if (used_mouse_menu)
8342 *used_mouse_menu = false;
8343
8344 /* Use local over global Menu maps. */
8345
8346 if (! menu_prompting)
8347 return Qnil;
8348
8349 /* If we got to this point via a mouse click,
8350 use a real menu for mouse selection. */
8351 if (EVENT_HAS_PARAMETERS (prev_event)
8352 && !EQ (XCAR (prev_event), Qmenu_bar)
8353 && !EQ (XCAR (prev_event), Qtool_bar))
8354 {
8355 /* Display the menu and get the selection. */
8356 Lisp_Object value;
8357
8358 value = Fx_popup_menu (prev_event, get_keymap (map, 0, 1));
8359 if (CONSP (value))
8360 {
8361 Lisp_Object tem;
8362
8363 record_menu_key (XCAR (value));
8364
8365 /* If we got multiple events, unread all but
8366 the first.
8367 There is no way to prevent those unread events
8368 from showing up later in last_nonmenu_event.
8369 So turn symbol and integer events into lists,
8370 to indicate that they came from a mouse menu,
8371 so that when present in last_nonmenu_event
8372 they won't confuse things. */
8373 for (tem = XCDR (value); CONSP (tem); tem = XCDR (tem))
8374 {
8375 record_menu_key (XCAR (tem));
8376 if (SYMBOLP (XCAR (tem))
8377 || INTEGERP (XCAR (tem)))
8378 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8379 }
8380
8381 /* If we got more than one event, put all but the first
8382 onto this list to be read later.
8383 Return just the first event now. */
8384 Vunread_command_events
8385 = nconc2 (XCDR (value), Vunread_command_events);
8386 value = XCAR (value);
8387 }
8388 else if (NILP (value))
8389 value = Qt;
8390 if (used_mouse_menu)
8391 *used_mouse_menu = true;
8392 return value;
8393 }
8394 return Qnil ;
8395 }
8396
8397 static Lisp_Object
8398 read_char_minibuf_menu_prompt (int commandflag,
8399 Lisp_Object map)
8400 {
8401 Lisp_Object name;
8402 ptrdiff_t nlength;
8403 /* FIXME: Use the minibuffer's frame width. */
8404 ptrdiff_t width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8405 ptrdiff_t idx = -1;
8406 bool nobindings = true;
8407 Lisp_Object rest, vector;
8408 Lisp_Object prompt_strings = Qnil;
8409
8410 vector = Qnil;
8411
8412 if (! menu_prompting)
8413 return Qnil;
8414
8415 map = get_keymap (map, 0, 1);
8416 name = Fkeymap_prompt (map);
8417
8418 /* If we don't have any menus, just read a character normally. */
8419 if (!STRINGP (name))
8420 return Qnil;
8421
8422 #define PUSH_C_STR(str, listvar) \
8423 listvar = Fcons (build_unibyte_string (str), listvar)
8424
8425 /* Prompt string always starts with map's prompt, and a space. */
8426 prompt_strings = Fcons (name, prompt_strings);
8427 PUSH_C_STR (": ", prompt_strings);
8428 nlength = SCHARS (name) + 2;
8429
8430 rest = map;
8431
8432 /* Present the documented bindings, a line at a time. */
8433 while (1)
8434 {
8435 bool notfirst = false;
8436 Lisp_Object menu_strings = prompt_strings;
8437 ptrdiff_t i = nlength;
8438 Lisp_Object obj;
8439 Lisp_Object orig_defn_macro;
8440
8441 /* Loop over elements of map. */
8442 while (i < width)
8443 {
8444 Lisp_Object elt;
8445
8446 /* FIXME: Use map_keymap to handle new keymap formats. */
8447
8448 /* At end of map, wrap around if just starting,
8449 or end this line if already have something on it. */
8450 if (NILP (rest))
8451 {
8452 if (notfirst || nobindings)
8453 break;
8454 else
8455 rest = map;
8456 }
8457
8458 /* Look at the next element of the map. */
8459 if (idx >= 0)
8460 elt = AREF (vector, idx);
8461 else
8462 elt = Fcar_safe (rest);
8463
8464 if (idx < 0 && VECTORP (elt))
8465 {
8466 /* If we found a dense table in the keymap,
8467 advanced past it, but start scanning its contents. */
8468 rest = Fcdr_safe (rest);
8469 vector = elt;
8470 idx = 0;
8471 }
8472 else
8473 {
8474 /* An ordinary element. */
8475 Lisp_Object event, tem;
8476
8477 if (idx < 0)
8478 {
8479 event = Fcar_safe (elt); /* alist */
8480 elt = Fcdr_safe (elt);
8481 }
8482 else
8483 {
8484 XSETINT (event, idx); /* vector */
8485 }
8486
8487 /* Ignore the element if it has no prompt string. */
8488 if (INTEGERP (event) && parse_menu_item (elt, -1))
8489 {
8490 /* True if the char to type matches the string. */
8491 bool char_matches;
8492 Lisp_Object upcased_event, downcased_event;
8493 Lisp_Object desc = Qnil;
8494 Lisp_Object s
8495 = AREF (item_properties, ITEM_PROPERTY_NAME);
8496
8497 upcased_event = Fupcase (event);
8498 downcased_event = Fdowncase (event);
8499 char_matches = (XINT (upcased_event) == SREF (s, 0)
8500 || XINT (downcased_event) == SREF (s, 0));
8501 if (! char_matches)
8502 desc = Fsingle_key_description (event, Qnil);
8503
8504 #if 0 /* It is redundant to list the equivalent key bindings because
8505 the prefix is what the user has already typed. */
8506 tem
8507 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8508 if (!NILP (tem))
8509 /* Insert equivalent keybinding. */
8510 s = concat2 (s, tem);
8511 #endif
8512 tem
8513 = AREF (item_properties, ITEM_PROPERTY_TYPE);
8514 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8515 {
8516 /* Insert button prefix. */
8517 Lisp_Object selected
8518 = AREF (item_properties, ITEM_PROPERTY_SELECTED);
8519 AUTO_STRING (radio_yes, "(*) ");
8520 AUTO_STRING (radio_no , "( ) ");
8521 AUTO_STRING (check_yes, "[X] ");
8522 AUTO_STRING (check_no , "[ ] ");
8523 if (EQ (tem, QCradio))
8524 tem = NILP (selected) ? radio_yes : radio_no;
8525 else
8526 tem = NILP (selected) ? check_yes : check_no;
8527 s = concat2 (tem, s);
8528 }
8529
8530
8531 /* If we have room for the prompt string, add it to this line.
8532 If this is the first on the line, always add it. */
8533 if ((SCHARS (s) + i + 2
8534 + (char_matches ? 0 : SCHARS (desc) + 3))
8535 < width
8536 || !notfirst)
8537 {
8538 ptrdiff_t thiswidth;
8539
8540 /* Punctuate between strings. */
8541 if (notfirst)
8542 {
8543 PUSH_C_STR (", ", menu_strings);
8544 i += 2;
8545 }
8546 notfirst = true;
8547 nobindings = false;
8548
8549 /* If the char to type doesn't match the string's
8550 first char, explicitly show what char to type. */
8551 if (! char_matches)
8552 {
8553 /* Add as much of string as fits. */
8554 thiswidth = min (SCHARS (desc), width - i);
8555 menu_strings
8556 = Fcons (Fsubstring (desc, make_number (0),
8557 make_number (thiswidth)),
8558 menu_strings);
8559 i += thiswidth;
8560 PUSH_C_STR (" = ", menu_strings);
8561 i += 3;
8562 }
8563
8564 /* Add as much of string as fits. */
8565 thiswidth = min (SCHARS (s), width - i);
8566 menu_strings
8567 = Fcons (Fsubstring (s, make_number (0),
8568 make_number (thiswidth)),
8569 menu_strings);
8570 i += thiswidth;
8571 }
8572 else
8573 {
8574 /* If this element does not fit, end the line now,
8575 and save the element for the next line. */
8576 PUSH_C_STR ("...", menu_strings);
8577 break;
8578 }
8579 }
8580
8581 /* Move past this element. */
8582 if (idx >= 0 && idx + 1 >= ASIZE (vector))
8583 /* Handle reaching end of dense table. */
8584 idx = -1;
8585 if (idx >= 0)
8586 idx++;
8587 else
8588 rest = Fcdr_safe (rest);
8589 }
8590 }
8591
8592 /* Prompt with that and read response. */
8593 message3_nolog (apply1 (intern ("concat"), Fnreverse (menu_strings)));
8594
8595 /* Make believe it's not a keyboard macro in case the help char
8596 is pressed. Help characters are not recorded because menu prompting
8597 is not used on replay. */
8598 orig_defn_macro = KVAR (current_kboard, defining_kbd_macro);
8599 kset_defining_kbd_macro (current_kboard, Qnil);
8600 do
8601 obj = read_char (commandflag, Qnil, Qt, 0, NULL);
8602 while (BUFFERP (obj));
8603 kset_defining_kbd_macro (current_kboard, orig_defn_macro);
8604
8605 if (!INTEGERP (obj) || XINT (obj) == -2
8606 || (! EQ (obj, menu_prompt_more_char)
8607 && (!INTEGERP (menu_prompt_more_char)
8608 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char)))))))
8609 {
8610 if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
8611 store_kbd_macro_char (obj);
8612 return obj;
8613 }
8614 /* Help char - go round again. */
8615 }
8616 }
8617 \f
8618 /* Reading key sequences. */
8619
8620 static Lisp_Object
8621 follow_key (Lisp_Object keymap, Lisp_Object key)
8622 {
8623 return access_keymap (get_keymap (keymap, 0, 1),
8624 key, 1, 0, 1);
8625 }
8626
8627 static Lisp_Object
8628 active_maps (Lisp_Object first_event)
8629 {
8630 Lisp_Object position
8631 = CONSP (first_event) ? CAR_SAFE (XCDR (first_event)) : Qnil;
8632 return Fcons (Qkeymap, Fcurrent_active_maps (Qt, position));
8633 }
8634
8635 /* Structure used to keep track of partial application of key remapping
8636 such as Vfunction_key_map and Vkey_translation_map. */
8637 typedef struct keyremap
8638 {
8639 /* This is the map originally specified for this use. */
8640 Lisp_Object parent;
8641 /* This is a submap reached by looking up, in PARENT,
8642 the events from START to END. */
8643 Lisp_Object map;
8644 /* Positions [START, END) in the key sequence buffer
8645 are the key that we have scanned so far.
8646 Those events are the ones that we will replace
8647 if PARENT maps them into a key sequence. */
8648 int start, end;
8649 } keyremap;
8650
8651 /* Lookup KEY in MAP.
8652 MAP is a keymap mapping keys to key vectors or functions.
8653 If the mapping is a function and DO_FUNCALL is true,
8654 the function is called with PROMPT as parameter and its return
8655 value is used as the return value of this function (after checking
8656 that it is indeed a vector). */
8657
8658 static Lisp_Object
8659 access_keymap_keyremap (Lisp_Object map, Lisp_Object key, Lisp_Object prompt,
8660 bool do_funcall)
8661 {
8662 Lisp_Object next;
8663
8664 next = access_keymap (map, key, 1, 0, 1);
8665
8666 /* Handle a symbol whose function definition is a keymap
8667 or an array. */
8668 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8669 && (ARRAYP (XSYMBOL (next)->function)
8670 || KEYMAPP (XSYMBOL (next)->function)))
8671 next = Fautoload_do_load (XSYMBOL (next)->function, next, Qnil);
8672
8673 /* If the keymap gives a function, not an
8674 array, then call the function with one arg and use
8675 its value instead. */
8676 if (do_funcall && FUNCTIONP (next))
8677 {
8678 Lisp_Object tem;
8679 tem = next;
8680
8681 next = call1 (next, prompt);
8682 /* If the function returned something invalid,
8683 barf--don't ignore it. */
8684 if (! (NILP (next) || VECTORP (next) || STRINGP (next)))
8685 error ("Function %s returns invalid key sequence",
8686 SSDATA (SYMBOL_NAME (tem)));
8687 }
8688 return next;
8689 }
8690
8691 /* Do one step of the key remapping used for function-key-map and
8692 key-translation-map:
8693 KEYBUF is the buffer holding the input events.
8694 BUFSIZE is its maximum size.
8695 FKEY is a pointer to the keyremap structure to use.
8696 INPUT is the index of the last element in KEYBUF.
8697 DOIT if true says that the remapping can actually take place.
8698 DIFF is used to return the number of keys added/removed by the remapping.
8699 PARENT is the root of the keymap.
8700 PROMPT is the prompt to use if the remapping happens through a function.
8701 Return true if the remapping actually took place. */
8702
8703 static bool
8704 keyremap_step (Lisp_Object *keybuf, int bufsize, volatile keyremap *fkey,
8705 int input, bool doit, int *diff, Lisp_Object prompt)
8706 {
8707 Lisp_Object next, key;
8708
8709 key = keybuf[fkey->end++];
8710
8711 if (KEYMAPP (fkey->parent))
8712 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8713 else
8714 next = Qnil;
8715
8716 /* If keybuf[fkey->start..fkey->end] is bound in the
8717 map and we're in a position to do the key remapping, replace it with
8718 the binding and restart with fkey->start at the end. */
8719 if ((VECTORP (next) || STRINGP (next)) && doit)
8720 {
8721 int len = XFASTINT (Flength (next));
8722 int i;
8723
8724 *diff = len - (fkey->end - fkey->start);
8725
8726 if (bufsize - input <= *diff)
8727 error ("Key sequence too long");
8728
8729 /* Shift the keys that follow fkey->end. */
8730 if (*diff < 0)
8731 for (i = fkey->end; i < input; i++)
8732 keybuf[i + *diff] = keybuf[i];
8733 else if (*diff > 0)
8734 for (i = input - 1; i >= fkey->end; i--)
8735 keybuf[i + *diff] = keybuf[i];
8736 /* Overwrite the old keys with the new ones. */
8737 for (i = 0; i < len; i++)
8738 keybuf[fkey->start + i]
8739 = Faref (next, make_number (i));
8740
8741 fkey->start = fkey->end += *diff;
8742 fkey->map = fkey->parent;
8743
8744 return 1;
8745 }
8746
8747 fkey->map = get_keymap (next, 0, 1);
8748
8749 /* If we no longer have a bound suffix, try a new position for
8750 fkey->start. */
8751 if (!CONSP (fkey->map))
8752 {
8753 fkey->end = ++fkey->start;
8754 fkey->map = fkey->parent;
8755 }
8756 return 0;
8757 }
8758
8759 static bool
8760 test_undefined (Lisp_Object binding)
8761 {
8762 return (NILP (binding)
8763 || EQ (binding, Qundefined)
8764 || (SYMBOLP (binding)
8765 && EQ (Fcommand_remapping (binding, Qnil, Qnil), Qundefined)));
8766 }
8767
8768 /* Read a sequence of keys that ends with a non prefix character,
8769 storing it in KEYBUF, a buffer of size BUFSIZE.
8770 Prompt with PROMPT.
8771 Return the length of the key sequence stored.
8772 Return -1 if the user rejected a command menu.
8773
8774 Echo starting immediately unless `prompt' is 0.
8775
8776 If PREVENT_REDISPLAY is non-zero, avoid redisplay by calling
8777 read_char with a suitable COMMANDFLAG argument.
8778
8779 Where a key sequence ends depends on the currently active keymaps.
8780 These include any minor mode keymaps active in the current buffer,
8781 the current buffer's local map, and the global map.
8782
8783 If a key sequence has no other bindings, we check Vfunction_key_map
8784 to see if some trailing subsequence might be the beginning of a
8785 function key's sequence. If so, we try to read the whole function
8786 key, and substitute its symbolic name into the key sequence.
8787
8788 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8789 `double-' events into similar click events, if that would make them
8790 bound. We try to turn `triple-' events first into `double-' events,
8791 then into clicks.
8792
8793 If we get a mouse click in a mode line, vertical divider, or other
8794 non-text area, we treat the click as if it were prefixed by the
8795 symbol denoting that area - `mode-line', `vertical-line', or
8796 whatever.
8797
8798 If the sequence starts with a mouse click, we read the key sequence
8799 with respect to the buffer clicked on, not the current buffer.
8800
8801 If the user switches frames in the midst of a key sequence, we put
8802 off the switch-frame event until later; the next call to
8803 read_char will return it.
8804
8805 If FIX_CURRENT_BUFFER, we restore current_buffer
8806 from the selected window's buffer. */
8807
8808 static int
8809 read_key_sequence (Lisp_Object *keybuf, int bufsize, Lisp_Object prompt,
8810 bool dont_downcase_last, bool can_return_switch_frame,
8811 bool fix_current_buffer, bool prevent_redisplay)
8812 {
8813 ptrdiff_t count = SPECPDL_INDEX ();
8814
8815 /* How many keys there are in the current key sequence. */
8816 int t;
8817
8818 /* The length of the echo buffer when we started reading, and
8819 the length of this_command_keys when we started reading. */
8820 ptrdiff_t echo_start IF_LINT (= 0);
8821 ptrdiff_t keys_start;
8822
8823 Lisp_Object current_binding = Qnil;
8824 Lisp_Object first_event = Qnil;
8825
8826 /* Index of the first key that has no binding.
8827 It is useless to try fkey.start larger than that. */
8828 int first_unbound;
8829
8830 /* If t < mock_input, then KEYBUF[t] should be read as the next
8831 input key.
8832
8833 We use this to recover after recognizing a function key. Once we
8834 realize that a suffix of the current key sequence is actually a
8835 function key's escape sequence, we replace the suffix with the
8836 function key's binding from Vfunction_key_map. Now keybuf
8837 contains a new and different key sequence, so the echo area,
8838 this_command_keys, and the submaps and defs arrays are wrong. In
8839 this situation, we set mock_input to t, set t to 0, and jump to
8840 restart_sequence; the loop will read keys from keybuf up until
8841 mock_input, thus rebuilding the state; and then it will resume
8842 reading characters from the keyboard. */
8843 int mock_input = 0;
8844
8845 /* If the sequence is unbound in submaps[], then
8846 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8847 and fkey.map is its binding.
8848
8849 These might be > t, indicating that all function key scanning
8850 should hold off until t reaches them. We do this when we've just
8851 recognized a function key, to avoid searching for the function
8852 key's again in Vfunction_key_map. */
8853 keyremap fkey;
8854
8855 /* Likewise, for key_translation_map and input-decode-map. */
8856 keyremap keytran, indec;
8857
8858 /* True if we are trying to map a key by changing an upper-case
8859 letter to lower case, or a shifted function key to an unshifted
8860 one. */
8861 bool shift_translated = false;
8862
8863 /* If we receive a `switch-frame' or `select-window' event in the middle of
8864 a key sequence, we put it off for later.
8865 While we're reading, we keep the event here. */
8866 Lisp_Object delayed_switch_frame;
8867
8868 Lisp_Object original_uppercase IF_LINT (= Qnil);
8869 int original_uppercase_position = -1;
8870
8871 /* Gets around Microsoft compiler limitations. */
8872 bool dummyflag = false;
8873
8874 struct buffer *starting_buffer;
8875
8876 /* List of events for which a fake prefix key has been generated. */
8877 Lisp_Object fake_prefixed_keys = Qnil;
8878
8879 raw_keybuf_count = 0;
8880
8881 last_nonmenu_event = Qnil;
8882
8883 delayed_switch_frame = Qnil;
8884
8885 if (INTERACTIVE)
8886 {
8887 if (!NILP (prompt))
8888 {
8889 /* Install the string PROMPT as the beginning of the string
8890 of echoing, so that it serves as a prompt for the next
8891 character. */
8892 kset_echo_prompt (current_kboard, prompt);
8893 current_kboard->immediate_echo = false;
8894 echo_now ();
8895 }
8896 else if (cursor_in_echo_area
8897 && echo_keystrokes_p ())
8898 /* This doesn't put in a dash if the echo buffer is empty, so
8899 you don't always see a dash hanging out in the minibuffer. */
8900 echo_dash ();
8901 }
8902
8903 /* Record the initial state of the echo area and this_command_keys;
8904 we will need to restore them if we replay a key sequence. */
8905 if (INTERACTIVE)
8906 echo_start = echo_length ();
8907 keys_start = this_command_key_count;
8908 this_single_command_key_start = keys_start;
8909
8910 /* We jump here when we need to reinitialize fkey and keytran; this
8911 happens if we switch keyboards between rescans. */
8912 replay_entire_sequence:
8913
8914 indec.map = indec.parent = KVAR (current_kboard, Vinput_decode_map);
8915 fkey.map = fkey.parent = KVAR (current_kboard, Vlocal_function_key_map);
8916 keytran.map = keytran.parent = Vkey_translation_map;
8917 indec.start = indec.end = 0;
8918 fkey.start = fkey.end = 0;
8919 keytran.start = keytran.end = 0;
8920
8921 /* We jump here when the key sequence has been thoroughly changed, and
8922 we need to rescan it starting from the beginning. When we jump here,
8923 keybuf[0..mock_input] holds the sequence we should reread. */
8924 replay_sequence:
8925
8926 starting_buffer = current_buffer;
8927 first_unbound = bufsize + 1;
8928
8929 /* Build our list of keymaps.
8930 If we recognize a function key and replace its escape sequence in
8931 keybuf with its symbol, or if the sequence starts with a mouse
8932 click and we need to switch buffers, we jump back here to rebuild
8933 the initial keymaps from the current buffer. */
8934 current_binding = active_maps (first_event);
8935
8936 /* Start from the beginning in keybuf. */
8937 t = 0;
8938
8939 /* These are no-ops the first time through, but if we restart, they
8940 revert the echo area and this_command_keys to their original state. */
8941 this_command_key_count = keys_start;
8942 if (INTERACTIVE && t < mock_input)
8943 echo_truncate (echo_start);
8944
8945 /* If the best binding for the current key sequence is a keymap, or
8946 we may be looking at a function key's escape sequence, keep on
8947 reading. */
8948 while (!NILP (current_binding)
8949 /* Keep reading as long as there's a prefix binding. */
8950 ? KEYMAPP (current_binding)
8951 /* Don't return in the middle of a possible function key sequence,
8952 if the only bindings we found were via case conversion.
8953 Thus, if ESC O a has a function-key-map translation
8954 and ESC o has a binding, don't return after ESC O,
8955 so that we can translate ESC O plus the next character. */
8956 : (/* indec.start < t || fkey.start < t || */ keytran.start < t))
8957 {
8958 Lisp_Object key;
8959 bool used_mouse_menu = false;
8960
8961 /* Where the last real key started. If we need to throw away a
8962 key that has expanded into more than one element of keybuf
8963 (say, a mouse click on the mode line which is being treated
8964 as [mode-line (mouse-...)], then we backtrack to this point
8965 of keybuf. */
8966 int last_real_key_start;
8967
8968 /* These variables are analogous to echo_start and keys_start;
8969 while those allow us to restart the entire key sequence,
8970 echo_local_start and keys_local_start allow us to throw away
8971 just one key. */
8972 ptrdiff_t echo_local_start IF_LINT (= 0);
8973 int keys_local_start;
8974 Lisp_Object new_binding;
8975
8976 eassert (indec.end == t || (indec.end > t && indec.end <= mock_input));
8977 eassert (indec.start <= indec.end);
8978 eassert (fkey.start <= fkey.end);
8979 eassert (keytran.start <= keytran.end);
8980 /* key-translation-map is applied *after* function-key-map
8981 which is itself applied *after* input-decode-map. */
8982 eassert (fkey.end <= indec.start);
8983 eassert (keytran.end <= fkey.start);
8984
8985 if (/* first_unbound < indec.start && first_unbound < fkey.start && */
8986 first_unbound < keytran.start)
8987 { /* The prefix upto first_unbound has no binding and has
8988 no translation left to do either, so we know it's unbound.
8989 If we don't stop now, we risk staying here indefinitely
8990 (if the user keeps entering fkey or keytran prefixes
8991 like C-c ESC ESC ESC ESC ...) */
8992 int i;
8993 for (i = first_unbound + 1; i < t; i++)
8994 keybuf[i - first_unbound - 1] = keybuf[i];
8995 mock_input = t - first_unbound - 1;
8996 indec.end = indec.start -= first_unbound + 1;
8997 indec.map = indec.parent;
8998 fkey.end = fkey.start -= first_unbound + 1;
8999 fkey.map = fkey.parent;
9000 keytran.end = keytran.start -= first_unbound + 1;
9001 keytran.map = keytran.parent;
9002 goto replay_sequence;
9003 }
9004
9005 if (t >= bufsize)
9006 error ("Key sequence too long");
9007
9008 if (INTERACTIVE)
9009 echo_local_start = echo_length ();
9010 keys_local_start = this_command_key_count;
9011
9012 replay_key:
9013 /* These are no-ops, unless we throw away a keystroke below and
9014 jumped back up to replay_key; in that case, these restore the
9015 variables to their original state, allowing us to replay the
9016 loop. */
9017 if (INTERACTIVE && t < mock_input)
9018 echo_truncate (echo_local_start);
9019 this_command_key_count = keys_local_start;
9020
9021 /* By default, assume each event is "real". */
9022 last_real_key_start = t;
9023
9024 /* Does mock_input indicate that we are re-reading a key sequence? */
9025 if (t < mock_input)
9026 {
9027 key = keybuf[t];
9028 add_command_key (key);
9029 if (current_kboard->immediate_echo)
9030 {
9031 /* Set immediate_echo to false so as to force echo_now to
9032 redisplay (it will set immediate_echo right back to true). */
9033 current_kboard->immediate_echo = false;
9034 echo_now ();
9035 }
9036 }
9037
9038 /* If not, we should actually read a character. */
9039 else
9040 {
9041 {
9042 KBOARD *interrupted_kboard = current_kboard;
9043 struct frame *interrupted_frame = SELECTED_FRAME ();
9044 /* Calling read_char with COMMANDFLAG = -2 avoids
9045 redisplay in read_char and its subroutines. */
9046 key = read_char (prevent_redisplay ? -2 : NILP (prompt),
9047 current_binding, last_nonmenu_event,
9048 &used_mouse_menu, NULL);
9049 if ((INTEGERP (key) && XINT (key) == -2) /* wrong_kboard_jmpbuf */
9050 /* When switching to a new tty (with a new keyboard),
9051 read_char returns the new buffer, rather than -2
9052 (Bug#5095). This is because `terminal-init-xterm'
9053 calls read-char, which eats the wrong_kboard_jmpbuf
9054 return. Any better way to fix this? -- cyd */
9055 || (interrupted_kboard != current_kboard))
9056 {
9057 bool found = false;
9058 struct kboard *k;
9059
9060 for (k = all_kboards; k; k = k->next_kboard)
9061 if (k == interrupted_kboard)
9062 found = true;
9063
9064 if (!found)
9065 {
9066 /* Don't touch interrupted_kboard when it's been
9067 deleted. */
9068 delayed_switch_frame = Qnil;
9069 goto replay_entire_sequence;
9070 }
9071
9072 if (!NILP (delayed_switch_frame))
9073 {
9074 kset_kbd_queue
9075 (interrupted_kboard,
9076 Fcons (delayed_switch_frame,
9077 KVAR (interrupted_kboard, kbd_queue)));
9078 delayed_switch_frame = Qnil;
9079 }
9080
9081 while (t > 0)
9082 kset_kbd_queue
9083 (interrupted_kboard,
9084 Fcons (keybuf[--t], KVAR (interrupted_kboard, kbd_queue)));
9085
9086 /* If the side queue is non-empty, ensure it begins with a
9087 switch-frame, so we'll replay it in the right context. */
9088 if (CONSP (KVAR (interrupted_kboard, kbd_queue))
9089 && (key = XCAR (KVAR (interrupted_kboard, kbd_queue)),
9090 !(EVENT_HAS_PARAMETERS (key)
9091 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
9092 Qswitch_frame))))
9093 {
9094 Lisp_Object frame;
9095 XSETFRAME (frame, interrupted_frame);
9096 kset_kbd_queue
9097 (interrupted_kboard,
9098 Fcons (make_lispy_switch_frame (frame),
9099 KVAR (interrupted_kboard, kbd_queue)));
9100 }
9101 mock_input = 0;
9102 goto replay_entire_sequence;
9103 }
9104 }
9105
9106 /* read_char returns t when it shows a menu and the user rejects it.
9107 Just return -1. */
9108 if (EQ (key, Qt))
9109 {
9110 unbind_to (count, Qnil);
9111 return -1;
9112 }
9113
9114 /* read_char returns -1 at the end of a macro.
9115 Emacs 18 handles this by returning immediately with a
9116 zero, so that's what we'll do. */
9117 if (INTEGERP (key) && XINT (key) == -1)
9118 {
9119 t = 0;
9120 /* The Microsoft C compiler can't handle the goto that
9121 would go here. */
9122 dummyflag = true;
9123 break;
9124 }
9125
9126 /* If the current buffer has been changed from under us, the
9127 keymap may have changed, so replay the sequence. */
9128 if (BUFFERP (key))
9129 {
9130 timer_resume_idle ();
9131
9132 mock_input = t;
9133 /* Reset the current buffer from the selected window
9134 in case something changed the former and not the latter.
9135 This is to be more consistent with the behavior
9136 of the command_loop_1. */
9137 if (fix_current_buffer)
9138 {
9139 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9140 Fkill_emacs (Qnil);
9141 if (XBUFFER (XWINDOW (selected_window)->contents)
9142 != current_buffer)
9143 Fset_buffer (XWINDOW (selected_window)->contents);
9144 }
9145
9146 goto replay_sequence;
9147 }
9148
9149 /* If we have a quit that was typed in another frame, and
9150 quit_throw_to_read_char switched buffers,
9151 replay to get the right keymap. */
9152 if (INTEGERP (key)
9153 && XINT (key) == quit_char
9154 && current_buffer != starting_buffer)
9155 {
9156 GROW_RAW_KEYBUF;
9157 ASET (raw_keybuf, raw_keybuf_count, key);
9158 raw_keybuf_count++;
9159 keybuf[t++] = key;
9160 mock_input = t;
9161 Vquit_flag = Qnil;
9162 goto replay_sequence;
9163 }
9164
9165 Vquit_flag = Qnil;
9166
9167 if (EVENT_HAS_PARAMETERS (key)
9168 /* Either a `switch-frame' or a `select-window' event. */
9169 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
9170 {
9171 /* If we're at the beginning of a key sequence, and the caller
9172 says it's okay, go ahead and return this event. If we're
9173 in the midst of a key sequence, delay it until the end. */
9174 if (t > 0 || !can_return_switch_frame)
9175 {
9176 delayed_switch_frame = key;
9177 goto replay_key;
9178 }
9179 }
9180
9181 if (NILP (first_event))
9182 {
9183 first_event = key;
9184 /* Even if first_event does not specify a particular
9185 window/position, it's important to recompute the maps here
9186 since a long time might have passed since we entered
9187 read_key_sequence, and a timer (or process-filter or
9188 special-event-map, ...) might have switched the current buffer
9189 or the selected window from under us in the mean time. */
9190 if (fix_current_buffer
9191 && (XBUFFER (XWINDOW (selected_window)->contents)
9192 != current_buffer))
9193 Fset_buffer (XWINDOW (selected_window)->contents);
9194 current_binding = active_maps (first_event);
9195 }
9196
9197 GROW_RAW_KEYBUF;
9198 ASET (raw_keybuf, raw_keybuf_count, key);
9199 raw_keybuf_count++;
9200 }
9201
9202 /* Clicks in non-text areas get prefixed by the symbol
9203 in their CHAR-ADDRESS field. For example, a click on
9204 the mode line is prefixed by the symbol `mode-line'.
9205
9206 Furthermore, key sequences beginning with mouse clicks
9207 are read using the keymaps of the buffer clicked on, not
9208 the current buffer. So we may have to switch the buffer
9209 here.
9210
9211 When we turn one event into two events, we must make sure
9212 that neither of the two looks like the original--so that,
9213 if we replay the events, they won't be expanded again.
9214 If not for this, such reexpansion could happen either here
9215 or when user programs play with this-command-keys. */
9216 if (EVENT_HAS_PARAMETERS (key))
9217 {
9218 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
9219 if (EQ (kind, Qmouse_click))
9220 {
9221 Lisp_Object window = POSN_WINDOW (EVENT_START (key));
9222 Lisp_Object posn = POSN_POSN (EVENT_START (key));
9223
9224 if (CONSP (posn)
9225 || (!NILP (fake_prefixed_keys)
9226 && !NILP (Fmemq (key, fake_prefixed_keys))))
9227 {
9228 /* We're looking a second time at an event for which
9229 we generated a fake prefix key. Set
9230 last_real_key_start appropriately. */
9231 if (t > 0)
9232 last_real_key_start = t - 1;
9233 }
9234
9235 if (last_real_key_start == 0)
9236 {
9237 /* Key sequences beginning with mouse clicks are
9238 read using the keymaps in the buffer clicked on,
9239 not the current buffer. If we're at the
9240 beginning of a key sequence, switch buffers. */
9241 if (WINDOWP (window)
9242 && BUFFERP (XWINDOW (window)->contents)
9243 && XBUFFER (XWINDOW (window)->contents) != current_buffer)
9244 {
9245 ASET (raw_keybuf, raw_keybuf_count, key);
9246 raw_keybuf_count++;
9247 keybuf[t] = key;
9248 mock_input = t + 1;
9249
9250 /* Arrange to go back to the original buffer once we're
9251 done reading the key sequence. Note that we can't
9252 use save_excursion_{save,restore} here, because they
9253 save point as well as the current buffer; we don't
9254 want to save point, because redisplay may change it,
9255 to accommodate a Fset_window_start or something. We
9256 don't want to do this at the top of the function,
9257 because we may get input from a subprocess which
9258 wants to change the selected window and stuff (say,
9259 emacsclient). */
9260 record_unwind_current_buffer ();
9261
9262 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9263 Fkill_emacs (Qnil);
9264 set_buffer_internal (XBUFFER (XWINDOW (window)->contents));
9265 goto replay_sequence;
9266 }
9267 }
9268
9269 /* Expand mode-line and scroll-bar events into two events:
9270 use posn as a fake prefix key. */
9271 if (SYMBOLP (posn)
9272 && (NILP (fake_prefixed_keys)
9273 || NILP (Fmemq (key, fake_prefixed_keys))))
9274 {
9275 if (bufsize - t <= 1)
9276 error ("Key sequence too long");
9277
9278 keybuf[t] = posn;
9279 keybuf[t + 1] = key;
9280 mock_input = t + 2;
9281
9282 /* Record that a fake prefix key has been generated
9283 for KEY. Don't modify the event; this would
9284 prevent proper action when the event is pushed
9285 back into unread-command-events. */
9286 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9287 goto replay_key;
9288 }
9289 }
9290 else if (CONSP (XCDR (key))
9291 && CONSP (EVENT_START (key))
9292 && CONSP (XCDR (EVENT_START (key))))
9293 {
9294 Lisp_Object posn;
9295
9296 posn = POSN_POSN (EVENT_START (key));
9297 /* Handle menu-bar events:
9298 insert the dummy prefix event `menu-bar'. */
9299 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9300 {
9301 if (bufsize - t <= 1)
9302 error ("Key sequence too long");
9303 keybuf[t] = posn;
9304 keybuf[t + 1] = key;
9305
9306 /* Zap the position in key, so we know that we've
9307 expanded it, and don't try to do so again. */
9308 POSN_SET_POSN (EVENT_START (key), list1 (posn));
9309
9310 mock_input = t + 2;
9311 goto replay_sequence;
9312 }
9313 else if (CONSP (posn))
9314 {
9315 /* We're looking at the second event of a
9316 sequence which we expanded before. Set
9317 last_real_key_start appropriately. */
9318 if (last_real_key_start == t && t > 0)
9319 last_real_key_start = t - 1;
9320 }
9321 }
9322 }
9323
9324 /* We have finally decided that KEY is something we might want
9325 to look up. */
9326 new_binding = follow_key (current_binding, key);
9327
9328 /* If KEY wasn't bound, we'll try some fallbacks. */
9329 if (!NILP (new_binding))
9330 /* This is needed for the following scenario:
9331 event 0: a down-event that gets dropped by calling replay_key.
9332 event 1: some normal prefix like C-h.
9333 After event 0, first_unbound is 0, after event 1 indec.start,
9334 fkey.start, and keytran.start are all 1, so when we see that
9335 C-h is bound, we need to update first_unbound. */
9336 first_unbound = max (t + 1, first_unbound);
9337 else
9338 {
9339 Lisp_Object head;
9340
9341 /* Remember the position to put an upper bound on indec.start. */
9342 first_unbound = min (t, first_unbound);
9343
9344 head = EVENT_HEAD (key);
9345
9346 if (SYMBOLP (head))
9347 {
9348 Lisp_Object breakdown;
9349 int modifiers;
9350
9351 breakdown = parse_modifiers (head);
9352 modifiers = XINT (XCAR (XCDR (breakdown)));
9353 /* Attempt to reduce an unbound mouse event to a simpler
9354 event that is bound:
9355 Drags reduce to clicks.
9356 Double-clicks reduce to clicks.
9357 Triple-clicks reduce to double-clicks, then to clicks.
9358 Up/Down-clicks are eliminated.
9359 Double-downs reduce to downs, then are eliminated.
9360 Triple-downs reduce to double-downs, then to downs,
9361 then are eliminated. */
9362 if (modifiers & (up_modifier | down_modifier
9363 | drag_modifier
9364 | double_modifier | triple_modifier))
9365 {
9366 while (modifiers & (up_modifier | down_modifier
9367 | drag_modifier
9368 | double_modifier | triple_modifier))
9369 {
9370 Lisp_Object new_head, new_click;
9371 if (modifiers & triple_modifier)
9372 modifiers ^= (double_modifier | triple_modifier);
9373 else if (modifiers & double_modifier)
9374 modifiers &= ~double_modifier;
9375 else if (modifiers & drag_modifier)
9376 modifiers &= ~drag_modifier;
9377 else
9378 {
9379 /* Dispose of this `up/down' event by simply jumping
9380 back to replay_key, to get another event.
9381
9382 Note that if this event came from mock input,
9383 then just jumping back to replay_key will just
9384 hand it to us again. So we have to wipe out any
9385 mock input.
9386
9387 We could delete keybuf[t] and shift everything
9388 after that to the left by one spot, but we'd also
9389 have to fix up any variable that points into
9390 keybuf, and shifting isn't really necessary
9391 anyway.
9392
9393 Adding prefixes for non-textual mouse clicks
9394 creates two characters of mock input, and both
9395 must be thrown away. If we're only looking at
9396 the prefix now, we can just jump back to
9397 replay_key. On the other hand, if we've already
9398 processed the prefix, and now the actual click
9399 itself is giving us trouble, then we've lost the
9400 state of the keymaps we want to backtrack to, and
9401 we need to replay the whole sequence to rebuild
9402 it.
9403
9404 Beyond that, only function key expansion could
9405 create more than two keys, but that should never
9406 generate mouse events, so it's okay to zero
9407 mock_input in that case too.
9408
9409 FIXME: The above paragraph seems just plain
9410 wrong, if you consider things like
9411 xterm-mouse-mode. -stef
9412
9413 Isn't this just the most wonderful code ever? */
9414
9415 /* If mock_input > t + 1, the above simplification
9416 will actually end up dropping keys on the floor.
9417 This is probably OK for now, but even
9418 if mock_input <= t + 1, we need to adjust indec,
9419 fkey, and keytran.
9420 Typical case [header-line down-mouse-N]:
9421 mock_input = 2, t = 1, fkey.end = 1,
9422 last_real_key_start = 0. */
9423 if (indec.end > last_real_key_start)
9424 {
9425 indec.end = indec.start
9426 = min (last_real_key_start, indec.start);
9427 indec.map = indec.parent;
9428 if (fkey.end > last_real_key_start)
9429 {
9430 fkey.end = fkey.start
9431 = min (last_real_key_start, fkey.start);
9432 fkey.map = fkey.parent;
9433 if (keytran.end > last_real_key_start)
9434 {
9435 keytran.end = keytran.start
9436 = min (last_real_key_start, keytran.start);
9437 keytran.map = keytran.parent;
9438 }
9439 }
9440 }
9441 if (t == last_real_key_start)
9442 {
9443 mock_input = 0;
9444 goto replay_key;
9445 }
9446 else
9447 {
9448 mock_input = last_real_key_start;
9449 goto replay_sequence;
9450 }
9451 }
9452
9453 new_head
9454 = apply_modifiers (modifiers, XCAR (breakdown));
9455 new_click = list2 (new_head, EVENT_START (key));
9456
9457 /* Look for a binding for this new key. */
9458 new_binding = follow_key (current_binding, new_click);
9459
9460 /* If that click is bound, go for it. */
9461 if (!NILP (new_binding))
9462 {
9463 current_binding = new_binding;
9464 key = new_click;
9465 break;
9466 }
9467 /* Otherwise, we'll leave key set to the drag event. */
9468 }
9469 }
9470 }
9471 }
9472 current_binding = new_binding;
9473
9474 keybuf[t++] = key;
9475 /* Normally, last_nonmenu_event gets the previous key we read.
9476 But when a mouse popup menu is being used,
9477 we don't update last_nonmenu_event; it continues to hold the mouse
9478 event that preceded the first level of menu. */
9479 if (!used_mouse_menu)
9480 last_nonmenu_event = key;
9481
9482 /* Record what part of this_command_keys is the current key sequence. */
9483 this_single_command_key_start = this_command_key_count - t;
9484 /* When 'input-method-function' called above causes events to be
9485 put on 'unread-post-input-method-events', and as result
9486 'reread' is set to 'true', the value of 't' can become larger
9487 than 'this_command_key_count', because 'add_command_key' is
9488 not called to update 'this_command_key_count'. If this
9489 happens, 'this_single_command_key_start' will become negative
9490 above, and any call to 'this-single-command-keys' will return
9491 a garbled vector. See bug #20223 for one such situation.
9492 Here we force 'this_single_command_key_start' to never become
9493 negative, to avoid that. */
9494 if (this_single_command_key_start < 0)
9495 this_single_command_key_start = 0;
9496
9497 /* Look for this sequence in input-decode-map.
9498 Scan from indec.end until we find a bound suffix. */
9499 while (indec.end < t)
9500 {
9501 bool done;
9502 int diff;
9503
9504 done = keyremap_step (keybuf, bufsize, &indec, max (t, mock_input),
9505 1, &diff, prompt);
9506 if (done)
9507 {
9508 mock_input = diff + max (t, mock_input);
9509 goto replay_sequence;
9510 }
9511 }
9512
9513 if (!KEYMAPP (current_binding)
9514 && !test_undefined (current_binding)
9515 && indec.start >= t)
9516 /* There is a binding and it's not a prefix.
9517 (and it doesn't have any input-decode-map translation pending).
9518 There is thus no function-key in this sequence.
9519 Moving fkey.start is important in this case to allow keytran.start
9520 to go over the sequence before we return (since we keep the
9521 invariant that keytran.end <= fkey.start). */
9522 {
9523 if (fkey.start < t)
9524 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9525 }
9526 else
9527 /* If the sequence is unbound, see if we can hang a function key
9528 off the end of it. */
9529 /* Continue scan from fkey.end until we find a bound suffix. */
9530 while (fkey.end < indec.start)
9531 {
9532 bool done;
9533 int diff;
9534
9535 done = keyremap_step (keybuf, bufsize, &fkey,
9536 max (t, mock_input),
9537 /* If there's a binding (i.e.
9538 first_binding >= nmaps) we don't want
9539 to apply this function-key-mapping. */
9540 fkey.end + 1 == t
9541 && (test_undefined (current_binding)),
9542 &diff, prompt);
9543 if (done)
9544 {
9545 mock_input = diff + max (t, mock_input);
9546 /* Adjust the input-decode-map counters. */
9547 indec.end += diff;
9548 indec.start += diff;
9549
9550 goto replay_sequence;
9551 }
9552 }
9553
9554 /* Look for this sequence in key-translation-map.
9555 Scan from keytran.end until we find a bound suffix. */
9556 while (keytran.end < fkey.start)
9557 {
9558 bool done;
9559 int diff;
9560
9561 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9562 1, &diff, prompt);
9563 if (done)
9564 {
9565 mock_input = diff + max (t, mock_input);
9566 /* Adjust the function-key-map and input-decode-map counters. */
9567 indec.end += diff;
9568 indec.start += diff;
9569 fkey.end += diff;
9570 fkey.start += diff;
9571
9572 goto replay_sequence;
9573 }
9574 }
9575
9576 /* If KEY is not defined in any of the keymaps,
9577 and cannot be part of a function key or translation,
9578 and is an upper case letter
9579 use the corresponding lower-case letter instead. */
9580 if (NILP (current_binding)
9581 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t
9582 && INTEGERP (key)
9583 && ((CHARACTERP (make_number (XINT (key) & ~CHAR_MODIFIER_MASK))
9584 && uppercasep (XINT (key) & ~CHAR_MODIFIER_MASK))
9585 || (XINT (key) & shift_modifier)))
9586 {
9587 Lisp_Object new_key;
9588
9589 original_uppercase = key;
9590 original_uppercase_position = t - 1;
9591
9592 if (XINT (key) & shift_modifier)
9593 XSETINT (new_key, XINT (key) & ~shift_modifier);
9594 else
9595 XSETINT (new_key, (downcase (XINT (key) & ~CHAR_MODIFIER_MASK)
9596 | (XINT (key) & CHAR_MODIFIER_MASK)));
9597
9598 /* We have to do this unconditionally, regardless of whether
9599 the lower-case char is defined in the keymaps, because they
9600 might get translated through function-key-map. */
9601 keybuf[t - 1] = new_key;
9602 mock_input = max (t, mock_input);
9603 shift_translated = true;
9604
9605 goto replay_sequence;
9606 }
9607
9608 if (NILP (current_binding)
9609 && help_char_p (EVENT_HEAD (key)) && t > 1)
9610 {
9611 read_key_sequence_cmd = Vprefix_help_command;
9612 /* The Microsoft C compiler can't handle the goto that
9613 would go here. */
9614 dummyflag = true;
9615 break;
9616 }
9617
9618 /* If KEY is not defined in any of the keymaps,
9619 and cannot be part of a function key or translation,
9620 and is a shifted function key,
9621 use the corresponding unshifted function key instead. */
9622 if (NILP (current_binding)
9623 && /* indec.start >= t && fkey.start >= t && */ keytran.start >= t)
9624 {
9625 Lisp_Object breakdown = parse_modifiers (key);
9626 int modifiers
9627 = CONSP (breakdown) ? (XINT (XCAR (XCDR (breakdown)))) : 0;
9628
9629 if (modifiers & shift_modifier
9630 /* Treat uppercase keys as shifted. */
9631 || (INTEGERP (key)
9632 && (KEY_TO_CHAR (key)
9633 < XCHAR_TABLE (BVAR (current_buffer, downcase_table))->header.size)
9634 && uppercasep (KEY_TO_CHAR (key))))
9635 {
9636 Lisp_Object new_key
9637 = (modifiers & shift_modifier
9638 ? apply_modifiers (modifiers & ~shift_modifier,
9639 XCAR (breakdown))
9640 : make_number (downcase (KEY_TO_CHAR (key)) | modifiers));
9641
9642 original_uppercase = key;
9643 original_uppercase_position = t - 1;
9644
9645 /* We have to do this unconditionally, regardless of whether
9646 the lower-case char is defined in the keymaps, because they
9647 might get translated through function-key-map. */
9648 keybuf[t - 1] = new_key;
9649 mock_input = max (t, mock_input);
9650 /* Reset fkey (and consequently keytran) to apply
9651 function-key-map on the result, so that S-backspace is
9652 correctly mapped to DEL (via backspace). OTOH,
9653 input-decode-map doesn't need to go through it again. */
9654 fkey.start = fkey.end = 0;
9655 keytran.start = keytran.end = 0;
9656 shift_translated = true;
9657
9658 goto replay_sequence;
9659 }
9660 }
9661 }
9662 if (!dummyflag)
9663 read_key_sequence_cmd = current_binding;
9664 read_key_sequence_remapped
9665 /* Remap command through active keymaps.
9666 Do the remapping here, before the unbind_to so it uses the keymaps
9667 of the appropriate buffer. */
9668 = SYMBOLP (read_key_sequence_cmd)
9669 ? Fcommand_remapping (read_key_sequence_cmd, Qnil, Qnil)
9670 : Qnil;
9671
9672 unread_switch_frame = delayed_switch_frame;
9673 unbind_to (count, Qnil);
9674
9675 /* Don't downcase the last character if the caller says don't.
9676 Don't downcase it if the result is undefined, either. */
9677 if ((dont_downcase_last || NILP (current_binding))
9678 && t > 0
9679 && t - 1 == original_uppercase_position)
9680 {
9681 keybuf[t - 1] = original_uppercase;
9682 shift_translated = false;
9683 }
9684
9685 if (shift_translated)
9686 Vthis_command_keys_shift_translated = Qt;
9687
9688 /* Occasionally we fabricate events, perhaps by expanding something
9689 according to function-key-map, or by adding a prefix symbol to a
9690 mouse click in the scroll bar or modeline. In this cases, return
9691 the entire generated key sequence, even if we hit an unbound
9692 prefix or a definition before the end. This means that you will
9693 be able to push back the event properly, and also means that
9694 read-key-sequence will always return a logical unit.
9695
9696 Better ideas? */
9697 for (; t < mock_input; t++)
9698 add_command_key (keybuf[t]);
9699 echo_update ();
9700
9701 return t;
9702 }
9703
9704 static Lisp_Object
9705 read_key_sequence_vs (Lisp_Object prompt, Lisp_Object continue_echo,
9706 Lisp_Object dont_downcase_last,
9707 Lisp_Object can_return_switch_frame,
9708 Lisp_Object cmd_loop, bool allow_string)
9709 {
9710 Lisp_Object keybuf[30];
9711 int i;
9712 ptrdiff_t count = SPECPDL_INDEX ();
9713
9714 if (!NILP (prompt))
9715 CHECK_STRING (prompt);
9716 QUIT;
9717
9718 specbind (Qinput_method_exit_on_first_char,
9719 (NILP (cmd_loop) ? Qt : Qnil));
9720 specbind (Qinput_method_use_echo_area,
9721 (NILP (cmd_loop) ? Qt : Qnil));
9722
9723 if (NILP (continue_echo))
9724 {
9725 this_command_key_count = 0;
9726 this_single_command_key_start = 0;
9727 }
9728
9729 #ifdef HAVE_WINDOW_SYSTEM
9730 if (display_hourglass_p)
9731 cancel_hourglass ();
9732 #endif
9733
9734 i = read_key_sequence (keybuf, ARRAYELTS (keybuf),
9735 prompt, ! NILP (dont_downcase_last),
9736 ! NILP (can_return_switch_frame), 0, 0);
9737
9738 #if 0 /* The following is fine for code reading a key sequence and
9739 then proceeding with a lengthy computation, but it's not good
9740 for code reading keys in a loop, like an input method. */
9741 #ifdef HAVE_WINDOW_SYSTEM
9742 if (display_hourglass_p)
9743 start_hourglass ();
9744 #endif
9745 #endif
9746
9747 if (i == -1)
9748 {
9749 Vquit_flag = Qt;
9750 QUIT;
9751 }
9752
9753 return unbind_to (count,
9754 ((allow_string ? make_event_array : Fvector)
9755 (i, keybuf)));
9756 }
9757
9758 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9759 doc: /* Read a sequence of keystrokes and return as a string or vector.
9760 The sequence is sufficient to specify a non-prefix command in the
9761 current local and global maps.
9762
9763 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9764 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9765 as a continuation of the previous key.
9766
9767 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9768 convert the last event to lower case. (Normally any upper case event
9769 is converted to lower case if the original event is undefined and the lower
9770 case equivalent is defined.) A non-nil value is appropriate for reading
9771 a key sequence to be defined.
9772
9773 A C-g typed while in this function is treated like any other character,
9774 and `quit-flag' is not set.
9775
9776 If the key sequence starts with a mouse click, then the sequence is read
9777 using the keymaps of the buffer of the window clicked in, not the buffer
9778 of the selected window as normal.
9779
9780 `read-key-sequence' drops unbound button-down events, since you normally
9781 only care about the click or drag events which follow them. If a drag
9782 or multi-click event is unbound, but the corresponding click event would
9783 be bound, `read-key-sequence' turns the event into a click event at the
9784 drag's starting position. This means that you don't have to distinguish
9785 between click and drag, double, or triple events unless you want to.
9786
9787 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9788 lines separating windows, and scroll bars with imaginary keys
9789 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9790
9791 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9792 function will process a switch-frame event if the user switches frames
9793 before typing anything. If the user switches frames in the middle of a
9794 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9795 is nil, then the event will be put off until after the current key sequence.
9796
9797 `read-key-sequence' checks `function-key-map' for function key
9798 sequences, where they wouldn't conflict with ordinary bindings. See
9799 `function-key-map' for more details.
9800
9801 The optional fifth argument CMD-LOOP, if non-nil, means
9802 that this key sequence is being read by something that will
9803 read commands one after another. It should be nil if the caller
9804 will read just one key sequence. */)
9805 (Lisp_Object prompt, Lisp_Object continue_echo, Lisp_Object dont_downcase_last, Lisp_Object can_return_switch_frame, Lisp_Object cmd_loop)
9806 {
9807 return read_key_sequence_vs (prompt, continue_echo, dont_downcase_last,
9808 can_return_switch_frame, cmd_loop, true);
9809 }
9810
9811 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9812 Sread_key_sequence_vector, 1, 5, 0,
9813 doc: /* Like `read-key-sequence' but always return a vector. */)
9814 (Lisp_Object prompt, Lisp_Object continue_echo, Lisp_Object dont_downcase_last, Lisp_Object can_return_switch_frame, Lisp_Object cmd_loop)
9815 {
9816 return read_key_sequence_vs (prompt, continue_echo, dont_downcase_last,
9817 can_return_switch_frame, cmd_loop, false);
9818 }
9819 \f
9820 /* Return true if input events are pending. */
9821
9822 bool
9823 detect_input_pending (void)
9824 {
9825 return input_pending || get_input_pending (0);
9826 }
9827
9828 /* Return true if input events other than mouse movements are
9829 pending. */
9830
9831 bool
9832 detect_input_pending_ignore_squeezables (void)
9833 {
9834 return input_pending || get_input_pending (READABLE_EVENTS_IGNORE_SQUEEZABLES);
9835 }
9836
9837 /* Return true if input events are pending, and run any pending timers. */
9838
9839 bool
9840 detect_input_pending_run_timers (bool do_display)
9841 {
9842 unsigned old_timers_run = timers_run;
9843
9844 if (!input_pending)
9845 get_input_pending (READABLE_EVENTS_DO_TIMERS_NOW);
9846
9847 if (old_timers_run != timers_run && do_display)
9848 redisplay_preserve_echo_area (8);
9849
9850 return input_pending;
9851 }
9852
9853 /* This is called in some cases before a possible quit.
9854 It cases the next call to detect_input_pending to recompute input_pending.
9855 So calling this function unnecessarily can't do any harm. */
9856
9857 void
9858 clear_input_pending (void)
9859 {
9860 input_pending = false;
9861 }
9862
9863 /* Return true if there are pending requeued events.
9864 This isn't used yet. The hope is to make wait_reading_process_output
9865 call it, and return if it runs Lisp code that unreads something.
9866 The problem is, kbd_buffer_get_event needs to be fixed to know what
9867 to do in that case. It isn't trivial. */
9868
9869 bool
9870 requeued_events_pending_p (void)
9871 {
9872 return (!NILP (Vunread_command_events));
9873 }
9874
9875 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 1, 0,
9876 doc: /* Return t if command input is currently available with no wait.
9877 Actually, the value is nil only if we can be sure that no input is available;
9878 if there is a doubt, the value is t.
9879
9880 If CHECK-TIMERS is non-nil, timers that are ready to run will do so. */)
9881 (Lisp_Object check_timers)
9882 {
9883 if (!NILP (Vunread_command_events)
9884 || !NILP (Vunread_post_input_method_events)
9885 || !NILP (Vunread_input_method_events))
9886 return (Qt);
9887
9888 /* Process non-user-visible events (Bug#10195). */
9889 process_special_events ();
9890
9891 return (get_input_pending ((NILP (check_timers)
9892 ? 0 : READABLE_EVENTS_DO_TIMERS_NOW)
9893 | READABLE_EVENTS_FILTER_EVENTS)
9894 ? Qt : Qnil);
9895 }
9896
9897 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 1, 0,
9898 doc: /* Return vector of last few events, not counting those from keyboard macros.
9899 If INCLUDE-CMDS is non-nil, include the commands that were run,
9900 represented as events of the form (nil . COMMAND). */)
9901 (Lisp_Object include_cmds)
9902 {
9903 bool cmds = !NILP (include_cmds);
9904
9905 if (!total_keys
9906 || (cmds && total_keys < NUM_RECENT_KEYS))
9907 return Fvector (total_keys,
9908 XVECTOR (recent_keys)->contents);
9909 else
9910 {
9911 Lisp_Object es = Qnil;
9912 int i = (total_keys < NUM_RECENT_KEYS
9913 ? 0 : recent_keys_index);
9914 eassert (recent_keys_index < NUM_RECENT_KEYS);
9915 do
9916 {
9917 Lisp_Object e = AREF (recent_keys, i);
9918 if (cmds || !CONSP (e) || !NILP (XCAR (e)))
9919 es = Fcons (e, es);
9920 if (++i >= NUM_RECENT_KEYS)
9921 i = 0;
9922 } while (i != recent_keys_index);
9923 es = Fnreverse (es);
9924 return Fvconcat (1, &es);
9925 }
9926 }
9927
9928 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
9929 doc: /* Return the key sequence that invoked this command.
9930 However, if the command has called `read-key-sequence', it returns
9931 the last key sequence that has been read.
9932 The value is a string or a vector.
9933
9934 See also `this-command-keys-vector'. */)
9935 (void)
9936 {
9937 return make_event_array (this_command_key_count,
9938 XVECTOR (this_command_keys)->contents);
9939 }
9940
9941 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
9942 doc: /* Return the key sequence that invoked this command, as a vector.
9943 However, if the command has called `read-key-sequence', it returns
9944 the last key sequence that has been read.
9945
9946 See also `this-command-keys'. */)
9947 (void)
9948 {
9949 return Fvector (this_command_key_count,
9950 XVECTOR (this_command_keys)->contents);
9951 }
9952
9953 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
9954 Sthis_single_command_keys, 0, 0, 0,
9955 doc: /* Return the key sequence that invoked this command.
9956 More generally, it returns the last key sequence read, either by
9957 the command loop or by `read-key-sequence'.
9958 Unlike `this-command-keys', this function's value
9959 does not include prefix arguments.
9960 The value is always a vector. */)
9961 (void)
9962 {
9963 return Fvector (this_command_key_count
9964 - this_single_command_key_start,
9965 (XVECTOR (this_command_keys)->contents
9966 + this_single_command_key_start));
9967 }
9968
9969 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
9970 Sthis_single_command_raw_keys, 0, 0, 0,
9971 doc: /* Return the raw events that were read for this command.
9972 More generally, it returns the last key sequence read, either by
9973 the command loop or by `read-key-sequence'.
9974 Unlike `this-single-command-keys', this function's value
9975 shows the events before all translations (except for input methods).
9976 The value is always a vector. */)
9977 (void)
9978 {
9979 return Fvector (raw_keybuf_count, XVECTOR (raw_keybuf)->contents);
9980 }
9981
9982 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
9983 Sclear_this_command_keys, 0, 1, 0,
9984 doc: /* Clear out the vector that `this-command-keys' returns.
9985 Also clear the record of the last 100 events, unless optional arg
9986 KEEP-RECORD is non-nil. */)
9987 (Lisp_Object keep_record)
9988 {
9989 int i;
9990
9991 this_command_key_count = 0;
9992
9993 if (NILP (keep_record))
9994 {
9995 for (i = 0; i < ASIZE (recent_keys); ++i)
9996 ASET (recent_keys, i, Qnil);
9997 total_keys = 0;
9998 recent_keys_index = 0;
9999 }
10000 return Qnil;
10001 }
10002
10003 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10004 doc: /* Return the current depth in recursive edits. */)
10005 (void)
10006 {
10007 Lisp_Object temp;
10008 /* Wrap around reliably on integer overflow. */
10009 EMACS_INT sum = (command_loop_level & INTMASK) + (minibuf_level & INTMASK);
10010 XSETINT (temp, sum);
10011 return temp;
10012 }
10013
10014 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10015 "FOpen dribble file: ",
10016 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10017 If FILE is nil, close any open dribble file.
10018 The file will be closed when Emacs exits.
10019
10020 Be aware that this records ALL characters you type!
10021 This may include sensitive information such as passwords. */)
10022 (Lisp_Object file)
10023 {
10024 if (dribble)
10025 {
10026 block_input ();
10027 fclose (dribble);
10028 unblock_input ();
10029 dribble = 0;
10030 }
10031 if (!NILP (file))
10032 {
10033 int fd;
10034 Lisp_Object encfile;
10035
10036 file = Fexpand_file_name (file, Qnil);
10037 encfile = ENCODE_FILE (file);
10038 fd = emacs_open (SSDATA (encfile), O_WRONLY | O_CREAT | O_EXCL, 0600);
10039 if (fd < 0 && errno == EEXIST && unlink (SSDATA (encfile)) == 0)
10040 fd = emacs_open (SSDATA (encfile), O_WRONLY | O_CREAT | O_EXCL, 0600);
10041 dribble = fd < 0 ? 0 : fdopen (fd, "w");
10042 if (dribble == 0)
10043 report_file_error ("Opening dribble", file);
10044 }
10045 return Qnil;
10046 }
10047
10048 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10049 doc: /* Discard the contents of the terminal input buffer.
10050 Also end any kbd macro being defined. */)
10051 (void)
10052 {
10053 if (!NILP (KVAR (current_kboard, defining_kbd_macro)))
10054 {
10055 /* Discard the last command from the macro. */
10056 Fcancel_kbd_macro_events ();
10057 end_kbd_macro ();
10058 }
10059
10060 Vunread_command_events = Qnil;
10061
10062 discard_tty_input ();
10063
10064 kbd_fetch_ptr = kbd_store_ptr;
10065 input_pending = false;
10066
10067 return Qnil;
10068 }
10069 \f
10070 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10071 doc: /* Stop Emacs and return to superior process. You can resume later.
10072 If `cannot-suspend' is non-nil, or if the system doesn't support job
10073 control, run a subshell instead.
10074
10075 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10076 to be read as terminal input by Emacs's parent, after suspension.
10077
10078 Before suspending, run the normal hook `suspend-hook'.
10079 After resumption run the normal hook `suspend-resume-hook'.
10080
10081 Some operating systems cannot stop the Emacs process and resume it later.
10082 On such systems, Emacs starts a subshell instead of suspending. */)
10083 (Lisp_Object stuffstring)
10084 {
10085 ptrdiff_t count = SPECPDL_INDEX ();
10086 int old_height, old_width;
10087 int width, height;
10088
10089 if (tty_list && tty_list->next)
10090 error ("There are other tty frames open; close them before suspending Emacs");
10091
10092 if (!NILP (stuffstring))
10093 CHECK_STRING (stuffstring);
10094
10095 run_hook (intern ("suspend-hook"));
10096
10097 get_tty_size (fileno (CURTTY ()->input), &old_width, &old_height);
10098 reset_all_sys_modes ();
10099 /* sys_suspend can get an error if it tries to fork a subshell
10100 and the system resources aren't available for that. */
10101 record_unwind_protect_void (init_all_sys_modes);
10102 stuff_buffered_input (stuffstring);
10103 if (cannot_suspend)
10104 sys_subshell ();
10105 else
10106 sys_suspend ();
10107 unbind_to (count, Qnil);
10108
10109 /* Check if terminal/window size has changed.
10110 Note that this is not useful when we are running directly
10111 with a window system; but suspend should be disabled in that case. */
10112 get_tty_size (fileno (CURTTY ()->input), &width, &height);
10113 if (width != old_width || height != old_height)
10114 change_frame_size (SELECTED_FRAME (), width,
10115 height - FRAME_MENU_BAR_LINES (SELECTED_FRAME ()),
10116 0, 0, 0, 0);
10117
10118 run_hook (intern ("suspend-resume-hook"));
10119
10120 return Qnil;
10121 }
10122
10123 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10124 Then in any case stuff anything Emacs has read ahead and not used. */
10125
10126 void
10127 stuff_buffered_input (Lisp_Object stuffstring)
10128 {
10129 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10130 register unsigned char *p;
10131
10132 if (STRINGP (stuffstring))
10133 {
10134 register ptrdiff_t count;
10135
10136 p = SDATA (stuffstring);
10137 count = SBYTES (stuffstring);
10138 while (count-- > 0)
10139 stuff_char (*p++);
10140 stuff_char ('\n');
10141 }
10142
10143 /* Anything we have read ahead, put back for the shell to read. */
10144 /* ?? What should this do when we have multiple keyboards??
10145 Should we ignore anything that was typed in at the "wrong" kboard?
10146
10147 rms: we should stuff everything back into the kboard
10148 it came from. */
10149 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10150 {
10151
10152 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10153 kbd_fetch_ptr = kbd_buffer;
10154 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10155 stuff_char (kbd_fetch_ptr->ie.code);
10156
10157 clear_event (kbd_fetch_ptr);
10158 }
10159
10160 input_pending = false;
10161 #endif /* SIGTSTP */
10162 }
10163 \f
10164 void
10165 set_waiting_for_input (struct timespec *time_to_clear)
10166 {
10167 input_available_clear_time = time_to_clear;
10168
10169 /* Tell handle_interrupt to throw back to read_char, */
10170 waiting_for_input = true;
10171
10172 /* If handle_interrupt was called before and buffered a C-g,
10173 make it run again now, to avoid timing error. */
10174 if (!NILP (Vquit_flag))
10175 quit_throw_to_read_char (0);
10176 }
10177
10178 void
10179 clear_waiting_for_input (void)
10180 {
10181 /* Tell handle_interrupt not to throw back to read_char, */
10182 waiting_for_input = false;
10183 input_available_clear_time = 0;
10184 }
10185
10186 /* The SIGINT handler.
10187
10188 If we have a frame on the controlling tty, we assume that the
10189 SIGINT was generated by C-g, so we call handle_interrupt.
10190 Otherwise, tell QUIT to kill Emacs. */
10191
10192 static void
10193 handle_interrupt_signal (int sig)
10194 {
10195 /* See if we have an active terminal on our controlling tty. */
10196 struct terminal *terminal = get_named_terminal ("/dev/tty");
10197 if (!terminal)
10198 {
10199 /* If there are no frames there, let's pretend that we are a
10200 well-behaving UN*X program and quit. We must not call Lisp
10201 in a signal handler, so tell QUIT to exit when it is
10202 safe. */
10203 Vquit_flag = Qkill_emacs;
10204 }
10205 else
10206 {
10207 /* Otherwise, the SIGINT was probably generated by C-g. */
10208
10209 /* Set internal_last_event_frame to the top frame of the
10210 controlling tty, if we have a frame there. We disable the
10211 interrupt key on secondary ttys, so the SIGINT must have come
10212 from the controlling tty. */
10213 internal_last_event_frame = terminal->display_info.tty->top_frame;
10214
10215 handle_interrupt (1);
10216 }
10217 }
10218
10219 static void
10220 deliver_interrupt_signal (int sig)
10221 {
10222 deliver_process_signal (sig, handle_interrupt_signal);
10223 }
10224
10225 /* Output MSG directly to standard output, without buffering. Ignore
10226 failures. This is safe in a signal handler. */
10227 static void
10228 write_stdout (char const *msg)
10229 {
10230 ignore_value (write (STDOUT_FILENO, msg, strlen (msg)));
10231 }
10232
10233 /* Read a byte from stdin, without buffering. Safe in signal handlers. */
10234 static int
10235 read_stdin (void)
10236 {
10237 char c;
10238 return read (STDIN_FILENO, &c, 1) == 1 ? c : EOF;
10239 }
10240
10241 /* If Emacs is stuck because `inhibit-quit' is true, then keep track
10242 of the number of times C-g has been requested. If C-g is pressed
10243 enough times, then quit anyway. See bug#6585. */
10244 static int volatile force_quit_count;
10245
10246 /* This routine is called at interrupt level in response to C-g.
10247
10248 It is called from the SIGINT handler or kbd_buffer_store_event.
10249
10250 If `waiting_for_input' is non zero, then unless `echoing' is
10251 nonzero, immediately throw back to read_char.
10252
10253 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10254 eval to throw, when it gets a chance. If quit-flag is already
10255 non-nil, it stops the job right away. */
10256
10257 static void
10258 handle_interrupt (bool in_signal_handler)
10259 {
10260 char c;
10261
10262 cancel_echoing ();
10263
10264 /* XXX This code needs to be revised for multi-tty support. */
10265 if (!NILP (Vquit_flag) && get_named_terminal ("/dev/tty"))
10266 {
10267 if (! in_signal_handler)
10268 {
10269 /* If SIGINT isn't blocked, don't let us be interrupted by
10270 a SIGINT. It might be harmful due to non-reentrancy
10271 in I/O functions. */
10272 sigset_t blocked;
10273 sigemptyset (&blocked);
10274 sigaddset (&blocked, SIGINT);
10275 pthread_sigmask (SIG_BLOCK, &blocked, 0);
10276 fflush (stdout);
10277 }
10278
10279 reset_all_sys_modes ();
10280
10281 #ifdef SIGTSTP
10282 /*
10283 * On systems which can suspend the current process and return to the original
10284 * shell, this command causes the user to end up back at the shell.
10285 * The "Auto-save" and "Abort" questions are not asked until
10286 * the user elects to return to emacs, at which point he can save the current
10287 * job and either dump core or continue.
10288 */
10289 sys_suspend ();
10290 #else
10291 /* Perhaps should really fork an inferior shell?
10292 But that would not provide any way to get back
10293 to the original shell, ever. */
10294 write_stdout ("No support for stopping a process"
10295 " on this operating system;\n"
10296 "you can continue or abort.\n");
10297 #endif /* not SIGTSTP */
10298 #ifdef MSDOS
10299 /* We must remain inside the screen area when the internal terminal
10300 is used. Note that [Enter] is not echoed by dos. */
10301 cursor_to (SELECTED_FRAME (), 0, 0);
10302 #endif
10303 /* It doesn't work to autosave while GC is in progress;
10304 the code used for auto-saving doesn't cope with the mark bit. */
10305 if (!gc_in_progress)
10306 {
10307 write_stdout ("Auto-save? (y or n) ");
10308 c = read_stdin ();
10309 if ((c & 040) == 'Y')
10310 {
10311 Fdo_auto_save (Qt, Qnil);
10312 #ifdef MSDOS
10313 write_stdout ("\r\nAuto-save done");
10314 #else
10315 write_stdout ("Auto-save done\n");
10316 #endif
10317 }
10318 while (c != '\n')
10319 c = read_stdin ();
10320 }
10321 else
10322 {
10323 /* During GC, it must be safe to reenable quitting again. */
10324 Vinhibit_quit = Qnil;
10325 write_stdout
10326 (
10327 #ifdef MSDOS
10328 "\r\n"
10329 #endif
10330 "Garbage collection in progress; cannot auto-save now\r\n"
10331 "but will instead do a real quit"
10332 " after garbage collection ends\r\n");
10333 }
10334
10335 #ifdef MSDOS
10336 write_stdout ("\r\nAbort? (y or n) ");
10337 #else
10338 write_stdout ("Abort (and dump core)? (y or n) ");
10339 #endif
10340 c = read_stdin ();
10341 if ((c & ~040) == 'Y')
10342 emacs_abort ();
10343 while (c != '\n')
10344 c = read_stdin ();
10345 #ifdef MSDOS
10346 write_stdout ("\r\nContinuing...\r\n");
10347 #else /* not MSDOS */
10348 write_stdout ("Continuing...\n");
10349 #endif /* not MSDOS */
10350 init_all_sys_modes ();
10351 }
10352 else
10353 {
10354 /* If executing a function that wants to be interrupted out of
10355 and the user has not deferred quitting by binding `inhibit-quit'
10356 then quit right away. */
10357 if (immediate_quit && NILP (Vinhibit_quit))
10358 {
10359 struct gl_state_s saved;
10360
10361 immediate_quit = false;
10362 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
10363 saved = gl_state;
10364 Fsignal (Qquit, Qnil);
10365 gl_state = saved;
10366 }
10367 else
10368 { /* Else request quit when it's safe. */
10369 int count = NILP (Vquit_flag) ? 1 : force_quit_count + 1;
10370 force_quit_count = count;
10371 if (count == 3)
10372 {
10373 immediate_quit = true;
10374 Vinhibit_quit = Qnil;
10375 }
10376 Vquit_flag = Qt;
10377 }
10378 }
10379
10380 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
10381
10382 /* TODO: The longjmp in this call throws the NS event loop integration off,
10383 and it seems to do fine without this. Probably some attention
10384 needs to be paid to the setting of waiting_for_input in
10385 wait_reading_process_output() under HAVE_NS because of the call
10386 to ns_select there (needed because otherwise events aren't picked up
10387 outside of polling since we don't get SIGIO like X and we don't have a
10388 separate event loop thread like W32. */
10389 #ifndef HAVE_NS
10390 if (waiting_for_input && !echoing)
10391 quit_throw_to_read_char (in_signal_handler);
10392 #endif
10393 }
10394
10395 /* Handle a C-g by making read_char return C-g. */
10396
10397 static void
10398 quit_throw_to_read_char (bool from_signal)
10399 {
10400 /* When not called from a signal handler it is safe to call
10401 Lisp. */
10402 if (!from_signal && EQ (Vquit_flag, Qkill_emacs))
10403 Fkill_emacs (Qnil);
10404
10405 /* Prevent another signal from doing this before we finish. */
10406 clear_waiting_for_input ();
10407 input_pending = false;
10408
10409 Vunread_command_events = Qnil;
10410
10411 if (FRAMEP (internal_last_event_frame)
10412 && !EQ (internal_last_event_frame, selected_frame))
10413 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10414 0, 0, Qnil);
10415
10416 sys_longjmp (getcjmp, 1);
10417 }
10418 \f
10419 DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,
10420 Sset_input_interrupt_mode, 1, 1, 0,
10421 doc: /* Set interrupt mode of reading keyboard input.
10422 If INTERRUPT is non-nil, Emacs will use input interrupts;
10423 otherwise Emacs uses CBREAK mode.
10424
10425 See also `current-input-mode'. */)
10426 (Lisp_Object interrupt)
10427 {
10428 bool new_interrupt_input;
10429 #ifdef USABLE_SIGIO
10430 #ifdef HAVE_X_WINDOWS
10431 if (x_display_list != NULL)
10432 {
10433 /* When using X, don't give the user a real choice,
10434 because we haven't implemented the mechanisms to support it. */
10435 new_interrupt_input = true;
10436 }
10437 else
10438 #endif /* HAVE_X_WINDOWS */
10439 new_interrupt_input = !NILP (interrupt);
10440 #else /* not USABLE_SIGIO */
10441 new_interrupt_input = false;
10442 #endif /* not USABLE_SIGIO */
10443
10444 if (new_interrupt_input != interrupt_input)
10445 {
10446 #ifdef POLL_FOR_INPUT
10447 stop_polling ();
10448 #endif
10449 #ifndef DOS_NT
10450 /* this causes startup screen to be restored and messes with the mouse */
10451 reset_all_sys_modes ();
10452 interrupt_input = new_interrupt_input;
10453 init_all_sys_modes ();
10454 #else
10455 interrupt_input = new_interrupt_input;
10456 #endif
10457
10458 #ifdef POLL_FOR_INPUT
10459 poll_suppress_count = 1;
10460 start_polling ();
10461 #endif
10462 }
10463 return Qnil;
10464 }
10465
10466 DEFUN ("set-output-flow-control", Fset_output_flow_control, Sset_output_flow_control, 1, 2, 0,
10467 doc: /* Enable or disable ^S/^Q flow control for output to TERMINAL.
10468 If FLOW is non-nil, flow control is enabled and you cannot use C-s or
10469 C-q in key sequences.
10470
10471 This setting only has an effect on tty terminals and only when
10472 Emacs reads input in CBREAK mode; see `set-input-interrupt-mode'.
10473
10474 See also `current-input-mode'. */)
10475 (Lisp_Object flow, Lisp_Object terminal)
10476 {
10477 struct terminal *t = decode_tty_terminal (terminal);
10478 struct tty_display_info *tty;
10479
10480 if (!t)
10481 return Qnil;
10482 tty = t->display_info.tty;
10483
10484 if (tty->flow_control != !NILP (flow))
10485 {
10486 #ifndef DOS_NT
10487 /* This causes startup screen to be restored and messes with the mouse. */
10488 reset_sys_modes (tty);
10489 #endif
10490
10491 tty->flow_control = !NILP (flow);
10492
10493 #ifndef DOS_NT
10494 init_sys_modes (tty);
10495 #endif
10496 }
10497 return Qnil;
10498 }
10499
10500 DEFUN ("set-input-meta-mode", Fset_input_meta_mode, Sset_input_meta_mode, 1, 2, 0,
10501 doc: /* Enable or disable 8-bit input on TERMINAL.
10502 If META is t, Emacs will accept 8-bit input, and interpret the 8th
10503 bit as the Meta modifier.
10504
10505 If META is nil, Emacs will ignore the top bit, on the assumption it is
10506 parity.
10507
10508 Otherwise, Emacs will accept and pass through 8-bit input without
10509 specially interpreting the top bit.
10510
10511 This setting only has an effect on tty terminal devices.
10512
10513 Optional parameter TERMINAL specifies the tty terminal device to use.
10514 It may be a terminal object, a frame, or nil for the terminal used by
10515 the currently selected frame.
10516
10517 See also `current-input-mode'. */)
10518 (Lisp_Object meta, Lisp_Object terminal)
10519 {
10520 struct terminal *t = decode_tty_terminal (terminal);
10521 struct tty_display_info *tty;
10522 int new_meta;
10523
10524 if (!t)
10525 return Qnil;
10526 tty = t->display_info.tty;
10527
10528 if (NILP (meta))
10529 new_meta = 0;
10530 else if (EQ (meta, Qt))
10531 new_meta = 1;
10532 else
10533 new_meta = 2;
10534
10535 if (tty->meta_key != new_meta)
10536 {
10537 #ifndef DOS_NT
10538 /* this causes startup screen to be restored and messes with the mouse */
10539 reset_sys_modes (tty);
10540 #endif
10541
10542 tty->meta_key = new_meta;
10543
10544 #ifndef DOS_NT
10545 init_sys_modes (tty);
10546 #endif
10547 }
10548 return Qnil;
10549 }
10550
10551 DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_char, 1, 1, 0,
10552 doc: /* Specify character used for quitting.
10553 QUIT must be an ASCII character.
10554
10555 This function only has an effect on the controlling tty of the Emacs
10556 process.
10557
10558 See also `current-input-mode'. */)
10559 (Lisp_Object quit)
10560 {
10561 struct terminal *t = get_named_terminal ("/dev/tty");
10562 struct tty_display_info *tty;
10563
10564 if (!t)
10565 return Qnil;
10566 tty = t->display_info.tty;
10567
10568 if (NILP (quit) || !INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400)
10569 error ("QUIT must be an ASCII character");
10570
10571 #ifndef DOS_NT
10572 /* this causes startup screen to be restored and messes with the mouse */
10573 reset_sys_modes (tty);
10574 #endif
10575
10576 /* Don't let this value be out of range. */
10577 quit_char = XINT (quit) & (tty->meta_key == 0 ? 0177 : 0377);
10578
10579 #ifndef DOS_NT
10580 init_sys_modes (tty);
10581 #endif
10582
10583 return Qnil;
10584 }
10585
10586 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10587 doc: /* Set mode of reading keyboard input.
10588 First arg INTERRUPT non-nil means use input interrupts;
10589 nil means use CBREAK mode.
10590 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10591 (no effect except in CBREAK mode).
10592 Third arg META t means accept 8-bit input (for a Meta key).
10593 META nil means ignore the top bit, on the assumption it is parity.
10594 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10595 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10596 See also `current-input-mode'. */)
10597 (Lisp_Object interrupt, Lisp_Object flow, Lisp_Object meta, Lisp_Object quit)
10598 {
10599 Fset_input_interrupt_mode (interrupt);
10600 Fset_output_flow_control (flow, Qnil);
10601 Fset_input_meta_mode (meta, Qnil);
10602 if (!NILP (quit))
10603 Fset_quit_char (quit);
10604 return Qnil;
10605 }
10606
10607 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10608 doc: /* Return information about the way Emacs currently reads keyboard input.
10609 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10610 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10611 nil, Emacs is using CBREAK mode.
10612 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10613 terminal; this does not apply if Emacs uses interrupt-driven input.
10614 META is t if accepting 8-bit input with 8th bit as Meta flag.
10615 META nil means ignoring the top bit, on the assumption it is parity.
10616 META is neither t nor nil if accepting 8-bit input and using
10617 all 8 bits as the character code.
10618 QUIT is the character Emacs currently uses to quit.
10619 The elements of this list correspond to the arguments of
10620 `set-input-mode'. */)
10621 (void)
10622 {
10623 struct frame *sf = XFRAME (selected_frame);
10624
10625 Lisp_Object interrupt = interrupt_input ? Qt : Qnil;
10626 Lisp_Object flow, meta;
10627 if (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
10628 {
10629 flow = FRAME_TTY (sf)->flow_control ? Qt : Qnil;
10630 meta = (FRAME_TTY (sf)->meta_key == 2
10631 ? make_number (0)
10632 : (CURTTY ()->meta_key == 1 ? Qt : Qnil));
10633 }
10634 else
10635 {
10636 flow = Qnil;
10637 meta = Qt;
10638 }
10639 Lisp_Object quit = make_number (quit_char);
10640
10641 return list4 (interrupt, flow, meta, quit);
10642 }
10643
10644 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
10645 doc: /* Return position information for pixel coordinates X and Y.
10646 By default, X and Y are relative to text area of the selected window.
10647 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
10648 If optional fourth arg WHOLE is non-nil, X is relative to the left
10649 edge of the window.
10650
10651 The return value is similar to a mouse click position:
10652 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10653 IMAGE (DX . DY) (WIDTH . HEIGHT))
10654 The `posn-' functions access elements of such lists. */)
10655 (Lisp_Object x, Lisp_Object y, Lisp_Object frame_or_window, Lisp_Object whole)
10656 {
10657 CHECK_NUMBER (x);
10658 /* We allow X of -1, for the newline in a R2L line that overflowed
10659 into the left fringe. */
10660 if (XINT (x) != -1)
10661 CHECK_NATNUM (x);
10662 CHECK_NATNUM (y);
10663
10664 if (NILP (frame_or_window))
10665 frame_or_window = selected_window;
10666
10667 if (WINDOWP (frame_or_window))
10668 {
10669 struct window *w = decode_live_window (frame_or_window);
10670
10671 XSETINT (x, (XINT (x)
10672 + WINDOW_LEFT_EDGE_X (w)
10673 + (NILP (whole)
10674 ? window_box_left_offset (w, TEXT_AREA)
10675 : 0)));
10676 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
10677 frame_or_window = w->frame;
10678 }
10679
10680 CHECK_LIVE_FRAME (frame_or_window);
10681
10682 return make_lispy_position (XFRAME (frame_or_window), x, y, 0);
10683 }
10684
10685 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
10686 doc: /* Return position information for buffer POS in WINDOW.
10687 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10688
10689 Return nil if position is not visible in window. Otherwise,
10690 the return value is similar to that returned by `event-start' for
10691 a mouse click at the upper left corner of the glyph corresponding
10692 to the given buffer position:
10693 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10694 IMAGE (DX . DY) (WIDTH . HEIGHT))
10695 The `posn-' functions access elements of such lists. */)
10696 (Lisp_Object pos, Lisp_Object window)
10697 {
10698 Lisp_Object tem;
10699
10700 if (NILP (window))
10701 window = selected_window;
10702
10703 tem = Fpos_visible_in_window_p (pos, window, Qt);
10704 if (!NILP (tem))
10705 {
10706 Lisp_Object x = XCAR (tem);
10707 Lisp_Object y = XCAR (XCDR (tem));
10708
10709 /* Point invisible due to hscrolling? X can be -1 when a
10710 newline in a R2L line overflows into the left fringe. */
10711 if (XINT (x) < -1)
10712 return Qnil;
10713 tem = Fposn_at_x_y (x, y, window, Qnil);
10714 }
10715
10716 return tem;
10717 }
10718
10719 /* Set up a new kboard object with reasonable initial values.
10720 TYPE is a window system for which this keyboard is used. */
10721
10722 static void
10723 init_kboard (KBOARD *kb, Lisp_Object type)
10724 {
10725 kset_overriding_terminal_local_map (kb, Qnil);
10726 kset_last_command (kb, Qnil);
10727 kset_real_last_command (kb, Qnil);
10728 kset_keyboard_translate_table (kb, Qnil);
10729 kset_last_repeatable_command (kb, Qnil);
10730 kset_prefix_arg (kb, Qnil);
10731 kset_last_prefix_arg (kb, Qnil);
10732 kset_kbd_queue (kb, Qnil);
10733 kb->kbd_queue_has_data = false;
10734 kb->immediate_echo = false;
10735 kset_echo_string (kb, Qnil);
10736 kset_echo_prompt (kb, Qnil);
10737 kb->kbd_macro_buffer = 0;
10738 kb->kbd_macro_bufsize = 0;
10739 kset_defining_kbd_macro (kb, Qnil);
10740 kset_last_kbd_macro (kb, Qnil);
10741 kb->reference_count = 0;
10742 kset_system_key_alist (kb, Qnil);
10743 kset_system_key_syms (kb, Qnil);
10744 kset_window_system (kb, type);
10745 kset_input_decode_map (kb, Fmake_sparse_keymap (Qnil));
10746 kset_local_function_key_map (kb, Fmake_sparse_keymap (Qnil));
10747 Fset_keymap_parent (KVAR (kb, Vlocal_function_key_map), Vfunction_key_map);
10748 kset_default_minibuffer_frame (kb, Qnil);
10749 }
10750
10751 /* Allocate and basically initialize keyboard
10752 object to use with window system TYPE. */
10753
10754 KBOARD *
10755 allocate_kboard (Lisp_Object type)
10756 {
10757 KBOARD *kb = xmalloc (sizeof *kb);
10758
10759 init_kboard (kb, type);
10760 kb->next_kboard = all_kboards;
10761 all_kboards = kb;
10762 return kb;
10763 }
10764
10765 /*
10766 * Destroy the contents of a kboard object, but not the object itself.
10767 * We use this just before deleting it, or if we're going to initialize
10768 * it a second time.
10769 */
10770 static void
10771 wipe_kboard (KBOARD *kb)
10772 {
10773 xfree (kb->kbd_macro_buffer);
10774 }
10775
10776 /* Free KB and memory referenced from it. */
10777
10778 void
10779 delete_kboard (KBOARD *kb)
10780 {
10781 KBOARD **kbp;
10782
10783 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10784 if (*kbp == NULL)
10785 emacs_abort ();
10786 *kbp = kb->next_kboard;
10787
10788 /* Prevent a dangling reference to KB. */
10789 if (kb == current_kboard
10790 && FRAMEP (selected_frame)
10791 && FRAME_LIVE_P (XFRAME (selected_frame)))
10792 {
10793 current_kboard = FRAME_KBOARD (XFRAME (selected_frame));
10794 single_kboard = false;
10795 if (current_kboard == kb)
10796 emacs_abort ();
10797 }
10798
10799 wipe_kboard (kb);
10800 xfree (kb);
10801 }
10802
10803 void
10804 init_keyboard (void)
10805 {
10806 /* This is correct before outermost invocation of the editor loop. */
10807 command_loop_level = -1;
10808 immediate_quit = false;
10809 quit_char = Ctl ('g');
10810 Vunread_command_events = Qnil;
10811 timer_idleness_start_time = invalid_timespec ();
10812 total_keys = 0;
10813 recent_keys_index = 0;
10814 kbd_fetch_ptr = kbd_buffer;
10815 kbd_store_ptr = kbd_buffer;
10816 do_mouse_tracking = Qnil;
10817 input_pending = false;
10818 interrupt_input_blocked = 0;
10819 pending_signals = false;
10820
10821 /* This means that command_loop_1 won't try to select anything the first
10822 time through. */
10823 internal_last_event_frame = Qnil;
10824 Vlast_event_frame = internal_last_event_frame;
10825
10826 current_kboard = initial_kboard;
10827 /* Re-initialize the keyboard again. */
10828 wipe_kboard (current_kboard);
10829 /* A value of nil for Vwindow_system normally means a tty, but we also use
10830 it for the initial terminal since there is no window system there. */
10831 init_kboard (current_kboard, Qnil);
10832
10833 if (!noninteractive)
10834 {
10835 /* Before multi-tty support, these handlers used to be installed
10836 only if the current session was a tty session. Now an Emacs
10837 session may have multiple display types, so we always handle
10838 SIGINT. There is special code in handle_interrupt_signal to exit
10839 Emacs on SIGINT when there are no termcap frames on the
10840 controlling terminal. */
10841 struct sigaction action;
10842 emacs_sigaction_init (&action, deliver_interrupt_signal);
10843 sigaction (SIGINT, &action, 0);
10844 #ifndef DOS_NT
10845 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10846 SIGQUIT and we can't tell which one it will give us. */
10847 sigaction (SIGQUIT, &action, 0);
10848 #endif /* not DOS_NT */
10849 }
10850 #ifdef USABLE_SIGIO
10851 if (!noninteractive)
10852 {
10853 struct sigaction action;
10854 emacs_sigaction_init (&action, deliver_input_available_signal);
10855 sigaction (SIGIO, &action, 0);
10856 }
10857 #endif
10858
10859 /* Use interrupt input by default, if it works and noninterrupt input
10860 has deficiencies. */
10861
10862 #ifdef INTERRUPT_INPUT
10863 interrupt_input = 1;
10864 #else
10865 interrupt_input = 0;
10866 #endif
10867
10868 pthread_sigmask (SIG_SETMASK, &empty_mask, 0);
10869 dribble = 0;
10870
10871 if (keyboard_init_hook)
10872 (*keyboard_init_hook) ();
10873
10874 #ifdef POLL_FOR_INPUT
10875 poll_timer = NULL;
10876 poll_suppress_count = 1;
10877 start_polling ();
10878 #endif
10879 }
10880
10881 /* This type's only use is in syms_of_keyboard, to put properties on the
10882 event header symbols. */
10883 struct event_head
10884 {
10885 short var;
10886 short kind;
10887 };
10888
10889 static const struct event_head head_table[] = {
10890 {SYMBOL_INDEX (Qmouse_movement), SYMBOL_INDEX (Qmouse_movement)},
10891 {SYMBOL_INDEX (Qscroll_bar_movement), SYMBOL_INDEX (Qmouse_movement)},
10892
10893 /* Some of the event heads. */
10894 {SYMBOL_INDEX (Qswitch_frame), SYMBOL_INDEX (Qswitch_frame)},
10895
10896 {SYMBOL_INDEX (Qfocus_in), SYMBOL_INDEX (Qfocus_in)},
10897 {SYMBOL_INDEX (Qfocus_out), SYMBOL_INDEX (Qfocus_out)},
10898 {SYMBOL_INDEX (Qdelete_frame), SYMBOL_INDEX (Qdelete_frame)},
10899 {SYMBOL_INDEX (Qiconify_frame), SYMBOL_INDEX (Qiconify_frame)},
10900 {SYMBOL_INDEX (Qmake_frame_visible), SYMBOL_INDEX (Qmake_frame_visible)},
10901 /* `select-window' should be handled just like `switch-frame'
10902 in read_key_sequence. */
10903 {SYMBOL_INDEX (Qselect_window), SYMBOL_INDEX (Qswitch_frame)}
10904 };
10905
10906 void
10907 syms_of_keyboard (void)
10908 {
10909 pending_funcalls = Qnil;
10910 staticpro (&pending_funcalls);
10911
10912 Vlispy_mouse_stem = build_pure_c_string ("mouse");
10913 staticpro (&Vlispy_mouse_stem);
10914
10915 regular_top_level_message = build_pure_c_string ("Back to top level");
10916 #ifdef HAVE_STACK_OVERFLOW_HANDLING
10917 recover_top_level_message
10918 = build_pure_c_string ("Re-entering top level after C stack overflow");
10919 #endif
10920 DEFVAR_LISP ("internal--top-level-message", Vinternal__top_level_message,
10921 doc: /* Message displayed by `normal-top-level'. */);
10922 Vinternal__top_level_message = regular_top_level_message;
10923
10924 /* Tool-bars. */
10925 DEFSYM (QCimage, ":image");
10926 DEFSYM (Qhelp_echo, "help-echo");
10927 DEFSYM (QCrtl, ":rtl");
10928
10929 staticpro (&item_properties);
10930 item_properties = Qnil;
10931
10932 staticpro (&tool_bar_item_properties);
10933 tool_bar_item_properties = Qnil;
10934 staticpro (&tool_bar_items_vector);
10935 tool_bar_items_vector = Qnil;
10936
10937 DEFSYM (Qtimer_event_handler, "timer-event-handler");
10938
10939 /* Non-nil disable property on a command means do not execute it;
10940 call disabled-command-function's value instead. */
10941 DEFSYM (Qdisabled, "disabled");
10942
10943 DEFSYM (Qundefined, "undefined");
10944
10945 /* Hooks to run before and after each command. */
10946 DEFSYM (Qpre_command_hook, "pre-command-hook");
10947 DEFSYM (Qpost_command_hook, "post-command-hook");
10948
10949 DEFSYM (Qundo_auto__add_boundary, "undo-auto--add-boundary");
10950
10951 DEFSYM (Qdeferred_action_function, "deferred-action-function");
10952 DEFSYM (Qdelayed_warnings_hook, "delayed-warnings-hook");
10953 DEFSYM (Qfunction_key, "function-key");
10954
10955 /* The values of Qevent_kind properties. */
10956 DEFSYM (Qmouse_click, "mouse-click");
10957
10958 DEFSYM (Qdrag_n_drop, "drag-n-drop");
10959 DEFSYM (Qsave_session, "save-session");
10960 DEFSYM (Qconfig_changed_event, "config-changed-event");
10961
10962 /* Menu and tool bar item parts. */
10963 DEFSYM (Qmenu_enable, "menu-enable");
10964
10965 #ifdef HAVE_NTGUI
10966 DEFSYM (Qlanguage_change, "language-change");
10967 #endif
10968
10969 #ifdef HAVE_DBUS
10970 DEFSYM (Qdbus_event, "dbus-event");
10971 #endif
10972
10973 #ifdef HAVE_XWIDGETS
10974 DEFSYM (Qxwidget_event, "xwidget-event");
10975 #endif
10976
10977 #ifdef USE_FILE_NOTIFY
10978 DEFSYM (Qfile_notify, "file-notify");
10979 #endif /* USE_FILE_NOTIFY */
10980
10981 /* Menu and tool bar item parts. */
10982 DEFSYM (QCenable, ":enable");
10983 DEFSYM (QCvisible, ":visible");
10984 DEFSYM (QChelp, ":help");
10985 DEFSYM (QCfilter, ":filter");
10986 DEFSYM (QCbutton, ":button");
10987 DEFSYM (QCkeys, ":keys");
10988 DEFSYM (QCkey_sequence, ":key-sequence");
10989
10990 /* Non-nil disable property on a command means
10991 do not execute it; call disabled-command-function's value instead. */
10992 DEFSYM (QCtoggle, ":toggle");
10993 DEFSYM (QCradio, ":radio");
10994 DEFSYM (QClabel, ":label");
10995 DEFSYM (QCvert_only, ":vert-only");
10996
10997 /* Symbols to use for parts of windows. */
10998 DEFSYM (Qvertical_line, "vertical-line");
10999 DEFSYM (Qright_divider, "right-divider");
11000 DEFSYM (Qbottom_divider, "bottom-divider");
11001
11002 DEFSYM (Qmouse_fixup_help_message, "mouse-fixup-help-message");
11003
11004 DEFSYM (Qabove_handle, "above-handle");
11005 DEFSYM (Qhandle, "handle");
11006 DEFSYM (Qbelow_handle, "below-handle");
11007 DEFSYM (Qup, "up");
11008 DEFSYM (Qdown, "down");
11009 DEFSYM (Qtop, "top");
11010 DEFSYM (Qbottom, "bottom");
11011 DEFSYM (Qend_scroll, "end-scroll");
11012 DEFSYM (Qratio, "ratio");
11013 DEFSYM (Qbefore_handle, "before-handle");
11014 DEFSYM (Qhorizontal_handle, "horizontal-handle");
11015 DEFSYM (Qafter_handle, "after-handle");
11016 DEFSYM (Qleft, "left");
11017 DEFSYM (Qright, "right");
11018 DEFSYM (Qleftmost, "leftmost");
11019 DEFSYM (Qrightmost, "rightmost");
11020
11021 /* Properties of event headers. */
11022 DEFSYM (Qevent_kind, "event-kind");
11023 DEFSYM (Qevent_symbol_elements, "event-symbol-elements");
11024
11025 /* An event header symbol HEAD may have a property named
11026 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
11027 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
11028 mask of modifiers applied to it. If present, this is used to help
11029 speed up parse_modifiers. */
11030 DEFSYM (Qevent_symbol_element_mask, "event-symbol-element-mask");
11031
11032 /* An unmodified event header BASE may have a property named
11033 Qmodifier_cache, which is an alist mapping modifier masks onto
11034 modified versions of BASE. If present, this helps speed up
11035 apply_modifiers. */
11036 DEFSYM (Qmodifier_cache, "modifier-cache");
11037
11038 DEFSYM (Qrecompute_lucid_menubar, "recompute-lucid-menubar");
11039 DEFSYM (Qactivate_menubar_hook, "activate-menubar-hook");
11040
11041 DEFSYM (Qpolling_period, "polling-period");
11042
11043 DEFSYM (Qgui_set_selection, "gui-set-selection");
11044
11045 /* The primary selection. */
11046 DEFSYM (QPRIMARY, "PRIMARY");
11047
11048 DEFSYM (Qhandle_switch_frame, "handle-switch-frame");
11049 DEFSYM (Qhandle_select_window, "handle-select-window");
11050
11051 DEFSYM (Qinput_method_exit_on_first_char, "input-method-exit-on-first-char");
11052 DEFSYM (Qinput_method_use_echo_area, "input-method-use-echo-area");
11053
11054 DEFSYM (Qhelp_form_show, "help-form-show");
11055
11056 DEFSYM (Qecho_keystrokes, "echo-keystrokes");
11057
11058 Fset (Qinput_method_exit_on_first_char, Qnil);
11059 Fset (Qinput_method_use_echo_area, Qnil);
11060
11061 /* Symbols to head events. */
11062 DEFSYM (Qmouse_movement, "mouse-movement");
11063 DEFSYM (Qscroll_bar_movement, "scroll-bar-movement");
11064 DEFSYM (Qswitch_frame, "switch-frame");
11065 DEFSYM (Qfocus_in, "focus-in");
11066 DEFSYM (Qfocus_out, "focus-out");
11067 DEFSYM (Qdelete_frame, "delete-frame");
11068 DEFSYM (Qiconify_frame, "iconify-frame");
11069 DEFSYM (Qmake_frame_visible, "make-frame-visible");
11070 DEFSYM (Qselect_window, "select-window");
11071 {
11072 int i;
11073
11074 for (i = 0; i < ARRAYELTS (head_table); i++)
11075 {
11076 const struct event_head *p = &head_table[i];
11077 Lisp_Object var = builtin_lisp_symbol (p->var);
11078 Lisp_Object kind = builtin_lisp_symbol (p->kind);
11079 Fput (var, Qevent_kind, kind);
11080 Fput (var, Qevent_symbol_elements, list1 (var));
11081 }
11082 }
11083
11084 button_down_location = Fmake_vector (make_number (5), Qnil);
11085 staticpro (&button_down_location);
11086 mouse_syms = Fmake_vector (make_number (5), Qnil);
11087 staticpro (&mouse_syms);
11088 wheel_syms = Fmake_vector (make_number (ARRAYELTS (lispy_wheel_names)),
11089 Qnil);
11090 staticpro (&wheel_syms);
11091
11092 {
11093 int i;
11094 int len = ARRAYELTS (modifier_names);
11095
11096 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11097 for (i = 0; i < len; i++)
11098 if (modifier_names[i])
11099 ASET (modifier_symbols, i, intern_c_string (modifier_names[i]));
11100 staticpro (&modifier_symbols);
11101 }
11102
11103 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11104 staticpro (&recent_keys);
11105
11106 this_command_keys = Fmake_vector (make_number (40), Qnil);
11107 staticpro (&this_command_keys);
11108
11109 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11110 staticpro (&raw_keybuf);
11111
11112 DEFSYM (Qcommand_execute, "command-execute");
11113 DEFSYM (Qinternal_echo_keystrokes_prefix, "internal-echo-keystrokes-prefix");
11114
11115 accent_key_syms = Qnil;
11116 staticpro (&accent_key_syms);
11117
11118 func_key_syms = Qnil;
11119 staticpro (&func_key_syms);
11120
11121 drag_n_drop_syms = Qnil;
11122 staticpro (&drag_n_drop_syms);
11123
11124 unread_switch_frame = Qnil;
11125 staticpro (&unread_switch_frame);
11126
11127 internal_last_event_frame = Qnil;
11128 staticpro (&internal_last_event_frame);
11129
11130 read_key_sequence_cmd = Qnil;
11131 staticpro (&read_key_sequence_cmd);
11132 read_key_sequence_remapped = Qnil;
11133 staticpro (&read_key_sequence_remapped);
11134
11135 menu_bar_one_keymap_changed_items = Qnil;
11136 staticpro (&menu_bar_one_keymap_changed_items);
11137
11138 menu_bar_items_vector = Qnil;
11139 staticpro (&menu_bar_items_vector);
11140
11141 help_form_saved_window_configs = Qnil;
11142 staticpro (&help_form_saved_window_configs);
11143
11144 defsubr (&Scurrent_idle_time);
11145 defsubr (&Sevent_symbol_parse_modifiers);
11146 defsubr (&Sevent_convert_list);
11147 defsubr (&Sread_key_sequence);
11148 defsubr (&Sread_key_sequence_vector);
11149 defsubr (&Srecursive_edit);
11150 defsubr (&Strack_mouse);
11151 defsubr (&Sinput_pending_p);
11152 defsubr (&Srecent_keys);
11153 defsubr (&Sthis_command_keys);
11154 defsubr (&Sthis_command_keys_vector);
11155 defsubr (&Sthis_single_command_keys);
11156 defsubr (&Sthis_single_command_raw_keys);
11157 defsubr (&Sclear_this_command_keys);
11158 defsubr (&Ssuspend_emacs);
11159 defsubr (&Sabort_recursive_edit);
11160 defsubr (&Sexit_recursive_edit);
11161 defsubr (&Srecursion_depth);
11162 defsubr (&Scommand_error_default_function);
11163 defsubr (&Stop_level);
11164 defsubr (&Sdiscard_input);
11165 defsubr (&Sopen_dribble_file);
11166 defsubr (&Sset_input_interrupt_mode);
11167 defsubr (&Sset_output_flow_control);
11168 defsubr (&Sset_input_meta_mode);
11169 defsubr (&Sset_quit_char);
11170 defsubr (&Sset_input_mode);
11171 defsubr (&Scurrent_input_mode);
11172 defsubr (&Sposn_at_point);
11173 defsubr (&Sposn_at_x_y);
11174
11175 DEFVAR_LISP ("last-command-event", last_command_event,
11176 doc: /* Last input event that was part of a command. */);
11177
11178 DEFVAR_LISP ("last-nonmenu-event", last_nonmenu_event,
11179 doc: /* Last input event in a command, except for mouse menu events.
11180 Mouse menus give back keys that don't look like mouse events;
11181 this variable holds the actual mouse event that led to the menu,
11182 so that you can determine whether the command was run by mouse or not. */);
11183
11184 DEFVAR_LISP ("last-input-event", last_input_event,
11185 doc: /* Last input event. */);
11186
11187 DEFVAR_LISP ("unread-command-events", Vunread_command_events,
11188 doc: /* List of events to be read as the command input.
11189 These events are processed first, before actual keyboard input.
11190 Events read from this list are not normally added to `this-command-keys',
11191 as they will already have been added once as they were read for the first time.
11192 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11193 Vunread_command_events = Qnil;
11194
11195 DEFVAR_LISP ("unread-post-input-method-events", Vunread_post_input_method_events,
11196 doc: /* List of events to be processed as input by input methods.
11197 These events are processed before `unread-command-events'
11198 and actual keyboard input, but are not given to `input-method-function'. */);
11199 Vunread_post_input_method_events = Qnil;
11200
11201 DEFVAR_LISP ("unread-input-method-events", Vunread_input_method_events,
11202 doc: /* List of events to be processed as input by input methods.
11203 These events are processed after `unread-command-events', but
11204 before actual keyboard input.
11205 If there's an active input method, the events are given to
11206 `input-method-function'. */);
11207 Vunread_input_method_events = Qnil;
11208
11209 DEFVAR_LISP ("meta-prefix-char", meta_prefix_char,
11210 doc: /* Meta-prefix character code.
11211 Meta-foo as command input turns into this character followed by foo. */);
11212 XSETINT (meta_prefix_char, 033);
11213
11214 DEFVAR_KBOARD ("last-command", Vlast_command,
11215 doc: /* The last command executed.
11216 Normally a symbol with a function definition, but can be whatever was found
11217 in the keymap, or whatever the variable `this-command' was set to by that
11218 command.
11219
11220 The value `mode-exit' is special; it means that the previous command
11221 read an event that told it to exit, and it did so and unread that event.
11222 In other words, the present command is the event that made the previous
11223 command exit.
11224
11225 The value `kill-region' is special; it means that the previous command
11226 was a kill command.
11227
11228 `last-command' has a separate binding for each terminal device.
11229 See Info node `(elisp)Multiple Terminals'. */);
11230
11231 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11232 doc: /* Same as `last-command', but never altered by Lisp code.
11233 Taken from the previous value of `real-this-command'. */);
11234
11235 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command,
11236 doc: /* Last command that may be repeated.
11237 The last command executed that was not bound to an input event.
11238 This is the command `repeat' will try to repeat.
11239 Taken from a previous value of `real-this-command'. */);
11240
11241 DEFVAR_LISP ("this-command", Vthis_command,
11242 doc: /* The command now being executed.
11243 The command can set this variable; whatever is put here
11244 will be in `last-command' during the following command. */);
11245 Vthis_command = Qnil;
11246
11247 DEFVAR_LISP ("real-this-command", Vreal_this_command,
11248 doc: /* This is like `this-command', except that commands should never modify it. */);
11249 Vreal_this_command = Qnil;
11250
11251 DEFVAR_LISP ("this-command-keys-shift-translated",
11252 Vthis_command_keys_shift_translated,
11253 doc: /* Non-nil if the key sequence activating this command was shift-translated.
11254 Shift-translation occurs when there is no binding for the key sequence
11255 as entered, but a binding was found by changing an upper-case letter
11256 to lower-case, or a shifted function key to an unshifted one. */);
11257 Vthis_command_keys_shift_translated = Qnil;
11258
11259 DEFVAR_LISP ("this-original-command", Vthis_original_command,
11260 doc: /* The command bound to the current key sequence before remapping.
11261 It equals `this-command' if the original command was not remapped through
11262 any of the active keymaps. Otherwise, the value of `this-command' is the
11263 result of looking up the original command in the active keymaps. */);
11264 Vthis_original_command = Qnil;
11265
11266 DEFVAR_INT ("auto-save-interval", auto_save_interval,
11267 doc: /* Number of input events between auto-saves.
11268 Zero means disable autosaving due to number of characters typed. */);
11269 auto_save_interval = 300;
11270
11271 DEFVAR_LISP ("auto-save-timeout", Vauto_save_timeout,
11272 doc: /* Number of seconds idle time before auto-save.
11273 Zero or nil means disable auto-saving due to idleness.
11274 After auto-saving due to this many seconds of idle time,
11275 Emacs also does a garbage collection if that seems to be warranted. */);
11276 XSETFASTINT (Vauto_save_timeout, 30);
11277
11278 DEFVAR_LISP ("echo-keystrokes", Vecho_keystrokes,
11279 doc: /* Nonzero means echo unfinished commands after this many seconds of pause.
11280 The value may be integer or floating point.
11281 If the value is zero, don't echo at all. */);
11282 Vecho_keystrokes = make_number (1);
11283
11284 DEFVAR_INT ("polling-period", polling_period,
11285 doc: /* Interval between polling for input during Lisp execution.
11286 The reason for polling is to make C-g work to stop a running program.
11287 Polling is needed only when using X windows and SIGIO does not work.
11288 Polling is automatically disabled in all other cases. */);
11289 polling_period = 2;
11290
11291 DEFVAR_LISP ("double-click-time", Vdouble_click_time,
11292 doc: /* Maximum time between mouse clicks to make a double-click.
11293 Measured in milliseconds. The value nil means disable double-click
11294 recognition; t means double-clicks have no time limit and are detected
11295 by position only. */);
11296 Vdouble_click_time = make_number (500);
11297
11298 DEFVAR_INT ("double-click-fuzz", double_click_fuzz,
11299 doc: /* Maximum mouse movement between clicks to make a double-click.
11300 On window-system frames, value is the number of pixels the mouse may have
11301 moved horizontally or vertically between two clicks to make a double-click.
11302 On non window-system frames, value is interpreted in units of 1/8 characters
11303 instead of pixels.
11304
11305 This variable is also the threshold for motion of the mouse
11306 to count as a drag. */);
11307 double_click_fuzz = 3;
11308
11309 DEFVAR_INT ("num-input-keys", num_input_keys,
11310 doc: /* Number of complete key sequences read as input so far.
11311 This includes key sequences read from keyboard macros.
11312 The number is effectively the number of interactive command invocations. */);
11313 num_input_keys = 0;
11314
11315 DEFVAR_INT ("num-nonmacro-input-events", num_nonmacro_input_events,
11316 doc: /* Number of input events read from the keyboard so far.
11317 This does not include events generated by keyboard macros. */);
11318 num_nonmacro_input_events = 0;
11319
11320 DEFVAR_LISP ("last-event-frame", Vlast_event_frame,
11321 doc: /* The frame in which the most recently read event occurred.
11322 If the last event came from a keyboard macro, this is set to `macro'. */);
11323 Vlast_event_frame = Qnil;
11324
11325 /* This variable is set up in sysdep.c. */
11326 DEFVAR_LISP ("tty-erase-char", Vtty_erase_char,
11327 doc: /* The ERASE character as set by the user with stty. */);
11328
11329 DEFVAR_LISP ("help-char", Vhelp_char,
11330 doc: /* Character to recognize as meaning Help.
11331 When it is read, do `(eval help-form)', and display result if it's a string.
11332 If the value of `help-form' is nil, this char can be read normally. */);
11333 XSETINT (Vhelp_char, Ctl ('H'));
11334
11335 DEFVAR_LISP ("help-event-list", Vhelp_event_list,
11336 doc: /* List of input events to recognize as meaning Help.
11337 These work just like the value of `help-char' (see that). */);
11338 Vhelp_event_list = Qnil;
11339
11340 DEFVAR_LISP ("help-form", Vhelp_form,
11341 doc: /* Form to execute when character `help-char' is read.
11342 If the form returns a string, that string is displayed.
11343 If `help-form' is nil, the help char is not recognized. */);
11344 Vhelp_form = Qnil;
11345
11346 DEFVAR_LISP ("prefix-help-command", Vprefix_help_command,
11347 doc: /* Command to run when `help-char' character follows a prefix key.
11348 This command is used only when there is no actual binding
11349 for that character after that prefix key. */);
11350 Vprefix_help_command = Qnil;
11351
11352 DEFVAR_LISP ("top-level", Vtop_level,
11353 doc: /* Form to evaluate when Emacs starts up.
11354 Useful to set before you dump a modified Emacs. */);
11355 Vtop_level = Qnil;
11356 XSYMBOL (Qtop_level)->declared_special = false;
11357
11358 DEFVAR_KBOARD ("keyboard-translate-table", Vkeyboard_translate_table,
11359 doc: /* Translate table for local keyboard input, or nil.
11360 If non-nil, the value should be a char-table. Each character read
11361 from the keyboard is looked up in this char-table. If the value found
11362 there is non-nil, then it is used instead of the actual input character.
11363
11364 The value can also be a string or vector, but this is considered obsolete.
11365 If it is a string or vector of length N, character codes N and up are left
11366 untranslated. In a vector, an element which is nil means "no translation".
11367
11368 This is applied to the characters supplied to input methods, not their
11369 output. See also `translation-table-for-input'.
11370
11371 This variable has a separate binding for each terminal.
11372 See Info node `(elisp)Multiple Terminals'. */);
11373
11374 DEFVAR_BOOL ("cannot-suspend", cannot_suspend,
11375 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11376 (Even if the operating system has support for stopping a process.) */);
11377 cannot_suspend = false;
11378
11379 DEFVAR_BOOL ("menu-prompting", menu_prompting,
11380 doc: /* Non-nil means prompt with menus when appropriate.
11381 This is done when reading from a keymap that has a prompt string,
11382 for elements that have prompt strings.
11383 The menu is displayed on the screen
11384 if X menus were enabled at configuration
11385 time and the previous event was a mouse click prefix key.
11386 Otherwise, menu prompting uses the echo area. */);
11387 menu_prompting = true;
11388
11389 DEFVAR_LISP ("menu-prompt-more-char", menu_prompt_more_char,
11390 doc: /* Character to see next line of menu prompt.
11391 Type this character while in a menu prompt to rotate around the lines of it. */);
11392 XSETINT (menu_prompt_more_char, ' ');
11393
11394 DEFVAR_INT ("extra-keyboard-modifiers", extra_keyboard_modifiers,
11395 doc: /* A mask of additional modifier keys to use with every keyboard character.
11396 Emacs applies the modifiers of the character stored here to each keyboard
11397 character it reads. For example, after evaluating the expression
11398 (setq extra-keyboard-modifiers ?\\C-x)
11399 all input characters will have the control modifier applied to them.
11400
11401 Note that the character ?\\C-@, equivalent to the integer zero, does
11402 not count as a control character; rather, it counts as a character
11403 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11404 cancels any modification. */);
11405 extra_keyboard_modifiers = 0;
11406
11407 DEFSYM (Qdeactivate_mark, "deactivate-mark");
11408 DEFVAR_LISP ("deactivate-mark", Vdeactivate_mark,
11409 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11410 The command loop sets this to nil before each command,
11411 and tests the value when the command returns.
11412 Buffer modification stores t in this variable. */);
11413 Vdeactivate_mark = Qnil;
11414 Fmake_variable_buffer_local (Qdeactivate_mark);
11415
11416 DEFVAR_LISP ("pre-command-hook", Vpre_command_hook,
11417 doc: /* Normal hook run before each command is executed.
11418 If an unhandled error happens in running this hook,
11419 the function in which the error occurred is unconditionally removed, since
11420 otherwise the error might happen repeatedly and make Emacs nonfunctional.
11421
11422 See also `post-command-hook'. */);
11423 Vpre_command_hook = Qnil;
11424
11425 DEFVAR_LISP ("post-command-hook", Vpost_command_hook,
11426 doc: /* Normal hook run after each command is executed.
11427 If an unhandled error happens in running this hook,
11428 the function in which the error occurred is unconditionally removed, since
11429 otherwise the error might happen repeatedly and make Emacs nonfunctional.
11430
11431 It is a bad idea to use this hook for expensive processing. If
11432 unavoidable, wrap your code in `(while-no-input (redisplay) CODE)' to
11433 avoid making Emacs unresponsive while the user types.
11434
11435 See also `pre-command-hook'. */);
11436 Vpost_command_hook = Qnil;
11437
11438 #if 0
11439 DEFVAR_LISP ("echo-area-clear-hook", ...,
11440 doc: /* Normal hook run when clearing the echo area. */);
11441 #endif
11442 DEFSYM (Qecho_area_clear_hook, "echo-area-clear-hook");
11443 Fset (Qecho_area_clear_hook, Qnil);
11444
11445 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", Vlucid_menu_bar_dirty_flag,
11446 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11447 Vlucid_menu_bar_dirty_flag = Qnil;
11448
11449 DEFVAR_LISP ("menu-bar-final-items", Vmenu_bar_final_items,
11450 doc: /* List of menu bar items to move to the end of the menu bar.
11451 The elements of the list are event types that may have menu bar bindings. */);
11452 Vmenu_bar_final_items = Qnil;
11453
11454 DEFVAR_LISP ("tool-bar-separator-image-expression", Vtool_bar_separator_image_expression,
11455 doc: /* Expression evaluating to the image spec for a tool-bar separator.
11456 This is used internally by graphical displays that do not render
11457 tool-bar separators natively. Otherwise it is unused (e.g. on GTK). */);
11458 Vtool_bar_separator_image_expression = Qnil;
11459
11460 DEFVAR_KBOARD ("overriding-terminal-local-map",
11461 Voverriding_terminal_local_map,
11462 doc: /* Per-terminal keymap that takes precedence over all other keymaps.
11463 This variable is intended to let commands such as `universal-argument'
11464 set up a different keymap for reading the next command.
11465
11466 `overriding-terminal-local-map' has a separate binding for each
11467 terminal device. See Info node `(elisp)Multiple Terminals'. */);
11468
11469 DEFVAR_LISP ("overriding-local-map", Voverriding_local_map,
11470 doc: /* Keymap that replaces (overrides) local keymaps.
11471 If this variable is non-nil, Emacs looks up key bindings in this
11472 keymap INSTEAD OF the keymap char property, minor mode maps, and the
11473 buffer's local map. Hence, the only active keymaps would be
11474 `overriding-terminal-local-map', this keymap, and `global-keymap', in
11475 order of precedence. */);
11476 Voverriding_local_map = Qnil;
11477
11478 DEFVAR_LISP ("overriding-local-map-menu-flag", Voverriding_local_map_menu_flag,
11479 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11480 Otherwise, the menu bar continues to reflect the buffer's local map
11481 and the minor mode maps regardless of `overriding-local-map'. */);
11482 Voverriding_local_map_menu_flag = Qnil;
11483
11484 DEFVAR_LISP ("special-event-map", Vspecial_event_map,
11485 doc: /* Keymap defining bindings for special events to execute at low level. */);
11486 Vspecial_event_map = list1 (Qkeymap);
11487
11488 DEFVAR_LISP ("track-mouse", do_mouse_tracking,
11489 doc: /* Non-nil means generate motion events for mouse motion. */);
11490
11491 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11492 doc: /* Alist of system-specific X windows key symbols.
11493 Each element should have the form (N . SYMBOL) where N is the
11494 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11495 and SYMBOL is its name.
11496
11497 `system-key-alist' has a separate binding for each terminal device.
11498 See Info node `(elisp)Multiple Terminals'. */);
11499
11500 DEFVAR_KBOARD ("local-function-key-map", Vlocal_function_key_map,
11501 doc: /* Keymap that translates key sequences to key sequences during input.
11502 This is used mainly for mapping key sequences into some preferred
11503 key events (symbols).
11504
11505 The `read-key-sequence' function replaces any subsequence bound by
11506 `local-function-key-map' with its binding. More precisely, when the
11507 active keymaps have no binding for the current key sequence but
11508 `local-function-key-map' binds a suffix of the sequence to a vector or
11509 string, `read-key-sequence' replaces the matching suffix with its
11510 binding, and continues with the new sequence.
11511
11512 If the binding is a function, it is called with one argument (the prompt)
11513 and its return value (a key sequence) is used.
11514
11515 The events that come from bindings in `local-function-key-map' are not
11516 themselves looked up in `local-function-key-map'.
11517
11518 For example, suppose `local-function-key-map' binds `ESC O P' to [f1].
11519 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing
11520 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix key,
11521 typing `ESC O P x' would return [f1 x].
11522
11523 `local-function-key-map' has a separate binding for each terminal
11524 device. See Info node `(elisp)Multiple Terminals'. If you need to
11525 define a binding on all terminals, change `function-key-map'
11526 instead. Initially, `local-function-key-map' is an empty keymap that
11527 has `function-key-map' as its parent on all terminal devices. */);
11528
11529 DEFVAR_KBOARD ("input-decode-map", Vinput_decode_map,
11530 doc: /* Keymap that decodes input escape sequences.
11531 This is used mainly for mapping ASCII function key sequences into
11532 real Emacs function key events (symbols).
11533
11534 The `read-key-sequence' function replaces any subsequence bound by
11535 `input-decode-map' with its binding. Contrary to `function-key-map',
11536 this map applies its rebinding regardless of the presence of an ordinary
11537 binding. So it is more like `key-translation-map' except that it applies
11538 before `function-key-map' rather than after.
11539
11540 If the binding is a function, it is called with one argument (the prompt)
11541 and its return value (a key sequence) is used.
11542
11543 The events that come from bindings in `input-decode-map' are not
11544 themselves looked up in `input-decode-map'. */);
11545
11546 DEFVAR_LISP ("function-key-map", Vfunction_key_map,
11547 doc: /* The parent keymap of all `local-function-key-map' instances.
11548 Function key definitions that apply to all terminal devices should go
11549 here. If a mapping is defined in both the current
11550 `local-function-key-map' binding and this variable, then the local
11551 definition will take precedence. */);
11552 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
11553
11554 DEFVAR_LISP ("key-translation-map", Vkey_translation_map,
11555 doc: /* Keymap of key translations that can override keymaps.
11556 This keymap works like `input-decode-map', but comes after `function-key-map'.
11557 Another difference is that it is global rather than terminal-local. */);
11558 Vkey_translation_map = Fmake_sparse_keymap (Qnil);
11559
11560 DEFVAR_LISP ("deferred-action-list", Vdeferred_action_list,
11561 doc: /* List of deferred actions to be performed at a later time.
11562 The precise format isn't relevant here; we just check whether it is nil. */);
11563 Vdeferred_action_list = Qnil;
11564
11565 DEFVAR_LISP ("deferred-action-function", Vdeferred_action_function,
11566 doc: /* Function to call to handle deferred actions, after each command.
11567 This function is called with no arguments after each command
11568 whenever `deferred-action-list' is non-nil. */);
11569 Vdeferred_action_function = Qnil;
11570
11571 DEFVAR_LISP ("delayed-warnings-list", Vdelayed_warnings_list,
11572 doc: /* List of warnings to be displayed after this command.
11573 Each element must be a list (TYPE MESSAGE [LEVEL [BUFFER-NAME]]),
11574 as per the args of `display-warning' (which see).
11575 If this variable is non-nil, `delayed-warnings-hook' will be run
11576 immediately after running `post-command-hook'. */);
11577 Vdelayed_warnings_list = Qnil;
11578
11579 DEFVAR_LISP ("timer-list", Vtimer_list,
11580 doc: /* List of active absolute time timers in order of increasing time. */);
11581 Vtimer_list = Qnil;
11582
11583 DEFVAR_LISP ("timer-idle-list", Vtimer_idle_list,
11584 doc: /* List of active idle-time timers in order of increasing time. */);
11585 Vtimer_idle_list = Qnil;
11586
11587 DEFVAR_LISP ("input-method-function", Vinput_method_function,
11588 doc: /* If non-nil, the function that implements the current input method.
11589 It's called with one argument, a printing character that was just read.
11590 (That means a character with code 040...0176.)
11591 Typically this function uses `read-event' to read additional events.
11592 When it does so, it should first bind `input-method-function' to nil
11593 so it will not be called recursively.
11594
11595 The function should return a list of zero or more events
11596 to be used as input. If it wants to put back some events
11597 to be reconsidered, separately, by the input method,
11598 it can add them to the beginning of `unread-command-events'.
11599
11600 The input method function can find in `input-method-previous-message'
11601 the previous echo area message.
11602
11603 The input method function should refer to the variables
11604 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11605 for guidance on what to do. */);
11606 Vinput_method_function = Qlist;
11607
11608 DEFVAR_LISP ("input-method-previous-message",
11609 Vinput_method_previous_message,
11610 doc: /* When `input-method-function' is called, hold the previous echo area message.
11611 This variable exists because `read-event' clears the echo area
11612 before running the input method. It is nil if there was no message. */);
11613 Vinput_method_previous_message = Qnil;
11614
11615 DEFVAR_LISP ("show-help-function", Vshow_help_function,
11616 doc: /* If non-nil, the function that implements the display of help.
11617 It's called with one argument, the help string to display. */);
11618 Vshow_help_function = Qnil;
11619
11620 DEFVAR_LISP ("disable-point-adjustment", Vdisable_point_adjustment,
11621 doc: /* If non-nil, suppress point adjustment after executing a command.
11622
11623 After a command is executed, if point is moved into a region that has
11624 special properties (e.g. composition, display), we adjust point to
11625 the boundary of the region. But, when a command sets this variable to
11626 non-nil, we suppress the point adjustment.
11627
11628 This variable is set to nil before reading a command, and is checked
11629 just after executing the command. */);
11630 Vdisable_point_adjustment = Qnil;
11631
11632 DEFVAR_LISP ("global-disable-point-adjustment",
11633 Vglobal_disable_point_adjustment,
11634 doc: /* If non-nil, always suppress point adjustment.
11635
11636 The default value is nil, in which case, point adjustment are
11637 suppressed only after special commands that set
11638 `disable-point-adjustment' (which see) to non-nil. */);
11639 Vglobal_disable_point_adjustment = Qnil;
11640
11641 DEFVAR_LISP ("minibuffer-message-timeout", Vminibuffer_message_timeout,
11642 doc: /* How long to display an echo-area message when the minibuffer is active.
11643 If the value is not a number, such messages don't time out. */);
11644 Vminibuffer_message_timeout = make_number (2);
11645
11646 DEFVAR_LISP ("throw-on-input", Vthrow_on_input,
11647 doc: /* If non-nil, any keyboard input throws to this symbol.
11648 The value of that variable is passed to `quit-flag' and later causes a
11649 peculiar kind of quitting. */);
11650 Vthrow_on_input = Qnil;
11651
11652 DEFVAR_LISP ("command-error-function", Vcommand_error_function,
11653 doc: /* Function to output error messages.
11654 Called with three arguments:
11655 - the error data, a list of the form (SIGNALED-CONDITION . SIGNAL-DATA)
11656 such as what `condition-case' would bind its variable to,
11657 - the context (a string which normally goes at the start of the message),
11658 - the Lisp function within which the error was signaled. */);
11659 Vcommand_error_function = intern ("command-error-default-function");
11660
11661 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
11662 Venable_disabled_menus_and_buttons,
11663 doc: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
11664
11665 Help functions bind this to allow help on disabled menu items
11666 and tool-bar buttons. */);
11667 Venable_disabled_menus_and_buttons = Qnil;
11668
11669 DEFVAR_LISP ("select-active-regions",
11670 Vselect_active_regions,
11671 doc: /* If non-nil, an active region automatically sets the primary selection.
11672 If the value is `only', only temporarily active regions (usually made
11673 by mouse-dragging or shift-selection) set the window selection.
11674
11675 This takes effect only when Transient Mark mode is enabled. */);
11676 Vselect_active_regions = Qt;
11677
11678 DEFVAR_LISP ("saved-region-selection",
11679 Vsaved_region_selection,
11680 doc: /* Contents of active region prior to buffer modification.
11681 If `select-active-regions' is non-nil, Emacs sets this to the
11682 text in the region before modifying the buffer. The next call to
11683 the function `deactivate-mark' uses this to set the window selection. */);
11684 Vsaved_region_selection = Qnil;
11685
11686 DEFVAR_LISP ("selection-inhibit-update-commands",
11687 Vselection_inhibit_update_commands,
11688 doc: /* List of commands which should not update the selection.
11689 Normally, if `select-active-regions' is non-nil and the mark remains
11690 active after a command (i.e. the mark was not deactivated), the Emacs
11691 command loop sets the selection to the text in the region. However,
11692 if the command is in this list, the selection is not updated. */);
11693 Vselection_inhibit_update_commands
11694 = list2 (Qhandle_switch_frame, Qhandle_select_window);
11695
11696 DEFVAR_LISP ("debug-on-event",
11697 Vdebug_on_event,
11698 doc: /* Enter debugger on this event. When Emacs
11699 receives the special event specified by this variable, it will try to
11700 break into the debugger as soon as possible instead of processing the
11701 event normally through `special-event-map'.
11702
11703 Currently, the only supported values for this
11704 variable are `sigusr1' and `sigusr2'. */);
11705 Vdebug_on_event = intern_c_string ("sigusr2");
11706
11707 DEFVAR_BOOL ("attempt-stack-overflow-recovery",
11708 attempt_stack_overflow_recovery,
11709 doc: /* If non-nil, attempt to recover from C stack
11710 overflow. This recovery is unsafe and may lead to deadlocks or data
11711 corruption, but it usually works and may preserve modified buffers
11712 that would otherwise be lost. If nil, treat stack overflow like any
11713 other kind of crash. */);
11714 attempt_stack_overflow_recovery = true;
11715
11716 DEFVAR_BOOL ("attempt-orderly-shutdown-on-fatal-signal",
11717 attempt_orderly_shutdown_on_fatal_signal,
11718 doc: /* If non-nil, attempt to perform an orderly
11719 shutdown when Emacs receives a fatal signal (e.g., a crash).
11720 This cleanup is unsafe and may lead to deadlocks or data corruption,
11721 but it usually works and may preserve modified buffers that would
11722 otherwise be lost. If nil, crash immediately in response to fatal
11723 signals. */);
11724 attempt_orderly_shutdown_on_fatal_signal = true;
11725
11726 /* Create the initial keyboard. Qt means 'unset'. */
11727 initial_kboard = allocate_kboard (Qt);
11728 }
11729
11730 void
11731 keys_of_keyboard (void)
11732 {
11733 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11734 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11735 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11736 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11737 initial_define_key (meta_map, 'x', "execute-extended-command");
11738
11739 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11740 "handle-delete-frame");
11741 initial_define_lispy_key (Vspecial_event_map, "ns-put-working-text",
11742 "ns-put-working-text");
11743 initial_define_lispy_key (Vspecial_event_map, "ns-unput-working-text",
11744 "ns-unput-working-text");
11745 /* Here we used to use `ignore-event' which would simple set prefix-arg to
11746 current-prefix-arg, as is done in `handle-switch-frame'.
11747 But `handle-switch-frame is not run from the special-map.
11748 Commands from that map are run in a special way that automatically
11749 preserves the prefix-arg. Restoring the prefix arg here is not just
11750 redundant but harmful:
11751 - C-u C-x v =
11752 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
11753 - after the first prompt, the exit-minibuffer-hook is run which may
11754 iconify a frame and thus push a `iconify-frame' event.
11755 - after running exit-minibuffer-hook, current-prefix-arg is
11756 restored to the non-nil value it had before the prompt.
11757 - we enter the second prompt.
11758 current-prefix-arg is non-nil, prefix-arg is nil.
11759 - before running the first real event, we run the special iconify-frame
11760 event, but we pass the `special' arg to command-execute so
11761 current-prefix-arg and prefix-arg are left untouched.
11762 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
11763 - the next key event will have a spuriously non-nil current-prefix-arg. */
11764 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11765 "ignore");
11766 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11767 "ignore");
11768 /* Handling it at such a low-level causes read_key_sequence to get
11769 * confused because it doesn't realize that the current_buffer was
11770 * changed by read_char.
11771 *
11772 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11773 * "handle-select-window"); */
11774 initial_define_lispy_key (Vspecial_event_map, "save-session",
11775 "handle-save-session");
11776
11777 #ifdef HAVE_DBUS
11778 /* Define a special event which is raised for dbus callback
11779 functions. */
11780 initial_define_lispy_key (Vspecial_event_map, "dbus-event",
11781 "dbus-handle-event");
11782 #endif
11783
11784 #ifdef USE_FILE_NOTIFY
11785 /* Define a special event which is raised for notification callback
11786 functions. */
11787 initial_define_lispy_key (Vspecial_event_map, "file-notify",
11788 "file-notify-handle-event");
11789 #endif /* USE_FILE_NOTIFY */
11790
11791 initial_define_lispy_key (Vspecial_event_map, "config-changed-event",
11792 "ignore");
11793 #if defined (WINDOWSNT)
11794 initial_define_lispy_key (Vspecial_event_map, "language-change",
11795 "ignore");
11796 #endif
11797 initial_define_lispy_key (Vspecial_event_map, "focus-in",
11798 "handle-focus-in");
11799 initial_define_lispy_key (Vspecial_event_map, "focus-out",
11800 "handle-focus-out");
11801 }
11802
11803 /* Mark the pointers in the kboard objects.
11804 Called by Fgarbage_collect. */
11805 void
11806 mark_kboards (void)
11807 {
11808 KBOARD *kb;
11809 Lisp_Object *p;
11810 for (kb = all_kboards; kb; kb = kb->next_kboard)
11811 {
11812 if (kb->kbd_macro_buffer)
11813 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11814 mark_object (*p);
11815 mark_object (KVAR (kb, Voverriding_terminal_local_map));
11816 mark_object (KVAR (kb, Vlast_command));
11817 mark_object (KVAR (kb, Vreal_last_command));
11818 mark_object (KVAR (kb, Vkeyboard_translate_table));
11819 mark_object (KVAR (kb, Vlast_repeatable_command));
11820 mark_object (KVAR (kb, Vprefix_arg));
11821 mark_object (KVAR (kb, Vlast_prefix_arg));
11822 mark_object (KVAR (kb, kbd_queue));
11823 mark_object (KVAR (kb, defining_kbd_macro));
11824 mark_object (KVAR (kb, Vlast_kbd_macro));
11825 mark_object (KVAR (kb, Vsystem_key_alist));
11826 mark_object (KVAR (kb, system_key_syms));
11827 mark_object (KVAR (kb, Vwindow_system));
11828 mark_object (KVAR (kb, Vinput_decode_map));
11829 mark_object (KVAR (kb, Vlocal_function_key_map));
11830 mark_object (KVAR (kb, Vdefault_minibuffer_frame));
11831 mark_object (KVAR (kb, echo_string));
11832 mark_object (KVAR (kb, echo_prompt));
11833 }
11834 {
11835 union buffered_input_event *event;
11836 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11837 {
11838 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11839 event = kbd_buffer;
11840 /* These two special event types has no Lisp_Objects to mark. */
11841 if (event->kind != SELECTION_REQUEST_EVENT
11842 && event->kind != SELECTION_CLEAR_EVENT)
11843 {
11844 mark_object (event->ie.x);
11845 mark_object (event->ie.y);
11846 mark_object (event->ie.frame_or_window);
11847 mark_object (event->ie.arg);
11848 }
11849 }
11850 }
11851 }