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