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