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