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