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