]> code.delx.au - gnu-emacs/blob - src/keyboard.c
(prev_read): New static variable.
[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 /* This remembers the last number of characters read, so we could
6560 avoid zeroing out the whole struct input_event buf and instead zero
6561 out only its used slots. */
6562 static int prev_read = KBD_BUFFER_SIZE;
6563
6564 /* Read any terminal input already buffered up by the system
6565 into the kbd_buffer, but do not wait.
6566
6567 EXPECTED should be nonzero if the caller knows there is some input.
6568
6569 Except on VMS, all input is read by this function.
6570 If interrupt_input is nonzero, this function MUST be called
6571 only when SIGIO is blocked.
6572
6573 Returns the number of keyboard chars read, or -1 meaning
6574 this is a bad time to try to read input. */
6575
6576 static int
6577 read_avail_input (expected)
6578 int expected;
6579 {
6580 struct input_event buf[KBD_BUFFER_SIZE];
6581 register int i;
6582 int nread;
6583
6584 for (i = 0; i < prev_read; i++)
6585 EVENT_INIT (buf[i]);
6586
6587 if (read_socket_hook)
6588 /* No need for FIONREAD or fcntl; just say don't wait. */
6589 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE, expected);
6590 else
6591 {
6592 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6593 the kbd_buffer can really hold. That may prevent loss
6594 of characters on some systems when input is stuffed at us. */
6595 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6596 int n_to_read;
6597
6598 /* Determine how many characters we should *try* to read. */
6599 #ifdef WINDOWSNT
6600 return (prev_read = 0);
6601 #else /* not WINDOWSNT */
6602 #ifdef MSDOS
6603 n_to_read = dos_keysns ();
6604 if (n_to_read == 0)
6605 return (prev_read = 0);
6606 #else /* not MSDOS */
6607 #ifdef FIONREAD
6608 /* Find out how much input is available. */
6609 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6610 /* Formerly simply reported no input, but that sometimes led to
6611 a failure of Emacs to terminate.
6612 SIGHUP seems appropriate if we can't reach the terminal. */
6613 /* ??? Is it really right to send the signal just to this process
6614 rather than to the whole process group?
6615 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6616 {
6617 if (! noninteractive)
6618 kill (getpid (), SIGHUP);
6619 else
6620 n_to_read = 0;
6621 }
6622 if (n_to_read == 0)
6623 return (prev_read = 0);
6624 if (n_to_read > sizeof cbuf)
6625 n_to_read = sizeof cbuf;
6626 #else /* no FIONREAD */
6627 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6628 /* Read some input if available, but don't wait. */
6629 n_to_read = sizeof cbuf;
6630 fcntl (input_fd, F_SETFL, O_NDELAY);
6631 #else
6632 you lose;
6633 #endif
6634 #endif
6635 #endif /* not MSDOS */
6636 #endif /* not WINDOWSNT */
6637
6638 /* Now read; for one reason or another, this will not block.
6639 NREAD is set to the number of chars read. */
6640 do
6641 {
6642 #ifdef MSDOS
6643 cbuf[0] = dos_keyread ();
6644 nread = 1;
6645 #else
6646 nread = emacs_read (input_fd, cbuf, n_to_read);
6647 #endif
6648 /* POSIX infers that processes which are not in the session leader's
6649 process group won't get SIGHUP's at logout time. BSDI adheres to
6650 this part standard and returns -1 from read (0) with errno==EIO
6651 when the control tty is taken away.
6652 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6653 if (nread == -1 && errno == EIO)
6654 kill (0, SIGHUP);
6655 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6656 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6657 This looks incorrect, but it isn't, because _BSD causes
6658 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6659 and that causes a value other than 0 when there is no input. */
6660 if (nread == 0)
6661 kill (0, SIGHUP);
6662 #endif
6663 }
6664 while (
6665 /* We used to retry the read if it was interrupted.
6666 But this does the wrong thing when O_NDELAY causes
6667 an EAGAIN error. Does anybody know of a situation
6668 where a retry is actually needed? */
6669 #if 0
6670 nread < 0 && (errno == EAGAIN
6671 #ifdef EFAULT
6672 || errno == EFAULT
6673 #endif
6674 #ifdef EBADSLT
6675 || errno == EBADSLT
6676 #endif
6677 )
6678 #else
6679 0
6680 #endif
6681 );
6682
6683 #ifndef FIONREAD
6684 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6685 fcntl (input_fd, F_SETFL, 0);
6686 #endif /* USG or DGUX or CYGWIN */
6687 #endif /* no FIONREAD */
6688 for (i = 0; i < nread; i++)
6689 {
6690 buf[i].kind = ASCII_KEYSTROKE_EVENT;
6691 buf[i].modifiers = 0;
6692 if (meta_key == 1 && (cbuf[i] & 0x80))
6693 buf[i].modifiers = meta_modifier;
6694 if (meta_key != 2)
6695 cbuf[i] &= ~0x80;
6696
6697 buf[i].code = cbuf[i];
6698 buf[i].frame_or_window = selected_frame;
6699 buf[i].arg = Qnil;
6700 }
6701 }
6702
6703 /* Scan the chars for C-g and store them in kbd_buffer. */
6704 for (i = 0; i < nread; i++)
6705 {
6706 kbd_buffer_store_event (&buf[i]);
6707 /* Don't look at input that follows a C-g too closely.
6708 This reduces lossage due to autorepeat on C-g. */
6709 if (buf[i].kind == ASCII_KEYSTROKE_EVENT
6710 && buf[i].code == quit_char)
6711 break;
6712 }
6713
6714 return (prev_read = nread);
6715 }
6716 #endif /* not VMS */
6717 \f
6718 void
6719 handle_async_input ()
6720 {
6721 #ifdef BSD4_1
6722 extern int select_alarmed;
6723 #endif
6724 interrupt_input_pending = 0;
6725
6726 while (1)
6727 {
6728 int nread;
6729 nread = read_avail_input (1);
6730 /* -1 means it's not ok to read the input now.
6731 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6732 0 means there was no keyboard input available. */
6733 if (nread <= 0)
6734 break;
6735
6736 #ifdef BSD4_1
6737 select_alarmed = 1; /* Force the select emulator back to life */
6738 #endif
6739 }
6740 }
6741
6742 #ifdef SIGIO /* for entire page */
6743 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6744
6745 static SIGTYPE
6746 input_available_signal (signo)
6747 int signo;
6748 {
6749 /* Must preserve main program's value of errno. */
6750 int old_errno = errno;
6751
6752 #if defined (USG) && !defined (POSIX_SIGNALS)
6753 /* USG systems forget handlers when they are used;
6754 must reestablish each time */
6755 signal (signo, input_available_signal);
6756 #endif /* USG */
6757
6758 #ifdef BSD4_1
6759 sigisheld (SIGIO);
6760 #endif
6761
6762 if (input_available_clear_time)
6763 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6764
6765 #ifdef SYNC_INPUT
6766 interrupt_input_pending = 1;
6767 #else
6768 handle_async_input ();
6769 #endif
6770
6771 #ifdef BSD4_1
6772 sigfree ();
6773 #endif
6774 errno = old_errno;
6775 }
6776 #endif /* SIGIO */
6777
6778 /* Send ourselves a SIGIO.
6779
6780 This function exists so that the UNBLOCK_INPUT macro in
6781 blockinput.h can have some way to take care of input we put off
6782 dealing with, without assuming that every file which uses
6783 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6784 void
6785 reinvoke_input_signal ()
6786 {
6787 #ifdef SIGIO
6788 handle_async_input ();
6789 #endif
6790 }
6791
6792
6793 \f
6794 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
6795 static Lisp_Object menu_bar_one_keymap_changed_items;
6796
6797 /* These variables hold the vector under construction within
6798 menu_bar_items and its subroutines, and the current index
6799 for storing into that vector. */
6800 static Lisp_Object menu_bar_items_vector;
6801 static int menu_bar_items_index;
6802
6803 /* Return a vector of menu items for a menu bar, appropriate
6804 to the current buffer. Each item has three elements in the vector:
6805 KEY STRING MAPLIST.
6806
6807 OLD is an old vector we can optionally reuse, or nil. */
6808
6809 Lisp_Object
6810 menu_bar_items (old)
6811 Lisp_Object old;
6812 {
6813 /* The number of keymaps we're scanning right now, and the number of
6814 keymaps we have allocated space for. */
6815 int nmaps;
6816
6817 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6818 in the current keymaps, or nil where it is not a prefix. */
6819 Lisp_Object *maps;
6820
6821 Lisp_Object def, tail;
6822
6823 Lisp_Object result;
6824
6825 int mapno;
6826 Lisp_Object oquit;
6827
6828 int i;
6829
6830 struct gcpro gcpro1;
6831
6832 /* In order to build the menus, we need to call the keymap
6833 accessors. They all call QUIT. But this function is called
6834 during redisplay, during which a quit is fatal. So inhibit
6835 quitting while building the menus.
6836 We do this instead of specbind because (1) errors will clear it anyway
6837 and (2) this avoids risk of specpdl overflow. */
6838 oquit = Vinhibit_quit;
6839 Vinhibit_quit = Qt;
6840
6841 if (!NILP (old))
6842 menu_bar_items_vector = old;
6843 else
6844 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6845 menu_bar_items_index = 0;
6846
6847 GCPRO1 (menu_bar_items_vector);
6848
6849 /* Build our list of keymaps.
6850 If we recognize a function key and replace its escape sequence in
6851 keybuf with its symbol, or if the sequence starts with a mouse
6852 click and we need to switch buffers, we jump back here to rebuild
6853 the initial keymaps from the current buffer. */
6854 {
6855 Lisp_Object *tmaps;
6856
6857 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6858 if (!NILP (Voverriding_local_map_menu_flag))
6859 {
6860 /* Yes, use them (if non-nil) as well as the global map. */
6861 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
6862 nmaps = 0;
6863 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6864 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6865 if (!NILP (Voverriding_local_map))
6866 maps[nmaps++] = Voverriding_local_map;
6867 }
6868 else
6869 {
6870 /* No, so use major and minor mode keymaps and keymap property.
6871 Note that menu-bar bindings in the local-map and keymap
6872 properties may not work reliable, as they are only
6873 recognized when the menu-bar (or mode-line) is updated,
6874 which does not normally happen after every command. */
6875 Lisp_Object tem;
6876 int nminor;
6877 nminor = current_minor_maps (NULL, &tmaps);
6878 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
6879 nmaps = 0;
6880 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
6881 maps[nmaps++] = tem;
6882 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
6883 nmaps += nminor;
6884 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
6885 }
6886 maps[nmaps++] = current_global_map;
6887 }
6888
6889 /* Look up in each map the dummy prefix key `menu-bar'. */
6890
6891 result = Qnil;
6892
6893 for (mapno = nmaps - 1; mapno >= 0; mapno--)
6894 if (!NILP (maps[mapno]))
6895 {
6896 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
6897 0, 1);
6898 if (CONSP (def))
6899 {
6900 menu_bar_one_keymap_changed_items = Qnil;
6901 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
6902 }
6903 }
6904
6905 /* Move to the end those items that should be at the end. */
6906
6907 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
6908 {
6909 int i;
6910 int end = menu_bar_items_index;
6911
6912 for (i = 0; i < end; i += 4)
6913 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
6914 {
6915 Lisp_Object tem0, tem1, tem2, tem3;
6916 /* Move the item at index I to the end,
6917 shifting all the others forward. */
6918 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
6919 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
6920 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6921 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
6922 if (end > i + 4)
6923 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6924 &XVECTOR (menu_bar_items_vector)->contents[i],
6925 (end - i - 4) * sizeof (Lisp_Object));
6926 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
6927 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
6928 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
6929 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
6930 break;
6931 }
6932 }
6933
6934 /* Add nil, nil, nil, nil at the end. */
6935 i = menu_bar_items_index;
6936 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6937 {
6938 Lisp_Object tem;
6939 tem = Fmake_vector (make_number (2 * i), Qnil);
6940 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6941 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6942 menu_bar_items_vector = tem;
6943 }
6944 /* Add this item. */
6945 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6946 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6947 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6948 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6949 menu_bar_items_index = i;
6950
6951 Vinhibit_quit = oquit;
6952 UNGCPRO;
6953 return menu_bar_items_vector;
6954 }
6955 \f
6956 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
6957 If there's already an item for KEY, add this DEF to it. */
6958
6959 Lisp_Object item_properties;
6960
6961 static void
6962 menu_bar_item (key, item, dummy1, dummy2)
6963 Lisp_Object key, item, dummy1;
6964 void *dummy2;
6965 {
6966 struct gcpro gcpro1;
6967 int i;
6968 Lisp_Object tem;
6969
6970 if (EQ (item, Qundefined))
6971 {
6972 /* If a map has an explicit `undefined' as definition,
6973 discard any previously made menu bar item. */
6974
6975 for (i = 0; i < menu_bar_items_index; i += 4)
6976 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6977 {
6978 if (menu_bar_items_index > i + 4)
6979 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6980 &XVECTOR (menu_bar_items_vector)->contents[i],
6981 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
6982 menu_bar_items_index -= 4;
6983 }
6984 }
6985
6986 /* If this keymap has already contributed to this KEY,
6987 don't contribute to it a second time. */
6988 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
6989 if (!NILP (tem) || NILP (item))
6990 return;
6991
6992 menu_bar_one_keymap_changed_items
6993 = Fcons (key, menu_bar_one_keymap_changed_items);
6994
6995 /* We add to menu_bar_one_keymap_changed_items before doing the
6996 parse_menu_item, so that if it turns out it wasn't a menu item,
6997 it still correctly hides any further menu item. */
6998 GCPRO1 (key);
6999 i = parse_menu_item (item, 0, 1);
7000 UNGCPRO;
7001 if (!i)
7002 return;
7003
7004 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7005
7006 /* Find any existing item for this KEY. */
7007 for (i = 0; i < menu_bar_items_index; i += 4)
7008 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7009 break;
7010
7011 /* If we did not find this KEY, add it at the end. */
7012 if (i == menu_bar_items_index)
7013 {
7014 /* If vector is too small, get a bigger one. */
7015 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7016 {
7017 Lisp_Object tem;
7018 tem = Fmake_vector (make_number (2 * i), Qnil);
7019 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7020 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7021 menu_bar_items_vector = tem;
7022 }
7023
7024 /* Add this item. */
7025 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
7026 XVECTOR (menu_bar_items_vector)->contents[i++]
7027 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7028 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
7029 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
7030 menu_bar_items_index = i;
7031 }
7032 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7033 else
7034 {
7035 Lisp_Object old;
7036 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7037 /* If the new and the old items are not both keymaps,
7038 the lookup will only find `item'. */
7039 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7040 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
7041 }
7042 }
7043 \f
7044 /* This is used as the handler when calling menu_item_eval_property. */
7045 static Lisp_Object
7046 menu_item_eval_property_1 (arg)
7047 Lisp_Object arg;
7048 {
7049 /* If we got a quit from within the menu computation,
7050 quit all the way out of it. This takes care of C-] in the debugger. */
7051 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7052 Fsignal (Qquit, Qnil);
7053
7054 return Qnil;
7055 }
7056
7057 /* Evaluate an expression and return the result (or nil if something
7058 went wrong). Used to evaluate dynamic parts of menu items. */
7059 Lisp_Object
7060 menu_item_eval_property (sexpr)
7061 Lisp_Object sexpr;
7062 {
7063 int count = SPECPDL_INDEX ();
7064 Lisp_Object val;
7065 specbind (Qinhibit_redisplay, Qt);
7066 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7067 menu_item_eval_property_1);
7068 return unbind_to (count, val);
7069 }
7070
7071 /* This function parses a menu item and leaves the result in the
7072 vector item_properties.
7073 ITEM is a key binding, a possible menu item.
7074 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7075 evaluate dynamic expressions in the menu item.
7076 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7077 top level.
7078 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7079 parse_menu_item returns true if the item is a menu item and false
7080 otherwise. */
7081
7082 int
7083 parse_menu_item (item, notreal, inmenubar)
7084 Lisp_Object item;
7085 int notreal, inmenubar;
7086 {
7087 Lisp_Object def, tem, item_string, start;
7088 Lisp_Object cachelist;
7089 Lisp_Object filter;
7090 Lisp_Object keyhint;
7091 int i;
7092 int newcache = 0;
7093
7094 cachelist = Qnil;
7095 filter = Qnil;
7096 keyhint = Qnil;
7097
7098 if (!CONSP (item))
7099 return 0;
7100
7101 /* Create item_properties vector if necessary. */
7102 if (NILP (item_properties))
7103 item_properties
7104 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7105
7106 /* Initialize optional entries. */
7107 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7108 AREF (item_properties, i) = Qnil;
7109 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7110
7111 /* Save the item here to protect it from GC. */
7112 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
7113
7114 item_string = XCAR (item);
7115
7116 start = item;
7117 item = XCDR (item);
7118 if (STRINGP (item_string))
7119 {
7120 /* Old format menu item. */
7121 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7122
7123 /* Maybe help string. */
7124 if (CONSP (item) && STRINGP (XCAR (item)))
7125 {
7126 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7127 start = item;
7128 item = XCDR (item);
7129 }
7130
7131 /* Maybe key binding cache. */
7132 if (CONSP (item) && CONSP (XCAR (item))
7133 && (NILP (XCAR (XCAR (item)))
7134 || VECTORP (XCAR (XCAR (item)))))
7135 {
7136 cachelist = XCAR (item);
7137 item = XCDR (item);
7138 }
7139
7140 /* This is the real definition--the function to run. */
7141 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
7142
7143 /* Get enable property, if any. */
7144 if (SYMBOLP (item))
7145 {
7146 tem = Fget (item, Qmenu_enable);
7147 if (!NILP (tem))
7148 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7149 }
7150 }
7151 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7152 {
7153 /* New format menu item. */
7154 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7155 start = XCDR (item);
7156 if (CONSP (start))
7157 {
7158 /* We have a real binding. */
7159 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
7160
7161 item = XCDR (start);
7162 /* Is there a cache list with key equivalences. */
7163 if (CONSP (item) && CONSP (XCAR (item)))
7164 {
7165 cachelist = XCAR (item);
7166 item = XCDR (item);
7167 }
7168
7169 /* Parse properties. */
7170 while (CONSP (item) && CONSP (XCDR (item)))
7171 {
7172 tem = XCAR (item);
7173 item = XCDR (item);
7174
7175 if (EQ (tem, QCenable))
7176 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
7177 else if (EQ (tem, QCvisible) && !notreal)
7178 {
7179 /* If got a visible property and that evaluates to nil
7180 then ignore this item. */
7181 tem = menu_item_eval_property (XCAR (item));
7182 if (NILP (tem))
7183 return 0;
7184 }
7185 else if (EQ (tem, QChelp))
7186 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7187 else if (EQ (tem, QCfilter))
7188 filter = item;
7189 else if (EQ (tem, QCkey_sequence))
7190 {
7191 tem = XCAR (item);
7192 if (NILP (cachelist)
7193 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7194 /* Be GC protected. Set keyhint to item instead of tem. */
7195 keyhint = item;
7196 }
7197 else if (EQ (tem, QCkeys))
7198 {
7199 tem = XCAR (item);
7200 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
7201 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7202 }
7203 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7204 {
7205 Lisp_Object type;
7206 tem = XCAR (item);
7207 type = XCAR (tem);
7208 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7209 {
7210 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7211 = XCDR (tem);
7212 AREF (item_properties, ITEM_PROPERTY_TYPE)
7213 = type;
7214 }
7215 }
7216 item = XCDR (item);
7217 }
7218 }
7219 else if (inmenubar || !NILP (start))
7220 return 0;
7221 }
7222 else
7223 return 0; /* not a menu item */
7224
7225 /* If item string is not a string, evaluate it to get string.
7226 If we don't get a string, skip this item. */
7227 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7228 if (!(STRINGP (item_string) || notreal))
7229 {
7230 item_string = menu_item_eval_property (item_string);
7231 if (!STRINGP (item_string))
7232 return 0;
7233 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7234 }
7235
7236 /* If got a filter apply it on definition. */
7237 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7238 if (!NILP (filter))
7239 {
7240 def = menu_item_eval_property (list2 (XCAR (filter),
7241 list2 (Qquote, def)));
7242
7243 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
7244 }
7245
7246 /* Enable or disable selection of item. */
7247 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7248 if (!EQ (tem, Qt))
7249 {
7250 if (notreal)
7251 tem = Qt;
7252 else
7253 tem = menu_item_eval_property (tem);
7254 if (inmenubar && NILP (tem))
7255 return 0; /* Ignore disabled items in menu bar. */
7256 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7257 }
7258
7259 /* If we got no definition, this item is just unselectable text which
7260 is OK in a submenu but not in the menubar. */
7261 if (NILP (def))
7262 return (inmenubar ? 0 : 1);
7263
7264 /* See if this is a separate pane or a submenu. */
7265 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7266 tem = get_keymap (def, 0, 1);
7267 /* For a subkeymap, just record its details and exit. */
7268 if (CONSP (tem))
7269 {
7270 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7271 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7272 return 1;
7273 }
7274
7275 /* At the top level in the menu bar, do likewise for commands also.
7276 The menu bar does not display equivalent key bindings anyway.
7277 ITEM_PROPERTY_DEF is already set up properly. */
7278 if (inmenubar > 0)
7279 return 1;
7280
7281 /* This is a command. See if there is an equivalent key binding. */
7282 if (NILP (cachelist))
7283 {
7284 /* We have to create a cachelist. */
7285 CHECK_IMPURE (start);
7286 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7287 cachelist = XCAR (XCDR (start));
7288 newcache = 1;
7289 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7290 if (!NILP (keyhint))
7291 {
7292 XSETCAR (cachelist, XCAR (keyhint));
7293 newcache = 0;
7294 }
7295 else if (STRINGP (tem))
7296 {
7297 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7298 XSETCAR (cachelist, Qt);
7299 }
7300 }
7301
7302 tem = XCAR (cachelist);
7303 if (!EQ (tem, Qt))
7304 {
7305 int chkcache = 0;
7306 Lisp_Object prefix;
7307
7308 if (!NILP (tem))
7309 tem = Fkey_binding (tem, Qnil, Qnil);
7310
7311 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7312 if (CONSP (prefix))
7313 {
7314 def = XCAR (prefix);
7315 prefix = XCDR (prefix);
7316 }
7317 else
7318 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7319
7320 if (!update_menu_bindings)
7321 chkcache = 0;
7322 else if (NILP (XCAR (cachelist))) /* Have no saved key. */
7323 {
7324 if (newcache /* Always check first time. */
7325 /* Should we check everything when precomputing key
7326 bindings? */
7327 /* If something had no key binding before, don't recheck it
7328 because that is too slow--except if we have a list of
7329 rebound commands in Vdefine_key_rebound_commands, do
7330 recheck any command that appears in that list. */
7331 || (CONSP (Vdefine_key_rebound_commands)
7332 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7333 chkcache = 1;
7334 }
7335 /* We had a saved key. Is it still bound to the command? */
7336 else if (NILP (tem)
7337 || (!EQ (tem, def)
7338 /* If the command is an alias for another
7339 (such as lmenu.el set it up), check if the
7340 original command matches the cached command. */
7341 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7342 chkcache = 1; /* Need to recompute key binding. */
7343
7344 if (chkcache)
7345 {
7346 /* Recompute equivalent key binding. If the command is an alias
7347 for another (such as lmenu.el set it up), see if the original
7348 command name has equivalent keys. Otherwise look up the
7349 specified command itself. We don't try both, because that
7350 makes lmenu menus slow. */
7351 if (SYMBOLP (def)
7352 && SYMBOLP (XSYMBOL (def)->function)
7353 && ! NILP (Fget (def, Qmenu_alias)))
7354 def = XSYMBOL (def)->function;
7355 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7356 XSETCAR (cachelist, tem);
7357 if (NILP (tem))
7358 {
7359 XSETCDR (cachelist, Qnil);
7360 chkcache = 0;
7361 }
7362 }
7363 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7364 {
7365 tem = XCAR (cachelist);
7366 chkcache = 1;
7367 }
7368
7369 newcache = chkcache;
7370 if (chkcache)
7371 {
7372 tem = Fkey_description (tem);
7373 if (CONSP (prefix))
7374 {
7375 if (STRINGP (XCAR (prefix)))
7376 tem = concat2 (XCAR (prefix), tem);
7377 if (STRINGP (XCDR (prefix)))
7378 tem = concat2 (tem, XCDR (prefix));
7379 }
7380 XSETCDR (cachelist, tem);
7381 }
7382 }
7383
7384 tem = XCDR (cachelist);
7385 if (newcache && !NILP (tem))
7386 {
7387 tem = concat3 (build_string (" ("), tem, build_string (")"));
7388 XSETCDR (cachelist, tem);
7389 }
7390
7391 /* If we only want to precompute equivalent key bindings, stop here. */
7392 if (notreal)
7393 return 1;
7394
7395 /* If we have an equivalent key binding, use that. */
7396 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7397
7398 /* Include this when menu help is implemented.
7399 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7400 if (!(NILP (tem) || STRINGP (tem)))
7401 {
7402 tem = menu_item_eval_property (tem);
7403 if (!STRINGP (tem))
7404 tem = Qnil;
7405 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7406 }
7407 */
7408
7409 /* Handle radio buttons or toggle boxes. */
7410 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7411 if (!NILP (tem))
7412 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7413 = menu_item_eval_property (tem);
7414
7415 return 1;
7416 }
7417
7418
7419 \f
7420 /***********************************************************************
7421 Tool-bars
7422 ***********************************************************************/
7423
7424 /* A vector holding tool bar items while they are parsed in function
7425 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7426 in the vector. */
7427
7428 static Lisp_Object tool_bar_items_vector;
7429
7430 /* A vector holding the result of parse_tool_bar_item. Layout is like
7431 the one for a single item in tool_bar_items_vector. */
7432
7433 static Lisp_Object tool_bar_item_properties;
7434
7435 /* Next free index in tool_bar_items_vector. */
7436
7437 static int ntool_bar_items;
7438
7439 /* The symbols `tool-bar', and `:image'. */
7440
7441 extern Lisp_Object Qtool_bar;
7442 Lisp_Object QCimage;
7443
7444 /* Function prototypes. */
7445
7446 static void init_tool_bar_items P_ ((Lisp_Object));
7447 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7448 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7449 static void append_tool_bar_item P_ ((void));
7450
7451
7452 /* Return a vector of tool bar items for keymaps currently in effect.
7453 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7454 tool bar items found. */
7455
7456 Lisp_Object
7457 tool_bar_items (reuse, nitems)
7458 Lisp_Object reuse;
7459 int *nitems;
7460 {
7461 Lisp_Object *maps;
7462 int nmaps, i;
7463 Lisp_Object oquit;
7464 Lisp_Object *tmaps;
7465
7466 *nitems = 0;
7467
7468 /* In order to build the menus, we need to call the keymap
7469 accessors. They all call QUIT. But this function is called
7470 during redisplay, during which a quit is fatal. So inhibit
7471 quitting while building the menus. We do this instead of
7472 specbind because (1) errors will clear it anyway and (2) this
7473 avoids risk of specpdl overflow. */
7474 oquit = Vinhibit_quit;
7475 Vinhibit_quit = Qt;
7476
7477 /* Initialize tool_bar_items_vector and protect it from GC. */
7478 init_tool_bar_items (reuse);
7479
7480 /* Build list of keymaps in maps. Set nmaps to the number of maps
7481 to process. */
7482
7483 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7484 if (!NILP (Voverriding_local_map_menu_flag))
7485 {
7486 /* Yes, use them (if non-nil) as well as the global map. */
7487 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7488 nmaps = 0;
7489 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7490 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7491 if (!NILP (Voverriding_local_map))
7492 maps[nmaps++] = Voverriding_local_map;
7493 }
7494 else
7495 {
7496 /* No, so use major and minor mode keymaps and keymap property.
7497 Note that tool-bar bindings in the local-map and keymap
7498 properties may not work reliable, as they are only
7499 recognized when the tool-bar (or mode-line) is updated,
7500 which does not normally happen after every command. */
7501 Lisp_Object tem;
7502 int nminor;
7503 nminor = current_minor_maps (NULL, &tmaps);
7504 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7505 nmaps = 0;
7506 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7507 maps[nmaps++] = tem;
7508 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7509 nmaps += nminor;
7510 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7511 }
7512
7513 /* Add global keymap at the end. */
7514 maps[nmaps++] = current_global_map;
7515
7516 /* Process maps in reverse order and look up in each map the prefix
7517 key `tool-bar'. */
7518 for (i = nmaps - 1; i >= 0; --i)
7519 if (!NILP (maps[i]))
7520 {
7521 Lisp_Object keymap;
7522
7523 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7524 if (CONSP (keymap))
7525 {
7526 Lisp_Object tail;
7527
7528 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7529 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7530 {
7531 Lisp_Object keydef = XCAR (tail);
7532 if (CONSP (keydef))
7533 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7534 }
7535 }
7536 }
7537
7538 Vinhibit_quit = oquit;
7539 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7540 return tool_bar_items_vector;
7541 }
7542
7543
7544 /* Process the definition of KEY which is DEF. */
7545
7546 static void
7547 process_tool_bar_item (key, def)
7548 Lisp_Object key, def;
7549 {
7550 int i;
7551 extern Lisp_Object Qundefined;
7552 struct gcpro gcpro1, gcpro2;
7553
7554 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7555 eval. */
7556 GCPRO2 (key, def);
7557
7558 if (EQ (def, Qundefined))
7559 {
7560 /* If a map has an explicit `undefined' as definition,
7561 discard any previously made item. */
7562 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7563 {
7564 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7565
7566 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7567 {
7568 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7569 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7570 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7571 * sizeof (Lisp_Object)));
7572 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7573 break;
7574 }
7575 }
7576 }
7577 else if (parse_tool_bar_item (key, def))
7578 /* Append a new tool bar item to tool_bar_items_vector. Accept
7579 more than one definition for the same key. */
7580 append_tool_bar_item ();
7581
7582 UNGCPRO;
7583 }
7584
7585
7586 /* Parse a tool bar item specification ITEM for key KEY and return the
7587 result in tool_bar_item_properties. Value is zero if ITEM is
7588 invalid.
7589
7590 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7591
7592 CAPTION is the caption of the item, If it's not a string, it is
7593 evaluated to get a string.
7594
7595 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7596 as binding are currently ignored.
7597
7598 The following properties are recognized:
7599
7600 - `:enable FORM'.
7601
7602 FORM is evaluated and specifies whether the tool bar item is
7603 enabled or disabled.
7604
7605 - `:visible FORM'
7606
7607 FORM is evaluated and specifies whether the tool bar item is visible.
7608
7609 - `:filter FUNCTION'
7610
7611 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7612 result is stored as the new binding.
7613
7614 - `:button (TYPE SELECTED)'
7615
7616 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7617 and specifies whether the button is selected (pressed) or not.
7618
7619 - `:image IMAGES'
7620
7621 IMAGES is either a single image specification or a vector of four
7622 image specifications. See enum tool_bar_item_images.
7623
7624 - `:help HELP-STRING'.
7625
7626 Gives a help string to display for the tool bar item. */
7627
7628 static int
7629 parse_tool_bar_item (key, item)
7630 Lisp_Object key, item;
7631 {
7632 /* Access slot with index IDX of vector tool_bar_item_properties. */
7633 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7634
7635 Lisp_Object filter = Qnil;
7636 Lisp_Object caption;
7637 int i;
7638
7639 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7640 Rule out items that aren't lists, don't start with
7641 `menu-item' or whose rest following `tool-bar-item' is not a
7642 list. */
7643 if (!CONSP (item)
7644 || !EQ (XCAR (item), Qmenu_item)
7645 || (item = XCDR (item),
7646 !CONSP (item)))
7647 return 0;
7648
7649 /* Create tool_bar_item_properties vector if necessary. Reset it to
7650 defaults. */
7651 if (VECTORP (tool_bar_item_properties))
7652 {
7653 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7654 PROP (i) = Qnil;
7655 }
7656 else
7657 tool_bar_item_properties
7658 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7659
7660 /* Set defaults. */
7661 PROP (TOOL_BAR_ITEM_KEY) = key;
7662 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7663
7664 /* Get the caption of the item. If the caption is not a string,
7665 evaluate it to get a string. If we don't get a string, skip this
7666 item. */
7667 caption = XCAR (item);
7668 if (!STRINGP (caption))
7669 {
7670 caption = menu_item_eval_property (caption);
7671 if (!STRINGP (caption))
7672 return 0;
7673 }
7674 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7675
7676 /* Give up if rest following the caption is not a list. */
7677 item = XCDR (item);
7678 if (!CONSP (item))
7679 return 0;
7680
7681 /* Store the binding. */
7682 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7683 item = XCDR (item);
7684
7685 /* Ignore cached key binding, if any. */
7686 if (CONSP (item) && CONSP (XCAR (item)))
7687 item = XCDR (item);
7688
7689 /* Process the rest of the properties. */
7690 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7691 {
7692 Lisp_Object key, value;
7693
7694 key = XCAR (item);
7695 value = XCAR (XCDR (item));
7696
7697 if (EQ (key, QCenable))
7698 /* `:enable FORM'. */
7699 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7700 else if (EQ (key, QCvisible))
7701 {
7702 /* `:visible FORM'. If got a visible property and that
7703 evaluates to nil then ignore this item. */
7704 if (NILP (menu_item_eval_property (value)))
7705 return 0;
7706 }
7707 else if (EQ (key, QChelp))
7708 /* `:help HELP-STRING'. */
7709 PROP (TOOL_BAR_ITEM_HELP) = value;
7710 else if (EQ (key, QCfilter))
7711 /* ':filter FORM'. */
7712 filter = value;
7713 else if (EQ (key, QCbutton) && CONSP (value))
7714 {
7715 /* `:button (TYPE . SELECTED)'. */
7716 Lisp_Object type, selected;
7717
7718 type = XCAR (value);
7719 selected = XCDR (value);
7720 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7721 {
7722 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7723 PROP (TOOL_BAR_ITEM_TYPE) = type;
7724 }
7725 }
7726 else if (EQ (key, QCimage)
7727 && (CONSP (value)
7728 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7729 /* Value is either a single image specification or a vector
7730 of 4 such specifications for the different button states. */
7731 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7732 }
7733
7734 /* If got a filter apply it on binding. */
7735 if (!NILP (filter))
7736 PROP (TOOL_BAR_ITEM_BINDING)
7737 = menu_item_eval_property (list2 (filter,
7738 list2 (Qquote,
7739 PROP (TOOL_BAR_ITEM_BINDING))));
7740
7741 /* See if the binding is a keymap. Give up if it is. */
7742 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7743 return 0;
7744
7745 /* Enable or disable selection of item. */
7746 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7747 PROP (TOOL_BAR_ITEM_ENABLED_P)
7748 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7749
7750 /* Handle radio buttons or toggle boxes. */
7751 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7752 PROP (TOOL_BAR_ITEM_SELECTED_P)
7753 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7754
7755 return 1;
7756
7757 #undef PROP
7758 }
7759
7760
7761 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7762 that can be reused. */
7763
7764 static void
7765 init_tool_bar_items (reuse)
7766 Lisp_Object reuse;
7767 {
7768 if (VECTORP (reuse))
7769 tool_bar_items_vector = reuse;
7770 else
7771 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7772 ntool_bar_items = 0;
7773 }
7774
7775
7776 /* Append parsed tool bar item properties from
7777 tool_bar_item_properties */
7778
7779 static void
7780 append_tool_bar_item ()
7781 {
7782 Lisp_Object *to, *from;
7783
7784 /* Enlarge tool_bar_items_vector if necessary. */
7785 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7786 >= XVECTOR (tool_bar_items_vector)->size)
7787 {
7788 Lisp_Object new_vector;
7789 int old_size = XVECTOR (tool_bar_items_vector)->size;
7790
7791 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
7792 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7793 XVECTOR (new_vector)->contents,
7794 old_size * sizeof (Lisp_Object));
7795 tool_bar_items_vector = new_vector;
7796 }
7797
7798 /* Append entries from tool_bar_item_properties to the end of
7799 tool_bar_items_vector. */
7800 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7801 from = XVECTOR (tool_bar_item_properties)->contents;
7802 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7803 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7804 }
7805
7806
7807
7808
7809 \f
7810 /* Read a character using menus based on maps in the array MAPS.
7811 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7812 Return t if we displayed a menu but the user rejected it.
7813
7814 PREV_EVENT is the previous input event, or nil if we are reading
7815 the first event of a key sequence.
7816
7817 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7818 if we used a mouse menu to read the input, or zero otherwise. If
7819 USED_MOUSE_MENU is null, we don't dereference it.
7820
7821 The prompting is done based on the prompt-string of the map
7822 and the strings associated with various map elements.
7823
7824 This can be done with X menus or with menus put in the minibuf.
7825 These are done in different ways, depending on how the input will be read.
7826 Menus using X are done after auto-saving in read-char, getting the input
7827 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7828 and do auto-saving in the inner call of read_char. */
7829
7830 static Lisp_Object
7831 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7832 int nmaps;
7833 Lisp_Object *maps;
7834 Lisp_Object prev_event;
7835 int *used_mouse_menu;
7836 {
7837 int mapno;
7838 register Lisp_Object name = Qnil;
7839
7840 if (used_mouse_menu)
7841 *used_mouse_menu = 0;
7842
7843 /* Use local over global Menu maps */
7844
7845 if (! menu_prompting)
7846 return Qnil;
7847
7848 /* Optionally disregard all but the global map. */
7849 if (inhibit_local_menu_bar_menus)
7850 {
7851 maps += (nmaps - 1);
7852 nmaps = 1;
7853 }
7854
7855 /* Get the menu name from the first map that has one (a prompt string). */
7856 for (mapno = 0; mapno < nmaps; mapno++)
7857 {
7858 name = Fkeymap_prompt (maps[mapno]);
7859 if (!NILP (name))
7860 break;
7861 }
7862
7863 /* If we don't have any menus, just read a character normally. */
7864 if (!STRINGP (name))
7865 return Qnil;
7866
7867 #ifdef HAVE_MENUS
7868 /* If we got to this point via a mouse click,
7869 use a real menu for mouse selection. */
7870 if (EVENT_HAS_PARAMETERS (prev_event)
7871 && !EQ (XCAR (prev_event), Qmenu_bar)
7872 && !EQ (XCAR (prev_event), Qtool_bar))
7873 {
7874 /* Display the menu and get the selection. */
7875 Lisp_Object *realmaps
7876 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
7877 Lisp_Object value;
7878 int nmaps1 = 0;
7879
7880 /* Use the maps that are not nil. */
7881 for (mapno = 0; mapno < nmaps; mapno++)
7882 if (!NILP (maps[mapno]))
7883 realmaps[nmaps1++] = maps[mapno];
7884
7885 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
7886 if (CONSP (value))
7887 {
7888 Lisp_Object tem;
7889
7890 record_menu_key (XCAR (value));
7891
7892 /* If we got multiple events, unread all but
7893 the first.
7894 There is no way to prevent those unread events
7895 from showing up later in last_nonmenu_event.
7896 So turn symbol and integer events into lists,
7897 to indicate that they came from a mouse menu,
7898 so that when present in last_nonmenu_event
7899 they won't confuse things. */
7900 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
7901 {
7902 record_menu_key (XCAR (tem));
7903 if (SYMBOLP (XCAR (tem))
7904 || INTEGERP (XCAR (tem)))
7905 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
7906 }
7907
7908 /* If we got more than one event, put all but the first
7909 onto this list to be read later.
7910 Return just the first event now. */
7911 Vunread_command_events
7912 = nconc2 (XCDR (value), Vunread_command_events);
7913 value = XCAR (value);
7914 }
7915 else if (NILP (value))
7916 value = Qt;
7917 if (used_mouse_menu)
7918 *used_mouse_menu = 1;
7919 return value;
7920 }
7921 #endif /* HAVE_MENUS */
7922 return Qnil ;
7923 }
7924
7925 /* Buffer in use so far for the minibuf prompts for menu keymaps.
7926 We make this bigger when necessary, and never free it. */
7927 static char *read_char_minibuf_menu_text;
7928 /* Size of that buffer. */
7929 static int read_char_minibuf_menu_width;
7930
7931 static Lisp_Object
7932 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
7933 int commandflag ;
7934 int nmaps;
7935 Lisp_Object *maps;
7936 {
7937 int mapno;
7938 register Lisp_Object name;
7939 int nlength;
7940 /* FIXME: Use the minibuffer's frame width. */
7941 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
7942 int idx = -1;
7943 int nobindings = 1;
7944 Lisp_Object rest, vector;
7945 char *menu;
7946
7947 vector = Qnil;
7948 name = Qnil;
7949
7950 if (! menu_prompting)
7951 return Qnil;
7952
7953 /* Make sure we have a big enough buffer for the menu text. */
7954 if (read_char_minibuf_menu_text == 0)
7955 {
7956 read_char_minibuf_menu_width = width + 4;
7957 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
7958 }
7959 else if (width + 4 > read_char_minibuf_menu_width)
7960 {
7961 read_char_minibuf_menu_width = width + 4;
7962 read_char_minibuf_menu_text
7963 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
7964 }
7965 menu = read_char_minibuf_menu_text;
7966
7967 /* Get the menu name from the first map that has one (a prompt string). */
7968 for (mapno = 0; mapno < nmaps; mapno++)
7969 {
7970 name = Fkeymap_prompt (maps[mapno]);
7971 if (!NILP (name))
7972 break;
7973 }
7974
7975 /* If we don't have any menus, just read a character normally. */
7976 if (!STRINGP (name))
7977 return Qnil;
7978
7979 /* Prompt string always starts with map's prompt, and a space. */
7980 strcpy (menu, SDATA (name));
7981 nlength = SBYTES (name);
7982 menu[nlength++] = ':';
7983 menu[nlength++] = ' ';
7984 menu[nlength] = 0;
7985
7986 /* Start prompting at start of first map. */
7987 mapno = 0;
7988 rest = maps[mapno];
7989
7990 /* Present the documented bindings, a line at a time. */
7991 while (1)
7992 {
7993 int notfirst = 0;
7994 int i = nlength;
7995 Lisp_Object obj;
7996 int ch;
7997 Lisp_Object orig_defn_macro;
7998
7999 /* Loop over elements of map. */
8000 while (i < width)
8001 {
8002 Lisp_Object elt;
8003
8004 /* If reached end of map, start at beginning of next map. */
8005 if (NILP (rest))
8006 {
8007 mapno++;
8008 /* At end of last map, wrap around to first map if just starting,
8009 or end this line if already have something on it. */
8010 if (mapno == nmaps)
8011 {
8012 mapno = 0;
8013 if (notfirst || nobindings) break;
8014 }
8015 rest = maps[mapno];
8016 }
8017
8018 /* Look at the next element of the map. */
8019 if (idx >= 0)
8020 elt = XVECTOR (vector)->contents[idx];
8021 else
8022 elt = Fcar_safe (rest);
8023
8024 if (idx < 0 && VECTORP (elt))
8025 {
8026 /* If we found a dense table in the keymap,
8027 advanced past it, but start scanning its contents. */
8028 rest = Fcdr_safe (rest);
8029 vector = elt;
8030 idx = 0;
8031 }
8032 else
8033 {
8034 /* An ordinary element. */
8035 Lisp_Object event, tem;
8036
8037 if (idx < 0)
8038 {
8039 event = Fcar_safe (elt); /* alist */
8040 elt = Fcdr_safe (elt);
8041 }
8042 else
8043 {
8044 XSETINT (event, idx); /* vector */
8045 }
8046
8047 /* Ignore the element if it has no prompt string. */
8048 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8049 {
8050 /* 1 if the char to type matches the string. */
8051 int char_matches;
8052 Lisp_Object upcased_event, downcased_event;
8053 Lisp_Object desc = Qnil;
8054 Lisp_Object s
8055 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8056
8057 upcased_event = Fupcase (event);
8058 downcased_event = Fdowncase (event);
8059 char_matches = (XINT (upcased_event) == SREF (s, 0)
8060 || XINT (downcased_event) == SREF (s, 0));
8061 if (! char_matches)
8062 desc = Fsingle_key_description (event, Qnil);
8063
8064 #if 0 /* It is redundant to list the equivalent key bindings because
8065 the prefix is what the user has already typed. */
8066 tem
8067 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8068 if (!NILP (tem))
8069 /* Insert equivalent keybinding. */
8070 s = concat2 (s, tem);
8071 #endif
8072 tem
8073 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8074 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8075 {
8076 /* Insert button prefix. */
8077 Lisp_Object selected
8078 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8079 if (EQ (tem, QCradio))
8080 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8081 else
8082 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8083 s = concat2 (tem, s);
8084 }
8085
8086
8087 /* If we have room for the prompt string, add it to this line.
8088 If this is the first on the line, always add it. */
8089 if ((SCHARS (s) + i + 2
8090 + (char_matches ? 0 : SCHARS (desc) + 3))
8091 < width
8092 || !notfirst)
8093 {
8094 int thiswidth;
8095
8096 /* Punctuate between strings. */
8097 if (notfirst)
8098 {
8099 strcpy (menu + i, ", ");
8100 i += 2;
8101 }
8102 notfirst = 1;
8103 nobindings = 0 ;
8104
8105 /* If the char to type doesn't match the string's
8106 first char, explicitly show what char to type. */
8107 if (! char_matches)
8108 {
8109 /* Add as much of string as fits. */
8110 thiswidth = SCHARS (desc);
8111 if (thiswidth + i > width)
8112 thiswidth = width - i;
8113 bcopy (SDATA (desc), menu + i, thiswidth);
8114 i += thiswidth;
8115 strcpy (menu + i, " = ");
8116 i += 3;
8117 }
8118
8119 /* Add as much of string as fits. */
8120 thiswidth = SCHARS (s);
8121 if (thiswidth + i > width)
8122 thiswidth = width - i;
8123 bcopy (SDATA (s), menu + i, thiswidth);
8124 i += thiswidth;
8125 menu[i] = 0;
8126 }
8127 else
8128 {
8129 /* If this element does not fit, end the line now,
8130 and save the element for the next line. */
8131 strcpy (menu + i, "...");
8132 break;
8133 }
8134 }
8135
8136 /* Move past this element. */
8137 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8138 /* Handle reaching end of dense table. */
8139 idx = -1;
8140 if (idx >= 0)
8141 idx++;
8142 else
8143 rest = Fcdr_safe (rest);
8144 }
8145 }
8146
8147 /* Prompt with that and read response. */
8148 message2_nolog (menu, strlen (menu),
8149 ! NILP (current_buffer->enable_multibyte_characters));
8150
8151 /* Make believe its not a keyboard macro in case the help char
8152 is pressed. Help characters are not recorded because menu prompting
8153 is not used on replay.
8154 */
8155 orig_defn_macro = current_kboard->defining_kbd_macro;
8156 current_kboard->defining_kbd_macro = Qnil;
8157 do
8158 obj = read_char (commandflag, 0, 0, Qt, 0);
8159 while (BUFFERP (obj));
8160 current_kboard->defining_kbd_macro = orig_defn_macro;
8161
8162 if (!INTEGERP (obj))
8163 return obj;
8164 else
8165 ch = XINT (obj);
8166
8167 if (! EQ (obj, menu_prompt_more_char)
8168 && (!INTEGERP (menu_prompt_more_char)
8169 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8170 {
8171 if (!NILP (current_kboard->defining_kbd_macro))
8172 store_kbd_macro_char (obj);
8173 return obj;
8174 }
8175 /* Help char - go round again */
8176 }
8177 }
8178 \f
8179 /* Reading key sequences. */
8180
8181 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8182 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8183 keymap, or nil otherwise. Return the index of the first keymap in
8184 which KEY has any binding, or NMAPS if no map has a binding.
8185
8186 If KEY is a meta ASCII character, treat it like meta-prefix-char
8187 followed by the corresponding non-meta character. Keymaps in
8188 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8189 NEXT.
8190
8191 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8192 unmodified.
8193
8194 NEXT may be the same array as CURRENT. */
8195
8196 static int
8197 follow_key (key, nmaps, current, defs, next)
8198 Lisp_Object key;
8199 Lisp_Object *current, *defs, *next;
8200 int nmaps;
8201 {
8202 int i, first_binding;
8203
8204 first_binding = nmaps;
8205 for (i = nmaps - 1; i >= 0; i--)
8206 {
8207 if (! NILP (current[i]))
8208 {
8209 defs[i] = access_keymap (current[i], key, 1, 0, 1);
8210 if (! NILP (defs[i]))
8211 first_binding = i;
8212 }
8213 else
8214 defs[i] = Qnil;
8215 }
8216
8217 /* Given the set of bindings we've found, produce the next set of maps. */
8218 if (first_binding < nmaps)
8219 for (i = 0; i < nmaps; i++)
8220 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8221
8222 return first_binding;
8223 }
8224
8225 /* Structure used to keep track of partial application of key remapping
8226 such as Vfunction_key_map and Vkey_translation_map. */
8227 typedef struct keyremap
8228 {
8229 Lisp_Object map, parent;
8230 int start, end;
8231 } keyremap;
8232
8233 /* Lookup KEY in MAP.
8234 MAP is a keymap mapping keys to key vectors or functions.
8235 If the mapping is a function and DO_FUNCTION is non-zero, then
8236 the function is called with PROMPT as parameter and its return
8237 value is used as the return value of this function (after checking
8238 that it is indeed a vector). */
8239
8240 static Lisp_Object
8241 access_keymap_keyremap (map, key, prompt, do_funcall)
8242 Lisp_Object map, key, prompt;
8243 int do_funcall;
8244 {
8245 Lisp_Object next;
8246
8247 next = access_keymap (map, key, 1, 0, 1);
8248
8249 /* Handle symbol with autoload definition. */
8250 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8251 && CONSP (XSYMBOL (next)->function)
8252 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
8253 do_autoload (XSYMBOL (next)->function, next);
8254
8255 /* Handle a symbol whose function definition is a keymap
8256 or an array. */
8257 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8258 && (!NILP (Farrayp (XSYMBOL (next)->function))
8259 || KEYMAPP (XSYMBOL (next)->function)))
8260 next = XSYMBOL (next)->function;
8261
8262 /* If the keymap gives a function, not an
8263 array, then call the function with one arg and use
8264 its value instead. */
8265 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
8266 {
8267 Lisp_Object tem;
8268 tem = next;
8269
8270 next = call1 (next, prompt);
8271 /* If the function returned something invalid,
8272 barf--don't ignore it.
8273 (To ignore it safely, we would need to gcpro a bunch of
8274 other variables.) */
8275 if (! (VECTORP (next) || STRINGP (next)))
8276 error ("Function %s returns invalid key sequence", tem);
8277 }
8278 return next;
8279 }
8280
8281 /* Do one step of the key remapping used for function-key-map and
8282 key-translation-map:
8283 KEYBUF is the buffer holding the input events.
8284 BUFSIZE is its maximum size.
8285 FKEY is a pointer to the keyremap structure to use.
8286 INPUT is the index of the last element in KEYBUF.
8287 DOIT if non-zero says that the remapping can actually take place.
8288 DIFF is used to return the number of keys added/removed by the remapping.
8289 PARENT is the root of the keymap.
8290 PROMPT is the prompt to use if the remapping happens through a function.
8291 The return value is non-zero if the remapping actually took place. */
8292
8293 static int
8294 keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
8295 Lisp_Object *keybuf, prompt;
8296 keyremap *fkey;
8297 int input, doit, *diff, bufsize;
8298 {
8299 Lisp_Object next, key;
8300
8301 key = keybuf[fkey->end++];
8302 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8303
8304 /* If keybuf[fkey->start..fkey->end] is bound in the
8305 map and we're in a position to do the key remapping, replace it with
8306 the binding and restart with fkey->start at the end. */
8307 if ((VECTORP (next) || STRINGP (next)) && doit)
8308 {
8309 int len = XFASTINT (Flength (next));
8310 int i;
8311
8312 *diff = len - (fkey->end - fkey->start);
8313
8314 if (input + *diff >= bufsize)
8315 error ("Key sequence too long");
8316
8317 /* Shift the keys that follow fkey->end. */
8318 if (*diff < 0)
8319 for (i = fkey->end; i < input; i++)
8320 keybuf[i + *diff] = keybuf[i];
8321 else if (*diff > 0)
8322 for (i = input - 1; i >= fkey->end; i--)
8323 keybuf[i + *diff] = keybuf[i];
8324 /* Overwrite the old keys with the new ones. */
8325 for (i = 0; i < len; i++)
8326 keybuf[fkey->start + i]
8327 = Faref (next, make_number (i));
8328
8329 fkey->start = fkey->end += *diff;
8330 fkey->map = fkey->parent;
8331
8332 return 1;
8333 }
8334
8335 fkey->map = get_keymap (next, 0, 1);
8336
8337 /* If we no longer have a bound suffix, try a new position for
8338 fkey->start. */
8339 if (!CONSP (fkey->map))
8340 {
8341 fkey->end = ++fkey->start;
8342 fkey->map = fkey->parent;
8343 }
8344 return 0;
8345 }
8346
8347 /* Read a sequence of keys that ends with a non prefix character,
8348 storing it in KEYBUF, a buffer of size BUFSIZE.
8349 Prompt with PROMPT.
8350 Return the length of the key sequence stored.
8351 Return -1 if the user rejected a command menu.
8352
8353 Echo starting immediately unless `prompt' is 0.
8354
8355 Where a key sequence ends depends on the currently active keymaps.
8356 These include any minor mode keymaps active in the current buffer,
8357 the current buffer's local map, and the global map.
8358
8359 If a key sequence has no other bindings, we check Vfunction_key_map
8360 to see if some trailing subsequence might be the beginning of a
8361 function key's sequence. If so, we try to read the whole function
8362 key, and substitute its symbolic name into the key sequence.
8363
8364 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8365 `double-' events into similar click events, if that would make them
8366 bound. We try to turn `triple-' events first into `double-' events,
8367 then into clicks.
8368
8369 If we get a mouse click in a mode line, vertical divider, or other
8370 non-text area, we treat the click as if it were prefixed by the
8371 symbol denoting that area - `mode-line', `vertical-line', or
8372 whatever.
8373
8374 If the sequence starts with a mouse click, we read the key sequence
8375 with respect to the buffer clicked on, not the current buffer.
8376
8377 If the user switches frames in the midst of a key sequence, we put
8378 off the switch-frame event until later; the next call to
8379 read_char will return it.
8380
8381 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8382 from the selected window's buffer. */
8383
8384 static int
8385 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8386 can_return_switch_frame, fix_current_buffer)
8387 Lisp_Object *keybuf;
8388 int bufsize;
8389 Lisp_Object prompt;
8390 int dont_downcase_last;
8391 int can_return_switch_frame;
8392 int fix_current_buffer;
8393 {
8394 volatile Lisp_Object from_string;
8395 volatile int count = SPECPDL_INDEX ();
8396
8397 /* How many keys there are in the current key sequence. */
8398 volatile int t;
8399
8400 /* The length of the echo buffer when we started reading, and
8401 the length of this_command_keys when we started reading. */
8402 volatile int echo_start;
8403 volatile int keys_start;
8404
8405 /* The number of keymaps we're scanning right now, and the number of
8406 keymaps we have allocated space for. */
8407 volatile int nmaps;
8408 volatile int nmaps_allocated = 0;
8409
8410 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8411 the current keymaps. */
8412 Lisp_Object *volatile defs = NULL;
8413
8414 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8415 in the current keymaps, or nil where it is not a prefix. */
8416 Lisp_Object *volatile submaps = NULL;
8417
8418 /* The local map to start out with at start of key sequence. */
8419 volatile Lisp_Object orig_local_map;
8420
8421 /* The map from the `keymap' property to start out with at start of
8422 key sequence. */
8423 volatile Lisp_Object orig_keymap;
8424
8425 /* 1 if we have already considered switching to the local-map property
8426 of the place where a mouse click occurred. */
8427 volatile int localized_local_map = 0;
8428
8429 /* The index in defs[] of the first keymap that has a binding for
8430 this key sequence. In other words, the lowest i such that
8431 defs[i] is non-nil. */
8432 volatile int first_binding;
8433 /* Index of the first key that has no binding.
8434 It is useless to try fkey.start larger than that. */
8435 volatile int first_unbound;
8436
8437 /* If t < mock_input, then KEYBUF[t] should be read as the next
8438 input key.
8439
8440 We use this to recover after recognizing a function key. Once we
8441 realize that a suffix of the current key sequence is actually a
8442 function key's escape sequence, we replace the suffix with the
8443 function key's binding from Vfunction_key_map. Now keybuf
8444 contains a new and different key sequence, so the echo area,
8445 this_command_keys, and the submaps and defs arrays are wrong. In
8446 this situation, we set mock_input to t, set t to 0, and jump to
8447 restart_sequence; the loop will read keys from keybuf up until
8448 mock_input, thus rebuilding the state; and then it will resume
8449 reading characters from the keyboard. */
8450 volatile int mock_input = 0;
8451
8452 /* If the sequence is unbound in submaps[], then
8453 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8454 and fkey.map is its binding.
8455
8456 These might be > t, indicating that all function key scanning
8457 should hold off until t reaches them. We do this when we've just
8458 recognized a function key, to avoid searching for the function
8459 key's again in Vfunction_key_map. */
8460 volatile keyremap fkey;
8461
8462 /* Likewise, for key_translation_map. */
8463 volatile keyremap keytran;
8464
8465 /* If we receive a `switch-frame' or `select-window' event in the middle of
8466 a key sequence, we put it off for later.
8467 While we're reading, we keep the event here. */
8468 volatile Lisp_Object delayed_switch_frame;
8469
8470 /* See the comment below... */
8471 #if defined (GOBBLE_FIRST_EVENT)
8472 Lisp_Object first_event;
8473 #endif
8474
8475 volatile Lisp_Object original_uppercase;
8476 volatile int original_uppercase_position = -1;
8477
8478 /* Gets around Microsoft compiler limitations. */
8479 int dummyflag = 0;
8480
8481 struct buffer *starting_buffer;
8482
8483 /* List of events for which a fake prefix key has been generated. */
8484 volatile Lisp_Object fake_prefixed_keys = Qnil;
8485
8486 #if defined (GOBBLE_FIRST_EVENT)
8487 int junk;
8488 #endif
8489
8490 struct gcpro gcpro1;
8491
8492 GCPRO1 (fake_prefixed_keys);
8493 raw_keybuf_count = 0;
8494
8495 last_nonmenu_event = Qnil;
8496
8497 delayed_switch_frame = Qnil;
8498 fkey.map = fkey.parent = Vfunction_key_map;
8499 keytran.map = keytran.parent = Vkey_translation_map;
8500 /* If there is no translation-map, turn off scanning. */
8501 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
8502 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
8503
8504 if (INTERACTIVE)
8505 {
8506 if (!NILP (prompt))
8507 echo_prompt (prompt);
8508 else if (cursor_in_echo_area
8509 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8510 && NILP (Fzerop (Vecho_keystrokes)))
8511 /* This doesn't put in a dash if the echo buffer is empty, so
8512 you don't always see a dash hanging out in the minibuffer. */
8513 echo_dash ();
8514 }
8515
8516 /* Record the initial state of the echo area and this_command_keys;
8517 we will need to restore them if we replay a key sequence. */
8518 if (INTERACTIVE)
8519 echo_start = echo_length ();
8520 keys_start = this_command_key_count;
8521 this_single_command_key_start = keys_start;
8522
8523 #if defined (GOBBLE_FIRST_EVENT)
8524 /* This doesn't quite work, because some of the things that read_char
8525 does cannot safely be bypassed. It seems too risky to try to make
8526 this work right. */
8527
8528 /* Read the first char of the sequence specially, before setting
8529 up any keymaps, in case a filter runs and switches buffers on us. */
8530 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8531 &junk);
8532 #endif /* GOBBLE_FIRST_EVENT */
8533
8534 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8535 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8536 from_string = Qnil;
8537
8538 /* We jump here when the key sequence has been thoroughly changed, and
8539 we need to rescan it starting from the beginning. When we jump here,
8540 keybuf[0..mock_input] holds the sequence we should reread. */
8541 replay_sequence:
8542
8543 starting_buffer = current_buffer;
8544 first_unbound = bufsize + 1;
8545
8546 /* Build our list of keymaps.
8547 If we recognize a function key and replace its escape sequence in
8548 keybuf with its symbol, or if the sequence starts with a mouse
8549 click and we need to switch buffers, we jump back here to rebuild
8550 the initial keymaps from the current buffer. */
8551 nmaps = 0;
8552
8553 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8554 || !NILP (Voverriding_local_map))
8555 {
8556 if (3 > nmaps_allocated)
8557 {
8558 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8559 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8560 nmaps_allocated = 3;
8561 }
8562 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8563 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8564 if (!NILP (Voverriding_local_map))
8565 submaps[nmaps++] = Voverriding_local_map;
8566 }
8567 else
8568 {
8569 int nminor;
8570 int total;
8571 Lisp_Object *maps;
8572
8573 nminor = current_minor_maps (0, &maps);
8574 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8575
8576 if (total > nmaps_allocated)
8577 {
8578 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8579 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8580 nmaps_allocated = total;
8581 }
8582
8583 if (!NILP (orig_keymap))
8584 submaps[nmaps++] = orig_keymap;
8585
8586 bcopy (maps, (void *) (submaps + nmaps),
8587 nminor * sizeof (submaps[0]));
8588
8589 nmaps += nminor;
8590
8591 submaps[nmaps++] = orig_local_map;
8592 }
8593 submaps[nmaps++] = current_global_map;
8594
8595 /* Find an accurate initial value for first_binding. */
8596 for (first_binding = 0; first_binding < nmaps; first_binding++)
8597 if (! NILP (submaps[first_binding]))
8598 break;
8599
8600 /* Start from the beginning in keybuf. */
8601 t = 0;
8602
8603 /* These are no-ops the first time through, but if we restart, they
8604 revert the echo area and this_command_keys to their original state. */
8605 this_command_key_count = keys_start;
8606 if (INTERACTIVE && t < mock_input)
8607 echo_truncate (echo_start);
8608
8609 /* If the best binding for the current key sequence is a keymap, or
8610 we may be looking at a function key's escape sequence, keep on
8611 reading. */
8612 while (first_binding < nmaps
8613 /* Keep reading as long as there's a prefix binding. */
8614 ? !NILP (submaps[first_binding])
8615 /* Don't return in the middle of a possible function key sequence,
8616 if the only bindings we found were via case conversion.
8617 Thus, if ESC O a has a function-key-map translation
8618 and ESC o has a binding, don't return after ESC O,
8619 so that we can translate ESC O plus the next character. */
8620 : (fkey.start < t || keytran.start < t))
8621 {
8622 Lisp_Object key;
8623 int used_mouse_menu = 0;
8624
8625 /* Where the last real key started. If we need to throw away a
8626 key that has expanded into more than one element of keybuf
8627 (say, a mouse click on the mode line which is being treated
8628 as [mode-line (mouse-...)], then we backtrack to this point
8629 of keybuf. */
8630 volatile int last_real_key_start;
8631
8632 /* These variables are analogous to echo_start and keys_start;
8633 while those allow us to restart the entire key sequence,
8634 echo_local_start and keys_local_start allow us to throw away
8635 just one key. */
8636 volatile int echo_local_start, keys_local_start, local_first_binding;
8637
8638 eassert (fkey.end == t || (fkey.end > t && fkey.end <= mock_input));
8639 eassert (fkey.start <= fkey.end);
8640 eassert (keytran.start <= keytran.end);
8641 /* key-translation-map is applied *after* function-key-map. */
8642 eassert (keytran.end <= fkey.start);
8643
8644 if (first_unbound < fkey.start && first_unbound < keytran.start)
8645 { /* The prefix upto first_unbound has no binding and has
8646 no translation left to do either, so we know it's unbound.
8647 If we don't stop now, we risk staying here indefinitely
8648 (if the user keeps entering fkey or keytran prefixes
8649 like C-c ESC ESC ESC ESC ...) */
8650 int i;
8651 for (i = first_unbound + 1; i < t; i++)
8652 keybuf[i - first_unbound - 1] = keybuf[i];
8653 mock_input = t - first_unbound - 1;
8654 fkey.end = fkey.start -= first_unbound + 1;
8655 fkey.map = fkey.parent;
8656 keytran.end = keytran.start -= first_unbound + 1;
8657 keytran.map = keytran.parent;
8658 goto replay_sequence;
8659 }
8660
8661 if (t >= bufsize)
8662 error ("Key sequence too long");
8663
8664 if (INTERACTIVE)
8665 echo_local_start = echo_length ();
8666 keys_local_start = this_command_key_count;
8667 local_first_binding = first_binding;
8668
8669 replay_key:
8670 /* These are no-ops, unless we throw away a keystroke below and
8671 jumped back up to replay_key; in that case, these restore the
8672 variables to their original state, allowing us to replay the
8673 loop. */
8674 if (INTERACTIVE && t < mock_input)
8675 echo_truncate (echo_local_start);
8676 this_command_key_count = keys_local_start;
8677 first_binding = local_first_binding;
8678
8679 /* By default, assume each event is "real". */
8680 last_real_key_start = t;
8681
8682 /* Does mock_input indicate that we are re-reading a key sequence? */
8683 if (t < mock_input)
8684 {
8685 key = keybuf[t];
8686 add_command_key (key);
8687 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8688 && NILP (Fzerop (Vecho_keystrokes)))
8689 echo_char (key);
8690 }
8691
8692 /* If not, we should actually read a character. */
8693 else
8694 {
8695 {
8696 #ifdef MULTI_KBOARD
8697 KBOARD *interrupted_kboard = current_kboard;
8698 struct frame *interrupted_frame = SELECTED_FRAME ();
8699 if (setjmp (wrong_kboard_jmpbuf))
8700 {
8701 if (!NILP (delayed_switch_frame))
8702 {
8703 interrupted_kboard->kbd_queue
8704 = Fcons (delayed_switch_frame,
8705 interrupted_kboard->kbd_queue);
8706 delayed_switch_frame = Qnil;
8707 }
8708 while (t > 0)
8709 interrupted_kboard->kbd_queue
8710 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8711
8712 /* If the side queue is non-empty, ensure it begins with a
8713 switch-frame, so we'll replay it in the right context. */
8714 if (CONSP (interrupted_kboard->kbd_queue)
8715 && (key = XCAR (interrupted_kboard->kbd_queue),
8716 !(EVENT_HAS_PARAMETERS (key)
8717 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8718 Qswitch_frame))))
8719 {
8720 Lisp_Object frame;
8721 XSETFRAME (frame, interrupted_frame);
8722 interrupted_kboard->kbd_queue
8723 = Fcons (make_lispy_switch_frame (frame),
8724 interrupted_kboard->kbd_queue);
8725 }
8726 mock_input = 0;
8727 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8728 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8729 goto replay_sequence;
8730 }
8731 #endif
8732 key = read_char (NILP (prompt), nmaps,
8733 (Lisp_Object *) submaps, last_nonmenu_event,
8734 &used_mouse_menu);
8735 }
8736
8737 /* read_char returns t when it shows a menu and the user rejects it.
8738 Just return -1. */
8739 if (EQ (key, Qt))
8740 {
8741 unbind_to (count, Qnil);
8742 UNGCPRO;
8743 return -1;
8744 }
8745
8746 /* read_char returns -1 at the end of a macro.
8747 Emacs 18 handles this by returning immediately with a
8748 zero, so that's what we'll do. */
8749 if (INTEGERP (key) && XINT (key) == -1)
8750 {
8751 t = 0;
8752 /* The Microsoft C compiler can't handle the goto that
8753 would go here. */
8754 dummyflag = 1;
8755 break;
8756 }
8757
8758 /* If the current buffer has been changed from under us, the
8759 keymap may have changed, so replay the sequence. */
8760 if (BUFFERP (key))
8761 {
8762 EMACS_TIME initial_idleness_start_time;
8763 EMACS_SET_SECS_USECS (initial_idleness_start_time,
8764 EMACS_SECS (timer_last_idleness_start_time),
8765 EMACS_USECS (timer_last_idleness_start_time));
8766
8767 /* Resume idle state, using the same start-time as before. */
8768 timer_start_idle ();
8769 timer_idleness_start_time = initial_idleness_start_time;
8770
8771 mock_input = t;
8772 /* Reset the current buffer from the selected window
8773 in case something changed the former and not the latter.
8774 This is to be more consistent with the behavior
8775 of the command_loop_1. */
8776 if (fix_current_buffer)
8777 {
8778 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8779 Fkill_emacs (Qnil);
8780 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8781 Fset_buffer (XWINDOW (selected_window)->buffer);
8782 }
8783
8784 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8785 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8786 goto replay_sequence;
8787 }
8788
8789 /* If we have a quit that was typed in another frame, and
8790 quit_throw_to_read_char switched buffers,
8791 replay to get the right keymap. */
8792 if (INTEGERP (key)
8793 && XINT (key) == quit_char
8794 && current_buffer != starting_buffer)
8795 {
8796 GROW_RAW_KEYBUF;
8797 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8798 keybuf[t++] = key;
8799 mock_input = t;
8800 Vquit_flag = Qnil;
8801 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8802 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8803 goto replay_sequence;
8804 }
8805
8806 Vquit_flag = Qnil;
8807
8808 if (EVENT_HAS_PARAMETERS (key)
8809 /* Either a `switch-frame' or a `select-window' event. */
8810 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8811 {
8812 /* If we're at the beginning of a key sequence, and the caller
8813 says it's okay, go ahead and return this event. If we're
8814 in the midst of a key sequence, delay it until the end. */
8815 if (t > 0 || !can_return_switch_frame)
8816 {
8817 delayed_switch_frame = key;
8818 goto replay_key;
8819 }
8820 }
8821
8822 GROW_RAW_KEYBUF;
8823 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8824 }
8825
8826 /* Clicks in non-text areas get prefixed by the symbol
8827 in their CHAR-ADDRESS field. For example, a click on
8828 the mode line is prefixed by the symbol `mode-line'.
8829
8830 Furthermore, key sequences beginning with mouse clicks
8831 are read using the keymaps of the buffer clicked on, not
8832 the current buffer. So we may have to switch the buffer
8833 here.
8834
8835 When we turn one event into two events, we must make sure
8836 that neither of the two looks like the original--so that,
8837 if we replay the events, they won't be expanded again.
8838 If not for this, such reexpansion could happen either here
8839 or when user programs play with this-command-keys. */
8840 if (EVENT_HAS_PARAMETERS (key))
8841 {
8842 Lisp_Object kind;
8843 Lisp_Object string;
8844
8845 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
8846 if (EQ (kind, Qmouse_click))
8847 {
8848 Lisp_Object window, posn;
8849
8850 window = POSN_WINDOW (EVENT_START (key));
8851 posn = POSN_POSN (EVENT_START (key));
8852
8853 if (CONSP (posn)
8854 || (!NILP (fake_prefixed_keys)
8855 && !NILP (Fmemq (key, fake_prefixed_keys))))
8856 {
8857 /* We're looking a second time at an event for which
8858 we generated a fake prefix key. Set
8859 last_real_key_start appropriately. */
8860 if (t > 0)
8861 last_real_key_start = t - 1;
8862 }
8863
8864 /* Key sequences beginning with mouse clicks are
8865 read using the keymaps in the buffer clicked on,
8866 not the current buffer. If we're at the
8867 beginning of a key sequence, switch buffers. */
8868 if (last_real_key_start == 0
8869 && WINDOWP (window)
8870 && BUFFERP (XWINDOW (window)->buffer)
8871 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
8872 {
8873 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8874 keybuf[t] = key;
8875 mock_input = t + 1;
8876
8877 /* Arrange to go back to the original buffer once we're
8878 done reading the key sequence. Note that we can't
8879 use save_excursion_{save,restore} here, because they
8880 save point as well as the current buffer; we don't
8881 want to save point, because redisplay may change it,
8882 to accommodate a Fset_window_start or something. We
8883 don't want to do this at the top of the function,
8884 because we may get input from a subprocess which
8885 wants to change the selected window and stuff (say,
8886 emacsclient). */
8887 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
8888
8889 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8890 Fkill_emacs (Qnil);
8891 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
8892 orig_local_map = get_local_map (PT, current_buffer,
8893 Qlocal_map);
8894 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8895 goto replay_sequence;
8896 }
8897
8898 /* For a mouse click, get the local text-property keymap
8899 of the place clicked on, rather than point. */
8900 if (last_real_key_start == 0
8901 && CONSP (XCDR (key))
8902 && ! localized_local_map)
8903 {
8904 Lisp_Object map_here, start, pos;
8905
8906 localized_local_map = 1;
8907 start = EVENT_START (key);
8908
8909 if (CONSP (start) && POSN_INBUFFER_P (start))
8910 {
8911 pos = POSN_BUFFER_POSN (start);
8912 if (INTEGERP (pos)
8913 && XINT (pos) >= BEG && XINT (pos) <= Z)
8914 {
8915 map_here = get_local_map (XINT (pos),
8916 current_buffer, Qlocal_map);
8917 if (!EQ (map_here, orig_local_map))
8918 {
8919 orig_local_map = map_here;
8920 keybuf[t] = key;
8921 mock_input = t + 1;
8922
8923 goto replay_sequence;
8924 }
8925 map_here = get_local_map (XINT (pos),
8926 current_buffer, Qkeymap);
8927 if (!EQ (map_here, orig_keymap))
8928 {
8929 orig_keymap = map_here;
8930 keybuf[t] = key;
8931 mock_input = t + 1;
8932
8933 goto replay_sequence;
8934 }
8935 }
8936 }
8937 }
8938
8939 /* Expand mode-line and scroll-bar events into two events:
8940 use posn as a fake prefix key. */
8941 if (SYMBOLP (posn)
8942 && (NILP (fake_prefixed_keys)
8943 || NILP (Fmemq (key, fake_prefixed_keys))))
8944 {
8945 if (t + 1 >= bufsize)
8946 error ("Key sequence too long");
8947
8948 keybuf[t] = posn;
8949 keybuf[t + 1] = key;
8950 mock_input = t + 2;
8951
8952 /* Record that a fake prefix key has been generated
8953 for KEY. Don't modify the event; this would
8954 prevent proper action when the event is pushed
8955 back into unread-command-events. */
8956 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
8957
8958 /* If on a mode line string with a local keymap,
8959 reconsider the key sequence with that keymap. */
8960 if (string = POSN_STRING (EVENT_START (key)),
8961 (CONSP (string) && STRINGP (XCAR (string))))
8962 {
8963 Lisp_Object pos, map, map2;
8964
8965 pos = XCDR (string);
8966 string = XCAR (string);
8967 if (XINT (pos) >= 0
8968 && XINT (pos) < SCHARS (string))
8969 {
8970 map = Fget_text_property (pos, Qlocal_map, string);
8971 if (!NILP (map))
8972 orig_local_map = map;
8973 map2 = Fget_text_property (pos, Qkeymap, string);
8974 if (!NILP (map2))
8975 orig_keymap = map2;
8976 if (!NILP (map) || !NILP (map2))
8977 goto replay_sequence;
8978 }
8979 }
8980
8981 goto replay_key;
8982 }
8983 else if (NILP (from_string)
8984 && (string = POSN_STRING (EVENT_START (key)),
8985 (CONSP (string) && STRINGP (XCAR (string)))))
8986 {
8987 /* For a click on a string, i.e. overlay string or a
8988 string displayed via the `display' property,
8989 consider `local-map' and `keymap' properties of
8990 that string. */
8991 Lisp_Object pos, map, map2;
8992
8993 pos = XCDR (string);
8994 string = XCAR (string);
8995 if (XINT (pos) >= 0
8996 && XINT (pos) < SCHARS (string))
8997 {
8998 map = Fget_text_property (pos, Qlocal_map, string);
8999 if (!NILP (map))
9000 orig_local_map = map;
9001 map2 = Fget_text_property (pos, Qkeymap, string);
9002 if (!NILP (map2))
9003 orig_keymap = map2;
9004
9005 if (!NILP (map) || !NILP (map2))
9006 {
9007 from_string = string;
9008 goto replay_sequence;
9009 }
9010 }
9011 }
9012 }
9013 else if (CONSP (XCDR (key))
9014 && CONSP (EVENT_START (key))
9015 && CONSP (XCDR (EVENT_START (key))))
9016 {
9017 Lisp_Object posn;
9018
9019 posn = POSN_POSN (EVENT_START (key));
9020 /* Handle menu-bar events:
9021 insert the dummy prefix event `menu-bar'. */
9022 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9023 {
9024 if (t + 1 >= bufsize)
9025 error ("Key sequence too long");
9026 keybuf[t] = posn;
9027 keybuf[t+1] = key;
9028
9029 /* Zap the position in key, so we know that we've
9030 expanded it, and don't try to do so again. */
9031 POSN_SET_POSN (EVENT_START (key),
9032 Fcons (posn, Qnil));
9033
9034 mock_input = t + 2;
9035 goto replay_sequence;
9036 }
9037 else if (CONSP (posn))
9038 {
9039 /* We're looking at the second event of a
9040 sequence which we expanded before. Set
9041 last_real_key_start appropriately. */
9042 if (last_real_key_start == t && t > 0)
9043 last_real_key_start = t - 1;
9044 }
9045 }
9046 }
9047
9048 /* We have finally decided that KEY is something we might want
9049 to look up. */
9050 first_binding = (follow_key (key,
9051 nmaps - first_binding,
9052 submaps + first_binding,
9053 defs + first_binding,
9054 submaps + first_binding)
9055 + first_binding);
9056
9057 /* If KEY wasn't bound, we'll try some fallbacks. */
9058 if (first_binding < nmaps)
9059 /* This is needed for the following scenario:
9060 event 0: a down-event that gets dropped by calling replay_key.
9061 event 1: some normal prefix like C-h.
9062 After event 0, first_unbound is 0, after event 1 fkey.start
9063 and keytran.start are both 1, so when we see that C-h is bound,
9064 we need to update first_unbound. */
9065 first_unbound = max (t + 1, first_unbound);
9066 else
9067 {
9068 Lisp_Object head;
9069
9070 /* Remember the position to put an upper bound on fkey.start. */
9071 first_unbound = min (t, first_unbound);
9072
9073 head = EVENT_HEAD (key);
9074 if (help_char_p (head) && t > 0)
9075 {
9076 read_key_sequence_cmd = Vprefix_help_command;
9077 keybuf[t++] = key;
9078 last_nonmenu_event = key;
9079 /* The Microsoft C compiler can't handle the goto that
9080 would go here. */
9081 dummyflag = 1;
9082 break;
9083 }
9084
9085 if (SYMBOLP (head))
9086 {
9087 Lisp_Object breakdown;
9088 int modifiers;
9089
9090 breakdown = parse_modifiers (head);
9091 modifiers = XINT (XCAR (XCDR (breakdown)));
9092 /* Attempt to reduce an unbound mouse event to a simpler
9093 event that is bound:
9094 Drags reduce to clicks.
9095 Double-clicks reduce to clicks.
9096 Triple-clicks reduce to double-clicks, then to clicks.
9097 Down-clicks are eliminated.
9098 Double-downs reduce to downs, then are eliminated.
9099 Triple-downs reduce to double-downs, then to downs,
9100 then are eliminated. */
9101 if (modifiers & (down_modifier | drag_modifier
9102 | double_modifier | triple_modifier))
9103 {
9104 while (modifiers & (down_modifier | drag_modifier
9105 | double_modifier | triple_modifier))
9106 {
9107 Lisp_Object new_head, new_click;
9108 if (modifiers & triple_modifier)
9109 modifiers ^= (double_modifier | triple_modifier);
9110 else if (modifiers & double_modifier)
9111 modifiers &= ~double_modifier;
9112 else if (modifiers & drag_modifier)
9113 modifiers &= ~drag_modifier;
9114 else
9115 {
9116 /* Dispose of this `down' event by simply jumping
9117 back to replay_key, to get another event.
9118
9119 Note that if this event came from mock input,
9120 then just jumping back to replay_key will just
9121 hand it to us again. So we have to wipe out any
9122 mock input.
9123
9124 We could delete keybuf[t] and shift everything
9125 after that to the left by one spot, but we'd also
9126 have to fix up any variable that points into
9127 keybuf, and shifting isn't really necessary
9128 anyway.
9129
9130 Adding prefixes for non-textual mouse clicks
9131 creates two characters of mock input, and both
9132 must be thrown away. If we're only looking at
9133 the prefix now, we can just jump back to
9134 replay_key. On the other hand, if we've already
9135 processed the prefix, and now the actual click
9136 itself is giving us trouble, then we've lost the
9137 state of the keymaps we want to backtrack to, and
9138 we need to replay the whole sequence to rebuild
9139 it.
9140
9141 Beyond that, only function key expansion could
9142 create more than two keys, but that should never
9143 generate mouse events, so it's okay to zero
9144 mock_input in that case too.
9145
9146 FIXME: The above paragraph seems just plain
9147 wrong, if you consider things like
9148 xterm-mouse-mode. -stef
9149
9150 Isn't this just the most wonderful code ever? */
9151
9152 /* If mock_input > t + 1, the above simplification
9153 will actually end up dropping keys on the floor.
9154 This is probably OK for now, but even
9155 if mock_input <= t + 1, we need to adjust fkey
9156 and keytran.
9157 Typical case [header-line down-mouse-N]:
9158 mock_input = 2, t = 1, fkey.end = 1,
9159 last_real_key_start = 0. */
9160 if (fkey.end > last_real_key_start)
9161 {
9162 fkey.end = fkey.start
9163 = min (last_real_key_start, fkey.start);
9164 fkey.map = fkey.parent;
9165 if (keytran.end > last_real_key_start)
9166 {
9167 keytran.end = keytran.start
9168 = min (last_real_key_start, keytran.start);
9169 keytran.map = keytran.parent;
9170 }
9171 }
9172 if (t == last_real_key_start)
9173 {
9174 mock_input = 0;
9175 goto replay_key;
9176 }
9177 else
9178 {
9179 mock_input = last_real_key_start;
9180 goto replay_sequence;
9181 }
9182 }
9183
9184 new_head
9185 = apply_modifiers (modifiers, XCAR (breakdown));
9186 new_click
9187 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9188
9189 /* Look for a binding for this new key. follow_key
9190 promises that it didn't munge submaps the
9191 last time we called it, since key was unbound. */
9192 first_binding
9193 = (follow_key (new_click,
9194 nmaps - local_first_binding,
9195 submaps + local_first_binding,
9196 defs + local_first_binding,
9197 submaps + local_first_binding)
9198 + local_first_binding);
9199
9200 /* If that click is bound, go for it. */
9201 if (first_binding < nmaps)
9202 {
9203 key = new_click;
9204 break;
9205 }
9206 /* Otherwise, we'll leave key set to the drag event. */
9207 }
9208 }
9209 }
9210 }
9211
9212 keybuf[t++] = key;
9213 /* Normally, last_nonmenu_event gets the previous key we read.
9214 But when a mouse popup menu is being used,
9215 we don't update last_nonmenu_event; it continues to hold the mouse
9216 event that preceded the first level of menu. */
9217 if (!used_mouse_menu)
9218 last_nonmenu_event = key;
9219
9220 /* Record what part of this_command_keys is the current key sequence. */
9221 this_single_command_key_start = this_command_key_count - t;
9222
9223 if (first_binding < nmaps && NILP (submaps[first_binding]))
9224 /* There is a binding and it's not a prefix.
9225 There is thus no function-key in this sequence.
9226 Moving fkey.start is important in this case to allow keytran.start
9227 to go over the sequence before we return (since we keep the
9228 invariant that keytran.end <= fkey.start). */
9229 {
9230 if (fkey.start < t)
9231 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9232 }
9233 else
9234 /* If the sequence is unbound, see if we can hang a function key
9235 off the end of it. */
9236 /* Continue scan from fkey.end until we find a bound suffix. */
9237 while (fkey.end < t)
9238 {
9239 struct gcpro gcpro1, gcpro2, gcpro3;
9240 int done, diff;
9241
9242 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9243 done = keyremap_step (keybuf, bufsize, &fkey,
9244 max (t, mock_input),
9245 /* If there's a binding (i.e.
9246 first_binding >= nmaps) we don't want
9247 to apply this function-key-mapping. */
9248 fkey.end + 1 == t && first_binding >= nmaps,
9249 &diff, prompt);
9250 UNGCPRO;
9251 if (done)
9252 {
9253 mock_input = diff + max (t, mock_input);
9254 goto replay_sequence;
9255 }
9256 }
9257
9258 /* Look for this sequence in key-translation-map.
9259 Scan from keytran.end until we find a bound suffix. */
9260 while (keytran.end < fkey.start)
9261 {
9262 struct gcpro gcpro1, gcpro2, gcpro3;
9263 int done, diff;
9264
9265 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9266 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9267 1, &diff, prompt);
9268 UNGCPRO;
9269 if (done)
9270 {
9271 mock_input = diff + max (t, mock_input);
9272 /* Adjust the function-key-map counters. */
9273 fkey.end += diff;
9274 fkey.start += diff;
9275
9276 goto replay_sequence;
9277 }
9278 }
9279
9280 /* If KEY is not defined in any of the keymaps,
9281 and cannot be part of a function key or translation,
9282 and is an upper case letter
9283 use the corresponding lower-case letter instead. */
9284 if (first_binding >= nmaps
9285 && fkey.start >= t && keytran.start >= t
9286 && INTEGERP (key)
9287 && ((((XINT (key) & 0x3ffff)
9288 < XCHAR_TABLE (current_buffer->downcase_table)->size)
9289 && UPPERCASEP (XINT (key) & 0x3ffff))
9290 || (XINT (key) & shift_modifier)))
9291 {
9292 Lisp_Object new_key;
9293
9294 original_uppercase = key;
9295 original_uppercase_position = t - 1;
9296
9297 if (XINT (key) & shift_modifier)
9298 XSETINT (new_key, XINT (key) & ~shift_modifier);
9299 else
9300 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9301 | (XINT (key) & ~0x3ffff)));
9302
9303 /* We have to do this unconditionally, regardless of whether
9304 the lower-case char is defined in the keymaps, because they
9305 might get translated through function-key-map. */
9306 keybuf[t - 1] = new_key;
9307 mock_input = max (t, mock_input);
9308
9309 goto replay_sequence;
9310 }
9311 /* If KEY is not defined in any of the keymaps,
9312 and cannot be part of a function key or translation,
9313 and is a shifted function key,
9314 use the corresponding unshifted function key instead. */
9315 if (first_binding >= nmaps
9316 && fkey.start >= t && keytran.start >= t
9317 && SYMBOLP (key))
9318 {
9319 Lisp_Object breakdown;
9320 int modifiers;
9321
9322 breakdown = parse_modifiers (key);
9323 modifiers = XINT (XCAR (XCDR (breakdown)));
9324 if (modifiers & shift_modifier)
9325 {
9326 Lisp_Object new_key;
9327
9328 original_uppercase = key;
9329 original_uppercase_position = t - 1;
9330
9331 modifiers &= ~shift_modifier;
9332 new_key = apply_modifiers (modifiers,
9333 XCAR (breakdown));
9334
9335 keybuf[t - 1] = new_key;
9336 mock_input = max (t, mock_input);
9337 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
9338 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
9339
9340 goto replay_sequence;
9341 }
9342 }
9343 }
9344
9345 if (!dummyflag)
9346 read_key_sequence_cmd = (first_binding < nmaps
9347 ? defs[first_binding]
9348 : Qnil);
9349
9350 unread_switch_frame = delayed_switch_frame;
9351 unbind_to (count, Qnil);
9352
9353 /* Don't downcase the last character if the caller says don't.
9354 Don't downcase it if the result is undefined, either. */
9355 if ((dont_downcase_last || first_binding >= nmaps)
9356 && t - 1 == original_uppercase_position)
9357 keybuf[t - 1] = original_uppercase;
9358
9359 /* Occasionally we fabricate events, perhaps by expanding something
9360 according to function-key-map, or by adding a prefix symbol to a
9361 mouse click in the scroll bar or modeline. In this cases, return
9362 the entire generated key sequence, even if we hit an unbound
9363 prefix or a definition before the end. This means that you will
9364 be able to push back the event properly, and also means that
9365 read-key-sequence will always return a logical unit.
9366
9367 Better ideas? */
9368 for (; t < mock_input; t++)
9369 {
9370 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9371 && NILP (Fzerop (Vecho_keystrokes)))
9372 echo_char (keybuf[t]);
9373 add_command_key (keybuf[t]);
9374 }
9375
9376
9377
9378 UNGCPRO;
9379 return t;
9380 }
9381
9382 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9383 doc: /* Read a sequence of keystrokes and return as a string or vector.
9384 The sequence is sufficient to specify a non-prefix command in the
9385 current local and global maps.
9386
9387 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9388 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9389 as a continuation of the previous key.
9390
9391 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9392 convert the last event to lower case. (Normally any upper case event
9393 is converted to lower case if the original event is undefined and the lower
9394 case equivalent is defined.) A non-nil value is appropriate for reading
9395 a key sequence to be defined.
9396
9397 A C-g typed while in this function is treated like any other character,
9398 and `quit-flag' is not set.
9399
9400 If the key sequence starts with a mouse click, then the sequence is read
9401 using the keymaps of the buffer of the window clicked in, not the buffer
9402 of the selected window as normal.
9403
9404 `read-key-sequence' drops unbound button-down events, since you normally
9405 only care about the click or drag events which follow them. If a drag
9406 or multi-click event is unbound, but the corresponding click event would
9407 be bound, `read-key-sequence' turns the event into a click event at the
9408 drag's starting position. This means that you don't have to distinguish
9409 between click and drag, double, or triple events unless you want to.
9410
9411 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9412 lines separating windows, and scroll bars with imaginary keys
9413 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9414
9415 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9416 function will process a switch-frame event if the user switches frames
9417 before typing anything. If the user switches frames in the middle of a
9418 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9419 is nil, then the event will be put off until after the current key sequence.
9420
9421 `read-key-sequence' checks `function-key-map' for function key
9422 sequences, where they wouldn't conflict with ordinary bindings. See
9423 `function-key-map' for more details.
9424
9425 The optional fifth argument COMMAND-LOOP, if non-nil, means
9426 that this key sequence is being read by something that will
9427 read commands one after another. It should be nil if the caller
9428 will read just one key sequence. */)
9429 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9430 command_loop)
9431 Lisp_Object prompt, continue_echo, dont_downcase_last;
9432 Lisp_Object can_return_switch_frame, command_loop;
9433 {
9434 Lisp_Object keybuf[30];
9435 register int i;
9436 struct gcpro gcpro1;
9437 int count = SPECPDL_INDEX ();
9438
9439 if (!NILP (prompt))
9440 CHECK_STRING (prompt);
9441 QUIT;
9442
9443 specbind (Qinput_method_exit_on_first_char,
9444 (NILP (command_loop) ? Qt : Qnil));
9445 specbind (Qinput_method_use_echo_area,
9446 (NILP (command_loop) ? Qt : Qnil));
9447
9448 bzero (keybuf, sizeof keybuf);
9449 GCPRO1 (keybuf[0]);
9450 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9451
9452 if (NILP (continue_echo))
9453 {
9454 this_command_key_count = 0;
9455 this_command_key_count_reset = 0;
9456 this_single_command_key_start = 0;
9457 }
9458
9459 #ifdef HAVE_X_WINDOWS
9460 if (display_hourglass_p)
9461 cancel_hourglass ();
9462 #endif
9463
9464 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9465 prompt, ! NILP (dont_downcase_last),
9466 ! NILP (can_return_switch_frame), 0);
9467
9468 #if 0 /* The following is fine for code reading a key sequence and
9469 then proceeding with a lenghty computation, but it's not good
9470 for code reading keys in a loop, like an input method. */
9471 #ifdef HAVE_X_WINDOWS
9472 if (display_hourglass_p)
9473 start_hourglass ();
9474 #endif
9475 #endif
9476
9477 if (i == -1)
9478 {
9479 Vquit_flag = Qt;
9480 QUIT;
9481 }
9482 UNGCPRO;
9483 return unbind_to (count, make_event_array (i, keybuf));
9484 }
9485
9486 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9487 Sread_key_sequence_vector, 1, 5, 0,
9488 doc: /* Like `read-key-sequence' but always return a vector. */)
9489 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9490 command_loop)
9491 Lisp_Object prompt, continue_echo, dont_downcase_last;
9492 Lisp_Object can_return_switch_frame, command_loop;
9493 {
9494 Lisp_Object keybuf[30];
9495 register int i;
9496 struct gcpro gcpro1;
9497 int count = SPECPDL_INDEX ();
9498
9499 if (!NILP (prompt))
9500 CHECK_STRING (prompt);
9501 QUIT;
9502
9503 specbind (Qinput_method_exit_on_first_char,
9504 (NILP (command_loop) ? Qt : Qnil));
9505 specbind (Qinput_method_use_echo_area,
9506 (NILP (command_loop) ? Qt : Qnil));
9507
9508 bzero (keybuf, sizeof keybuf);
9509 GCPRO1 (keybuf[0]);
9510 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9511
9512 if (NILP (continue_echo))
9513 {
9514 this_command_key_count = 0;
9515 this_command_key_count_reset = 0;
9516 this_single_command_key_start = 0;
9517 }
9518
9519 #ifdef HAVE_X_WINDOWS
9520 if (display_hourglass_p)
9521 cancel_hourglass ();
9522 #endif
9523
9524 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9525 prompt, ! NILP (dont_downcase_last),
9526 ! NILP (can_return_switch_frame), 0);
9527
9528 #ifdef HAVE_X_WINDOWS
9529 if (display_hourglass_p)
9530 start_hourglass ();
9531 #endif
9532
9533 if (i == -1)
9534 {
9535 Vquit_flag = Qt;
9536 QUIT;
9537 }
9538 UNGCPRO;
9539 return unbind_to (count, Fvector (i, keybuf));
9540 }
9541 \f
9542 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9543 doc: /* Execute CMD as an editor command.
9544 CMD must be a symbol that satisfies the `commandp' predicate.
9545 Optional second arg RECORD-FLAG non-nil
9546 means unconditionally put this command in `command-history'.
9547 Otherwise, that is done only if an arg is read using the minibuffer.
9548 The argument KEYS specifies the value to use instead of (this-command-keys)
9549 when reading the arguments; if it is nil, (this-command-keys) is used.
9550 The argument SPECIAL, if non-nil, means that this command is executing
9551 a special event, so ignore the prefix argument and don't clear it. */)
9552 (cmd, record_flag, keys, special)
9553 Lisp_Object cmd, record_flag, keys, special;
9554 {
9555 register Lisp_Object final;
9556 register Lisp_Object tem;
9557 Lisp_Object prefixarg;
9558 struct backtrace backtrace;
9559 extern int debug_on_next_call;
9560
9561 debug_on_next_call = 0;
9562
9563 if (NILP (special))
9564 {
9565 prefixarg = current_kboard->Vprefix_arg;
9566 Vcurrent_prefix_arg = prefixarg;
9567 current_kboard->Vprefix_arg = Qnil;
9568 }
9569 else
9570 prefixarg = Qnil;
9571
9572 if (SYMBOLP (cmd))
9573 {
9574 tem = Fget (cmd, Qdisabled);
9575 if (!NILP (tem) && !NILP (Vrun_hooks))
9576 {
9577 tem = Fsymbol_value (Qdisabled_command_hook);
9578 if (!NILP (tem))
9579 return call1 (Vrun_hooks, Qdisabled_command_hook);
9580 }
9581 }
9582
9583 while (1)
9584 {
9585 final = Findirect_function (cmd);
9586
9587 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9588 {
9589 struct gcpro gcpro1, gcpro2;
9590
9591 GCPRO2 (cmd, prefixarg);
9592 do_autoload (final, cmd);
9593 UNGCPRO;
9594 }
9595 else
9596 break;
9597 }
9598
9599 if (STRINGP (final) || VECTORP (final))
9600 {
9601 /* If requested, place the macro in the command history. For
9602 other sorts of commands, call-interactively takes care of
9603 this. */
9604 if (!NILP (record_flag))
9605 {
9606 Vcommand_history
9607 = Fcons (Fcons (Qexecute_kbd_macro,
9608 Fcons (final, Fcons (prefixarg, Qnil))),
9609 Vcommand_history);
9610
9611 /* Don't keep command history around forever. */
9612 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9613 {
9614 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9615 if (CONSP (tem))
9616 XSETCDR (tem, Qnil);
9617 }
9618 }
9619
9620 return Fexecute_kbd_macro (final, prefixarg, Qnil);
9621 }
9622
9623 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9624 {
9625 backtrace.next = backtrace_list;
9626 backtrace_list = &backtrace;
9627 backtrace.function = &Qcall_interactively;
9628 backtrace.args = &cmd;
9629 backtrace.nargs = 1;
9630 backtrace.evalargs = 0;
9631
9632 tem = Fcall_interactively (cmd, record_flag, keys);
9633
9634 backtrace_list = backtrace.next;
9635 return tem;
9636 }
9637 return Qnil;
9638 }
9639
9640
9641 \f
9642 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9643 1, 1, "P",
9644 doc: /* Read function name, then read its arguments and call it. */)
9645 (prefixarg)
9646 Lisp_Object prefixarg;
9647 {
9648 Lisp_Object function;
9649 char buf[40];
9650 int saved_last_point_position;
9651 Lisp_Object saved_keys, saved_last_point_position_buffer;
9652 Lisp_Object bindings, value;
9653 struct gcpro gcpro1, gcpro2, gcpro3;
9654
9655 saved_keys = Fvector (this_command_key_count,
9656 XVECTOR (this_command_keys)->contents);
9657 saved_last_point_position_buffer = last_point_position_buffer;
9658 saved_last_point_position = last_point_position;
9659 buf[0] = 0;
9660 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
9661
9662 if (EQ (prefixarg, Qminus))
9663 strcpy (buf, "- ");
9664 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9665 strcpy (buf, "C-u ");
9666 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9667 {
9668 if (sizeof (int) == sizeof (EMACS_INT))
9669 sprintf (buf, "%d ", XINT (XCAR (prefixarg)));
9670 else if (sizeof (long) == sizeof (EMACS_INT))
9671 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9672 else
9673 abort ();
9674 }
9675 else if (INTEGERP (prefixarg))
9676 {
9677 if (sizeof (int) == sizeof (EMACS_INT))
9678 sprintf (buf, "%d ", XINT (prefixarg));
9679 else if (sizeof (long) == sizeof (EMACS_INT))
9680 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9681 else
9682 abort ();
9683 }
9684
9685 /* This isn't strictly correct if execute-extended-command
9686 is bound to anything else. Perhaps it should use
9687 this_command_keys? */
9688 strcat (buf, "M-x ");
9689
9690 /* Prompt with buf, and then read a string, completing from and
9691 restricting to the set of all defined commands. Don't provide
9692 any initial input. Save the command read on the extended-command
9693 history list. */
9694 function = Fcompleting_read (build_string (buf),
9695 Vobarray, Qcommandp,
9696 Qt, Qnil, Qextended_command_history, Qnil,
9697 Qnil);
9698
9699 if (STRINGP (function) && SCHARS (function) == 0)
9700 error ("No command name given");
9701
9702 /* Set this_command_keys to the concatenation of saved_keys and
9703 function, followed by a RET. */
9704 {
9705 Lisp_Object *keys;
9706 int i;
9707
9708 this_command_key_count = 0;
9709 this_command_key_count_reset = 0;
9710 this_single_command_key_start = 0;
9711
9712 keys = XVECTOR (saved_keys)->contents;
9713 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9714 add_command_key (keys[i]);
9715
9716 for (i = 0; i < SCHARS (function); i++)
9717 add_command_key (Faref (function, make_number (i)));
9718
9719 add_command_key (make_number ('\015'));
9720 }
9721
9722 last_point_position = saved_last_point_position;
9723 last_point_position_buffer = saved_last_point_position_buffer;
9724
9725 UNGCPRO;
9726
9727 function = Fintern (function, Qnil);
9728 current_kboard->Vprefix_arg = prefixarg;
9729 Vthis_command = function;
9730 real_this_command = function;
9731
9732 /* If enabled, show which key runs this command. */
9733 if (!NILP (Vsuggest_key_bindings)
9734 && NILP (Vexecuting_macro)
9735 && SYMBOLP (function))
9736 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9737 Qt, Qnil, Qnil);
9738 else
9739 bindings = Qnil;
9740
9741 value = Qnil;
9742 GCPRO2 (bindings, value);
9743 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9744
9745 /* If the command has a key binding, print it now. */
9746 if (!NILP (bindings)
9747 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9748 Qmouse_movement)))
9749 {
9750 /* But first wait, and skip the message if there is input. */
9751 int delay_time;
9752 if (!NILP (echo_area_buffer[0]))
9753 /* This command displayed something in the echo area;
9754 so wait a few seconds, then display our suggestion message. */
9755 delay_time = (NUMBERP (Vsuggest_key_bindings)
9756 ? XINT (Vsuggest_key_bindings) : 2);
9757 else
9758 /* This command left the echo area empty,
9759 so display our message immediately. */
9760 delay_time = 0;
9761
9762 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
9763 && ! CONSP (Vunread_command_events))
9764 {
9765 Lisp_Object binding;
9766 char *newmessage;
9767 int message_p = push_message ();
9768 int count = SPECPDL_INDEX ();
9769
9770 record_unwind_protect (pop_message_unwind, Qnil);
9771 binding = Fkey_description (bindings);
9772
9773 newmessage
9774 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
9775 + SBYTES (binding)
9776 + 100);
9777 sprintf (newmessage, "You can run the command `%s' with %s",
9778 SDATA (SYMBOL_NAME (function)),
9779 SDATA (binding));
9780 message2_nolog (newmessage,
9781 strlen (newmessage),
9782 STRING_MULTIBYTE (binding));
9783 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9784 ? Vsuggest_key_bindings : make_number (2)),
9785 Qnil, Qnil))
9786 && message_p)
9787 restore_message ();
9788
9789 unbind_to (count, Qnil);
9790 }
9791 }
9792
9793 RETURN_UNGCPRO (value);
9794 }
9795
9796 \f
9797 /* Return nonzero if input events are pending. */
9798
9799 int
9800 detect_input_pending ()
9801 {
9802 if (!input_pending)
9803 get_input_pending (&input_pending, 0);
9804
9805 return input_pending;
9806 }
9807
9808 /* Return nonzero if input events are pending, and run any pending timers. */
9809
9810 int
9811 detect_input_pending_run_timers (do_display)
9812 int do_display;
9813 {
9814 int old_timers_run = timers_run;
9815
9816 if (!input_pending)
9817 get_input_pending (&input_pending, 1);
9818
9819 if (old_timers_run != timers_run && do_display)
9820 {
9821 redisplay_preserve_echo_area (8);
9822 /* The following fixes a bug when using lazy-lock with
9823 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9824 from an idle timer function. The symptom of the bug is that
9825 the cursor sometimes doesn't become visible until the next X
9826 event is processed. --gerd. */
9827 if (rif)
9828 rif->flush_display (NULL);
9829 }
9830
9831 return input_pending;
9832 }
9833
9834 /* This is called in some cases before a possible quit.
9835 It cases the next call to detect_input_pending to recompute input_pending.
9836 So calling this function unnecessarily can't do any harm. */
9837
9838 void
9839 clear_input_pending ()
9840 {
9841 input_pending = 0;
9842 }
9843
9844 /* Return nonzero if there are pending requeued events.
9845 This isn't used yet. The hope is to make wait_reading_process_input
9846 call it, and return if it runs Lisp code that unreads something.
9847 The problem is, kbd_buffer_get_event needs to be fixed to know what
9848 to do in that case. It isn't trivial. */
9849
9850 int
9851 requeued_events_pending_p ()
9852 {
9853 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9854 }
9855
9856
9857 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9858 doc: /* Return t if command input is currently available with no wait.
9859 Actually, the value is nil only if we can be sure that no input is available;
9860 if there is a doubt, the value is t. */)
9861 ()
9862 {
9863 if (!NILP (Vunread_command_events) || unread_command_char != -1)
9864 return (Qt);
9865
9866 get_filtered_input_pending (&input_pending, 1, 1);
9867 return input_pending > 0 ? Qt : Qnil;
9868 }
9869
9870 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
9871 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
9872 ()
9873 {
9874 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
9875 Lisp_Object val;
9876
9877 if (total_keys < NUM_RECENT_KEYS)
9878 return Fvector (total_keys, keys);
9879 else
9880 {
9881 val = Fvector (NUM_RECENT_KEYS, keys);
9882 bcopy (keys + recent_keys_index,
9883 XVECTOR (val)->contents,
9884 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
9885 bcopy (keys,
9886 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
9887 recent_keys_index * sizeof (Lisp_Object));
9888 return val;
9889 }
9890 }
9891
9892 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
9893 doc: /* Return the key sequence that invoked this command.
9894 However, if the command has called `read-key-sequence', it returns
9895 the last key sequence that has been read.
9896 The value is a string or a vector. */)
9897 ()
9898 {
9899 return make_event_array (this_command_key_count,
9900 XVECTOR (this_command_keys)->contents);
9901 }
9902
9903 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
9904 doc: /* Return the key sequence that invoked this command, as a vector.
9905 However, if the command has called `read-key-sequence', it returns
9906 the last key sequence that has been read. */)
9907 ()
9908 {
9909 return Fvector (this_command_key_count,
9910 XVECTOR (this_command_keys)->contents);
9911 }
9912
9913 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
9914 Sthis_single_command_keys, 0, 0, 0,
9915 doc: /* Return the key sequence that invoked this command.
9916 More generally, it returns the last key sequence read, either by
9917 the command loop or by `read-key-sequence'.
9918 Unlike `this-command-keys', this function's value
9919 does not include prefix arguments.
9920 The value is always a vector. */)
9921 ()
9922 {
9923 return Fvector (this_command_key_count
9924 - this_single_command_key_start,
9925 (XVECTOR (this_command_keys)->contents
9926 + this_single_command_key_start));
9927 }
9928
9929 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
9930 Sthis_single_command_raw_keys, 0, 0, 0,
9931 doc: /* Return the raw events that were read for this command.
9932 More generally, it returns the last key sequence read, either by
9933 the command loop or by `read-key-sequence'.
9934 Unlike `this-single-command-keys', this function's value
9935 shows the events before all translations (except for input methods).
9936 The value is always a vector. */)
9937 ()
9938 {
9939 return Fvector (raw_keybuf_count,
9940 (XVECTOR (raw_keybuf)->contents));
9941 }
9942
9943 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
9944 Sreset_this_command_lengths, 0, 0, 0,
9945 doc: /* Make the unread events replace the last command and echo.
9946 Used in `universal-argument-other-key'.
9947
9948 `universal-argument-other-key' rereads the event just typed.
9949 It then gets translated through `function-key-map'.
9950 The translated event has to replace the real events,
9951 both in the value of (this-command-keys) and in echoing.
9952 To achieve this, `universal-argument-other-key' calls
9953 `reset-this-command-lengths', which discards the record of reading
9954 these events the first time. */)
9955 ()
9956 {
9957 this_command_key_count = before_command_key_count;
9958 if (this_command_key_count < this_single_command_key_start)
9959 this_single_command_key_start = this_command_key_count;
9960
9961 echo_truncate (before_command_echo_length);
9962
9963 /* Cause whatever we put into unread-command-events
9964 to echo as if it were being freshly read from the keyboard. */
9965 this_command_key_count_reset = 1;
9966
9967 return Qnil;
9968 }
9969
9970 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
9971 Sclear_this_command_keys, 0, 1, 0,
9972 doc: /* Clear out the vector that `this-command-keys' returns.
9973 Also clear the record of the last 100 events, unless optional arg
9974 KEEP-RECORD is non-nil. */)
9975 (keep_record)
9976 Lisp_Object keep_record;
9977 {
9978 int i;
9979
9980 this_command_key_count = 0;
9981 this_command_key_count_reset = 0;
9982
9983 if (NILP (keep_record))
9984 {
9985 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
9986 XVECTOR (recent_keys)->contents[i] = Qnil;
9987 total_keys = 0;
9988 recent_keys_index = 0;
9989 }
9990 return Qnil;
9991 }
9992
9993 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
9994 doc: /* Return the current depth in recursive edits. */)
9995 ()
9996 {
9997 Lisp_Object temp;
9998 XSETFASTINT (temp, command_loop_level + minibuf_level);
9999 return temp;
10000 }
10001
10002 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10003 "FOpen dribble file: ",
10004 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10005 If FILE is nil, close any open dribble file. */)
10006 (file)
10007 Lisp_Object file;
10008 {
10009 if (dribble)
10010 {
10011 fclose (dribble);
10012 dribble = 0;
10013 }
10014 if (!NILP (file))
10015 {
10016 file = Fexpand_file_name (file, Qnil);
10017 dribble = fopen (SDATA (file), "w");
10018 if (dribble == 0)
10019 report_file_error ("Opening dribble", Fcons (file, Qnil));
10020 }
10021 return Qnil;
10022 }
10023
10024 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10025 doc: /* Discard the contents of the terminal input buffer.
10026 Also end any kbd macro being defined. */)
10027 ()
10028 {
10029 if (!NILP (current_kboard->defining_kbd_macro))
10030 {
10031 /* Discard the last command from the macro. */
10032 Fcancel_kbd_macro_events ();
10033 end_kbd_macro ();
10034 }
10035
10036 update_mode_lines++;
10037
10038 Vunread_command_events = Qnil;
10039 unread_command_char = -1;
10040
10041 discard_tty_input ();
10042
10043 kbd_fetch_ptr = kbd_store_ptr;
10044 input_pending = 0;
10045
10046 return Qnil;
10047 }
10048 \f
10049 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10050 doc: /* Stop Emacs and return to superior process. You can resume later.
10051 If `cannot-suspend' is non-nil, or if the system doesn't support job
10052 control, run a subshell instead.
10053
10054 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10055 to be read as terminal input by Emacs's parent, after suspension.
10056
10057 Before suspending, run the normal hook `suspend-hook'.
10058 After resumption run the normal hook `suspend-resume-hook'.
10059
10060 Some operating systems cannot stop the Emacs process and resume it later.
10061 On such systems, Emacs starts a subshell instead of suspending. */)
10062 (stuffstring)
10063 Lisp_Object stuffstring;
10064 {
10065 int count = SPECPDL_INDEX ();
10066 int old_height, old_width;
10067 int width, height;
10068 struct gcpro gcpro1;
10069
10070 if (!NILP (stuffstring))
10071 CHECK_STRING (stuffstring);
10072
10073 /* Run the functions in suspend-hook. */
10074 if (!NILP (Vrun_hooks))
10075 call1 (Vrun_hooks, intern ("suspend-hook"));
10076
10077 GCPRO1 (stuffstring);
10078 get_frame_size (&old_width, &old_height);
10079 reset_sys_modes ();
10080 /* sys_suspend can get an error if it tries to fork a subshell
10081 and the system resources aren't available for that. */
10082 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
10083 Qnil);
10084 stuff_buffered_input (stuffstring);
10085 if (cannot_suspend)
10086 sys_subshell ();
10087 else
10088 sys_suspend ();
10089 unbind_to (count, Qnil);
10090
10091 /* Check if terminal/window size has changed.
10092 Note that this is not useful when we are running directly
10093 with a window system; but suspend should be disabled in that case. */
10094 get_frame_size (&width, &height);
10095 if (width != old_width || height != old_height)
10096 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10097
10098 /* Run suspend-resume-hook. */
10099 if (!NILP (Vrun_hooks))
10100 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10101
10102 UNGCPRO;
10103 return Qnil;
10104 }
10105
10106 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10107 Then in any case stuff anything Emacs has read ahead and not used. */
10108
10109 void
10110 stuff_buffered_input (stuffstring)
10111 Lisp_Object stuffstring;
10112 {
10113 /* stuff_char works only in BSD, versions 4.2 and up. */
10114 #ifdef BSD_SYSTEM
10115 #ifndef BSD4_1
10116 register unsigned char *p;
10117
10118 if (STRINGP (stuffstring))
10119 {
10120 register int count;
10121
10122 p = SDATA (stuffstring);
10123 count = SBYTES (stuffstring);
10124 while (count-- > 0)
10125 stuff_char (*p++);
10126 stuff_char ('\n');
10127 }
10128
10129 /* Anything we have read ahead, put back for the shell to read. */
10130 /* ?? What should this do when we have multiple keyboards??
10131 Should we ignore anything that was typed in at the "wrong" kboard? */
10132 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10133 {
10134
10135 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10136 kbd_fetch_ptr = kbd_buffer;
10137 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10138 stuff_char (kbd_fetch_ptr->code);
10139
10140 clear_event (kbd_fetch_ptr);
10141 }
10142
10143 input_pending = 0;
10144 #endif
10145 #endif /* BSD_SYSTEM and not BSD4_1 */
10146 }
10147 \f
10148 void
10149 set_waiting_for_input (time_to_clear)
10150 EMACS_TIME *time_to_clear;
10151 {
10152 input_available_clear_time = time_to_clear;
10153
10154 /* Tell interrupt_signal to throw back to read_char, */
10155 waiting_for_input = 1;
10156
10157 /* If interrupt_signal was called before and buffered a C-g,
10158 make it run again now, to avoid timing error. */
10159 if (!NILP (Vquit_flag))
10160 quit_throw_to_read_char ();
10161 }
10162
10163 void
10164 clear_waiting_for_input ()
10165 {
10166 /* Tell interrupt_signal not to throw back to read_char, */
10167 waiting_for_input = 0;
10168 input_available_clear_time = 0;
10169 }
10170
10171 /* This routine is called at interrupt level in response to C-g.
10172
10173 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10174 is called from kbd_buffer_store_event, in handling SIGIO or
10175 SIGTINT.
10176
10177 If `waiting_for_input' is non zero, then unless `echoing' is
10178 nonzero, immediately throw back to read_char.
10179
10180 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10181 eval to throw, when it gets a chance. If quit-flag is already
10182 non-nil, it stops the job right away. */
10183
10184 static SIGTYPE
10185 interrupt_signal (signalnum) /* If we don't have an argument, */
10186 int signalnum; /* some compilers complain in signal calls. */
10187 {
10188 char c;
10189 /* Must preserve main program's value of errno. */
10190 int old_errno = errno;
10191 struct frame *sf = SELECTED_FRAME ();
10192
10193 #if defined (USG) && !defined (POSIX_SIGNALS)
10194 if (!read_socket_hook && NILP (Vwindow_system))
10195 {
10196 /* USG systems forget handlers when they are used;
10197 must reestablish each time */
10198 signal (SIGINT, interrupt_signal);
10199 signal (SIGQUIT, interrupt_signal);
10200 }
10201 #endif /* USG */
10202
10203 cancel_echoing ();
10204
10205 if (!NILP (Vquit_flag)
10206 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
10207 {
10208 /* If SIGINT isn't blocked, don't let us be interrupted by
10209 another SIGINT, it might be harmful due to non-reentrancy
10210 in I/O functions. */
10211 sigblock (sigmask (SIGINT));
10212
10213 fflush (stdout);
10214 reset_sys_modes ();
10215
10216 #ifdef SIGTSTP /* Support possible in later USG versions */
10217 /*
10218 * On systems which can suspend the current process and return to the original
10219 * shell, this command causes the user to end up back at the shell.
10220 * The "Auto-save" and "Abort" questions are not asked until
10221 * the user elects to return to emacs, at which point he can save the current
10222 * job and either dump core or continue.
10223 */
10224 sys_suspend ();
10225 #else
10226 #ifdef VMS
10227 if (sys_suspend () == -1)
10228 {
10229 printf ("Not running as a subprocess;\n");
10230 printf ("you can continue or abort.\n");
10231 }
10232 #else /* not VMS */
10233 /* Perhaps should really fork an inferior shell?
10234 But that would not provide any way to get back
10235 to the original shell, ever. */
10236 printf ("No support for stopping a process on this operating system;\n");
10237 printf ("you can continue or abort.\n");
10238 #endif /* not VMS */
10239 #endif /* not SIGTSTP */
10240 #ifdef MSDOS
10241 /* We must remain inside the screen area when the internal terminal
10242 is used. Note that [Enter] is not echoed by dos. */
10243 cursor_to (0, 0);
10244 #endif
10245 /* It doesn't work to autosave while GC is in progress;
10246 the code used for auto-saving doesn't cope with the mark bit. */
10247 if (!gc_in_progress)
10248 {
10249 printf ("Auto-save? (y or n) ");
10250 fflush (stdout);
10251 if (((c = getchar ()) & ~040) == 'Y')
10252 {
10253 Fdo_auto_save (Qt, Qnil);
10254 #ifdef MSDOS
10255 printf ("\r\nAuto-save done");
10256 #else /* not MSDOS */
10257 printf ("Auto-save done\n");
10258 #endif /* not MSDOS */
10259 }
10260 while (c != '\n') c = getchar ();
10261 }
10262 else
10263 {
10264 /* During GC, it must be safe to reenable quitting again. */
10265 Vinhibit_quit = Qnil;
10266 #ifdef MSDOS
10267 printf ("\r\n");
10268 #endif /* not MSDOS */
10269 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10270 printf ("but will instead do a real quit after garbage collection ends\r\n");
10271 fflush (stdout);
10272 }
10273
10274 #ifdef MSDOS
10275 printf ("\r\nAbort? (y or n) ");
10276 #else /* not MSDOS */
10277 #ifdef VMS
10278 printf ("Abort (and enter debugger)? (y or n) ");
10279 #else /* not VMS */
10280 printf ("Abort (and dump core)? (y or n) ");
10281 #endif /* not VMS */
10282 #endif /* not MSDOS */
10283 fflush (stdout);
10284 if (((c = getchar ()) & ~040) == 'Y')
10285 abort ();
10286 while (c != '\n') c = getchar ();
10287 #ifdef MSDOS
10288 printf ("\r\nContinuing...\r\n");
10289 #else /* not MSDOS */
10290 printf ("Continuing...\n");
10291 #endif /* not MSDOS */
10292 fflush (stdout);
10293 init_sys_modes ();
10294 sigfree ();
10295 }
10296 else
10297 {
10298 /* If executing a function that wants to be interrupted out of
10299 and the user has not deferred quitting by binding `inhibit-quit'
10300 then quit right away. */
10301 if (immediate_quit && NILP (Vinhibit_quit))
10302 {
10303 struct gl_state_s saved;
10304 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10305
10306 immediate_quit = 0;
10307 sigfree ();
10308 saved = gl_state;
10309 GCPRO4 (saved.object, saved.global_code,
10310 saved.current_syntax_table, saved.old_prop);
10311 Fsignal (Qquit, Qnil);
10312 gl_state = saved;
10313 UNGCPRO;
10314 }
10315 else
10316 /* Else request quit when it's safe */
10317 Vquit_flag = Qt;
10318 }
10319
10320 if (waiting_for_input && !echoing)
10321 quit_throw_to_read_char ();
10322
10323 errno = old_errno;
10324 }
10325
10326 /* Handle a C-g by making read_char return C-g. */
10327
10328 void
10329 quit_throw_to_read_char ()
10330 {
10331 sigfree ();
10332 /* Prevent another signal from doing this before we finish. */
10333 clear_waiting_for_input ();
10334 input_pending = 0;
10335
10336 Vunread_command_events = Qnil;
10337 unread_command_char = -1;
10338
10339 #if 0 /* Currently, sit_for is called from read_char without turning
10340 off polling. And that can call set_waiting_for_input.
10341 It seems to be harmless. */
10342 #ifdef POLL_FOR_INPUT
10343 /* May be > 1 if in recursive minibuffer. */
10344 if (poll_suppress_count == 0)
10345 abort ();
10346 #endif
10347 #endif
10348 if (FRAMEP (internal_last_event_frame)
10349 && !EQ (internal_last_event_frame, selected_frame))
10350 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10351 0, 0);
10352
10353 _longjmp (getcjmp, 1);
10354 }
10355 \f
10356 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10357 doc: /* Set mode of reading keyboard input.
10358 First arg INTERRUPT non-nil means use input interrupts;
10359 nil means use CBREAK mode.
10360 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10361 (no effect except in CBREAK mode).
10362 Third arg META t means accept 8-bit input (for a Meta key).
10363 META nil means ignore the top bit, on the assumption it is parity.
10364 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10365 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10366 See also `current-input-mode'. */)
10367 (interrupt, flow, meta, quit)
10368 Lisp_Object interrupt, flow, meta, quit;
10369 {
10370 if (!NILP (quit)
10371 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10372 error ("set-input-mode: QUIT must be an ASCII character");
10373
10374 #ifdef POLL_FOR_INPUT
10375 stop_polling ();
10376 #endif
10377
10378 #ifndef DOS_NT
10379 /* this causes startup screen to be restored and messes with the mouse */
10380 reset_sys_modes ();
10381 #endif
10382
10383 #ifdef SIGIO
10384 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10385 if (read_socket_hook)
10386 {
10387 /* When using X, don't give the user a real choice,
10388 because we haven't implemented the mechanisms to support it. */
10389 #ifdef NO_SOCK_SIGIO
10390 interrupt_input = 0;
10391 #else /* not NO_SOCK_SIGIO */
10392 interrupt_input = 1;
10393 #endif /* NO_SOCK_SIGIO */
10394 }
10395 else
10396 interrupt_input = !NILP (interrupt);
10397 #else /* not SIGIO */
10398 interrupt_input = 0;
10399 #endif /* not SIGIO */
10400
10401 /* Our VMS input only works by interrupts, as of now. */
10402 #ifdef VMS
10403 interrupt_input = 1;
10404 #endif
10405
10406 flow_control = !NILP (flow);
10407 if (NILP (meta))
10408 meta_key = 0;
10409 else if (EQ (meta, Qt))
10410 meta_key = 1;
10411 else
10412 meta_key = 2;
10413 if (!NILP (quit))
10414 /* Don't let this value be out of range. */
10415 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10416
10417 #ifndef DOS_NT
10418 init_sys_modes ();
10419 #endif
10420
10421 #ifdef POLL_FOR_INPUT
10422 poll_suppress_count = 1;
10423 start_polling ();
10424 #endif
10425 return Qnil;
10426 }
10427
10428 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10429 doc: /* Return information about the way Emacs currently reads keyboard input.
10430 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10431 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10432 nil, Emacs is using CBREAK mode.
10433 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10434 terminal; this does not apply if Emacs uses interrupt-driven input.
10435 META is t if accepting 8-bit input with 8th bit as Meta flag.
10436 META nil means ignoring the top bit, on the assumption it is parity.
10437 META is neither t nor nil if accepting 8-bit input and using
10438 all 8 bits as the character code.
10439 QUIT is the character Emacs currently uses to quit.
10440 The elements of this list correspond to the arguments of
10441 `set-input-mode'. */)
10442 ()
10443 {
10444 Lisp_Object val[4];
10445
10446 val[0] = interrupt_input ? Qt : Qnil;
10447 val[1] = flow_control ? Qt : Qnil;
10448 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10449 XSETFASTINT (val[3], quit_char);
10450
10451 return Flist (sizeof (val) / sizeof (val[0]), val);
10452 }
10453
10454 \f
10455 /*
10456 * Set up a new kboard object with reasonable initial values.
10457 */
10458 void
10459 init_kboard (kb)
10460 KBOARD *kb;
10461 {
10462 kb->Voverriding_terminal_local_map = Qnil;
10463 kb->Vlast_command = Qnil;
10464 kb->Vreal_last_command = Qnil;
10465 kb->Vprefix_arg = Qnil;
10466 kb->Vlast_prefix_arg = Qnil;
10467 kb->kbd_queue = Qnil;
10468 kb->kbd_queue_has_data = 0;
10469 kb->immediate_echo = 0;
10470 kb->echo_string = Qnil;
10471 kb->echo_after_prompt = -1;
10472 kb->kbd_macro_buffer = 0;
10473 kb->kbd_macro_bufsize = 0;
10474 kb->defining_kbd_macro = Qnil;
10475 kb->Vlast_kbd_macro = Qnil;
10476 kb->reference_count = 0;
10477 kb->Vsystem_key_alist = Qnil;
10478 kb->system_key_syms = Qnil;
10479 kb->Vdefault_minibuffer_frame = Qnil;
10480 }
10481
10482 /*
10483 * Destroy the contents of a kboard object, but not the object itself.
10484 * We use this just before deleting it, or if we're going to initialize
10485 * it a second time.
10486 */
10487 static void
10488 wipe_kboard (kb)
10489 KBOARD *kb;
10490 {
10491 if (kb->kbd_macro_buffer)
10492 xfree (kb->kbd_macro_buffer);
10493 }
10494
10495 #ifdef MULTI_KBOARD
10496
10497 /* Free KB and memory referenced from it. */
10498
10499 void
10500 delete_kboard (kb)
10501 KBOARD *kb;
10502 {
10503 KBOARD **kbp;
10504
10505 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10506 if (*kbp == NULL)
10507 abort ();
10508 *kbp = kb->next_kboard;
10509
10510 /* Prevent a dangling reference to KB. */
10511 if (kb == current_kboard
10512 && FRAMEP (selected_frame)
10513 && FRAME_LIVE_P (XFRAME (selected_frame)))
10514 {
10515 current_kboard = XFRAME (selected_frame)->kboard;
10516 if (current_kboard == kb)
10517 abort ();
10518 }
10519
10520 wipe_kboard (kb);
10521 xfree (kb);
10522 }
10523
10524 #endif /* MULTI_KBOARD */
10525
10526 void
10527 init_keyboard ()
10528 {
10529 /* This is correct before outermost invocation of the editor loop */
10530 command_loop_level = -1;
10531 immediate_quit = 0;
10532 quit_char = Ctl ('g');
10533 Vunread_command_events = Qnil;
10534 unread_command_char = -1;
10535 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10536 total_keys = 0;
10537 recent_keys_index = 0;
10538 kbd_fetch_ptr = kbd_buffer;
10539 kbd_store_ptr = kbd_buffer;
10540 #ifdef HAVE_MOUSE
10541 do_mouse_tracking = Qnil;
10542 #endif
10543 input_pending = 0;
10544
10545 /* This means that command_loop_1 won't try to select anything the first
10546 time through. */
10547 internal_last_event_frame = Qnil;
10548 Vlast_event_frame = internal_last_event_frame;
10549
10550 #ifdef MULTI_KBOARD
10551 current_kboard = initial_kboard;
10552 #endif
10553 wipe_kboard (current_kboard);
10554 init_kboard (current_kboard);
10555
10556 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
10557 {
10558 signal (SIGINT, interrupt_signal);
10559 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10560 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10561 SIGQUIT and we can't tell which one it will give us. */
10562 signal (SIGQUIT, interrupt_signal);
10563 #endif /* HAVE_TERMIO */
10564 }
10565 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10566 #ifdef SIGIO
10567 if (!noninteractive)
10568 signal (SIGIO, input_available_signal);
10569 #endif /* SIGIO */
10570
10571 /* Use interrupt input by default, if it works and noninterrupt input
10572 has deficiencies. */
10573
10574 #ifdef INTERRUPT_INPUT
10575 interrupt_input = 1;
10576 #else
10577 interrupt_input = 0;
10578 #endif
10579
10580 /* Our VMS input only works by interrupts, as of now. */
10581 #ifdef VMS
10582 interrupt_input = 1;
10583 #endif
10584
10585 sigfree ();
10586 dribble = 0;
10587
10588 if (keyboard_init_hook)
10589 (*keyboard_init_hook) ();
10590
10591 #ifdef POLL_FOR_INPUT
10592 poll_suppress_count = 1;
10593 start_polling ();
10594 #endif
10595
10596 #ifdef MAC_OSX
10597 /* At least provide an escape route since C-g doesn't work. */
10598 signal (SIGINT, interrupt_signal);
10599 #endif
10600 }
10601
10602 /* This type's only use is in syms_of_keyboard, to initialize the
10603 event header symbols and put properties on them. */
10604 struct event_head {
10605 Lisp_Object *var;
10606 char *name;
10607 Lisp_Object *kind;
10608 };
10609
10610 struct event_head head_table[] = {
10611 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10612 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10613 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10614 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10615 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10616 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
10617 /* `select-window' should be handled just like `switch-frame'
10618 in read_key_sequence. */
10619 {&Qselect_window, "select-window", &Qswitch_frame}
10620 };
10621
10622 void
10623 syms_of_keyboard ()
10624 {
10625 Vpre_help_message = Qnil;
10626 staticpro (&Vpre_help_message);
10627
10628 Vlispy_mouse_stem = build_string ("mouse");
10629 staticpro (&Vlispy_mouse_stem);
10630
10631 /* Tool-bars. */
10632 QCimage = intern (":image");
10633 staticpro (&QCimage);
10634
10635 staticpro (&Qhelp_echo);
10636 Qhelp_echo = intern ("help-echo");
10637
10638 staticpro (&item_properties);
10639 item_properties = Qnil;
10640
10641 staticpro (&tool_bar_item_properties);
10642 tool_bar_item_properties = Qnil;
10643 staticpro (&tool_bar_items_vector);
10644 tool_bar_items_vector = Qnil;
10645
10646 staticpro (&real_this_command);
10647 real_this_command = Qnil;
10648
10649 Qtimer_event_handler = intern ("timer-event-handler");
10650 staticpro (&Qtimer_event_handler);
10651
10652 Qdisabled_command_hook = intern ("disabled-command-hook");
10653 staticpro (&Qdisabled_command_hook);
10654
10655 Qself_insert_command = intern ("self-insert-command");
10656 staticpro (&Qself_insert_command);
10657
10658 Qforward_char = intern ("forward-char");
10659 staticpro (&Qforward_char);
10660
10661 Qbackward_char = intern ("backward-char");
10662 staticpro (&Qbackward_char);
10663
10664 Qdisabled = intern ("disabled");
10665 staticpro (&Qdisabled);
10666
10667 Qundefined = intern ("undefined");
10668 staticpro (&Qundefined);
10669
10670 Qpre_command_hook = intern ("pre-command-hook");
10671 staticpro (&Qpre_command_hook);
10672
10673 Qpost_command_hook = intern ("post-command-hook");
10674 staticpro (&Qpost_command_hook);
10675
10676 Qpost_command_idle_hook = intern ("post-command-idle-hook");
10677 staticpro (&Qpost_command_idle_hook);
10678
10679 Qdeferred_action_function = intern ("deferred-action-function");
10680 staticpro (&Qdeferred_action_function);
10681
10682 Qcommand_hook_internal = intern ("command-hook-internal");
10683 staticpro (&Qcommand_hook_internal);
10684
10685 Qfunction_key = intern ("function-key");
10686 staticpro (&Qfunction_key);
10687 Qmouse_click = intern ("mouse-click");
10688 staticpro (&Qmouse_click);
10689 #ifdef WINDOWSNT
10690 Qlanguage_change = intern ("language-change");
10691 staticpro (&Qlanguage_change);
10692 #endif
10693 Qdrag_n_drop = intern ("drag-n-drop");
10694 staticpro (&Qdrag_n_drop);
10695
10696 Qsave_session = intern ("save-session");
10697 staticpro(&Qsave_session);
10698
10699 Qusr1_signal = intern ("usr1-signal");
10700 staticpro (&Qusr1_signal);
10701 Qusr2_signal = intern ("usr2-signal");
10702 staticpro (&Qusr2_signal);
10703
10704 Qmenu_enable = intern ("menu-enable");
10705 staticpro (&Qmenu_enable);
10706 Qmenu_alias = intern ("menu-alias");
10707 staticpro (&Qmenu_alias);
10708 QCenable = intern (":enable");
10709 staticpro (&QCenable);
10710 QCvisible = intern (":visible");
10711 staticpro (&QCvisible);
10712 QChelp = intern (":help");
10713 staticpro (&QChelp);
10714 QCfilter = intern (":filter");
10715 staticpro (&QCfilter);
10716 QCbutton = intern (":button");
10717 staticpro (&QCbutton);
10718 QCkeys = intern (":keys");
10719 staticpro (&QCkeys);
10720 QCkey_sequence = intern (":key-sequence");
10721 staticpro (&QCkey_sequence);
10722 QCtoggle = intern (":toggle");
10723 staticpro (&QCtoggle);
10724 QCradio = intern (":radio");
10725 staticpro (&QCradio);
10726
10727 Qmode_line = intern ("mode-line");
10728 staticpro (&Qmode_line);
10729 Qvertical_line = intern ("vertical-line");
10730 staticpro (&Qvertical_line);
10731 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10732 staticpro (&Qvertical_scroll_bar);
10733 Qmenu_bar = intern ("menu-bar");
10734 staticpro (&Qmenu_bar);
10735
10736 Qabove_handle = intern ("above-handle");
10737 staticpro (&Qabove_handle);
10738 Qhandle = intern ("handle");
10739 staticpro (&Qhandle);
10740 Qbelow_handle = intern ("below-handle");
10741 staticpro (&Qbelow_handle);
10742 Qup = intern ("up");
10743 staticpro (&Qup);
10744 Qdown = intern ("down");
10745 staticpro (&Qdown);
10746 Qtop = intern ("top");
10747 staticpro (&Qtop);
10748 Qbottom = intern ("bottom");
10749 staticpro (&Qbottom);
10750 Qend_scroll = intern ("end-scroll");
10751 staticpro (&Qend_scroll);
10752 Qratio = intern ("ratio");
10753 staticpro (&Qratio);
10754
10755 Qevent_kind = intern ("event-kind");
10756 staticpro (&Qevent_kind);
10757 Qevent_symbol_elements = intern ("event-symbol-elements");
10758 staticpro (&Qevent_symbol_elements);
10759 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
10760 staticpro (&Qevent_symbol_element_mask);
10761 Qmodifier_cache = intern ("modifier-cache");
10762 staticpro (&Qmodifier_cache);
10763
10764 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
10765 staticpro (&Qrecompute_lucid_menubar);
10766 Qactivate_menubar_hook = intern ("activate-menubar-hook");
10767 staticpro (&Qactivate_menubar_hook);
10768
10769 Qpolling_period = intern ("polling-period");
10770 staticpro (&Qpolling_period);
10771
10772 Qinput_method_function = intern ("input-method-function");
10773 staticpro (&Qinput_method_function);
10774
10775 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
10776 staticpro (&Qinput_method_exit_on_first_char);
10777 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
10778 staticpro (&Qinput_method_use_echo_area);
10779
10780 Fset (Qinput_method_exit_on_first_char, Qnil);
10781 Fset (Qinput_method_use_echo_area, Qnil);
10782
10783 last_point_position_buffer = Qnil;
10784
10785 {
10786 struct event_head *p;
10787
10788 for (p = head_table;
10789 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
10790 p++)
10791 {
10792 *p->var = intern (p->name);
10793 staticpro (p->var);
10794 Fput (*p->var, Qevent_kind, *p->kind);
10795 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
10796 }
10797 }
10798
10799 button_down_location = Fmake_vector (make_number (1), Qnil);
10800 staticpro (&button_down_location);
10801 mouse_syms = Fmake_vector (make_number (1), Qnil);
10802 staticpro (&mouse_syms);
10803 wheel_syms = Fmake_vector (make_number (2), Qnil);
10804 staticpro (&wheel_syms);
10805
10806 {
10807 int i;
10808 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
10809
10810 modifier_symbols = Fmake_vector (make_number (len), Qnil);
10811 for (i = 0; i < len; i++)
10812 if (modifier_names[i])
10813 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
10814 staticpro (&modifier_symbols);
10815 }
10816
10817 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
10818 staticpro (&recent_keys);
10819
10820 this_command_keys = Fmake_vector (make_number (40), Qnil);
10821 staticpro (&this_command_keys);
10822
10823 raw_keybuf = Fmake_vector (make_number (30), Qnil);
10824 staticpro (&raw_keybuf);
10825
10826 Qextended_command_history = intern ("extended-command-history");
10827 Fset (Qextended_command_history, Qnil);
10828 staticpro (&Qextended_command_history);
10829
10830 accent_key_syms = Qnil;
10831 staticpro (&accent_key_syms);
10832
10833 func_key_syms = Qnil;
10834 staticpro (&func_key_syms);
10835
10836 drag_n_drop_syms = Qnil;
10837 staticpro (&drag_n_drop_syms);
10838
10839 unread_switch_frame = Qnil;
10840 staticpro (&unread_switch_frame);
10841
10842 internal_last_event_frame = Qnil;
10843 staticpro (&internal_last_event_frame);
10844
10845 read_key_sequence_cmd = Qnil;
10846 staticpro (&read_key_sequence_cmd);
10847
10848 menu_bar_one_keymap_changed_items = Qnil;
10849 staticpro (&menu_bar_one_keymap_changed_items);
10850
10851 defsubr (&Sevent_convert_list);
10852 defsubr (&Sread_key_sequence);
10853 defsubr (&Sread_key_sequence_vector);
10854 defsubr (&Srecursive_edit);
10855 #ifdef HAVE_MOUSE
10856 defsubr (&Strack_mouse);
10857 #endif
10858 defsubr (&Sinput_pending_p);
10859 defsubr (&Scommand_execute);
10860 defsubr (&Srecent_keys);
10861 defsubr (&Sthis_command_keys);
10862 defsubr (&Sthis_command_keys_vector);
10863 defsubr (&Sthis_single_command_keys);
10864 defsubr (&Sthis_single_command_raw_keys);
10865 defsubr (&Sreset_this_command_lengths);
10866 defsubr (&Sclear_this_command_keys);
10867 defsubr (&Ssuspend_emacs);
10868 defsubr (&Sabort_recursive_edit);
10869 defsubr (&Sexit_recursive_edit);
10870 defsubr (&Srecursion_depth);
10871 defsubr (&Stop_level);
10872 defsubr (&Sdiscard_input);
10873 defsubr (&Sopen_dribble_file);
10874 defsubr (&Sset_input_mode);
10875 defsubr (&Scurrent_input_mode);
10876 defsubr (&Sexecute_extended_command);
10877
10878 DEFVAR_LISP ("last-command-char", &last_command_char,
10879 doc: /* Last input event that was part of a command. */);
10880
10881 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
10882 doc: /* Last input event that was part of a command. */);
10883
10884 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
10885 doc: /* Last input event in a command, except for mouse menu events.
10886 Mouse menus give back keys that don't look like mouse events;
10887 this variable holds the actual mouse event that led to the menu,
10888 so that you can determine whether the command was run by mouse or not. */);
10889
10890 DEFVAR_LISP ("last-input-char", &last_input_char,
10891 doc: /* Last input event. */);
10892
10893 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
10894 doc: /* Last input event. */);
10895
10896 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
10897 doc: /* List of events to be read as the command input.
10898 These events are processed first, before actual keyboard input. */);
10899 Vunread_command_events = Qnil;
10900
10901 DEFVAR_INT ("unread-command-char", &unread_command_char,
10902 doc: /* If not -1, an object to be read as next command input event. */);
10903
10904 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
10905 doc: /* List of events to be processed as input by input methods.
10906 These events are processed after `unread-command-events', but
10907 before actual keyboard input. */);
10908 Vunread_post_input_method_events = Qnil;
10909
10910 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
10911 doc: /* List of events to be processed as input by input methods.
10912 These events are processed after `unread-command-events', but
10913 before actual keyboard input. */);
10914 Vunread_input_method_events = Qnil;
10915
10916 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
10917 doc: /* Meta-prefix character code.
10918 Meta-foo as command input turns into this character followed by foo. */);
10919 XSETINT (meta_prefix_char, 033);
10920
10921 DEFVAR_KBOARD ("last-command", Vlast_command,
10922 doc: /* The last command executed.
10923 Normally a symbol with a function definition, but can be whatever was found
10924 in the keymap, or whatever the variable `this-command' was set to by that
10925 command.
10926
10927 The value `mode-exit' is special; it means that the previous command
10928 read an event that told it to exit, and it did so and unread that event.
10929 In other words, the present command is the event that made the previous
10930 command exit.
10931
10932 The value `kill-region' is special; it means that the previous command
10933 was a kill command. */);
10934
10935 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
10936 doc: /* Same as `last-command', but never altered by Lisp code. */);
10937
10938 DEFVAR_LISP ("this-command", &Vthis_command,
10939 doc: /* The command now being executed.
10940 The command can set this variable; whatever is put here
10941 will be in `last-command' during the following command. */);
10942 Vthis_command = Qnil;
10943
10944 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
10945 doc: /* The command bound to the current key sequence before remapping.
10946 It equals `this-command' if the original command was not remapped through
10947 any of the active keymaps. Otherwise, the value of `this-command' is the
10948 result of looking up the original command in the active keymaps. */);
10949 Vthis_original_command = Qnil;
10950
10951 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
10952 doc: /* *Number of input events between auto-saves.
10953 Zero means disable autosaving due to number of characters typed. */);
10954 auto_save_interval = 300;
10955
10956 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
10957 doc: /* *Number of seconds idle time before auto-save.
10958 Zero or nil means disable auto-saving due to idleness.
10959 After auto-saving due to this many seconds of idle time,
10960 Emacs also does a garbage collection if that seems to be warranted. */);
10961 XSETFASTINT (Vauto_save_timeout, 30);
10962
10963 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
10964 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
10965 The value may be integer or floating point. */);
10966 Vecho_keystrokes = make_number (1);
10967
10968 DEFVAR_INT ("polling-period", &polling_period,
10969 doc: /* *Interval between polling for input during Lisp execution.
10970 The reason for polling is to make C-g work to stop a running program.
10971 Polling is needed only when using X windows and SIGIO does not work.
10972 Polling is automatically disabled in all other cases. */);
10973 polling_period = 2;
10974
10975 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
10976 doc: /* *Maximum time between mouse clicks to make a double-click.
10977 Measured in milliseconds. nil means disable double-click recognition;
10978 t means double-clicks have no time limit and are detected
10979 by position only. */);
10980 Vdouble_click_time = make_number (500);
10981
10982 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
10983 doc: /* *Maximum mouse movement between clicks to make a double-click.
10984 On window-system frames, value is the number of pixels the mouse may have
10985 moved horizontally or vertically between two clicks to make a double-click.
10986 On non window-system frames, value is interpreted in units of 1/8 characters
10987 instead of pixels.
10988
10989 This variable is also the threshold for motion of the mouse
10990 to count as a drag. */);
10991 double_click_fuzz = 3;
10992
10993 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
10994 doc: /* *Non-nil means inhibit local map menu bar menus. */);
10995 inhibit_local_menu_bar_menus = 0;
10996
10997 DEFVAR_INT ("num-input-keys", &num_input_keys,
10998 doc: /* Number of complete key sequences read as input so far.
10999 This includes key sequences read from keyboard macros.
11000 The number is effectively the number of interactive command invocations. */);
11001 num_input_keys = 0;
11002
11003 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
11004 doc: /* Number of input events read from the keyboard so far.
11005 This does not include events generated by keyboard macros. */);
11006 num_nonmacro_input_events = 0;
11007
11008 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
11009 doc: /* The frame in which the most recently read event occurred.
11010 If the last event came from a keyboard macro, this is set to `macro'. */);
11011 Vlast_event_frame = Qnil;
11012
11013 /* This variable is set up in sysdep.c. */
11014 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
11015 doc: /* The ERASE character as set by the user with stty. */);
11016
11017 DEFVAR_LISP ("help-char", &Vhelp_char,
11018 doc: /* Character to recognize as meaning Help.
11019 When it is read, do `(eval help-form)', and display result if it's a string.
11020 If the value of `help-form' is nil, this char can be read normally. */);
11021 XSETINT (Vhelp_char, Ctl ('H'));
11022
11023 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
11024 doc: /* List of input events to recognize as meaning Help.
11025 These work just like the value of `help-char' (see that). */);
11026 Vhelp_event_list = Qnil;
11027
11028 DEFVAR_LISP ("help-form", &Vhelp_form,
11029 doc: /* Form to execute when character `help-char' is read.
11030 If the form returns a string, that string is displayed.
11031 If `help-form' is nil, the help char is not recognized. */);
11032 Vhelp_form = Qnil;
11033
11034 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
11035 doc: /* Command to run when `help-char' character follows a prefix key.
11036 This command is used only when there is no actual binding
11037 for that character after that prefix key. */);
11038 Vprefix_help_command = Qnil;
11039
11040 DEFVAR_LISP ("top-level", &Vtop_level,
11041 doc: /* Form to evaluate when Emacs starts up.
11042 Useful to set before you dump a modified Emacs. */);
11043 Vtop_level = Qnil;
11044
11045 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11046 doc: /* Translate table for keyboard input, or nil.
11047 Each character is looked up in this string and the contents used instead.
11048 The value may be a string, a vector, or a char-table.
11049 If it is a string or vector of length N,
11050 character codes N and up are untranslated.
11051 In a vector or a char-table, an element which is nil means "no translation".
11052
11053 This is applied to the characters supplied to input methods, not their
11054 output. See also `translation-table-for-input'. */);
11055 Vkeyboard_translate_table = Qnil;
11056
11057 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
11058 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11059 \(Even if the operating system has support for stopping a process.\) */);
11060 cannot_suspend = 0;
11061
11062 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
11063 doc: /* Non-nil means prompt with menus when appropriate.
11064 This is done when reading from a keymap that has a prompt string,
11065 for elements that have prompt strings.
11066 The menu is displayed on the screen
11067 if X menus were enabled at configuration
11068 time and the previous event was a mouse click prefix key.
11069 Otherwise, menu prompting uses the echo area. */);
11070 menu_prompting = 1;
11071
11072 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
11073 doc: /* Character to see next line of menu prompt.
11074 Type this character while in a menu prompt to rotate around the lines of it. */);
11075 XSETINT (menu_prompt_more_char, ' ');
11076
11077 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
11078 doc: /* A mask of additional modifier keys to use with every keyboard character.
11079 Emacs applies the modifiers of the character stored here to each keyboard
11080 character it reads. For example, after evaluating the expression
11081 (setq extra-keyboard-modifiers ?\\C-x)
11082 all input characters will have the control modifier applied to them.
11083
11084 Note that the character ?\\C-@, equivalent to the integer zero, does
11085 not count as a control character; rather, it counts as a character
11086 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11087 cancels any modification. */);
11088 extra_keyboard_modifiers = 0;
11089
11090 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
11091 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11092 The command loop sets this to nil before each command,
11093 and tests the value when the command returns.
11094 Buffer modification stores t in this variable. */);
11095 Vdeactivate_mark = Qnil;
11096
11097 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
11098 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
11099 Vcommand_hook_internal = Qnil;
11100
11101 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
11102 doc: /* Normal hook run before each command is executed.
11103 If an unhandled error happens in running this hook,
11104 the hook value is set to nil, since otherwise the error
11105 might happen repeatedly and make Emacs nonfunctional. */);
11106 Vpre_command_hook = Qnil;
11107
11108 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
11109 doc: /* Normal hook run after each command is executed.
11110 If an unhandled error happens in running this hook,
11111 the hook value is set to nil, since otherwise the error
11112 might happen repeatedly and make Emacs nonfunctional. */);
11113 Vpost_command_hook = Qnil;
11114
11115 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
11116 doc: /* Normal hook run after each command is executed, if idle.
11117 Errors running the hook are caught and ignored. */);
11118 Vpost_command_idle_hook = Qnil;
11119
11120 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
11121 doc: /* Delay time before running `post-command-idle-hook'.
11122 This is measured in microseconds. */);
11123 post_command_idle_delay = 100000;
11124
11125 #if 0
11126 DEFVAR_LISP ("echo-area-clear-hook", ...,
11127 doc: /* Normal hook run when clearing the echo area. */);
11128 #endif
11129 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11130 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
11131
11132 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
11133 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11134 Vlucid_menu_bar_dirty_flag = Qnil;
11135
11136 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
11137 doc: /* List of menu bar items to move to the end of the menu bar.
11138 The elements of the list are event types that may have menu bar bindings. */);
11139 Vmenu_bar_final_items = Qnil;
11140
11141 DEFVAR_KBOARD ("overriding-terminal-local-map",
11142 Voverriding_terminal_local_map,
11143 doc: /* Per-terminal keymap that overrides all other local keymaps.
11144 If this variable is non-nil, it is used as a keymap instead of the
11145 buffer's local map, and the minor mode keymaps and text property keymaps.
11146 This variable is intended to let commands such as `universal-argument'
11147 set up a different keymap for reading the next command. */);
11148
11149 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
11150 doc: /* Keymap that overrides all other local keymaps.
11151 If this variable is non-nil, it is used as a keymap instead of the
11152 buffer's local map, and the minor mode keymaps and text property keymaps. */);
11153 Voverriding_local_map = Qnil;
11154
11155 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
11156 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11157 Otherwise, the menu bar continues to reflect the buffer's local map
11158 and the minor mode maps regardless of `overriding-local-map'. */);
11159 Voverriding_local_map_menu_flag = Qnil;
11160
11161 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
11162 doc: /* Keymap defining bindings for special events to execute at low level. */);
11163 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11164
11165 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11166 doc: /* *Non-nil means generate motion events for mouse motion. */);
11167
11168 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11169 doc: /* Alist of system-specific X windows key symbols.
11170 Each element should have the form (N . SYMBOL) where N is the
11171 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11172 and SYMBOL is its name. */);
11173
11174 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
11175 doc: /* List of deferred actions to be performed at a later time.
11176 The precise format isn't relevant here; we just check whether it is nil. */);
11177 Vdeferred_action_list = Qnil;
11178
11179 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
11180 doc: /* Function to call to handle deferred actions, after each command.
11181 This function is called with no arguments after each command
11182 whenever `deferred-action-list' is non-nil. */);
11183 Vdeferred_action_function = Qnil;
11184
11185 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
11186 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11187 The value can be a length of time to show the message for.
11188 If the value is non-nil and not a number, we wait 2 seconds. */);
11189 Vsuggest_key_bindings = Qt;
11190
11191 DEFVAR_LISP ("timer-list", &Vtimer_list,
11192 doc: /* List of active absolute time timers in order of increasing time. */);
11193 Vtimer_list = Qnil;
11194
11195 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
11196 doc: /* List of active idle-time timers in order of increasing time. */);
11197 Vtimer_idle_list = Qnil;
11198
11199 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
11200 doc: /* If non-nil, the function that implements the current input method.
11201 It's called with one argument, a printing character that was just read.
11202 \(That means a character with code 040...0176.)
11203 Typically this function uses `read-event' to read additional events.
11204 When it does so, it should first bind `input-method-function' to nil
11205 so it will not be called recursively.
11206
11207 The function should return a list of zero or more events
11208 to be used as input. If it wants to put back some events
11209 to be reconsidered, separately, by the input method,
11210 it can add them to the beginning of `unread-command-events'.
11211
11212 The input method function can find in `input-method-previous-method'
11213 the previous echo area message.
11214
11215 The input method function should refer to the variables
11216 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11217 for guidance on what to do. */);
11218 Vinput_method_function = Qnil;
11219
11220 DEFVAR_LISP ("input-method-previous-message",
11221 &Vinput_method_previous_message,
11222 doc: /* When `input-method-function' is called, hold the previous echo area message.
11223 This variable exists because `read-event' clears the echo area
11224 before running the input method. It is nil if there was no message. */);
11225 Vinput_method_previous_message = Qnil;
11226
11227 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
11228 doc: /* If non-nil, the function that implements the display of help.
11229 It's called with one argument, the help string to display. */);
11230 Vshow_help_function = Qnil;
11231
11232 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
11233 doc: /* If non-nil, suppress point adjustment after executing a command.
11234
11235 After a command is executed, if point is moved into a region that has
11236 special properties (e.g. composition, display), we adjust point to
11237 the boundary of the region. But, several special commands sets this
11238 variable to non-nil, then we suppress the point adjustment.
11239
11240 This variable is set to nil before reading a command, and is checked
11241 just after executing the command. */);
11242 Vdisable_point_adjustment = Qnil;
11243
11244 DEFVAR_LISP ("global-disable-point-adjustment",
11245 &Vglobal_disable_point_adjustment,
11246 doc: /* *If non-nil, always suppress point adjustment.
11247
11248 The default value is nil, in which case, point adjustment are
11249 suppressed only after special commands that set
11250 `disable-point-adjustment' (which see) to non-nil. */);
11251 Vglobal_disable_point_adjustment = Qnil;
11252
11253 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings,
11254 doc: /* Non-nil means updating menu bindings is allowed.
11255 A value of nil means menu bindings should not be updated.
11256 Used during Emacs' startup. */);
11257 update_menu_bindings = 1;
11258
11259 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
11260 doc: /* *How long to display an echo-area message when the minibuffer is active.
11261 If the value is not a number, such messages don't time out. */);
11262 Vminibuffer_message_timeout = make_number (2);
11263 }
11264
11265 void
11266 keys_of_keyboard ()
11267 {
11268 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11269 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11270 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11271 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11272 initial_define_key (meta_map, 'x', "execute-extended-command");
11273
11274 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11275 "handle-delete-frame");
11276 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11277 "ignore-event");
11278 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11279 "ignore-event");
11280 /* Handling it at such a low-level causes read_key_sequence to get
11281 * confused because it doesn't realize that the current_buffer was
11282 * changed by read_char.
11283 *
11284 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11285 * "handle-select-window"); */
11286 initial_define_lispy_key (Vspecial_event_map, "save-session",
11287 "handle-save-session");
11288 }
11289
11290 /* Mark the pointers in the kboard objects.
11291 Called by the Fgarbage_collector. */
11292 void
11293 mark_kboards ()
11294 {
11295 KBOARD *kb;
11296 Lisp_Object *p;
11297 for (kb = all_kboards; kb; kb = kb->next_kboard)
11298 {
11299 if (kb->kbd_macro_buffer)
11300 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11301 mark_object (*p);
11302 mark_object (kb->Voverriding_terminal_local_map);
11303 mark_object (kb->Vlast_command);
11304 mark_object (kb->Vreal_last_command);
11305 mark_object (kb->Vprefix_arg);
11306 mark_object (kb->Vlast_prefix_arg);
11307 mark_object (kb->kbd_queue);
11308 mark_object (kb->defining_kbd_macro);
11309 mark_object (kb->Vlast_kbd_macro);
11310 mark_object (kb->Vsystem_key_alist);
11311 mark_object (kb->system_key_syms);
11312 mark_object (kb->Vdefault_minibuffer_frame);
11313 mark_object (kb->echo_string);
11314 }
11315 {
11316 struct input_event *event;
11317 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11318 {
11319 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11320 event = kbd_buffer;
11321 mark_object (event->x);
11322 mark_object (event->y);
11323 mark_object (event->frame_or_window);
11324 mark_object (event->arg);
11325 }
11326 }
11327 }
11328
11329 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11330 (do not change this comment) */