Check for ncurses.
[bpt/emacs.git] / src / keyboard.c
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 /* Allow config.h to undefine symbols found here. */
22 #include <signal.h>
23
24 #include <config.h>
25 #include <stdio.h>
26 #include "termchar.h"
27 #include "termopts.h"
28 #include "lisp.h"
29 #include "termhooks.h"
30 #include "macros.h"
31 #include "frame.h"
32 #include "window.h"
33 #include "commands.h"
34 #include "buffer.h"
35 #include "disptab.h"
36 #include "dispextern.h"
37 #include "keyboard.h"
38 #include "intervals.h"
39 #include "blockinput.h"
40 #include <setjmp.h>
41 #include <errno.h>
42
43 #ifdef MSDOS
44 #include "msdos.h"
45 #include <time.h>
46 #else /* not MSDOS */
47 #ifndef VMS
48 #include <sys/ioctl.h>
49 #endif
50 #endif /* not MSDOS */
51
52 #include "syssignal.h"
53 #include "systty.h"
54
55 /* This is to get the definitions of the XK_ symbols. */
56 #ifdef HAVE_X_WINDOWS
57 #include "xterm.h"
58 #endif
59
60 #ifdef HAVE_NTGUI
61 #include "w32term.h"
62 #endif /* HAVE_NTGUI */
63
64 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
65 #include "systime.h"
66
67 extern int errno;
68
69 /* Variables for blockinput.h: */
70
71 /* Non-zero if interrupt input is blocked right now. */
72 int interrupt_input_blocked;
73
74 /* Nonzero means an input interrupt has arrived
75 during the current critical section. */
76 int interrupt_input_pending;
77
78
79 /* File descriptor to use for input. */
80 extern int input_fd;
81
82 #ifdef HAVE_WINDOW_SYSTEM
83 /* Make all keyboard buffers much bigger when using X windows. */
84 #define KBD_BUFFER_SIZE 4096
85 #else /* No X-windows, character input */
86 #define KBD_BUFFER_SIZE 256
87 #endif /* No X-windows */
88
89 /* Following definition copied from eval.c */
90
91 struct backtrace
92 {
93 struct backtrace *next;
94 Lisp_Object *function;
95 Lisp_Object *args; /* Points to vector of args. */
96 int nargs; /* length of vector. If nargs is UNEVALLED,
97 args points to slot holding list of
98 unevalled args */
99 char evalargs;
100 };
101
102 #ifdef MULTI_KBOARD
103 KBOARD *initial_kboard;
104 KBOARD *current_kboard;
105 KBOARD *all_kboards;
106 int single_kboard;
107 #else
108 KBOARD the_only_kboard;
109 #endif
110
111 /* Non-nil disable property on a command means
112 do not execute it; call disabled-command-hook's value instead. */
113 Lisp_Object Qdisabled, Qdisabled_command_hook;
114
115 #define NUM_RECENT_KEYS (100)
116 int recent_keys_index; /* Index for storing next element into recent_keys */
117 int total_keys; /* Total number of elements stored into recent_keys */
118 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
119
120 /* Vector holding the key sequence that invoked the current command.
121 It is reused for each command, and it may be longer than the current
122 sequence; this_command_key_count indicates how many elements
123 actually mean something.
124 It's easier to staticpro a single Lisp_Object than an array. */
125 Lisp_Object this_command_keys;
126 int this_command_key_count;
127
128 /* Record values of this_command_key_count and echo_length ()
129 before this command was read. */
130 static int before_command_key_count;
131 static int before_command_echo_length;
132 /* Values of before_command_key_count and before_command_echo_length
133 saved by reset-this-command-lengths. */
134 static int before_command_key_count_1;
135 static int before_command_echo_length_1;
136 /* Flag set by reset-this-command-lengths,
137 saying to reset the lengths when add_command_key is called. */
138 static int before_command_restore_flag;
139
140 extern int minbuf_level;
141
142 extern struct backtrace *backtrace_list;
143
144 /* Nonzero means do menu prompting. */
145 static int menu_prompting;
146
147 /* Character to see next line of menu prompt. */
148 static Lisp_Object menu_prompt_more_char;
149
150 /* For longjmp to where kbd input is being done. */
151 static jmp_buf getcjmp;
152
153 /* True while doing kbd input. */
154 int waiting_for_input;
155
156 /* True while displaying for echoing. Delays C-g throwing. */
157 static int echoing;
158
159 /* True means we can start echoing at the next input pause
160 even though there is something in the echo area. */
161 static char *ok_to_echo_at_next_pause;
162
163 /* Nonzero means disregard local maps for the menu bar. */
164 static int inhibit_local_menu_bar_menus;
165
166 /* Nonzero means C-g should cause immediate error-signal. */
167 int immediate_quit;
168
169 /* Character to recognize as the help char. */
170 Lisp_Object Vhelp_char;
171
172 /* List of other event types to recognize as meaning "help". */
173 Lisp_Object Vhelp_event_list;
174
175 /* Form to execute when help char is typed. */
176 Lisp_Object Vhelp_form;
177
178 /* Command to run when the help character follows a prefix key. */
179 Lisp_Object Vprefix_help_command;
180
181 /* List of items that should move to the end of the menu bar. */
182 Lisp_Object Vmenu_bar_final_items;
183
184 /* Non-nil means show the equivalent key-binding for
185 any M-x command that has one.
186 The value can be a length of time to show the message for.
187 If the value is non-nil and not a number, we wait 2 seconds. */
188 Lisp_Object Vsuggest_key_bindings;
189
190 /* Character that causes a quit. Normally C-g.
191
192 If we are running on an ordinary terminal, this must be an ordinary
193 ASCII char, since we want to make it our interrupt character.
194
195 If we are not running on an ordinary terminal, it still needs to be
196 an ordinary ASCII char. This character needs to be recognized in
197 the input interrupt handler. At this point, the keystroke is
198 represented as a struct input_event, while the desired quit
199 character is specified as a lispy event. The mapping from struct
200 input_events to lispy events cannot run in an interrupt handler,
201 and the reverse mapping is difficult for anything but ASCII
202 keystrokes.
203
204 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
205 ASCII character. */
206 int quit_char;
207
208 extern Lisp_Object current_global_map;
209 extern int minibuf_level;
210
211 /* If non-nil, this is a map that overrides all other local maps. */
212 Lisp_Object Voverriding_local_map;
213
214 /* If non-nil, Voverriding_local_map applies to the menu bar. */
215 Lisp_Object Voverriding_local_map_menu_flag;
216
217 /* Keymap that defines special misc events that should
218 be processed immediately at a low level. */
219 Lisp_Object Vspecial_event_map;
220
221 /* Current depth in recursive edits. */
222 int command_loop_level;
223
224 /* Total number of times command_loop has read a key sequence. */
225 int num_input_keys;
226
227 /* Last input character read as a command. */
228 Lisp_Object last_command_char;
229
230 /* Last input character read as a command, not counting menus
231 reached by the mouse. */
232 Lisp_Object last_nonmenu_event;
233
234 /* Last input character read for any purpose. */
235 Lisp_Object last_input_char;
236
237 /* If not Qnil, a list of objects to be read as subsequent command input. */
238 Lisp_Object Vunread_command_events;
239
240 /* If not -1, an event to be read as subsequent command input. */
241 int unread_command_char;
242
243 /* If not Qnil, this is a switch-frame event which we decided to put
244 off until the end of a key sequence. This should be read as the
245 next command input, after any unread_command_events.
246
247 read_key_sequence uses this to delay switch-frame events until the
248 end of the key sequence; Fread_char uses it to put off switch-frame
249 events until a non-ASCII event is acceptable as input. */
250 Lisp_Object unread_switch_frame;
251
252 /* A mask of extra modifier bits to put into every keyboard char. */
253 int extra_keyboard_modifiers;
254
255 /* Char to use as prefix when a meta character is typed in.
256 This is bound on entry to minibuffer in case ESC is changed there. */
257
258 Lisp_Object meta_prefix_char;
259
260 /* Last size recorded for a current buffer which is not a minibuffer. */
261 static int last_non_minibuf_size;
262
263 /* Number of idle seconds before an auto-save and garbage collection. */
264 static Lisp_Object Vauto_save_timeout;
265
266 /* Total number of times read_char has returned. */
267 int num_input_chars;
268
269 /* Total number of times read_char has returned, outside of macros. */
270 int num_nonmacro_input_chars;
271
272 /* Auto-save automatically when this many characters have been typed
273 since the last time. */
274
275 static int auto_save_interval;
276
277 /* Value of num_nonmacro_input_chars as of last auto save. */
278
279 int last_auto_save;
280
281 /* The command being executed by the command loop.
282 Commands may set this, and the value set will be copied into
283 current_kboard->Vlast_command instead of the actual command. */
284 Lisp_Object this_command;
285
286 /* The value of point when the last command was executed. */
287 int last_point_position;
288
289 /* The buffer that was current when the last command was started. */
290 Lisp_Object last_point_position_buffer;
291
292 #ifdef MULTI_FRAME
293 /* The frame in which the last input event occurred, or Qmacro if the
294 last event came from a macro. We use this to determine when to
295 generate switch-frame events. This may be cleared by functions
296 like Fselect_frame, to make sure that a switch-frame event is
297 generated by the next character. */
298 Lisp_Object internal_last_event_frame;
299 #endif
300
301 /* A user-visible version of the above, intended to allow users to
302 figure out where the last event came from, if the event doesn't
303 carry that information itself (i.e. if it was a character). */
304 Lisp_Object Vlast_event_frame;
305
306 /* The timestamp of the last input event we received from the X server.
307 X Windows wants this for selection ownership. */
308 unsigned long last_event_timestamp;
309
310 Lisp_Object Qself_insert_command;
311 Lisp_Object Qforward_char;
312 Lisp_Object Qbackward_char;
313 Lisp_Object Qundefined;
314
315 /* read_key_sequence stores here the command definition of the
316 key sequence that it reads. */
317 Lisp_Object read_key_sequence_cmd;
318
319 /* Form to evaluate (if non-nil) when Emacs is started. */
320 Lisp_Object Vtop_level;
321
322 /* User-supplied string to translate input characters through. */
323 Lisp_Object Vkeyboard_translate_table;
324
325 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
326 extern Lisp_Object Vfunction_key_map;
327
328 /* Another keymap that maps key sequences into key sequences.
329 This one takes precedence over ordinary definitions. */
330 extern Lisp_Object Vkey_translation_map;
331
332 /* Non-nil means deactivate the mark at end of this command. */
333 Lisp_Object Vdeactivate_mark;
334
335 /* Menu bar specified in Lucid Emacs fashion. */
336
337 Lisp_Object Vlucid_menu_bar_dirty_flag;
338 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
339
340 /* Hooks to run before and after each command. */
341 Lisp_Object Qpre_command_hook, Vpre_command_hook;
342 Lisp_Object Qpost_command_hook, Vpost_command_hook;
343 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
344 /* Hook run after a command if there's no more input soon. */
345 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
346
347 /* Delay time in microseconds before running post-command-idle-hook. */
348 int post_command_idle_delay;
349
350 /* List of deferred actions to be performed at a later time.
351 The precise format isn't relevant here; we just check whether it is nil. */
352 Lisp_Object Vdeferred_action_list;
353
354 /* Function to call to handle deferred actions, when there are any. */
355 Lisp_Object Vdeferred_action_function;
356 Lisp_Object Qdeferred_action_function;
357
358 /* File in which we write all commands we read. */
359 FILE *dribble;
360
361 /* Nonzero if input is available. */
362 int input_pending;
363
364 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
365 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
366
367 int meta_key;
368
369 extern char *pending_malloc_warning;
370
371 /* Circular buffer for pre-read keyboard input. */
372 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
373
374 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
375
376 The interrupt-level event handlers will never enqueue an event on a
377 frame which is not in Vframe_list, and once an event is dequeued,
378 internal_last_event_frame or the event itself points to the frame.
379 So that's all fine.
380
381 But while the event is sitting in the queue, it's completely
382 unprotected. Suppose the user types one command which will run for
383 a while and then delete a frame, and then types another event at
384 the frame that will be deleted, before the command gets around to
385 it. Suppose there are no references to this frame elsewhere in
386 Emacs, and a GC occurs before the second event is dequeued. Now we
387 have an event referring to a freed frame, which will crash Emacs
388 when it is dequeued.
389
390 Similar things happen when an event on a scroll bar is enqueued; the
391 window may be deleted while the event is in the queue.
392
393 So, we use this vector to protect the frame_or_window field in the
394 event queue. That way, they'll be dequeued as dead frames or
395 windows, but still valid lisp objects.
396
397 If kbd_buffer[i].kind != no_event, then
398 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
399 == kbd_buffer[i].frame_or_window. */
400 static Lisp_Object kbd_buffer_frame_or_window;
401
402 /* Pointer to next available character in kbd_buffer.
403 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
404 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
405 next available char is in kbd_buffer[0]. */
406 static struct input_event *kbd_fetch_ptr;
407
408 /* Pointer to next place to store character in kbd_buffer. This
409 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
410 character should go in kbd_buffer[0]. */
411 static volatile struct input_event *kbd_store_ptr;
412
413 /* The above pair of variables forms a "queue empty" flag. When we
414 enqueue a non-hook event, we increment kbd_store_ptr. When we
415 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
416 there is input available iff the two pointers are not equal.
417
418 Why not just have a flag set and cleared by the enqueuing and
419 dequeuing functions? Such a flag could be screwed up by interrupts
420 at inopportune times. */
421
422 /* If this flag is non-nil, we check mouse_moved to see when the
423 mouse moves, and motion events will appear in the input stream.
424 Otherwise, mouse motion is ignored. */
425 static Lisp_Object do_mouse_tracking;
426
427 /* Symbols to head events. */
428 Lisp_Object Qmouse_movement;
429 Lisp_Object Qscroll_bar_movement;
430 Lisp_Object Qswitch_frame;
431 Lisp_Object Qdelete_frame;
432 Lisp_Object Qiconify_frame;
433 Lisp_Object Qmake_frame_visible;
434
435 /* Symbols to denote kinds of events. */
436 Lisp_Object Qfunction_key;
437 Lisp_Object Qmouse_click;
438 Lisp_Object Qtimer_event;
439 /* Lisp_Object Qmouse_movement; - also an event header */
440
441 /* Properties of event headers. */
442 Lisp_Object Qevent_kind;
443 Lisp_Object Qevent_symbol_elements;
444
445 Lisp_Object Qmenu_enable;
446
447 /* An event header symbol HEAD may have a property named
448 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
449 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
450 mask of modifiers applied to it. If present, this is used to help
451 speed up parse_modifiers. */
452 Lisp_Object Qevent_symbol_element_mask;
453
454 /* An unmodified event header BASE may have a property named
455 Qmodifier_cache, which is an alist mapping modifier masks onto
456 modified versions of BASE. If present, this helps speed up
457 apply_modifiers. */
458 Lisp_Object Qmodifier_cache;
459
460 /* Symbols to use for parts of windows. */
461 Lisp_Object Qmode_line;
462 Lisp_Object Qvertical_line;
463 Lisp_Object Qvertical_scroll_bar;
464 Lisp_Object Qmenu_bar;
465
466 extern Lisp_Object Qmenu_enable;
467
468 Lisp_Object recursive_edit_unwind (), command_loop ();
469 Lisp_Object Fthis_command_keys ();
470 Lisp_Object Qextended_command_history;
471 EMACS_TIME timer_check ();
472
473 extern char *x_get_keysym_name ();
474
475 Lisp_Object Qpolling_period;
476
477 /* List of absolute timers. Appears in order of next scheduled event. */
478 Lisp_Object Vtimer_list;
479
480 /* List of idle time timers. Appears in order of next scheduled event. */
481 Lisp_Object Vtimer_idle_list;
482
483 /* Incremented whenever a timer is run. */
484 int timers_run;
485
486 extern Lisp_Object Vprint_level, Vprint_length;
487
488 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
489 happens. */
490 EMACS_TIME *input_available_clear_time;
491
492 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
493 Default is 1 if INTERRUPT_INPUT is defined. */
494 int interrupt_input;
495
496 /* Nonzero while interrupts are temporarily deferred during redisplay. */
497 int interrupts_deferred;
498
499 /* Nonzero means use ^S/^Q for flow control. */
500 int flow_control;
501
502 /* Allow m- file to inhibit use of FIONREAD. */
503 #ifdef BROKEN_FIONREAD
504 #undef FIONREAD
505 #endif
506
507 /* We are unable to use interrupts if FIONREAD is not available,
508 so flush SIGIO so we won't try. */
509 #ifndef FIONREAD
510 #ifdef SIGIO
511 #undef SIGIO
512 #endif
513 #endif
514
515 /* If we support a window system, turn on the code to poll periodically
516 to detect C-g. It isn't actually used when doing interrupt input. */
517 #ifdef HAVE_WINDOW_SYSTEM
518 #define POLL_FOR_INPUT
519 #endif
520
521 /* Non-nil enables Column Number mode. */
522 Lisp_Object Vcolumn_number_mode;
523 \f
524 /* Global variable declarations. */
525
526 /* Function for init_keyboard to call with no args (if nonzero). */
527 void (*keyboard_init_hook) ();
528
529 static int read_avail_input ();
530 static void get_input_pending ();
531 static int readable_events ();
532 static Lisp_Object read_char_x_menu_prompt ();
533 static Lisp_Object read_char_minibuf_menu_prompt ();
534 static Lisp_Object make_lispy_event ();
535 #ifdef HAVE_MOUSE
536 static Lisp_Object make_lispy_movement ();
537 #endif
538 static Lisp_Object modify_event_symbol ();
539 static Lisp_Object make_lispy_switch_frame ();
540 static int parse_solitary_modifier ();
541
542 /* > 0 if we are to echo keystrokes. */
543 static int echo_keystrokes;
544
545 /* Nonzero means don't try to suspend even if the operating system seems
546 to support it. */
547 static int cannot_suspend;
548
549 #define min(a,b) ((a)<(b)?(a):(b))
550 #define max(a,b) ((a)>(b)?(a):(b))
551
552 /* Install the string STR as the beginning of the string of echoing,
553 so that it serves as a prompt for the next character.
554 Also start echoing. */
555
556 echo_prompt (str)
557 char *str;
558 {
559 int len = strlen (str);
560
561 if (len > ECHOBUFSIZE - 4)
562 len = ECHOBUFSIZE - 4;
563 bcopy (str, current_kboard->echobuf, len);
564 current_kboard->echoptr = current_kboard->echobuf + len;
565 *current_kboard->echoptr = '\0';
566
567 current_kboard->echo_after_prompt = len;
568
569 echo_now ();
570 }
571
572 /* Add C to the echo string, if echoing is going on.
573 C can be a character, which is printed prettily ("M-C-x" and all that
574 jazz), or a symbol, whose name is printed. */
575
576 echo_char (c)
577 Lisp_Object c;
578 {
579 extern char *push_key_description ();
580
581 if (current_kboard->immediate_echo)
582 {
583 char *ptr = current_kboard->echoptr;
584
585 if (ptr != current_kboard->echobuf)
586 *ptr++ = ' ';
587
588 /* If someone has passed us a composite event, use its head symbol. */
589 c = EVENT_HEAD (c);
590
591 if (INTEGERP (c))
592 {
593 if (ptr - current_kboard->echobuf > ECHOBUFSIZE - 6)
594 return;
595
596 ptr = push_key_description (XINT (c), ptr);
597 }
598 else if (SYMBOLP (c))
599 {
600 struct Lisp_String *name = XSYMBOL (c)->name;
601 if ((ptr - current_kboard->echobuf) + name->size + 4 > ECHOBUFSIZE)
602 return;
603 bcopy (name->data, ptr, name->size);
604 ptr += name->size;
605 }
606
607 if (current_kboard->echoptr == current_kboard->echobuf
608 && help_char_p (c))
609 {
610 strcpy (ptr, " (Type ? for further options)");
611 ptr += strlen (ptr);
612 }
613
614 *ptr = 0;
615 current_kboard->echoptr = ptr;
616
617 echo_now ();
618 }
619 }
620
621 /* Temporarily add a dash to the end of the echo string if it's not
622 empty, so that it serves as a mini-prompt for the very next character. */
623
624 echo_dash ()
625 {
626 if (!current_kboard->immediate_echo
627 && current_kboard->echoptr == current_kboard->echobuf)
628 return;
629 /* Do nothing if we just printed a prompt. */
630 if (current_kboard->echo_after_prompt
631 == current_kboard->echoptr - current_kboard->echobuf)
632 return;
633 /* Do nothing if not echoing at all. */
634 if (current_kboard->echoptr == 0)
635 return;
636
637 /* Put a dash at the end of the buffer temporarily,
638 but make it go away when the next character is added. */
639 current_kboard->echoptr[0] = '-';
640 current_kboard->echoptr[1] = 0;
641
642 echo_now ();
643 }
644
645 /* Display the current echo string, and begin echoing if not already
646 doing so. */
647
648 echo_now ()
649 {
650 if (!current_kboard->immediate_echo)
651 {
652 int i;
653 current_kboard->immediate_echo = 1;
654
655 for (i = 0; i < this_command_key_count; i++)
656 {
657 Lisp_Object c;
658 c = XVECTOR (this_command_keys)->contents[i];
659 if (! (EVENT_HAS_PARAMETERS (c)
660 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
661 echo_char (c);
662 }
663 echo_dash ();
664 }
665
666 echoing = 1;
667 message1_nolog (current_kboard->echobuf);
668 echoing = 0;
669
670 if (waiting_for_input && !NILP (Vquit_flag))
671 quit_throw_to_read_char ();
672 }
673
674 /* Turn off echoing, for the start of a new command. */
675
676 cancel_echoing ()
677 {
678 current_kboard->immediate_echo = 0;
679 current_kboard->echoptr = current_kboard->echobuf;
680 current_kboard->echo_after_prompt = -1;
681 ok_to_echo_at_next_pause = 0;
682 }
683
684 /* Return the length of the current echo string. */
685
686 static int
687 echo_length ()
688 {
689 return current_kboard->echoptr - current_kboard->echobuf;
690 }
691
692 /* Truncate the current echo message to its first LEN chars.
693 This and echo_char get used by read_key_sequence when the user
694 switches frames while entering a key sequence. */
695
696 static void
697 echo_truncate (len)
698 int len;
699 {
700 current_kboard->echobuf[len] = '\0';
701 current_kboard->echoptr = current_kboard->echobuf + len;
702 truncate_echo_area (len);
703 }
704
705 \f
706 /* Functions for manipulating this_command_keys. */
707 static void
708 add_command_key (key)
709 Lisp_Object key;
710 {
711 int size = XVECTOR (this_command_keys)->size;
712
713 /* If reset-this-command-length was called recently, obey it now.
714 See the doc string of that function for an explanation of why. */
715 if (before_command_restore_flag)
716 {
717 this_command_key_count = before_command_key_count_1;
718 echo_truncate (before_command_echo_length_1);
719 before_command_restore_flag = 0;
720 }
721
722 if (this_command_key_count >= size)
723 {
724 Lisp_Object new_keys;
725
726 new_keys = Fmake_vector (make_number (size * 2), Qnil);
727 bcopy (XVECTOR (this_command_keys)->contents,
728 XVECTOR (new_keys)->contents,
729 size * sizeof (Lisp_Object));
730
731 this_command_keys = new_keys;
732 }
733
734 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
735 }
736 \f
737 Lisp_Object
738 recursive_edit_1 ()
739 {
740 int count = specpdl_ptr - specpdl;
741 Lisp_Object val;
742
743 if (command_loop_level > 0)
744 {
745 specbind (Qstandard_output, Qt);
746 specbind (Qstandard_input, Qt);
747 }
748
749 val = command_loop ();
750 if (EQ (val, Qt))
751 Fsignal (Qquit, Qnil);
752
753 return unbind_to (count, Qnil);
754 }
755
756 /* When an auto-save happens, record the "time", and don't do again soon. */
757
758 record_auto_save ()
759 {
760 last_auto_save = num_nonmacro_input_chars;
761 }
762
763 /* Make an auto save happen as soon as possible at command level. */
764
765 force_auto_save_soon ()
766 {
767 last_auto_save = - auto_save_interval - 1;
768
769 record_asynch_buffer_change ();
770 }
771 \f
772 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
773 "Invoke the editor command loop recursively.\n\
774 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
775 that tells this function to return.\n\
776 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
777 This function is called by the editor initialization to begin editing.")
778 ()
779 {
780 int count = specpdl_ptr - specpdl;
781 Lisp_Object val;
782
783 command_loop_level++;
784 update_mode_lines = 1;
785
786 record_unwind_protect (recursive_edit_unwind,
787 (command_loop_level
788 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
789 ? Fcurrent_buffer ()
790 : Qnil);
791 recursive_edit_1 ();
792 return unbind_to (count, Qnil);
793 }
794
795 Lisp_Object
796 recursive_edit_unwind (buffer)
797 Lisp_Object buffer;
798 {
799 if (!NILP (buffer))
800 Fset_buffer (buffer);
801
802 command_loop_level--;
803 update_mode_lines = 1;
804 return Qnil;
805 }
806 \f
807 static void
808 any_kboard_state ()
809 {
810 #ifdef MULTI_KBOARD
811 #if 0 /* Theory: if there's anything in Vunread_command_events,
812 it will right away be read by read_key_sequence,
813 and then if we do switch KBOARDS, it will go into the side
814 queue then. So we don't need to do anything special here -- rms. */
815 if (CONSP (Vunread_command_events))
816 {
817 current_kboard->kbd_queue
818 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
819 current_kboard->kbd_queue_has_data = 1;
820 }
821 Vunread_command_events = Qnil;
822 #endif
823 single_kboard = 0;
824 #endif
825 }
826
827 /* Switch to the single-kboard state, making current_kboard
828 the only KBOARD from which further input is accepted. */
829
830 void
831 single_kboard_state ()
832 {
833 #ifdef MULTI_KBOARD
834 single_kboard = 1;
835 #endif
836 }
837
838 /* Maintain a stack of kboards, so other parts of Emacs
839 can switch temporarily to the kboard of a given frame
840 and then revert to the previous status. */
841
842 struct kboard_stack
843 {
844 KBOARD *kboard;
845 struct kboard_stack *next;
846 };
847
848 static struct kboard_stack *kboard_stack;
849
850 void
851 push_frame_kboard (f)
852 FRAME_PTR f;
853 {
854 #ifdef MULTI_KBOARD
855 struct kboard_stack *p
856 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
857
858 p->next = kboard_stack;
859 p->kboard = current_kboard;
860 kboard_stack = p;
861
862 current_kboard = FRAME_KBOARD (f);
863 #endif
864 }
865
866 void
867 pop_frame_kboard ()
868 {
869 #ifdef MULTI_KBOARD
870 struct kboard_stack *p = kboard_stack;
871 current_kboard = p->kboard;
872 kboard_stack = p->next;
873 xfree (p);
874 #endif
875 }
876 \f
877 /* Handle errors that are not handled at inner levels
878 by printing an error message and returning to the editor command loop. */
879
880 Lisp_Object
881 cmd_error (data)
882 Lisp_Object data;
883 {
884 Lisp_Object old_level, old_length;
885
886 Vstandard_output = Qt;
887 Vstandard_input = Qt;
888 Vexecuting_macro = Qnil;
889 current_kboard->Vprefix_arg = Qnil;
890 cancel_echoing ();
891
892 /* Avoid unquittable loop if data contains a circular list. */
893 old_level = Vprint_level;
894 old_length = Vprint_length;
895 XSETFASTINT (Vprint_level, 10);
896 XSETFASTINT (Vprint_length, 10);
897 cmd_error_internal (data, NULL);
898 Vprint_level = old_level;
899 Vprint_length = old_length;
900
901 Vquit_flag = Qnil;
902
903 Vinhibit_quit = Qnil;
904 #ifdef MULTI_KBOARD
905 any_kboard_state ();
906 #endif
907
908 return make_number (0);
909 }
910
911 cmd_error_internal (data, context)
912 Lisp_Object data;
913 char *context;
914 {
915 Lisp_Object stream;
916
917 Vquit_flag = Qnil;
918 Vinhibit_quit = Qt;
919 echo_area_glyphs = 0;
920
921 /* If the window system or terminal frame hasn't been initialized
922 yet, or we're not interactive, it's best to dump this message out
923 to stderr and exit. */
924 if (! FRAME_MESSAGE_BUF (selected_frame)
925 || noninteractive)
926 stream = Qexternal_debugging_output;
927 else
928 {
929 Fdiscard_input ();
930 bitch_at_user ();
931 stream = Qt;
932 }
933
934 if (context != 0)
935 write_string_1 (context, -1, stream);
936
937 print_error_message (data, stream);
938
939 /* If the window system or terminal frame hasn't been initialized
940 yet, or we're in -batch mode, this error should cause Emacs to exit. */
941 if (! FRAME_MESSAGE_BUF (selected_frame)
942 || noninteractive)
943 {
944 Fterpri (stream);
945 Fkill_emacs (make_number (-1));
946 }
947 }
948 \f
949 Lisp_Object command_loop_1 ();
950 Lisp_Object command_loop_2 ();
951 Lisp_Object top_level_1 ();
952
953 /* Entry to editor-command-loop.
954 This level has the catches for exiting/returning to editor command loop.
955 It returns nil to exit recursive edit, t to abort it. */
956
957 Lisp_Object
958 command_loop ()
959 {
960 if (command_loop_level > 0 || minibuf_level > 0)
961 {
962 return internal_catch (Qexit, command_loop_2, Qnil);
963 }
964 else
965 while (1)
966 {
967 internal_catch (Qtop_level, top_level_1, Qnil);
968 internal_catch (Qtop_level, command_loop_2, Qnil);
969
970 /* End of file in -batch run causes exit here. */
971 if (noninteractive)
972 Fkill_emacs (Qt);
973 }
974 }
975
976 /* Here we catch errors in execution of commands within the
977 editing loop, and reenter the editing loop.
978 When there is an error, cmd_error runs and returns a non-nil
979 value to us. A value of nil means that cmd_loop_1 itself
980 returned due to end of file (or end of kbd macro). */
981
982 Lisp_Object
983 command_loop_2 ()
984 {
985 register Lisp_Object val;
986
987 do
988 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
989 while (!NILP (val));
990
991 return Qnil;
992 }
993
994 Lisp_Object
995 top_level_2 ()
996 {
997 return Feval (Vtop_level);
998 }
999
1000 Lisp_Object
1001 top_level_1 ()
1002 {
1003 /* On entry to the outer level, run the startup file */
1004 if (!NILP (Vtop_level))
1005 internal_condition_case (top_level_2, Qerror, cmd_error);
1006 else if (!NILP (Vpurify_flag))
1007 message ("Bare impure Emacs (standard Lisp code not loaded)");
1008 else
1009 message ("Bare Emacs (standard Lisp code not loaded)");
1010 return Qnil;
1011 }
1012
1013 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1014 "Exit all recursive editing levels.")
1015 ()
1016 {
1017 Fthrow (Qtop_level, Qnil);
1018 }
1019
1020 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1021 "Exit from the innermost recursive edit or minibuffer.")
1022 ()
1023 {
1024 if (command_loop_level > 0 || minibuf_level > 0)
1025 Fthrow (Qexit, Qnil);
1026
1027 error ("No recursive edit is in progress");
1028 }
1029
1030 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1031 "Abort the command that requested this recursive edit or minibuffer input.")
1032 ()
1033 {
1034 if (command_loop_level > 0 || minibuf_level > 0)
1035 Fthrow (Qexit, Qt);
1036
1037 error ("No recursive edit is in progress");
1038 }
1039 \f
1040 /* This is the actual command reading loop,
1041 sans error-handling encapsulation. */
1042
1043 Lisp_Object Fcommand_execute ();
1044 static int read_key_sequence ();
1045 void safe_run_hooks ();
1046
1047 Lisp_Object
1048 command_loop_1 ()
1049 {
1050 Lisp_Object cmd, tem;
1051 int lose;
1052 int nonundocount;
1053 Lisp_Object keybuf[30];
1054 int i;
1055 int no_redisplay;
1056 int no_direct;
1057 int prev_modiff;
1058 struct buffer *prev_buffer;
1059 #ifdef MULTI_KBOARD
1060 int was_locked = single_kboard;
1061 #endif
1062
1063 current_kboard->Vprefix_arg = Qnil;
1064 Vdeactivate_mark = Qnil;
1065 waiting_for_input = 0;
1066 cancel_echoing ();
1067
1068 nonundocount = 0;
1069 no_redisplay = 0;
1070 this_command_key_count = 0;
1071
1072 /* Make sure this hook runs after commands that get errors and
1073 throw to top level. */
1074 /* Note that the value cell will never directly contain nil
1075 if the symbol is a local variable. */
1076 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1077 safe_run_hooks (Qpost_command_hook);
1078
1079 if (!NILP (Vdeferred_action_list))
1080 call0 (Vdeferred_action_function);
1081
1082 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1083 {
1084 if (NILP (Vunread_command_events)
1085 && NILP (Vexecuting_macro)
1086 && !NILP (sit_for (0, post_command_idle_delay, 0, 1)))
1087 safe_run_hooks (Qpost_command_idle_hook);
1088 }
1089
1090 /* Do this after running Vpost_command_hook, for consistency. */
1091 current_kboard->Vlast_command = this_command;
1092
1093 while (1)
1094 {
1095 /* Make sure the current window's buffer is selected. */
1096 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1097 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1098
1099 /* Display any malloc warning that just came out. Use while because
1100 displaying one warning can cause another. */
1101
1102 while (pending_malloc_warning)
1103 display_malloc_warning ();
1104
1105 no_direct = 0;
1106
1107 Vdeactivate_mark = Qnil;
1108
1109 /* If minibuffer on and echo area in use,
1110 wait 2 sec and redraw minibuffer. */
1111
1112 if (minibuf_level && echo_area_glyphs
1113 && EQ (minibuf_window, echo_area_window))
1114 {
1115 /* Bind inhibit-quit to t so that C-g gets read in
1116 rather than quitting back to the minibuffer. */
1117 int count = specpdl_ptr - specpdl;
1118 specbind (Qinhibit_quit, Qt);
1119 Fsit_for (make_number (2), Qnil, Qnil);
1120 unbind_to (count, Qnil);
1121
1122 /* Clear the echo area. */
1123 message2 (0);
1124
1125 /* If a C-g came in before, treat it as input now. */
1126 if (!NILP (Vquit_flag))
1127 {
1128 Vquit_flag = Qnil;
1129 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1130 }
1131 }
1132
1133 #ifdef C_ALLOCA
1134 alloca (0); /* Cause a garbage collection now */
1135 /* Since we can free the most stuff here. */
1136 #endif /* C_ALLOCA */
1137
1138 #if 0
1139 #ifdef MULTI_FRAME
1140 /* Select the frame that the last event came from. Usually,
1141 switch-frame events will take care of this, but if some lisp
1142 code swallows a switch-frame event, we'll fix things up here.
1143 Is this a good idea? */
1144 if (FRAMEP (internal_last_event_frame)
1145 && XFRAME (internal_last_event_frame) != selected_frame)
1146 Fselect_frame (internal_last_event_frame, Qnil);
1147 #endif
1148 #endif
1149 /* If it has changed current-menubar from previous value,
1150 really recompute the menubar from the value. */
1151 if (! NILP (Vlucid_menu_bar_dirty_flag)
1152 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1153 call0 (Qrecompute_lucid_menubar);
1154
1155 before_command_key_count = this_command_key_count;
1156 before_command_echo_length = echo_length ();
1157
1158 this_command = Qnil;
1159
1160 /* Read next key sequence; i gets its length. */
1161 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1162 Qnil, 0, 1);
1163
1164 ++num_input_keys;
1165
1166 /* Now we have read a key sequence of length I,
1167 or else I is 0 and we found end of file. */
1168
1169 if (i == 0) /* End of file -- happens only in */
1170 return Qnil; /* a kbd macro, at the end. */
1171 /* -1 means read_key_sequence got a menu that was rejected.
1172 Just loop around and read another command. */
1173 if (i == -1)
1174 {
1175 cancel_echoing ();
1176 this_command_key_count = 0;
1177 goto finalize;
1178 }
1179
1180 last_command_char = keybuf[i - 1];
1181
1182 /* If the previous command tried to force a specific window-start,
1183 forget about that, in case this command moves point far away
1184 from that position. But also throw away beg_unchanged and
1185 end_unchanged information in that case, so that redisplay will
1186 update the whole window properly. */
1187 if (!NILP (XWINDOW (selected_window)->force_start))
1188 {
1189 XWINDOW (selected_window)->force_start = Qnil;
1190 beg_unchanged = end_unchanged = 0;
1191 }
1192
1193 cmd = read_key_sequence_cmd;
1194 if (!NILP (Vexecuting_macro))
1195 {
1196 if (!NILP (Vquit_flag))
1197 {
1198 Vexecuting_macro = Qt;
1199 QUIT; /* Make some noise. */
1200 /* Will return since macro now empty. */
1201 }
1202 }
1203
1204 /* Do redisplay processing after this command except in special
1205 cases identified below that set no_redisplay to 1.
1206 (actually, there's currently no way to prevent the redisplay,
1207 and no_redisplay is ignored.
1208 Perhaps someday we will really implement it.) */
1209 no_redisplay = 0;
1210
1211 prev_buffer = current_buffer;
1212 prev_modiff = MODIFF;
1213 last_point_position = PT;
1214 XSETBUFFER (last_point_position_buffer, prev_buffer);
1215
1216 /* Execute the command. */
1217
1218 this_command = cmd;
1219 /* Note that the value cell will never directly contain nil
1220 if the symbol is a local variable. */
1221 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1222 safe_run_hooks (Qpre_command_hook);
1223
1224 if (NILP (this_command))
1225 {
1226 /* nil means key is undefined. */
1227 bitch_at_user ();
1228 current_kboard->defining_kbd_macro = Qnil;
1229 update_mode_lines = 1;
1230 current_kboard->Vprefix_arg = Qnil;
1231 }
1232 else
1233 {
1234 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1235 {
1236 /* Recognize some common commands in common situations and
1237 do them directly. */
1238 if (EQ (this_command, Qforward_char) && PT < ZV)
1239 {
1240 struct Lisp_Char_Table *dp
1241 = window_display_table (XWINDOW (selected_window));
1242 lose = FETCH_CHAR (PT);
1243 SET_PT (PT + 1);
1244 if ((dp
1245 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1246 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1247 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1248 && (lose >= 0x20 && lose < 0x7f)))
1249 : (lose >= 0x20 && lose < 0x7f))
1250 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1251 >= MODIFF)
1252 && (XFASTINT (XWINDOW (selected_window)->last_point)
1253 == PT - 1)
1254 && !windows_or_buffers_changed
1255 && EQ (current_buffer->selective_display, Qnil)
1256 && !detect_input_pending ()
1257 && NILP (Vcolumn_number_mode)
1258 && NILP (Vexecuting_macro))
1259 no_redisplay = direct_output_forward_char (1);
1260 goto directly_done;
1261 }
1262 else if (EQ (this_command, Qbackward_char) && PT > BEGV)
1263 {
1264 struct Lisp_Char_Table *dp
1265 = window_display_table (XWINDOW (selected_window));
1266 SET_PT (PT - 1);
1267 lose = FETCH_CHAR (PT);
1268 if ((dp
1269 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1270 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1271 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1272 && (lose >= 0x20 && lose < 0x7f)))
1273 : (lose >= 0x20 && lose < 0x7f))
1274 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1275 >= MODIFF)
1276 && (XFASTINT (XWINDOW (selected_window)->last_point)
1277 == PT + 1)
1278 && !windows_or_buffers_changed
1279 && EQ (current_buffer->selective_display, Qnil)
1280 && !detect_input_pending ()
1281 && NILP (Vcolumn_number_mode)
1282 && NILP (Vexecuting_macro))
1283 no_redisplay = direct_output_forward_char (-1);
1284 goto directly_done;
1285 }
1286 else if (EQ (this_command, Qself_insert_command)
1287 /* Try this optimization only on ascii keystrokes. */
1288 && INTEGERP (last_command_char))
1289 {
1290 unsigned char c = XINT (last_command_char);
1291 int value;
1292
1293 if (NILP (Vexecuting_macro)
1294 && !EQ (minibuf_window, selected_window))
1295 {
1296 if (!nonundocount || nonundocount >= 20)
1297 {
1298 Fundo_boundary ();
1299 nonundocount = 0;
1300 }
1301 nonundocount++;
1302 }
1303 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1304 < MODIFF)
1305 || (XFASTINT (XWINDOW (selected_window)->last_point)
1306 != PT)
1307 || MODIFF <= SAVE_MODIFF
1308 || windows_or_buffers_changed
1309 || !EQ (current_buffer->selective_display, Qnil)
1310 || detect_input_pending ()
1311 || !NILP (Vcolumn_number_mode)
1312 || !NILP (Vexecuting_macro));
1313 value = internal_self_insert (c, 0);
1314 if (value)
1315 lose = 1;
1316 if (value == 2)
1317 nonundocount = 0;
1318
1319 if (!lose
1320 && (PT == ZV || FETCH_CHAR (PT) == '\n'))
1321 {
1322 struct Lisp_Char_Table *dp
1323 = window_display_table (XWINDOW (selected_window));
1324 int lose = c;
1325
1326 if (dp)
1327 {
1328 Lisp_Object obj;
1329
1330 obj = DISP_CHAR_VECTOR (dp, lose);
1331 if (NILP (obj))
1332 {
1333 /* Do it only for char codes
1334 that by default display as themselves. */
1335 if (lose >= 0x20 && lose <= 0x7e)
1336 no_redisplay = direct_output_for_insert (lose);
1337 }
1338 else if (VECTORP (obj)
1339 && XVECTOR (obj)->size == 1
1340 && (obj = XVECTOR (obj)->contents[0],
1341 INTEGERP (obj))
1342 /* Insist face not specified in glyph. */
1343 && (XINT (obj) & ((-1) << 8)) == 0)
1344 no_redisplay
1345 = direct_output_for_insert (XINT (obj));
1346 }
1347 else
1348 {
1349 if (lose >= 0x20 && lose <= 0x7e)
1350 no_redisplay = direct_output_for_insert (lose);
1351 }
1352 }
1353 goto directly_done;
1354 }
1355 }
1356
1357 /* Here for a command that isn't executed directly */
1358
1359 nonundocount = 0;
1360 if (NILP (current_kboard->Vprefix_arg))
1361 Fundo_boundary ();
1362 Fcommand_execute (this_command, Qnil, Qnil, Qnil);
1363
1364 }
1365 directly_done: ;
1366
1367 /* Note that the value cell will never directly contain nil
1368 if the symbol is a local variable. */
1369 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1370 safe_run_hooks (Qpost_command_hook);
1371
1372 if (!NILP (Vdeferred_action_list))
1373 safe_run_hooks (Qdeferred_action_function);
1374
1375 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1376 {
1377 if (NILP (Vunread_command_events)
1378 && NILP (Vexecuting_macro)
1379 && !NILP (sit_for (0, post_command_idle_delay, 0, 1)))
1380 safe_run_hooks (Qpost_command_idle_hook);
1381 }
1382
1383 /* If there is a prefix argument,
1384 1) We don't want Vlast_command to be ``universal-argument''
1385 (that would be dumb), so don't set Vlast_command,
1386 2) we want to leave echoing on so that the prefix will be
1387 echoed as part of this key sequence, so don't call
1388 cancel_echoing, and
1389 3) we want to leave this_command_key_count non-zero, so that
1390 read_char will realize that it is re-reading a character, and
1391 not echo it a second time.
1392
1393 If the command didn't actually create a prefix arg,
1394 but is merely a frame event that is transparent to prefix args,
1395 then the above doesn't apply. */
1396 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1397 {
1398 current_kboard->Vlast_command = this_command;
1399 cancel_echoing ();
1400 this_command_key_count = 0;
1401 }
1402
1403 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1404 {
1405 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1406 {
1407 current_buffer->mark_active = Qnil;
1408 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1409 }
1410 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1411 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1412 }
1413
1414 finalize:
1415 /* Install chars successfully executed in kbd macro. */
1416
1417 if (!NILP (current_kboard->defining_kbd_macro)
1418 && NILP (current_kboard->Vprefix_arg))
1419 finalize_kbd_macro_chars ();
1420
1421 #ifdef MULTI_KBOARD
1422 if (!was_locked)
1423 any_kboard_state ();
1424 #endif
1425 }
1426 }
1427
1428 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1429
1430 static Lisp_Object
1431 safe_run_hooks_1 (hook)
1432 Lisp_Object hook;
1433 {
1434 return call1 (Vrun_hooks, Vinhibit_quit);
1435 }
1436
1437 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1438
1439 static Lisp_Object
1440 safe_run_hooks_error (data)
1441 Lisp_Object data;
1442 {
1443 Fset (Vinhibit_quit, Qnil);
1444 }
1445
1446 /* If we get an error while running the hook, cause the hook variable
1447 to be nil. Also inhibit quits, so that C-g won't cause the hook
1448 to mysteriously evaporate. */
1449
1450 void
1451 safe_run_hooks (hook)
1452 Lisp_Object hook;
1453 {
1454 Lisp_Object value;
1455 int count = specpdl_ptr - specpdl;
1456 specbind (Qinhibit_quit, hook);
1457
1458 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1459
1460 unbind_to (count, Qnil);
1461 }
1462 \f
1463 /* Number of seconds between polling for input. */
1464 int polling_period;
1465
1466 /* Nonzero means polling for input is temporarily suppressed. */
1467 int poll_suppress_count;
1468
1469 /* Nonzero if polling_for_input is actually being used. */
1470 int polling_for_input;
1471
1472 #ifdef POLL_FOR_INPUT
1473
1474 /* Handle an alarm once each second and read pending input
1475 so as to handle a C-g if it comces in. */
1476
1477 SIGTYPE
1478 input_poll_signal (signalnum) /* If we don't have an argument, */
1479 int signalnum; /* some compilers complain in signal calls. */
1480 {
1481 /* This causes the call to start_polling at the end
1482 to do its job. It also arranges for a quit or error
1483 from within read_avail_input to resume polling. */
1484 poll_suppress_count++;
1485 if (interrupt_input_blocked == 0
1486 && !waiting_for_input)
1487 read_avail_input (0);
1488 /* Turn on the SIGALRM handler and request another alarm. */
1489 start_polling ();
1490 }
1491
1492 #endif
1493
1494 /* Begin signals to poll for input, if they are appropriate.
1495 This function is called unconditionally from various places. */
1496
1497 start_polling ()
1498 {
1499 #ifdef POLL_FOR_INPUT
1500 if (read_socket_hook && !interrupt_input)
1501 {
1502 poll_suppress_count--;
1503 if (poll_suppress_count == 0)
1504 {
1505 signal (SIGALRM, input_poll_signal);
1506 polling_for_input = 1;
1507 alarm (polling_period);
1508 }
1509 }
1510 #endif
1511 }
1512
1513 /* Nonzero if we are using polling to handle input asynchronously. */
1514
1515 int
1516 input_polling_used ()
1517 {
1518 #ifdef POLL_FOR_INPUT
1519 return read_socket_hook && !interrupt_input;
1520 #else
1521 return 0;
1522 #endif
1523 }
1524
1525 /* Turn off polling. */
1526
1527 stop_polling ()
1528 {
1529 #ifdef POLL_FOR_INPUT
1530 if (read_socket_hook && !interrupt_input)
1531 {
1532 if (poll_suppress_count == 0)
1533 {
1534 polling_for_input = 0;
1535 alarm (0);
1536 }
1537 poll_suppress_count++;
1538 }
1539 #endif
1540 }
1541
1542 /* Set the value of poll_suppress_count to COUNT
1543 and start or stop polling accordingly. */
1544
1545 void
1546 set_poll_suppress_count (count)
1547 int count;
1548 {
1549 #ifdef POLL_FOR_INPUT
1550 if (count == 0 && poll_suppress_count != 0)
1551 {
1552 poll_suppress_count = 1;
1553 start_polling ();
1554 }
1555 else if (count != 0 && poll_suppress_count == 0)
1556 {
1557 stop_polling ();
1558 }
1559 poll_suppress_count = count;
1560 #endif
1561 }
1562
1563 /* Bind polling_period to a value at least N.
1564 But don't decrease it. */
1565
1566 bind_polling_period (n)
1567 int n;
1568 {
1569 #ifdef POLL_FOR_INPUT
1570 int new = polling_period;
1571
1572 if (n > new)
1573 new = n;
1574
1575 stop_polling ();
1576 specbind (Qpolling_period, make_number (new));
1577 /* Start a new alarm with the new period. */
1578 start_polling ();
1579 #endif
1580 }
1581 \f
1582 /* Apply the control modifier to CHARACTER. */
1583
1584 int
1585 make_ctrl_char (c)
1586 int c;
1587 {
1588 /* Save the upper bits here. */
1589 int upper = c & ~0177;
1590
1591 c &= 0177;
1592
1593 /* Everything in the columns containing the upper-case letters
1594 denotes a control character. */
1595 if (c >= 0100 && c < 0140)
1596 {
1597 int oc = c;
1598 c &= ~0140;
1599 /* Set the shift modifier for a control char
1600 made from a shifted letter. But only for letters! */
1601 if (oc >= 'A' && oc <= 'Z')
1602 c |= shift_modifier;
1603 }
1604
1605 /* The lower-case letters denote control characters too. */
1606 else if (c >= 'a' && c <= 'z')
1607 c &= ~0140;
1608
1609 /* Include the bits for control and shift
1610 only if the basic ASCII code can't indicate them. */
1611 else if (c >= ' ')
1612 c |= ctrl_modifier;
1613
1614 /* Replace the high bits. */
1615 c |= (upper & ~ctrl_modifier);
1616
1617 return c;
1618 }
1619
1620
1621 \f
1622 /* Input of single characters from keyboard */
1623
1624 Lisp_Object print_help ();
1625 static Lisp_Object kbd_buffer_get_event ();
1626 static void record_char ();
1627
1628 #ifdef MULTI_KBOARD
1629 static jmp_buf wrong_kboard_jmpbuf;
1630 #endif
1631
1632 /* read a character from the keyboard; call the redisplay if needed */
1633 /* commandflag 0 means do not do auto-saving, but do do redisplay.
1634 -1 means do not do redisplay, but do do autosaving.
1635 1 means do both. */
1636
1637 /* The arguments MAPS and NMAPS are for menu prompting.
1638 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1639
1640 PREV_EVENT is the previous input event, or nil if we are reading
1641 the first event of a key sequence.
1642
1643 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
1644 if we used a mouse menu to read the input, or zero otherwise. If
1645 USED_MOUSE_MENU is null, we don't dereference it.
1646
1647 Value is t if we showed a menu and the user rejected it. */
1648
1649 Lisp_Object
1650 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
1651 int commandflag;
1652 int nmaps;
1653 Lisp_Object *maps;
1654 Lisp_Object prev_event;
1655 int *used_mouse_menu;
1656 {
1657 register Lisp_Object c;
1658 int count;
1659 jmp_buf local_getcjmp;
1660 jmp_buf save_jump;
1661 int key_already_recorded = 0;
1662 Lisp_Object tem, save;
1663 Lisp_Object also_record;
1664 also_record = Qnil;
1665
1666 before_command_key_count = this_command_key_count;
1667 before_command_echo_length = echo_length ();
1668
1669 retry:
1670
1671 if (CONSP (Vunread_command_events))
1672 {
1673 c = XCONS (Vunread_command_events)->car;
1674 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
1675
1676 /* Undo what read_char_x_menu_prompt did when it unread
1677 additional keys returned by Fx_popup_menu. */
1678 if (CONSP (c)
1679 && (SYMBOLP (XCONS (c)->car) || INTEGERP (XCONS (c)->car))
1680 && NILP (XCONS (c)->cdr))
1681 c = XCONS (c)->car;
1682
1683 if (this_command_key_count == 0)
1684 goto reread_first;
1685 else
1686 goto reread;
1687 }
1688
1689 if (unread_command_char != -1)
1690 {
1691 XSETINT (c, unread_command_char);
1692 unread_command_char = -1;
1693
1694 if (this_command_key_count == 0)
1695 goto reread_first;
1696 else
1697 goto reread;
1698 }
1699
1700 /* If there is no function key translated before
1701 reset-this-command-lengths takes effect, forget about it. */
1702 before_command_restore_flag = 0;
1703
1704 if (!NILP (Vexecuting_macro))
1705 {
1706 #ifdef MULTI_FRAME
1707 /* We set this to Qmacro; since that's not a frame, nobody will
1708 try to switch frames on us, and the selected window will
1709 remain unchanged.
1710
1711 Since this event came from a macro, it would be misleading to
1712 leave internal_last_event_frame set to wherever the last
1713 real event came from. Normally, a switch-frame event selects
1714 internal_last_event_frame after each command is read, but
1715 events read from a macro should never cause a new frame to be
1716 selected. */
1717 Vlast_event_frame = internal_last_event_frame = Qmacro;
1718 #endif
1719
1720 /* Exit the macro if we are at the end.
1721 Also, some things replace the macro with t
1722 to force an early exit. */
1723 if (EQ (Vexecuting_macro, Qt)
1724 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
1725 {
1726 XSETINT (c, -1);
1727 return c;
1728 }
1729
1730 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
1731 if (STRINGP (Vexecuting_macro)
1732 && (XINT (c) & 0x80))
1733 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
1734
1735 executing_macro_index++;
1736
1737 goto from_macro;
1738 }
1739
1740 if (!NILP (unread_switch_frame))
1741 {
1742 c = unread_switch_frame;
1743 unread_switch_frame = Qnil;
1744
1745 /* This event should make it into this_command_keys, and get echoed
1746 again, so we go to reread_first, rather than reread. */
1747 goto reread_first;
1748 }
1749
1750 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1751 redisplay ();
1752
1753 /* Message turns off echoing unless more keystrokes turn it on again. */
1754 if (echo_area_glyphs && *echo_area_glyphs
1755 && echo_area_glyphs != current_kboard->echobuf
1756 && ok_to_echo_at_next_pause != echo_area_glyphs)
1757 cancel_echoing ();
1758 else
1759 /* If already echoing, continue. */
1760 echo_dash ();
1761
1762 /* Try reading a character via menu prompting in the minibuf.
1763 Try this before the sit-for, because the sit-for
1764 would do the wrong thing if we are supposed to do
1765 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
1766 after a mouse event so don't try a minibuf menu. */
1767 c = Qnil;
1768 if (nmaps > 0 && INTERACTIVE
1769 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
1770 /* Don't bring up a menu if we already have another event. */
1771 && NILP (Vunread_command_events)
1772 && unread_command_char < 0
1773 && !detect_input_pending ())
1774 {
1775 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
1776 if (! NILP (c))
1777 {
1778 key_already_recorded = 1;
1779 goto non_reread_1;
1780 }
1781 }
1782
1783 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
1784 We will do that below, temporarily for short sections of code,
1785 when appropriate. local_getcjmp must be in effect
1786 around any call to sit_for or kbd_buffer_get_event;
1787 it *must not* be in effect when we call redisplay. */
1788
1789 if (_setjmp (local_getcjmp))
1790 {
1791 XSETINT (c, quit_char);
1792 #ifdef MULTI_FRAME
1793 XSETFRAME (internal_last_event_frame, selected_frame);
1794 Vlast_event_frame = internal_last_event_frame;
1795 #endif
1796 /* If we report the quit char as an event,
1797 don't do so more than once. */
1798 if (!NILP (Vinhibit_quit))
1799 Vquit_flag = Qnil;
1800
1801 #ifdef MULTI_KBOARD
1802 {
1803 KBOARD *kb = FRAME_KBOARD (selected_frame);
1804 if (kb != current_kboard)
1805 {
1806 Lisp_Object *tailp = &kb->kbd_queue;
1807 /* We shouldn't get here if we were in single-kboard mode! */
1808 if (single_kboard)
1809 abort ();
1810 while (CONSP (*tailp))
1811 tailp = &XCONS (*tailp)->cdr;
1812 if (!NILP (*tailp))
1813 abort ();
1814 *tailp = Fcons (c, Qnil);
1815 kb->kbd_queue_has_data = 1;
1816 current_kboard = kb;
1817 longjmp (wrong_kboard_jmpbuf, 1);
1818 }
1819 }
1820 #endif
1821 goto non_reread;
1822 }
1823
1824 timer_start_idle ();
1825
1826 /* If in middle of key sequence and minibuffer not active,
1827 start echoing if enough time elapses. */
1828
1829 if (minibuf_level == 0 && !current_kboard->immediate_echo
1830 && this_command_key_count > 0
1831 && ! noninteractive
1832 && echo_keystrokes > 0
1833 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0
1834 || ok_to_echo_at_next_pause == echo_area_glyphs))
1835 {
1836 Lisp_Object tem0;
1837
1838 /* After a mouse event, start echoing right away.
1839 This is because we are probably about to display a menu,
1840 and we don't want to delay before doing so. */
1841 if (EVENT_HAS_PARAMETERS (prev_event))
1842 echo_now ();
1843 else
1844 {
1845 save_getcjmp (save_jump);
1846 restore_getcjmp (local_getcjmp);
1847 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
1848 restore_getcjmp (save_jump);
1849 if (EQ (tem0, Qt))
1850 echo_now ();
1851 }
1852 }
1853
1854 /* Maybe auto save due to number of keystrokes. */
1855
1856 if (commandflag != 0
1857 && auto_save_interval > 0
1858 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20)
1859 && !detect_input_pending ())
1860 {
1861 Fdo_auto_save (Qnil, Qnil);
1862 /* Hooks can actually change some buffers in auto save. */
1863 redisplay ();
1864 }
1865
1866 /* Try reading using an X menu.
1867 This is never confused with reading using the minibuf
1868 because the recursive call of read_char in read_char_minibuf_menu_prompt
1869 does not pass on any keymaps. */
1870
1871 if (nmaps > 0 && INTERACTIVE
1872 && !NILP (prev_event)
1873 && EVENT_HAS_PARAMETERS (prev_event)
1874 && !EQ (XCONS (prev_event)->car, Qmenu_bar)
1875 /* Don't bring up a menu if we already have another event. */
1876 && NILP (Vunread_command_events)
1877 && unread_command_char < 0)
1878 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
1879
1880 /* Maybe autosave and/or garbage collect due to idleness. */
1881
1882 if (INTERACTIVE && NILP (c))
1883 {
1884 int delay_level, buffer_size;
1885
1886 /* Slow down auto saves logarithmically in size of current buffer,
1887 and garbage collect while we're at it. */
1888 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
1889 last_non_minibuf_size = Z - BEG;
1890 buffer_size = (last_non_minibuf_size >> 8) + 1;
1891 delay_level = 0;
1892 while (buffer_size > 64)
1893 delay_level++, buffer_size -= buffer_size >> 2;
1894 if (delay_level < 4) delay_level = 4;
1895 /* delay_level is 4 for files under around 50k, 7 at 100k,
1896 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1897
1898 /* Auto save if enough time goes by without input. */
1899 if (commandflag != 0
1900 && num_nonmacro_input_chars > last_auto_save
1901 && INTEGERP (Vauto_save_timeout)
1902 && XINT (Vauto_save_timeout) > 0)
1903 {
1904 Lisp_Object tem0;
1905
1906 save_getcjmp (save_jump);
1907 restore_getcjmp (local_getcjmp);
1908 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
1909 0, 1, 1);
1910 restore_getcjmp (save_jump);
1911
1912 if (EQ (tem0, Qt))
1913 {
1914 Fdo_auto_save (Qnil, Qnil);
1915
1916 /* If we have auto-saved and there is still no input
1917 available, garbage collect if there has been enough
1918 consing going on to make it worthwhile. */
1919 if (!detect_input_pending ()
1920 && consing_since_gc > gc_cons_threshold / 2)
1921 Fgarbage_collect ();
1922
1923 redisplay ();
1924 }
1925 }
1926 }
1927
1928 /* Read something from current KBOARD's side queue, if possible. */
1929
1930 if (NILP (c))
1931 {
1932 if (current_kboard->kbd_queue_has_data)
1933 {
1934 if (!CONSP (current_kboard->kbd_queue))
1935 abort ();
1936 c = XCONS (current_kboard->kbd_queue)->car;
1937 current_kboard->kbd_queue
1938 = XCONS (current_kboard->kbd_queue)->cdr;
1939 if (NILP (current_kboard->kbd_queue))
1940 current_kboard->kbd_queue_has_data = 0;
1941 input_pending = readable_events (0);
1942 #ifdef MULTI_FRAME
1943 if (EVENT_HAS_PARAMETERS (c)
1944 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
1945 internal_last_event_frame = XCONS (XCONS (c)->cdr)->car;
1946 Vlast_event_frame = internal_last_event_frame;
1947 #endif
1948 }
1949 }
1950
1951 #ifdef MULTI_KBOARD
1952 /* If current_kboard's side queue is empty check the other kboards.
1953 If one of them has data that we have not yet seen here,
1954 switch to it and process the data waiting for it.
1955
1956 Note: if the events queued up for another kboard
1957 have already been seen here, and therefore are not a complete command,
1958 the kbd_queue_has_data field is 0, so we skip that kboard here.
1959 That's to avoid an infinite loop switching between kboards here. */
1960 if (NILP (c) && !single_kboard)
1961 {
1962 KBOARD *kb;
1963 for (kb = all_kboards; kb; kb = kb->next_kboard)
1964 if (kb->kbd_queue_has_data)
1965 {
1966 current_kboard = kb;
1967 longjmp (wrong_kboard_jmpbuf, 1);
1968 }
1969 }
1970 #endif
1971
1972 wrong_kboard:
1973
1974 stop_polling ();
1975
1976 /* Finally, we read from the main queue,
1977 and if that gives us something we can't use yet, we put it on the
1978 appropriate side queue and try again. */
1979
1980 if (NILP (c))
1981 {
1982 KBOARD *kb;
1983
1984 /* Actually read a character, waiting if necessary. */
1985 save_getcjmp (save_jump);
1986 restore_getcjmp (local_getcjmp);
1987 c = kbd_buffer_get_event (&kb, used_mouse_menu);
1988 restore_getcjmp (save_jump);
1989
1990 #ifdef MULTI_KBOARD
1991 if (! NILP (c) && (kb != current_kboard))
1992 {
1993 Lisp_Object *tailp = &kb->kbd_queue;
1994 while (CONSP (*tailp))
1995 tailp = &XCONS (*tailp)->cdr;
1996 if (!NILP (*tailp))
1997 abort ();
1998 *tailp = Fcons (c, Qnil);
1999 kb->kbd_queue_has_data = 1;
2000 c = Qnil;
2001 if (single_kboard)
2002 goto wrong_kboard;
2003 current_kboard = kb;
2004 longjmp (wrong_kboard_jmpbuf, 1);
2005 }
2006 #endif
2007 }
2008
2009 /* Terminate Emacs in batch mode if at eof. */
2010 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2011 Fkill_emacs (make_number (1));
2012
2013 if (INTEGERP (c))
2014 {
2015 /* Add in any extra modifiers, where appropriate. */
2016 if ((extra_keyboard_modifiers & CHAR_CTL)
2017 || ((extra_keyboard_modifiers & 0177) < ' '
2018 && (extra_keyboard_modifiers & 0177) != 0))
2019 XSETINT (c, make_ctrl_char (XINT (c)));
2020
2021 /* Transfer any other modifier bits directly from
2022 extra_keyboard_modifiers to c. Ignore the actual character code
2023 in the low 16 bits of extra_keyboard_modifiers. */
2024 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2025 }
2026
2027 non_reread:
2028
2029 /* Now that we have read an event, Emacs is not idle--
2030 unless the event was a timer event. */
2031 if (! (CONSP (c) && EQ (XCONS (c)->car, Qtimer_event)))
2032 timer_stop_idle ();
2033
2034 start_polling ();
2035
2036 if (NILP (c))
2037 {
2038 if (commandflag >= 0
2039 && !input_pending && !detect_input_pending ())
2040 redisplay ();
2041
2042 goto wrong_kboard;
2043 }
2044
2045 non_reread_1:
2046
2047 /* Buffer switch events are only for internal wakeups
2048 so don't show them to the user. */
2049 if (BUFFERP (c))
2050 return c;
2051
2052 if (key_already_recorded)
2053 return c;
2054
2055 /* Process special events within read_char
2056 and loop around to read another event. */
2057 save = Vquit_flag;
2058 Vquit_flag = Qnil;
2059 tem = get_keyelt (access_keymap (get_keymap_1 (Vspecial_event_map, 0, 0),
2060 c, 0, 0), 1);
2061 Vquit_flag = save;
2062
2063 if (!NILP (tem))
2064 {
2065 int was_locked = single_kboard;
2066
2067 last_input_char = c;
2068 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2069
2070 /* Resume allowing input from any kboard, if that was true before. */
2071 if (!was_locked)
2072 any_kboard_state ();
2073
2074 goto retry;
2075 }
2076
2077 /* Wipe the echo area. */
2078 echo_area_glyphs = 0;
2079
2080 /* Handle things that only apply to characters. */
2081 if (INTEGERP (c))
2082 {
2083 /* If kbd_buffer_get_event gave us an EOF, return that. */
2084 if (XINT (c) == -1)
2085 return c;
2086
2087 if (STRINGP (Vkeyboard_translate_table)
2088 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c))
2089 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
2090 else if ((VECTORP (Vkeyboard_translate_table)
2091 && XVECTOR (Vkeyboard_translate_table)->size > XFASTINT (c))
2092 || CHAR_TABLE_P (Vkeyboard_translate_table))
2093 {
2094 Lisp_Object d;
2095 d = Faref (Vkeyboard_translate_table, c);
2096 /* nil in keyboard-translate-table means no translation. */
2097 if (!NILP (d))
2098 c = d;
2099 }
2100 }
2101
2102 /* If this event is a mouse click in the menu bar,
2103 return just menu-bar for now. Modify the mouse click event
2104 so we won't do this twice, then queue it up. */
2105 if (EVENT_HAS_PARAMETERS (c)
2106 && CONSP (XCONS (c)->cdr)
2107 && CONSP (EVENT_START (c))
2108 && CONSP (XCONS (EVENT_START (c))->cdr))
2109 {
2110 Lisp_Object posn;
2111
2112 posn = POSN_BUFFER_POSN (EVENT_START (c));
2113 /* Handle menu-bar events:
2114 insert the dummy prefix event `menu-bar'. */
2115 if (EQ (posn, Qmenu_bar))
2116 {
2117 /* Change menu-bar to (menu-bar) as the event "position". */
2118 POSN_BUFFER_POSN (EVENT_START (c)) = Fcons (posn, Qnil);
2119
2120 also_record = c;
2121 Vunread_command_events = Fcons (c, Vunread_command_events);
2122 c = posn;
2123 }
2124 }
2125
2126 record_char (c);
2127 if (! NILP (also_record))
2128 record_char (also_record);
2129
2130 from_macro:
2131 reread_first:
2132 before_command_key_count = this_command_key_count;
2133 before_command_echo_length = echo_length ();
2134
2135 /* Don't echo mouse motion events. */
2136 if (echo_keystrokes
2137 && ! (EVENT_HAS_PARAMETERS (c)
2138 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
2139 {
2140 echo_char (c);
2141 if (! NILP (also_record))
2142 echo_char (also_record);
2143 /* Once we reread a character, echoing can happen
2144 the next time we pause to read a new one. */
2145 ok_to_echo_at_next_pause = echo_area_glyphs;
2146 }
2147
2148 /* Record this character as part of the current key. */
2149 add_command_key (c);
2150 if (! NILP (also_record))
2151 add_command_key (also_record);
2152
2153 /* Re-reading in the middle of a command */
2154 reread:
2155 last_input_char = c;
2156 num_input_chars++;
2157
2158 /* Process the help character specially if enabled */
2159 if (!NILP (Vhelp_form) && help_char_p (c))
2160 {
2161 Lisp_Object tem0;
2162 count = specpdl_ptr - specpdl;
2163
2164 record_unwind_protect (Fset_window_configuration,
2165 Fcurrent_window_configuration (Qnil));
2166
2167 tem0 = Feval (Vhelp_form);
2168 if (STRINGP (tem0))
2169 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
2170
2171 cancel_echoing ();
2172 do
2173 c = read_char (0, 0, 0, Qnil, 0);
2174 while (BUFFERP (c));
2175 /* Remove the help from the frame */
2176 unbind_to (count, Qnil);
2177
2178 redisplay ();
2179 if (EQ (c, make_number (040)))
2180 {
2181 cancel_echoing ();
2182 do
2183 c = read_char (0, 0, 0, Qnil, 0);
2184 while (BUFFERP (c));
2185 }
2186 }
2187
2188 return c;
2189 }
2190
2191 /* Return 1 if should recognize C as "the help character". */
2192
2193 int
2194 help_char_p (c)
2195 Lisp_Object c;
2196 {
2197 Lisp_Object tail;
2198
2199 if (EQ (c, Vhelp_char))
2200 return 1;
2201 for (tail = Vhelp_event_list; CONSP (tail); tail = XCONS (tail)->cdr)
2202 if (EQ (c, XCONS (tail)->car))
2203 return 1;
2204 return 0;
2205 }
2206
2207 /* Record the input event C in various ways. */
2208
2209 static void
2210 record_char (c)
2211 Lisp_Object c;
2212 {
2213 total_keys++;
2214 XVECTOR (recent_keys)->contents[recent_keys_index] = c;
2215 if (++recent_keys_index >= NUM_RECENT_KEYS)
2216 recent_keys_index = 0;
2217
2218 /* Write c to the dribble file. If c is a lispy event, write
2219 the event's symbol to the dribble file, in <brackets>. Bleaugh.
2220 If you, dear reader, have a better idea, you've got the source. :-) */
2221 if (dribble)
2222 {
2223 if (INTEGERP (c))
2224 {
2225 if (XUINT (c) < 0x100)
2226 putc (XINT (c), dribble);
2227 else
2228 fprintf (dribble, " 0x%x", (int) XUINT (c));
2229 }
2230 else
2231 {
2232 Lisp_Object dribblee;
2233
2234 /* If it's a structured event, take the event header. */
2235 dribblee = EVENT_HEAD (c);
2236
2237 if (SYMBOLP (dribblee))
2238 {
2239 putc ('<', dribble);
2240 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
2241 XSYMBOL (dribblee)->name->size,
2242 dribble);
2243 putc ('>', dribble);
2244 }
2245 }
2246
2247 fflush (dribble);
2248 }
2249
2250 store_kbd_macro_char (c);
2251
2252 num_nonmacro_input_chars++;
2253 }
2254
2255 Lisp_Object
2256 print_help (object)
2257 Lisp_Object object;
2258 {
2259 struct buffer *old = current_buffer;
2260 Fprinc (object, Qnil);
2261 set_buffer_internal (XBUFFER (Vstandard_output));
2262 call0 (intern ("help-mode"));
2263 set_buffer_internal (old);
2264 return Qnil;
2265 }
2266
2267 /* Copy out or in the info on where C-g should throw to.
2268 This is used when running Lisp code from within get_char,
2269 in case get_char is called recursively.
2270 See read_process_output. */
2271
2272 save_getcjmp (temp)
2273 jmp_buf temp;
2274 {
2275 bcopy (getcjmp, temp, sizeof getcjmp);
2276 }
2277
2278 restore_getcjmp (temp)
2279 jmp_buf temp;
2280 {
2281 bcopy (temp, getcjmp, sizeof getcjmp);
2282 }
2283 \f
2284 #ifdef HAVE_MOUSE
2285
2286 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
2287 of this function. */
2288
2289 static Lisp_Object
2290 tracking_off (old_value)
2291 Lisp_Object old_value;
2292 {
2293 do_mouse_tracking = old_value;
2294 if (NILP (old_value))
2295 {
2296 /* Redisplay may have been preempted because there was input
2297 available, and it assumes it will be called again after the
2298 input has been processed. If the only input available was
2299 the sort that we have just disabled, then we need to call
2300 redisplay. */
2301 if (!readable_events (1))
2302 {
2303 redisplay_preserve_echo_area ();
2304 get_input_pending (&input_pending, 1);
2305 }
2306 }
2307 }
2308
2309 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
2310 "Evaluate BODY with mouse movement events enabled.\n\
2311 Within a `track-mouse' form, mouse motion generates input events that\n\
2312 you can read with `read-event'.\n\
2313 Normally, mouse motion is ignored.")
2314 (args)
2315 Lisp_Object args;
2316 {
2317 int count = specpdl_ptr - specpdl;
2318 Lisp_Object val;
2319
2320 record_unwind_protect (tracking_off, do_mouse_tracking);
2321
2322 do_mouse_tracking = Qt;
2323
2324 val = Fprogn (args);
2325 return unbind_to (count, val);
2326 }
2327
2328 /* If mouse has moved on some frame, return one of those frames.
2329 Return 0 otherwise. */
2330
2331 static FRAME_PTR
2332 some_mouse_moved ()
2333 {
2334 Lisp_Object tail, frame;
2335
2336 FOR_EACH_FRAME (tail, frame)
2337 {
2338 if (XFRAME (frame)->mouse_moved)
2339 return XFRAME (frame);
2340 }
2341
2342 return 0;
2343 }
2344
2345 #endif /* HAVE_MOUSE */
2346 \f
2347 /* Low level keyboard/mouse input.
2348 kbd_buffer_store_event places events in kbd_buffer, and
2349 kbd_buffer_get_event retrieves them. */
2350
2351 /* Return true iff there are any events in the queue that read-char
2352 would return. If this returns false, a read-char would block. */
2353 static int
2354 readable_events (do_timers_now)
2355 int do_timers_now;
2356 {
2357 timer_check (do_timers_now);
2358 if (kbd_fetch_ptr != kbd_store_ptr)
2359 return 1;
2360 #ifdef HAVE_MOUSE
2361 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2362 return 1;
2363 #endif
2364 if (single_kboard)
2365 {
2366 if (current_kboard->kbd_queue_has_data)
2367 return 1;
2368 }
2369 else
2370 {
2371 KBOARD *kb;
2372 for (kb = all_kboards; kb; kb = kb->next_kboard)
2373 if (kb->kbd_queue_has_data)
2374 return 1;
2375 }
2376 return 0;
2377 }
2378
2379 /* Set this for debugging, to have a way to get out */
2380 int stop_character;
2381
2382 #ifdef MULTI_KBOARD
2383 static KBOARD *
2384 event_to_kboard (event)
2385 struct input_event *event;
2386 {
2387 Lisp_Object frame;
2388 frame = event->frame_or_window;
2389 if (CONSP (frame))
2390 frame = XCONS (frame)->car;
2391 else if (WINDOWP (frame))
2392 frame = WINDOW_FRAME (XWINDOW (frame));
2393
2394 /* There are still some events that don't set this field.
2395 For now, just ignore the problem.
2396 Also ignore dead frames here. */
2397 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
2398 return 0;
2399 else
2400 return FRAME_KBOARD (XFRAME (frame));
2401 }
2402 #endif
2403
2404 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
2405
2406 void
2407 kbd_buffer_store_event (event)
2408 register struct input_event *event;
2409 {
2410 if (event->kind == no_event)
2411 abort ();
2412
2413 if (event->kind == ascii_keystroke)
2414 {
2415 register int c = event->code & 0377;
2416
2417 if (event->modifiers & ctrl_modifier)
2418 c = make_ctrl_char (c);
2419
2420 c |= (event->modifiers
2421 & (meta_modifier | alt_modifier
2422 | hyper_modifier | super_modifier));
2423
2424 if (c == quit_char)
2425 {
2426 extern SIGTYPE interrupt_signal ();
2427 #ifdef MULTI_KBOARD
2428 KBOARD *kb;
2429 struct input_event *sp;
2430
2431 if (single_kboard
2432 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
2433 kb != current_kboard))
2434 {
2435 kb->kbd_queue
2436 = Fcons (make_lispy_switch_frame (event->frame_or_window),
2437 Fcons (make_number (c), Qnil));
2438 kb->kbd_queue_has_data = 1;
2439 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
2440 {
2441 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
2442 sp = kbd_buffer;
2443
2444 if (event_to_kboard (sp) == kb)
2445 {
2446 sp->kind = no_event;
2447 sp->frame_or_window = Qnil;
2448 }
2449 }
2450 return;
2451 }
2452 #endif
2453
2454 #ifdef MULTI_FRAME
2455 /* If this results in a quit_char being returned to Emacs as
2456 input, set Vlast_event_frame properly. If this doesn't
2457 get returned to Emacs as an event, the next event read
2458 will set Vlast_event_frame again, so this is safe to do. */
2459 {
2460 Lisp_Object focus;
2461
2462 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
2463 if (NILP (focus))
2464 focus = event->frame_or_window;
2465 internal_last_event_frame = focus;
2466 Vlast_event_frame = focus;
2467 }
2468 #endif
2469
2470 last_event_timestamp = event->timestamp;
2471 interrupt_signal ();
2472 return;
2473 }
2474
2475 if (c && c == stop_character)
2476 {
2477 sys_suspend ();
2478 return;
2479 }
2480 }
2481 /* Don't insert two buffer_switch_event's in a row.
2482 Just ignore the second one. */
2483 else if (event->kind == buffer_switch_event
2484 && kbd_fetch_ptr != kbd_store_ptr
2485 && kbd_store_ptr->kind == buffer_switch_event)
2486 return;
2487
2488 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
2489 kbd_store_ptr = kbd_buffer;
2490
2491 /* Don't let the very last slot in the buffer become full,
2492 since that would make the two pointers equal,
2493 and that is indistinguishable from an empty buffer.
2494 Discard the event if it would fill the last slot. */
2495 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
2496 {
2497 volatile struct input_event *sp = kbd_store_ptr;
2498 sp->kind = event->kind;
2499 if (event->kind == selection_request_event)
2500 {
2501 /* We must not use the ordinary copying code for this case,
2502 since `part' is an enum and copying it might not copy enough
2503 in this case. */
2504 bcopy (event, (char *) sp, sizeof (*event));
2505 }
2506 else
2507 {
2508 sp->code = event->code;
2509 sp->part = event->part;
2510 sp->frame_or_window = event->frame_or_window;
2511 sp->modifiers = event->modifiers;
2512 sp->x = event->x;
2513 sp->y = event->y;
2514 sp->timestamp = event->timestamp;
2515 }
2516 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr
2517 - kbd_buffer]
2518 = event->frame_or_window);
2519
2520 kbd_store_ptr++;
2521 }
2522 }
2523 \f
2524 /* Read one event from the event buffer, waiting if necessary.
2525 The value is a Lisp object representing the event.
2526 The value is nil for an event that should be ignored,
2527 or that was handled here.
2528 We always read and discard one event. */
2529
2530 static Lisp_Object
2531 kbd_buffer_get_event (kbp, used_mouse_menu)
2532 KBOARD **kbp;
2533 int *used_mouse_menu;
2534 {
2535 register int c;
2536 Lisp_Object obj;
2537 EMACS_TIME next_timer_delay;
2538
2539 if (noninteractive)
2540 {
2541 c = getchar ();
2542 XSETINT (obj, c);
2543 *kbp = current_kboard;
2544 return obj;
2545 }
2546
2547 /* Wait until there is input available. */
2548 for (;;)
2549 {
2550 if (kbd_fetch_ptr != kbd_store_ptr)
2551 break;
2552 #ifdef HAVE_MOUSE
2553 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2554 break;
2555 #endif
2556
2557 /* If the quit flag is set, then read_char will return
2558 quit_char, so that counts as "available input." */
2559 if (!NILP (Vquit_flag))
2560 quit_throw_to_read_char ();
2561
2562 /* One way or another, wait until input is available; then, if
2563 interrupt handlers have not read it, read it now. */
2564
2565 #ifdef OLDVMS
2566 wait_for_kbd_input ();
2567 #else
2568 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2569 #ifdef SIGIO
2570 gobble_input (0);
2571 #endif /* SIGIO */
2572 if (kbd_fetch_ptr != kbd_store_ptr)
2573 break;
2574 #ifdef HAVE_MOUSE
2575 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2576 break;
2577 #endif
2578 {
2579 Lisp_Object minus_one;
2580
2581 XSETINT (minus_one, -1);
2582 wait_reading_process_input (0, 0, minus_one, 1);
2583
2584 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
2585 /* Pass 1 for EXPECT since we just waited to have input. */
2586 read_avail_input (1);
2587 }
2588 #endif /* not VMS */
2589 }
2590
2591 /* At this point, we know that there is a readable event available
2592 somewhere. If the event queue is empty, then there must be a
2593 mouse movement enabled and available. */
2594 if (kbd_fetch_ptr != kbd_store_ptr)
2595 {
2596 struct input_event *event;
2597
2598 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2599 ? kbd_fetch_ptr
2600 : kbd_buffer);
2601
2602 last_event_timestamp = event->timestamp;
2603
2604 #ifdef MULTI_KBOARD
2605 *kbp = event_to_kboard (event);
2606 if (*kbp == 0)
2607 *kbp = current_kboard; /* Better than returning null ptr? */
2608 #else
2609 *kbp = &the_only_kboard;
2610 #endif
2611
2612 obj = Qnil;
2613
2614 /* These two kinds of events get special handling
2615 and don't actually appear to the command loop.
2616 We return nil for them. */
2617 if (event->kind == selection_request_event)
2618 {
2619 #ifdef HAVE_X11
2620 struct input_event copy;
2621
2622 /* Remove it from the buffer before processing it,
2623 since otherwise swallow_events will see it
2624 and process it again. */
2625 copy = *event;
2626 kbd_fetch_ptr = event + 1;
2627 input_pending = readable_events (0);
2628 x_handle_selection_request (&copy);
2629 #else
2630 /* We're getting selection request events, but we don't have
2631 a window system. */
2632 abort ();
2633 #endif
2634 }
2635
2636 else if (event->kind == selection_clear_event)
2637 {
2638 #ifdef HAVE_X11
2639 struct input_event copy;
2640
2641 /* Remove it from the buffer before processing it. */
2642 copy = *event;
2643 kbd_fetch_ptr = event + 1;
2644 input_pending = readable_events (0);
2645 x_handle_selection_clear (&copy);
2646 #else
2647 /* We're getting selection request events, but we don't have
2648 a window system. */
2649 abort ();
2650 #endif
2651 }
2652 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
2653 else if (event->kind == delete_window_event)
2654 {
2655 /* Make an event (delete-frame (FRAME)). */
2656 obj = Fcons (event->frame_or_window, Qnil);
2657 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
2658 kbd_fetch_ptr = event + 1;
2659 }
2660 else if (event->kind == iconify_event)
2661 {
2662 /* Make an event (iconify-frame (FRAME)). */
2663 obj = Fcons (event->frame_or_window, Qnil);
2664 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
2665 kbd_fetch_ptr = event + 1;
2666 }
2667 else if (event->kind == deiconify_event)
2668 {
2669 /* Make an event (make-frame-visible (FRAME)). */
2670 obj = Fcons (event->frame_or_window, Qnil);
2671 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
2672 kbd_fetch_ptr = event + 1;
2673 }
2674 #endif
2675 else if (event->kind == buffer_switch_event)
2676 {
2677 /* The value doesn't matter here; only the type is tested. */
2678 XSETBUFFER (obj, current_buffer);
2679 kbd_fetch_ptr = event + 1;
2680 }
2681 #ifdef USE_X_TOOLKIT
2682 else if (event->kind == menu_bar_activate_event)
2683 {
2684 kbd_fetch_ptr = event + 1;
2685 input_pending = readable_events (0);
2686 x_activate_menubar (XFRAME (event->frame_or_window));
2687 }
2688 #endif
2689 /* Just discard these, by returning nil.
2690 With MULTI_KBOARD, these events are used as placeholders
2691 when we need to randomly delete events from the queue.
2692 (They shouldn't otherwise be found in the buffer,
2693 but on some machines it appears they do show up
2694 even without MULTI_KBOARD.) */
2695 else if (event->kind == no_event)
2696 kbd_fetch_ptr = event + 1;
2697
2698 /* If this event is on a different frame, return a switch-frame this
2699 time, and leave the event in the queue for next time. */
2700 else
2701 {
2702 #ifdef MULTI_FRAME
2703 Lisp_Object frame;
2704 Lisp_Object focus;
2705
2706 frame = event->frame_or_window;
2707 if (CONSP (frame))
2708 frame = XCONS (frame)->car;
2709 else if (WINDOWP (frame))
2710 frame = WINDOW_FRAME (XWINDOW (frame));
2711
2712 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
2713 if (! NILP (focus))
2714 frame = focus;
2715
2716 if (! EQ (frame, internal_last_event_frame)
2717 && XFRAME (frame) != selected_frame)
2718 obj = make_lispy_switch_frame (frame);
2719 internal_last_event_frame = frame;
2720 #endif /* MULTI_FRAME */
2721
2722 /* If we didn't decide to make a switch-frame event, go ahead
2723 and build a real event from the queue entry. */
2724
2725 if (NILP (obj))
2726 {
2727 obj = make_lispy_event (event);
2728 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
2729 /* If this was a menu selection, then set the flag to inhibit
2730 writing to last_nonmenu_event. Don't do this if the event
2731 we're returning is (menu-bar), though; that indicates the
2732 beginning of the menu sequence, and we might as well leave
2733 that as the `event with parameters' for this selection. */
2734 if (event->kind == menu_bar_event
2735 && !(CONSP (obj) && EQ (XCONS (obj)->car, Qmenu_bar))
2736 && used_mouse_menu)
2737 *used_mouse_menu = 1;
2738 #endif
2739
2740 /* Wipe out this event, to catch bugs. */
2741 event->kind = no_event;
2742 XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer] = Qnil;
2743
2744 kbd_fetch_ptr = event + 1;
2745 }
2746 }
2747 }
2748 #ifdef HAVE_MOUSE
2749 /* Try generating a mouse motion event. */
2750 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2751 {
2752 FRAME_PTR f = some_mouse_moved ();
2753 Lisp_Object bar_window;
2754 enum scroll_bar_part part;
2755 Lisp_Object x, y;
2756 unsigned long time;
2757
2758 *kbp = current_kboard;
2759 /* Note that this uses F to determine which display to look at.
2760 If there is no valid info, it does not store anything
2761 so x remains nil. */
2762 x = Qnil;
2763 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
2764
2765 obj = Qnil;
2766
2767 #ifdef MULTI_FRAME
2768 /* Decide if we should generate a switch-frame event. Don't
2769 generate switch-frame events for motion outside of all Emacs
2770 frames. */
2771 if (!NILP (x) && f)
2772 {
2773 Lisp_Object frame;
2774
2775 frame = FRAME_FOCUS_FRAME (f);
2776 if (NILP (frame))
2777 XSETFRAME (frame, f);
2778
2779 if (! EQ (frame, internal_last_event_frame)
2780 && XFRAME (frame) != selected_frame)
2781 obj = make_lispy_switch_frame (frame);
2782 internal_last_event_frame = frame;
2783 }
2784 #endif
2785
2786 /* If we didn't decide to make a switch-frame event, go ahead and
2787 return a mouse-motion event. */
2788 if (!NILP (x) && NILP (obj))
2789 obj = make_lispy_movement (f, bar_window, part, x, y, time);
2790 }
2791 #endif /* HAVE_MOUSE */
2792 else
2793 /* We were promised by the above while loop that there was
2794 something for us to read! */
2795 abort ();
2796
2797 input_pending = readable_events (0);
2798
2799 #ifdef MULTI_FRAME
2800 Vlast_event_frame = internal_last_event_frame;
2801 #endif
2802
2803 return (obj);
2804 }
2805 \f
2806 /* Process any events that are not user-visible,
2807 then return, without reading any user-visible events. */
2808
2809 void
2810 swallow_events (do_display)
2811 int do_display;
2812 {
2813 int old_timers_run;
2814
2815 while (kbd_fetch_ptr != kbd_store_ptr)
2816 {
2817 struct input_event *event;
2818
2819 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2820 ? kbd_fetch_ptr
2821 : kbd_buffer);
2822
2823 last_event_timestamp = event->timestamp;
2824
2825 /* These two kinds of events get special handling
2826 and don't actually appear to the command loop. */
2827 if (event->kind == selection_request_event)
2828 {
2829 #ifdef HAVE_X11
2830 struct input_event copy;
2831
2832 /* Remove it from the buffer before processing it,
2833 since otherwise swallow_events called recursively could see it
2834 and process it again. */
2835 copy = *event;
2836 kbd_fetch_ptr = event + 1;
2837 input_pending = readable_events (0);
2838 x_handle_selection_request (&copy);
2839 #else
2840 /* We're getting selection request events, but we don't have
2841 a window system. */
2842 abort ();
2843 #endif
2844 }
2845
2846 else if (event->kind == selection_clear_event)
2847 {
2848 #ifdef HAVE_X11
2849 struct input_event copy;
2850
2851 /* Remove it from the buffer before processing it, */
2852 copy = *event;
2853
2854 kbd_fetch_ptr = event + 1;
2855 input_pending = readable_events (0);
2856 x_handle_selection_clear (&copy);
2857 #else
2858 /* We're getting selection request events, but we don't have
2859 a window system. */
2860 abort ();
2861 #endif
2862 }
2863 else if (event->kind == timer_event)
2864 {
2865 Lisp_Object tem, lisp_event;
2866 int was_locked = single_kboard;
2867
2868 tem = get_keymap_1 (Vspecial_event_map, 0, 0);
2869 tem = get_keyelt (access_keymap (tem, Qtimer_event, 0, 0),
2870 1);
2871 lisp_event = Fcons (Qtimer_event,
2872 Fcons (Fcdr (event->frame_or_window), Qnil));
2873 kbd_fetch_ptr = event + 1;
2874 if (kbd_fetch_ptr == kbd_store_ptr)
2875 input_pending = 0;
2876 Fcommand_execute (tem, Qnil, Fvector (1, &lisp_event), Qt);
2877 timers_run++;
2878 if (do_display)
2879 redisplay_preserve_echo_area ();
2880
2881 /* Resume allowing input from any kboard, if that was true before. */
2882 if (!was_locked)
2883 any_kboard_state ();
2884 }
2885 else
2886 break;
2887 }
2888
2889 old_timers_run = timers_run;
2890 get_input_pending (&input_pending, 1);
2891
2892 if (timers_run != old_timers_run && do_display)
2893 redisplay_preserve_echo_area ();
2894 }
2895 \f
2896 static EMACS_TIME timer_idleness_start_time;
2897
2898 /* Record the start of when Emacs is idle,
2899 for the sake of running idle-time timers. */
2900
2901 timer_start_idle ()
2902 {
2903 Lisp_Object timers;
2904
2905 /* If we are already in the idle state, do nothing. */
2906 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
2907 return;
2908
2909 EMACS_GET_TIME (timer_idleness_start_time);
2910
2911 /* Mark all idle-time timers as once again candidates for running. */
2912 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCONS (timers)->cdr)
2913 {
2914 Lisp_Object timer;
2915
2916 timer = XCONS (timers)->car;
2917
2918 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
2919 continue;
2920 XVECTOR (timer)->contents[0] = Qnil;
2921 }
2922 }
2923
2924 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
2925
2926 timer_stop_idle ()
2927 {
2928 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
2929 }
2930
2931 /* Check whether a timer has fired. To prevent larger problems we simply
2932 disregard elements that are not proper timers. Do not make a circular
2933 timer list for the time being.
2934
2935 Returns the number of seconds to wait until the next timer fires. If a
2936 timer is triggering now, return zero seconds.
2937 If no timer is active, return -1 seconds.
2938
2939 If a timer is ripe now, either queue a timer-event,
2940 or call the timer's handler function here if DO_IT_NOW is nonzero. */
2941
2942 EMACS_TIME
2943 timer_check (do_it_now)
2944 int do_it_now;
2945 {
2946 EMACS_TIME nexttime;
2947 EMACS_TIME now, idleness_now;
2948 Lisp_Object timers, idle_timers, chosen_timer;
2949 /* Nonzero if we generate some events. */
2950 int events_generated = 0;
2951 struct gcpro gcpro1, gcpro2, gcpro3;
2952
2953 EMACS_SET_SECS (nexttime, -1);
2954 EMACS_SET_USECS (nexttime, -1);
2955
2956 /* Always consider the ordinary timers. */
2957 timers = Vtimer_list;
2958 /* Consider the idle timers only if Emacs is idle. */
2959 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
2960 idle_timers = Vtimer_idle_list;
2961 else
2962 idle_timers = Qnil;
2963 chosen_timer = Qnil;
2964 GCPRO3 (timers, idle_timers, chosen_timer);
2965
2966 if (CONSP (timers) || CONSP (idle_timers))
2967 {
2968 EMACS_GET_TIME (now);
2969 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
2970 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
2971 }
2972
2973 while (CONSP (timers) || CONSP (idle_timers))
2974 {
2975 int triggertime = EMACS_SECS (now);
2976 Lisp_Object *vector;
2977 Lisp_Object timer, idle_timer;
2978 EMACS_TIME timer_time, idle_timer_time;
2979 EMACS_TIME difference, timer_difference, idle_timer_difference;
2980
2981 /* Skip past invalid timers and timers already handled. */
2982 if (!NILP (timers))
2983 {
2984 timer = XCONS (timers)->car;
2985 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
2986 {
2987 timers = XCONS (timers)->cdr;
2988 continue;
2989 }
2990 vector = XVECTOR (timer)->contents;
2991
2992 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
2993 || !INTEGERP (vector[3])
2994 || ! NILP (vector[0]))
2995 {
2996 timers = XCONS (timers)->cdr;
2997 continue;
2998 }
2999 }
3000 if (!NILP (idle_timers))
3001 {
3002 timer = XCONS (idle_timers)->car;
3003 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
3004 {
3005 idle_timers = XCONS (idle_timers)->cdr;
3006 continue;
3007 }
3008 vector = XVECTOR (timer)->contents;
3009
3010 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
3011 || !INTEGERP (vector[3])
3012 || ! NILP (vector[0]))
3013 {
3014 idle_timers = XCONS (idle_timers)->cdr;
3015 continue;
3016 }
3017 }
3018
3019 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
3020 based on the next ordinary timer.
3021 TIMER_DIFFERENCE is the distance in time from NOW to when
3022 this timer becomes ripe (negative if it's already ripe). */
3023 if (!NILP (timers))
3024 {
3025 timer = XCONS (timers)->car;
3026 vector = XVECTOR (timer)->contents;
3027 EMACS_SET_SECS (timer_time,
3028 (XINT (vector[1]) << 16) | (XINT (vector[2])));
3029 EMACS_SET_USECS (timer_time, XINT (vector[3]));
3030 EMACS_SUB_TIME (timer_difference, timer_time, now);
3031 }
3032
3033 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
3034 based on the next idle timer. */
3035 if (!NILP (idle_timers))
3036 {
3037 idle_timer = XCONS (idle_timers)->car;
3038 vector = XVECTOR (idle_timer)->contents;
3039 EMACS_SET_SECS (idle_timer_time,
3040 (XINT (vector[1]) << 16) | (XINT (vector[2])));
3041 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
3042 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
3043 }
3044
3045 /* Decide which timer is the next timer,
3046 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
3047 Also step down the list where we found that timer. */
3048
3049 if (! NILP (timers) && ! NILP (idle_timers))
3050 {
3051 EMACS_TIME temp;
3052 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
3053 if (EMACS_TIME_NEG_P (temp))
3054 {
3055 chosen_timer = timer;
3056 timers = XCONS (timers)->cdr;
3057 difference = timer_difference;
3058 }
3059 else
3060 {
3061 chosen_timer = idle_timer;
3062 idle_timers = XCONS (idle_timers)->cdr;
3063 difference = idle_timer_difference;
3064 }
3065 }
3066 else if (! NILP (timers))
3067 {
3068 chosen_timer = timer;
3069 timers = XCONS (timers)->cdr;
3070 difference = timer_difference;
3071 }
3072 else
3073 {
3074 chosen_timer = idle_timer;
3075 idle_timers = XCONS (idle_timers)->cdr;
3076 difference = idle_timer_difference;
3077 }
3078 vector = XVECTOR (chosen_timer)->contents;
3079
3080 /* If timer is rupe, run it if it hasn't been run. */
3081 if (EMACS_TIME_NEG_P (difference)
3082 || (EMACS_SECS (difference) == 0
3083 && EMACS_USECS (difference) == 0))
3084 {
3085 if (NILP (vector[0]))
3086 {
3087 /* Mark the timer as triggered to prevent problems if the lisp
3088 code fails to reschedule it right. */
3089 vector[0] = Qt;
3090
3091 /* Run the timer or queue a timer event. */
3092 if (do_it_now)
3093 {
3094 Lisp_Object tem, event;
3095 int was_locked = single_kboard;
3096
3097 tem = get_keymap_1 (Vspecial_event_map, 0, 0);
3098 tem = get_keyelt (access_keymap (tem, Qtimer_event, 0, 0),
3099 1);
3100 event = Fcons (Qtimer_event, Fcons (chosen_timer, Qnil));
3101 Fcommand_execute (tem, Qnil, Fvector (1, &event), Qt);
3102 timers_run++;
3103
3104 /* Resume allowing input from any kboard, if that was true before. */
3105 if (!was_locked)
3106 any_kboard_state ();
3107
3108 /* Since we have handled the event,
3109 we don't need to tell the caller to wake up and do it. */
3110 }
3111 else
3112 {
3113 /* Generate a timer event so the caller will handle it. */
3114 struct input_event event;
3115
3116 event.kind = timer_event;
3117 event.modifiers = 0;
3118 event.x = event.y = Qnil;
3119 event.timestamp = triggertime;
3120 /* Store the timer in the frame slot. */
3121 event.frame_or_window
3122 = Fcons (Fselected_frame (), chosen_timer);
3123 kbd_buffer_store_event (&event);
3124
3125 /* Tell caller to handle this event right away. */
3126 events_generated = 1;
3127 EMACS_SET_SECS (nexttime, 0);
3128 EMACS_SET_USECS (nexttime, 0);
3129
3130 /* Don't queue more than one event at once.
3131 When Emacs is ready for another, it will
3132 queue the next one. */
3133 UNGCPRO;
3134 return nexttime;
3135 }
3136 }
3137 }
3138 else
3139 /* When we encounter a timer that is still waiting,
3140 return the amount of time to wait before it is ripe. */
3141 {
3142 UNGCPRO;
3143 /* But if we generated an event,
3144 tell the caller to handle it now. */
3145 if (events_generated)
3146 return nexttime;
3147 return difference;
3148 }
3149 }
3150
3151 /* No timers are pending in the future. */
3152 /* Return 0 if we generated an event, and -1 if not. */
3153 UNGCPRO;
3154 return nexttime;
3155 }
3156 \f
3157 /* Caches for modify_event_symbol. */
3158 static Lisp_Object accent_key_syms;
3159 static Lisp_Object func_key_syms;
3160 static Lisp_Object mouse_syms;
3161
3162 /* This is a list of keysym codes for special "accent" characters.
3163 It parallels lispy_accent_keys. */
3164
3165 static int lispy_accent_codes[] =
3166 {
3167 #ifdef XK_dead_circumflex
3168 XK_dead_circumflex,
3169 #else
3170 0,
3171 #endif
3172 #ifdef XK_dead_grave
3173 XK_dead_grave,
3174 #else
3175 0,
3176 #endif
3177 #ifdef XK_dead_tilde
3178 XK_dead_tilde,
3179 #else
3180 0,
3181 #endif
3182 #ifdef XK_dead_diaeresis
3183 XK_dead_diaeresis,
3184 #else
3185 0,
3186 #endif
3187 #ifdef XK_dead_macron
3188 XK_dead_macron,
3189 #else
3190 0,
3191 #endif
3192 #ifdef XK_dead_degree
3193 XK_dead_degree,
3194 #else
3195 0,
3196 #endif
3197 #ifdef XK_dead_acute
3198 XK_dead_acute,
3199 #else
3200 0,
3201 #endif
3202 #ifdef XK_dead_cedilla
3203 XK_dead_cedilla,
3204 #else
3205 0,
3206 #endif
3207 #ifdef XK_dead_breve
3208 XK_dead_breve,
3209 #else
3210 0,
3211 #endif
3212 #ifdef XK_dead_ogonek
3213 XK_dead_ogonek,
3214 #else
3215 0,
3216 #endif
3217 #ifdef XK_dead_caron
3218 XK_dead_caron,
3219 #else
3220 0,
3221 #endif
3222 #ifdef XK_dead_doubleacute
3223 XK_dead_doubleacute,
3224 #else
3225 0,
3226 #endif
3227 #ifdef XK_dead_abovedot
3228 XK_dead_abovedot,
3229 #else
3230 0,
3231 #endif
3232 };
3233
3234 /* This is a list of Lisp names for special "accent" characters.
3235 It parallels lispy_accent_codes. */
3236
3237 static char *lispy_accent_keys[] =
3238 {
3239 "dead-circumflex",
3240 "dead-grave",
3241 "dead-tilde",
3242 "dead-diaeresis",
3243 "dead-macron",
3244 "dead-degree",
3245 "dead-acute",
3246 "dead-cedilla",
3247 "dead-breve",
3248 "dead-ogonek",
3249 "dead-caron",
3250 "dead-doubleacute",
3251 "dead-abovedot",
3252 };
3253
3254 #ifdef HAVE_NTGUI
3255 #define FUNCTION_KEY_OFFSET 0x0
3256
3257 char *lispy_function_keys[] =
3258 {
3259 0, /* 0 */
3260
3261 0, /* VK_LBUTTON 0x01 */
3262 0, /* VK_RBUTTON 0x02 */
3263 "cancel", /* VK_CANCEL 0x03 */
3264 0, /* VK_MBUTTON 0x04 */
3265
3266 0, 0, 0, /* 0x05 .. 0x07 */
3267
3268 "backspace", /* VK_BACK 0x08 */
3269 "tab", /* VK_TAB 0x09 */
3270
3271 0, 0, /* 0x0A .. 0x0B */
3272
3273 "clear", /* VK_CLEAR 0x0C */
3274 "return", /* VK_RETURN 0x0D */
3275
3276 0, 0, /* 0x0E .. 0x0F */
3277
3278 "shift", /* VK_SHIFT 0x10 */
3279 "control", /* VK_CONTROL 0x11 */
3280 "menu", /* VK_MENU 0x12 */
3281 "pause", /* VK_PAUSE 0x13 */
3282 "capital", /* VK_CAPITAL 0x14 */
3283
3284 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
3285
3286 0, /* VK_ESCAPE 0x1B */
3287
3288 0, 0, 0, 0, /* 0x1C .. 0x1F */
3289
3290 0, /* VK_SPACE 0x20 */
3291 "prior", /* VK_PRIOR 0x21 */
3292 "next", /* VK_NEXT 0x22 */
3293 "end", /* VK_END 0x23 */
3294 "home", /* VK_HOME 0x24 */
3295 "left", /* VK_LEFT 0x25 */
3296 "up", /* VK_UP 0x26 */
3297 "right", /* VK_RIGHT 0x27 */
3298 "down", /* VK_DOWN 0x28 */
3299 "select", /* VK_SELECT 0x29 */
3300 "print", /* VK_PRINT 0x2A */
3301 "execute", /* VK_EXECUTE 0x2B */
3302 "snapshot", /* VK_SNAPSHOT 0x2C */
3303 "insert", /* VK_INSERT 0x2D */
3304 "delete", /* VK_DELETE 0x2E */
3305 "help", /* VK_HELP 0x2F */
3306
3307 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
3308
3309 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3310
3311 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
3312
3313 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
3314
3315 0, 0, 0, 0, 0, 0, 0, 0, 0,
3316 0, 0, 0, 0, 0, 0, 0, 0, 0,
3317 0, 0, 0, 0, 0, 0, 0, 0,
3318
3319 "lwindow", /* VK_LWIN 0x5B */
3320 "rwindow", /* VK_RWIN 0x5C */
3321 "apps", /* VK_APPS 0x5D */
3322
3323 0, 0, /* 0x5E .. 0x5F */
3324
3325 "kp-0", /* VK_NUMPAD0 0x60 */
3326 "kp-1", /* VK_NUMPAD1 0x61 */
3327 "kp-2", /* VK_NUMPAD2 0x62 */
3328 "kp-3", /* VK_NUMPAD3 0x63 */
3329 "kp-4", /* VK_NUMPAD4 0x64 */
3330 "kp-5", /* VK_NUMPAD5 0x65 */
3331 "kp-6", /* VK_NUMPAD6 0x66 */
3332 "kp-7", /* VK_NUMPAD7 0x67 */
3333 "kp-8", /* VK_NUMPAD8 0x68 */
3334 "kp-9", /* VK_NUMPAD9 0x69 */
3335 "kp-multiply", /* VK_MULTIPLY 0x6A */
3336 "kp-add", /* VK_ADD 0x6B */
3337 "kp-separator", /* VK_SEPARATOR 0x6C */
3338 "kp-subtract", /* VK_SUBTRACT 0x6D */
3339 "kp-decimal", /* VK_DECIMAL 0x6E */
3340 "kp-divide", /* VK_DIVIDE 0x6F */
3341 "f1", /* VK_F1 0x70 */
3342 "f2", /* VK_F2 0x71 */
3343 "f3", /* VK_F3 0x72 */
3344 "f4", /* VK_F4 0x73 */
3345 "f5", /* VK_F5 0x74 */
3346 "f6", /* VK_F6 0x75 */
3347 "f7", /* VK_F7 0x76 */
3348 "f8", /* VK_F8 0x77 */
3349 "f9", /* VK_F9 0x78 */
3350 "f10", /* VK_F10 0x79 */
3351 "f11", /* VK_F11 0x7A */
3352 "f12", /* VK_F12 0x7B */
3353 "f13", /* VK_F13 0x7C */
3354 "f14", /* VK_F14 0x7D */
3355 "f15", /* VK_F15 0x7E */
3356 "f16", /* VK_F16 0x7F */
3357 "f17", /* VK_F17 0x80 */
3358 "f18", /* VK_F18 0x81 */
3359 "f19", /* VK_F19 0x82 */
3360 "f20", /* VK_F20 0x83 */
3361 "f21", /* VK_F21 0x84 */
3362 "f22", /* VK_F22 0x85 */
3363 "f23", /* VK_F23 0x86 */
3364 "f24", /* VK_F24 0x87 */
3365
3366 0, 0, 0, 0, /* 0x88 .. 0x8B */
3367 0, 0, 0, 0, /* 0x8C .. 0x8F */
3368
3369 "kp-numlock", /* VK_NUMLOCK 0x90 */
3370 "scroll", /* VK_SCROLL 0x91 */
3371
3372 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
3373 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
3374 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
3375 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
3376 "kp-end", /* VK_NUMPAD_END 0x96 */
3377 "kp-home", /* VK_NUMPAD_HOME 0x97 */
3378 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
3379 "kp-up", /* VK_NUMPAD_UP 0x99 */
3380 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
3381 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
3382 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
3383 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
3384
3385 0, 0, /* 0x9E .. 0x9F */
3386
3387 /*
3388 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
3389 * Used only as parameters to GetAsyncKeyState() and GetKeyState().
3390 * No other API or message will distinguish left and right keys this way.
3391 */
3392 /* 0xA0 .. 0xEF */
3393
3394 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3395 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3396 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3397 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3398 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3399
3400 /* 0xF0 .. 0xF5 */
3401
3402 0, 0, 0, 0, 0, 0,
3403
3404 "attn", /* VK_ATTN 0xF6 */
3405 "crsel", /* VK_CRSEL 0xF7 */
3406 "exsel", /* VK_EXSEL 0xF8 */
3407 "ereof", /* VK_EREOF 0xF9 */
3408 "play", /* VK_PLAY 0xFA */
3409 "zoom", /* VK_ZOOM 0xFB */
3410 "noname", /* VK_NONAME 0xFC */
3411 "pa1", /* VK_PA1 0xFD */
3412 "oem_clear", /* VK_OEM_CLEAR 0xFE */
3413 };
3414
3415 #else
3416
3417 #define FUNCTION_KEY_OFFSET 0xff00
3418
3419 /* You'll notice that this table is arranged to be conveniently
3420 indexed by X Windows keysym values. */
3421 static char *lispy_function_keys[] =
3422 {
3423 /* X Keysym value */
3424
3425 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
3426 "backspace",
3427 "tab",
3428 "linefeed",
3429 "clear",
3430 0,
3431 "return",
3432 0, 0,
3433 0, 0, 0, /* 0xff10 */
3434 "pause",
3435 0, 0, 0, 0, 0, 0, 0,
3436 "escape",
3437 0, 0, 0, 0,
3438 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
3439 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
3440 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
3441
3442 "home", /* 0xff50 */ /* IsCursorKey */
3443 "left",
3444 "up",
3445 "right",
3446 "down",
3447 "prior",
3448 "next",
3449 "end",
3450 "begin",
3451 0, /* 0xff59 */
3452 0, 0, 0, 0, 0, 0,
3453 "select", /* 0xff60 */ /* IsMiscFunctionKey */
3454 "print",
3455 "execute",
3456 "insert",
3457 0, /* 0xff64 */
3458 "undo",
3459 "redo",
3460 "menu",
3461 "find",
3462 "cancel",
3463 "help",
3464 "break", /* 0xff6b */
3465
3466 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
3467 0, /* 0xff76 */
3468 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
3469 "kp-space", /* 0xff80 */ /* IsKeypadKey */
3470 0, 0, 0, 0, 0, 0, 0, 0,
3471 "kp-tab", /* 0xff89 */
3472 0, 0, 0,
3473 "kp-enter", /* 0xff8d */
3474 0, 0, 0,
3475 "kp-f1", /* 0xff91 */
3476 "kp-f2",
3477 "kp-f3",
3478 "kp-f4",
3479 "kp-home", /* 0xff95 */
3480 "kp-left",
3481 "kp-up",
3482 "kp-right",
3483 "kp-down",
3484 "kp-prior", /* kp-page-up */
3485 "kp-next", /* kp-page-down */
3486 "kp-end",
3487 "kp-begin",
3488 "kp-insert",
3489 "kp-delete",
3490 0, /* 0xffa0 */
3491 0, 0, 0, 0, 0, 0, 0, 0, 0,
3492 "kp-multiply", /* 0xffaa */
3493 "kp-add",
3494 "kp-separator",
3495 "kp-subtract",
3496 "kp-decimal",
3497 "kp-divide", /* 0xffaf */
3498 "kp-0", /* 0xffb0 */
3499 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
3500 0, /* 0xffba */
3501 0, 0,
3502 "kp-equal", /* 0xffbd */
3503 "f1", /* 0xffbe */ /* IsFunctionKey */
3504 "f2",
3505 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
3506 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
3507 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
3508 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
3509 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
3510 0, 0, 0, 0, 0, 0, 0, 0,
3511 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
3512 0, 0, 0, 0, 0, 0, 0, "delete"
3513 };
3514
3515 #endif /* HAVE_NTGUI */
3516
3517 static char *lispy_mouse_names[] =
3518 {
3519 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
3520 };
3521
3522 /* Scroll bar parts. */
3523 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
3524
3525 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
3526 Lisp_Object *scroll_bar_parts[] = {
3527 &Qabove_handle, &Qhandle, &Qbelow_handle
3528 };
3529
3530
3531 /* A vector, indexed by button number, giving the down-going location
3532 of currently depressed buttons, both scroll bar and non-scroll bar.
3533
3534 The elements have the form
3535 (BUTTON-NUMBER MODIFIER-MASK . REST)
3536 where REST is the cdr of a position as it would be reported in the event.
3537
3538 The make_lispy_event function stores positions here to tell the
3539 difference between click and drag events, and to store the starting
3540 location to be included in drag events. */
3541
3542 static Lisp_Object button_down_location;
3543
3544 /* Information about the most recent up-going button event: Which
3545 button, what location, and what time. */
3546
3547 static int last_mouse_button;
3548 static int last_mouse_x;
3549 static int last_mouse_y;
3550 static unsigned long button_down_time;
3551
3552 /* The maximum time between clicks to make a double-click,
3553 or Qnil to disable double-click detection,
3554 or Qt for no time limit. */
3555 Lisp_Object Vdouble_click_time;
3556
3557 /* The number of clicks in this multiple-click. */
3558
3559 int double_click_count;
3560
3561 /* Given a struct input_event, build the lisp event which represents
3562 it. If EVENT is 0, build a mouse movement event from the mouse
3563 movement buffer, which should have a movement event in it.
3564
3565 Note that events must be passed to this function in the order they
3566 are received; this function stores the location of button presses
3567 in order to build drag events when the button is released. */
3568
3569 static Lisp_Object
3570 make_lispy_event (event)
3571 struct input_event *event;
3572 {
3573 int i;
3574
3575 switch (SWITCH_ENUM_CAST (event->kind))
3576 {
3577 /* A simple keystroke. */
3578 case ascii_keystroke:
3579 {
3580 Lisp_Object lispy_c;
3581 int c = event->code & 0377;
3582 /* Turn ASCII characters into control characters
3583 when proper. */
3584 if (event->modifiers & ctrl_modifier)
3585 c = make_ctrl_char (c);
3586
3587 /* Add in the other modifier bits. We took care of ctrl_modifier
3588 just above, and the shift key was taken care of by the X code,
3589 and applied to control characters by make_ctrl_char. */
3590 c |= (event->modifiers
3591 & (meta_modifier | alt_modifier
3592 | hyper_modifier | super_modifier));
3593 button_down_time = 0;
3594 XSETFASTINT (lispy_c, c);
3595 return lispy_c;
3596 }
3597
3598 /* A function key. The symbol may need to have modifier prefixes
3599 tacked onto it. */
3600 case non_ascii_keystroke:
3601 button_down_time = 0;
3602
3603 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
3604 if (event->code == lispy_accent_codes[i])
3605 return modify_event_symbol (i,
3606 event->modifiers,
3607 Qfunction_key, Qnil,
3608 lispy_accent_keys, &accent_key_syms,
3609 (sizeof (lispy_accent_keys)
3610 / sizeof (lispy_accent_keys[0])));
3611
3612 /* Handle system-specific keysyms. */
3613 if (event->code & (1 << 28))
3614 {
3615 /* We need to use an alist rather than a vector as the cache
3616 since we can't make a vector long enuf. */
3617 if (NILP (current_kboard->system_key_syms))
3618 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
3619 return modify_event_symbol (event->code,
3620 event->modifiers,
3621 Qfunction_key,
3622 current_kboard->Vsystem_key_alist,
3623 0, &current_kboard->system_key_syms,
3624 (unsigned)-1);
3625 }
3626
3627 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
3628 event->modifiers,
3629 Qfunction_key, Qnil,
3630 lispy_function_keys, &func_key_syms,
3631 (sizeof (lispy_function_keys)
3632 / sizeof (lispy_function_keys[0])));
3633 break;
3634
3635 case timer_event:
3636 return Fcons (Qtimer_event, Fcons (Fcdr (event->frame_or_window), Qnil));
3637
3638 #ifdef HAVE_MOUSE
3639 /* A mouse click. Figure out where it is, decide whether it's
3640 a press, click or drag, and build the appropriate structure. */
3641 case mouse_click:
3642 case scroll_bar_click:
3643 {
3644 int button = event->code;
3645 int is_double;
3646 Lisp_Object position;
3647 Lisp_Object *start_pos_ptr;
3648 Lisp_Object start_pos;
3649
3650 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
3651 abort ();
3652
3653 /* Build the position as appropriate for this mouse click. */
3654 if (event->kind == mouse_click)
3655 {
3656 int part;
3657 FRAME_PTR f = XFRAME (event->frame_or_window);
3658 Lisp_Object window;
3659 Lisp_Object posn;
3660 int row, column;
3661
3662 /* Ignore mouse events that were made on frame that
3663 have been deleted. */
3664 if (! FRAME_LIVE_P (f))
3665 return Qnil;
3666
3667 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
3668 &column, &row, NULL, 1);
3669
3670 #ifndef USE_X_TOOLKIT
3671 /* In the non-toolkit version, clicks on the menu bar
3672 are ordinary button events in the event buffer.
3673 Distinguish them, and invoke the menu.
3674
3675 (In the toolkit version, the toolkit handles the menu bar
3676 and Emacs doesn't know about it until after the user
3677 makes a selection.) */
3678 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
3679 && (event->modifiers & down_modifier))
3680 {
3681 Lisp_Object items, item;
3682 int hpos;
3683 int i;
3684
3685 #if 0
3686 /* Activate the menu bar on the down event. If the
3687 up event comes in before the menu code can deal with it,
3688 just ignore it. */
3689 if (! (event->modifiers & down_modifier))
3690 return Qnil;
3691 #endif
3692
3693 item = Qnil;
3694 items = FRAME_MENU_BAR_ITEMS (f);
3695 for (i = 0; i < XVECTOR (items)->size; i += 3)
3696 {
3697 Lisp_Object pos, string;
3698 string = XVECTOR (items)->contents[i + 1];
3699 pos = XVECTOR (items)->contents[i + 2];
3700 if (NILP (string))
3701 break;
3702 if (column >= XINT (pos)
3703 && column < XINT (pos) + XSTRING (string)->size)
3704 {
3705 item = XVECTOR (items)->contents[i];
3706 break;
3707 }
3708 }
3709
3710 position
3711 = Fcons (event->frame_or_window,
3712 Fcons (Qmenu_bar,
3713 Fcons (Fcons (event->x, event->y),
3714 Fcons (make_number (event->timestamp),
3715 Qnil))));
3716
3717 return Fcons (item, Fcons (position, Qnil));
3718 }
3719 #endif /* not USE_X_TOOLKIT */
3720
3721 window = window_from_coordinates (f, column, row, &part);
3722
3723 if (!WINDOWP (window))
3724 {
3725 window = event->frame_or_window;
3726 posn = Qnil;
3727 }
3728 else
3729 {
3730 int pixcolumn, pixrow;
3731 column -= XINT (XWINDOW (window)->left);
3732 row -= XINT (XWINDOW (window)->top);
3733 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow);
3734 XSETINT (event->x, pixcolumn);
3735 XSETINT (event->y, pixrow);
3736
3737 if (part == 1)
3738 posn = Qmode_line;
3739 else if (part == 2)
3740 posn = Qvertical_line;
3741 else
3742 XSETINT (posn,
3743 buffer_posn_from_coords (XWINDOW (window),
3744 column, row));
3745 }
3746
3747 position
3748 = Fcons (window,
3749 Fcons (posn,
3750 Fcons (Fcons (event->x, event->y),
3751 Fcons (make_number (event->timestamp),
3752 Qnil))));
3753 }
3754 else
3755 {
3756 Lisp_Object window;
3757 Lisp_Object portion_whole;
3758 Lisp_Object part;
3759
3760 window = event->frame_or_window;
3761 portion_whole = Fcons (event->x, event->y);
3762 part = *scroll_bar_parts[(int) event->part];
3763
3764 position =
3765 Fcons (window,
3766 Fcons (Qvertical_scroll_bar,
3767 Fcons (portion_whole,
3768 Fcons (make_number (event->timestamp),
3769 Fcons (part, Qnil)))));
3770 }
3771
3772 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
3773
3774 start_pos = *start_pos_ptr;
3775 *start_pos_ptr = Qnil;
3776
3777 is_double = (button == last_mouse_button
3778 && XINT (event->x) == last_mouse_x
3779 && XINT (event->y) == last_mouse_y
3780 && button_down_time != 0
3781 && (EQ (Vdouble_click_time, Qt)
3782 || (INTEGERP (Vdouble_click_time)
3783 && ((int)(event->timestamp - button_down_time)
3784 < XINT (Vdouble_click_time)))));
3785 last_mouse_button = button;
3786 last_mouse_x = XINT (event->x);
3787 last_mouse_y = XINT (event->y);
3788
3789 /* If this is a button press, squirrel away the location, so
3790 we can decide later whether it was a click or a drag. */
3791 if (event->modifiers & down_modifier)
3792 {
3793 if (is_double)
3794 {
3795 double_click_count++;
3796 event->modifiers |= ((double_click_count > 2)
3797 ? triple_modifier
3798 : double_modifier);
3799 }
3800 else
3801 double_click_count = 1;
3802 button_down_time = event->timestamp;
3803 *start_pos_ptr = Fcopy_alist (position);
3804 }
3805
3806 /* Now we're releasing a button - check the co-ordinates to
3807 see if this was a click or a drag. */
3808 else if (event->modifiers & up_modifier)
3809 {
3810 /* If we did not see a down before this up,
3811 ignore the up. Probably this happened because
3812 the down event chose a menu item.
3813 It would be an annoyance to treat the release
3814 of the button that chose the menu item
3815 as a separate event. */
3816
3817 if (!CONSP (start_pos))
3818 return Qnil;
3819
3820 event->modifiers &= ~up_modifier;
3821 #if 0 /* Formerly we treated an up with no down as a click event. */
3822 if (!CONSP (start_pos))
3823 event->modifiers |= click_modifier;
3824 else
3825 #endif
3826 {
3827 /* The third element of every position should be the (x,y)
3828 pair. */
3829 Lisp_Object down;
3830
3831 down = Fnth (make_number (2), start_pos);
3832 if (EQ (event->x, XCONS (down)->car)
3833 && EQ (event->y, XCONS (down)->cdr))
3834 {
3835 event->modifiers |= click_modifier;
3836 }
3837 else
3838 {
3839 button_down_time = 0;
3840 event->modifiers |= drag_modifier;
3841 }
3842 /* Don't check is_double; treat this as multiple
3843 if the down-event was multiple. */
3844 if (double_click_count > 1)
3845 event->modifiers |= ((double_click_count > 2)
3846 ? triple_modifier
3847 : double_modifier);
3848 }
3849 }
3850 else
3851 /* Every mouse event should either have the down_modifier or
3852 the up_modifier set. */
3853 abort ();
3854
3855 {
3856 /* Get the symbol we should use for the mouse click. */
3857 Lisp_Object head;
3858
3859 head = modify_event_symbol (button,
3860 event->modifiers,
3861 Qmouse_click, Qnil,
3862 lispy_mouse_names, &mouse_syms,
3863 (sizeof (lispy_mouse_names)
3864 / sizeof (lispy_mouse_names[0])));
3865 if (event->modifiers & drag_modifier)
3866 return Fcons (head,
3867 Fcons (start_pos,
3868 Fcons (position,
3869 Qnil)));
3870 else if (event->modifiers & (double_modifier | triple_modifier))
3871 return Fcons (head,
3872 Fcons (position,
3873 Fcons (make_number (double_click_count),
3874 Qnil)));
3875 else
3876 return Fcons (head,
3877 Fcons (position,
3878 Qnil));
3879 }
3880 }
3881 #endif /* HAVE_MOUSE */
3882
3883 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
3884 case menu_bar_event:
3885 /* The event value is in the cdr of the frame_or_window slot. */
3886 if (!CONSP (event->frame_or_window))
3887 abort ();
3888 return XCONS (event->frame_or_window)->cdr;
3889 #endif
3890
3891 /* The 'kind' field of the event is something we don't recognize. */
3892 default:
3893 abort ();
3894 }
3895 }
3896
3897 #ifdef HAVE_MOUSE
3898
3899 static Lisp_Object
3900 make_lispy_movement (frame, bar_window, part, x, y, time)
3901 FRAME_PTR frame;
3902 Lisp_Object bar_window;
3903 enum scroll_bar_part part;
3904 Lisp_Object x, y;
3905 unsigned long time;
3906 {
3907 #ifdef MULTI_FRAME
3908 /* Is it a scroll bar movement? */
3909 if (frame && ! NILP (bar_window))
3910 {
3911 Lisp_Object part_sym;
3912
3913 part_sym = *scroll_bar_parts[(int) part];
3914 return Fcons (Qscroll_bar_movement,
3915 (Fcons (Fcons (bar_window,
3916 Fcons (Qvertical_scroll_bar,
3917 Fcons (Fcons (x, y),
3918 Fcons (make_number (time),
3919 Fcons (part_sym,
3920 Qnil))))),
3921 Qnil)));
3922 }
3923
3924 /* Or is it an ordinary mouse movement? */
3925 else
3926 #endif /* MULTI_FRAME */
3927 {
3928 int area;
3929 Lisp_Object window;
3930 Lisp_Object posn;
3931 int column, row;
3932
3933 #ifdef MULTI_FRAME
3934 if (frame)
3935 #else
3936 if (1)
3937 #endif
3938 {
3939 /* It's in a frame; which window on that frame? */
3940 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row,
3941 NULL, 1);
3942 window = window_from_coordinates (frame, column, row, &area);
3943 }
3944 else
3945 window = Qnil;
3946
3947 if (WINDOWP (window))
3948 {
3949 int pixcolumn, pixrow;
3950 column -= XINT (XWINDOW (window)->left);
3951 row -= XINT (XWINDOW (window)->top);
3952 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow);
3953 XSETINT (x, pixcolumn);
3954 XSETINT (y, pixrow);
3955
3956 if (area == 1)
3957 posn = Qmode_line;
3958 else if (area == 2)
3959 posn = Qvertical_line;
3960 else
3961 XSETINT (posn,
3962 buffer_posn_from_coords (XWINDOW (window), column, row));
3963 }
3964 #ifdef MULTI_FRAME
3965 else if (frame != 0)
3966 {
3967 XSETFRAME (window, frame);
3968 posn = Qnil;
3969 }
3970 #endif
3971 else
3972 {
3973 window = Qnil;
3974 posn = Qnil;
3975 XSETFASTINT (x, 0);
3976 XSETFASTINT (y, 0);
3977 }
3978
3979 return Fcons (Qmouse_movement,
3980 Fcons (Fcons (window,
3981 Fcons (posn,
3982 Fcons (Fcons (x, y),
3983 Fcons (make_number (time),
3984 Qnil)))),
3985 Qnil));
3986 }
3987 }
3988
3989 #endif /* HAVE_MOUSE */
3990
3991 /* Construct a switch frame event. */
3992 static Lisp_Object
3993 make_lispy_switch_frame (frame)
3994 Lisp_Object frame;
3995 {
3996 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
3997 }
3998 \f
3999 /* Manipulating modifiers. */
4000
4001 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
4002
4003 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
4004 SYMBOL's name of the end of the modifiers; the string from this
4005 position is the unmodified symbol name.
4006
4007 This doesn't use any caches. */
4008
4009 static int
4010 parse_modifiers_uncached (symbol, modifier_end)
4011 Lisp_Object symbol;
4012 int *modifier_end;
4013 {
4014 struct Lisp_String *name;
4015 int i;
4016 int modifiers;
4017
4018 CHECK_SYMBOL (symbol, 1);
4019
4020 modifiers = 0;
4021 name = XSYMBOL (symbol)->name;
4022
4023 for (i = 0; i+2 <= name->size; )
4024 {
4025 int this_mod_end = 0;
4026 int this_mod = 0;
4027
4028 /* See if the name continues with a modifier word.
4029 Check that the word appears, but don't check what follows it.
4030 Set this_mod and this_mod_end to record what we find. */
4031
4032 switch (name->data[i])
4033 {
4034 #define SINGLE_LETTER_MOD(BIT) \
4035 (this_mod_end = i + 1, this_mod = BIT)
4036
4037 case 'A':
4038 SINGLE_LETTER_MOD (alt_modifier);
4039 break;
4040
4041 case 'C':
4042 SINGLE_LETTER_MOD (ctrl_modifier);
4043 break;
4044
4045 case 'H':
4046 SINGLE_LETTER_MOD (hyper_modifier);
4047 break;
4048
4049 case 'M':
4050 SINGLE_LETTER_MOD (meta_modifier);
4051 break;
4052
4053 case 'S':
4054 SINGLE_LETTER_MOD (shift_modifier);
4055 break;
4056
4057 case 's':
4058 SINGLE_LETTER_MOD (super_modifier);
4059 break;
4060
4061 #undef SINGLE_LETTER_MOD
4062 }
4063
4064 /* If we found no modifier, stop looking for them. */
4065 if (this_mod_end == 0)
4066 break;
4067
4068 /* Check there is a dash after the modifier, so that it
4069 really is a modifier. */
4070 if (this_mod_end >= name->size || name->data[this_mod_end] != '-')
4071 break;
4072
4073 /* This modifier is real; look for another. */
4074 modifiers |= this_mod;
4075 i = this_mod_end + 1;
4076 }
4077
4078 /* Should we include the `click' modifier? */
4079 if (! (modifiers & (down_modifier | drag_modifier
4080 | double_modifier | triple_modifier))
4081 && i + 7 == name->size
4082 && strncmp (name->data + i, "mouse-", 6) == 0
4083 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
4084 modifiers |= click_modifier;
4085
4086 if (modifier_end)
4087 *modifier_end = i;
4088
4089 return modifiers;
4090 }
4091
4092 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
4093 prepended to the string BASE[0..BASE_LEN-1].
4094 This doesn't use any caches. */
4095 static Lisp_Object
4096 apply_modifiers_uncached (modifiers, base, base_len)
4097 int modifiers;
4098 char *base;
4099 int base_len;
4100 {
4101 /* Since BASE could contain nulls, we can't use intern here; we have
4102 to use Fintern, which expects a genuine Lisp_String, and keeps a
4103 reference to it. */
4104 char *new_mods =
4105 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
4106 int mod_len;
4107
4108 {
4109 char *p = new_mods;
4110
4111 /* Only the event queue may use the `up' modifier; it should always
4112 be turned into a click or drag event before presented to lisp code. */
4113 if (modifiers & up_modifier)
4114 abort ();
4115
4116 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
4117 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
4118 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
4119 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
4120 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
4121 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
4122 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
4123 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
4124 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
4125 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
4126 /* The click modifier is denoted by the absence of other modifiers. */
4127
4128 *p = '\0';
4129
4130 mod_len = p - new_mods;
4131 }
4132
4133 {
4134 Lisp_Object new_name;
4135
4136 new_name = make_uninit_string (mod_len + base_len);
4137 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
4138 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
4139
4140 return Fintern (new_name, Qnil);
4141 }
4142 }
4143
4144
4145 static char *modifier_names[] =
4146 {
4147 "up", "down", "drag", "click", "double", "triple", 0, 0,
4148 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4149 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
4150 };
4151 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
4152
4153 static Lisp_Object modifier_symbols;
4154
4155 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
4156 static Lisp_Object
4157 lispy_modifier_list (modifiers)
4158 int modifiers;
4159 {
4160 Lisp_Object modifier_list;
4161 int i;
4162
4163 modifier_list = Qnil;
4164 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
4165 if (modifiers & (1<<i))
4166 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
4167 modifier_list);
4168
4169 return modifier_list;
4170 }
4171
4172
4173 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
4174 where UNMODIFIED is the unmodified form of SYMBOL,
4175 MASK is the set of modifiers present in SYMBOL's name.
4176 This is similar to parse_modifiers_uncached, but uses the cache in
4177 SYMBOL's Qevent_symbol_element_mask property, and maintains the
4178 Qevent_symbol_elements property. */
4179
4180 static Lisp_Object
4181 parse_modifiers (symbol)
4182 Lisp_Object symbol;
4183 {
4184 Lisp_Object elements;
4185
4186 elements = Fget (symbol, Qevent_symbol_element_mask);
4187 if (CONSP (elements))
4188 return elements;
4189 else
4190 {
4191 int end;
4192 int modifiers = parse_modifiers_uncached (symbol, &end);
4193 Lisp_Object unmodified;
4194 Lisp_Object mask;
4195
4196 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
4197 XSYMBOL (symbol)->name->size - end),
4198 Qnil);
4199
4200 if (modifiers & ~(((EMACS_INT)1 << VALBITS) - 1))
4201 abort ();
4202 XSETFASTINT (mask, modifiers);
4203 elements = Fcons (unmodified, Fcons (mask, Qnil));
4204
4205 /* Cache the parsing results on SYMBOL. */
4206 Fput (symbol, Qevent_symbol_element_mask,
4207 elements);
4208 Fput (symbol, Qevent_symbol_elements,
4209 Fcons (unmodified, lispy_modifier_list (modifiers)));
4210
4211 /* Since we know that SYMBOL is modifiers applied to unmodified,
4212 it would be nice to put that in unmodified's cache.
4213 But we can't, since we're not sure that parse_modifiers is
4214 canonical. */
4215
4216 return elements;
4217 }
4218 }
4219
4220 /* Apply the modifiers MODIFIERS to the symbol BASE.
4221 BASE must be unmodified.
4222
4223 This is like apply_modifiers_uncached, but uses BASE's
4224 Qmodifier_cache property, if present. It also builds
4225 Qevent_symbol_elements properties, since it has that info anyway.
4226
4227 apply_modifiers copies the value of BASE's Qevent_kind property to
4228 the modified symbol. */
4229 static Lisp_Object
4230 apply_modifiers (modifiers, base)
4231 int modifiers;
4232 Lisp_Object base;
4233 {
4234 Lisp_Object cache, index, entry, new_symbol;
4235
4236 /* Mask out upper bits. We don't know where this value's been. */
4237 modifiers &= ((EMACS_INT)1 << VALBITS) - 1;
4238
4239 /* The click modifier never figures into cache indices. */
4240 cache = Fget (base, Qmodifier_cache);
4241 XSETFASTINT (index, (modifiers & ~click_modifier));
4242 entry = assq_no_quit (index, cache);
4243
4244 if (CONSP (entry))
4245 new_symbol = XCONS (entry)->cdr;
4246 else
4247 {
4248 /* We have to create the symbol ourselves. */
4249 new_symbol = apply_modifiers_uncached (modifiers,
4250 XSYMBOL (base)->name->data,
4251 XSYMBOL (base)->name->size);
4252
4253 /* Add the new symbol to the base's cache. */
4254 entry = Fcons (index, new_symbol);
4255 Fput (base, Qmodifier_cache, Fcons (entry, cache));
4256
4257 /* We have the parsing info now for free, so add it to the caches. */
4258 XSETFASTINT (index, modifiers);
4259 Fput (new_symbol, Qevent_symbol_element_mask,
4260 Fcons (base, Fcons (index, Qnil)));
4261 Fput (new_symbol, Qevent_symbol_elements,
4262 Fcons (base, lispy_modifier_list (modifiers)));
4263 }
4264
4265 /* Make sure this symbol is of the same kind as BASE.
4266
4267 You'd think we could just set this once and for all when we
4268 intern the symbol above, but reorder_modifiers may call us when
4269 BASE's property isn't set right; we can't assume that just
4270 because it has a Qmodifier_cache property it must have its
4271 Qevent_kind set right as well. */
4272 if (NILP (Fget (new_symbol, Qevent_kind)))
4273 {
4274 Lisp_Object kind;
4275
4276 kind = Fget (base, Qevent_kind);
4277 if (! NILP (kind))
4278 Fput (new_symbol, Qevent_kind, kind);
4279 }
4280
4281 return new_symbol;
4282 }
4283
4284
4285 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
4286 return a symbol with the modifiers placed in the canonical order.
4287 Canonical order is alphabetical, except for down and drag, which
4288 always come last. The 'click' modifier is never written out.
4289
4290 Fdefine_key calls this to make sure that (for example) C-M-foo
4291 and M-C-foo end up being equivalent in the keymap. */
4292
4293 Lisp_Object
4294 reorder_modifiers (symbol)
4295 Lisp_Object symbol;
4296 {
4297 /* It's hopefully okay to write the code this way, since everything
4298 will soon be in caches, and no consing will be done at all. */
4299 Lisp_Object parsed;
4300
4301 parsed = parse_modifiers (symbol);
4302 return apply_modifiers ((int) XINT (XCONS (XCONS (parsed)->cdr)->car),
4303 XCONS (parsed)->car);
4304 }
4305
4306
4307 /* For handling events, we often want to produce a symbol whose name
4308 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
4309 to some base, like the name of a function key or mouse button.
4310 modify_event_symbol produces symbols of this sort.
4311
4312 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
4313 is the name of the i'th symbol. TABLE_SIZE is the number of elements
4314 in the table.
4315
4316 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
4317 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
4318
4319 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
4320 persist between calls to modify_event_symbol that it can use to
4321 store a cache of the symbols it's generated for this NAME_TABLE
4322 before. The object stored there may be a vector or an alist.
4323
4324 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
4325
4326 MODIFIERS is a set of modifier bits (as given in struct input_events)
4327 whose prefixes should be applied to the symbol name.
4328
4329 SYMBOL_KIND is the value to be placed in the event_kind property of
4330 the returned symbol.
4331
4332 The symbols we create are supposed to have an
4333 `event-symbol-elements' property, which lists the modifiers present
4334 in the symbol's name. */
4335
4336 static Lisp_Object
4337 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
4338 name_table, symbol_table, table_size)
4339 int symbol_num;
4340 unsigned modifiers;
4341 Lisp_Object symbol_kind;
4342 Lisp_Object name_alist;
4343 char **name_table;
4344 Lisp_Object *symbol_table;
4345 unsigned int table_size;
4346 {
4347 Lisp_Object value;
4348 Lisp_Object symbol_int;
4349
4350 /* Get rid of the "vendor-specific" bit here. */
4351 XSETINT (symbol_int, symbol_num & 0xffffff);
4352
4353 /* Is this a request for a valid symbol? */
4354 if (symbol_num < 0 || symbol_num >= table_size)
4355 return Qnil;
4356
4357 if (CONSP (*symbol_table))
4358 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
4359
4360 /* If *symbol_table doesn't seem to be initialized properly, fix that.
4361 *symbol_table should be a lisp vector TABLE_SIZE elements long,
4362 where the Nth element is the symbol for NAME_TABLE[N], or nil if
4363 we've never used that symbol before. */
4364 else
4365 {
4366 if (! VECTORP (*symbol_table)
4367 || XVECTOR (*symbol_table)->size != table_size)
4368 {
4369 Lisp_Object size;
4370
4371 XSETFASTINT (size, table_size);
4372 *symbol_table = Fmake_vector (size, Qnil);
4373 }
4374
4375 value = XVECTOR (*symbol_table)->contents[symbol_num];
4376 }
4377
4378 /* Have we already used this symbol before? */
4379 if (NILP (value))
4380 {
4381 /* No; let's create it. */
4382 if (!NILP (name_alist))
4383 value = Fcdr_safe (Fassq (symbol_int, name_alist));
4384 else if (name_table[symbol_num])
4385 value = intern (name_table[symbol_num]);
4386
4387 #ifdef HAVE_WINDOW_SYSTEM
4388 if (NILP (value))
4389 {
4390 char *name = x_get_keysym_name (symbol_num);
4391 if (name)
4392 value = intern (name);
4393 }
4394 #endif
4395
4396 if (NILP (value))
4397 {
4398 char buf[20];
4399 sprintf (buf, "key-%d", symbol_num);
4400 value = intern (buf);
4401 }
4402
4403 if (CONSP (*symbol_table))
4404 *symbol_table = Fcons (value, *symbol_table);
4405 else
4406 XVECTOR (*symbol_table)->contents[symbol_num] = value;
4407
4408 /* Fill in the cache entries for this symbol; this also
4409 builds the Qevent_symbol_elements property, which the user
4410 cares about. */
4411 apply_modifiers (modifiers & click_modifier, value);
4412 Fput (value, Qevent_kind, symbol_kind);
4413 }
4414
4415 /* Apply modifiers to that symbol. */
4416 return apply_modifiers (modifiers, value);
4417 }
4418 \f
4419 /* Convert a list that represents an event type,
4420 such as (ctrl meta backspace), into the usual representation of that
4421 event type as a number or a symbol. */
4422
4423 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
4424 "Convert the event description list EVENT-DESC to an event type.\n\
4425 EVENT-DESC should contain one base event type (a character or symbol)\n\
4426 and zero or more modifier names (control, meta, hyper, super, shift, alt,\n\
4427 drag, down, double or triple).\n\
4428 The return value is an event type (a character or symbol) which\n\
4429 has the same base event type and all the specified modifiers.")
4430 (event_desc)
4431 Lisp_Object event_desc;
4432 {
4433 Lisp_Object base;
4434 int modifiers = 0;
4435 Lisp_Object rest;
4436
4437 base = Qnil;
4438 rest = event_desc;
4439 while (CONSP (rest))
4440 {
4441 Lisp_Object elt;
4442 int this = 0;
4443
4444 elt = XCONS (rest)->car;
4445
4446 /* Given a symbol, see if it is a modifier name. */
4447 if (SYMBOLP (elt))
4448 this = parse_solitary_modifier (elt);
4449
4450 if (this != 0)
4451 modifiers |= this;
4452 else if (!NILP (base))
4453 error ("Two bases given in one event");
4454 else
4455 base = elt;
4456
4457 rest = XCONS (rest)->cdr;
4458 }
4459
4460 /* Let the symbol A refer to the character A. */
4461 if (SYMBOLP (base) && XSYMBOL (base)->name->size == 1)
4462 XSETINT (base, XSYMBOL (base)->name->data[0]);
4463
4464 if (INTEGERP (base))
4465 {
4466 /* Turn (shift a) into A. */
4467 if ((modifiers & shift_modifier) != 0
4468 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
4469 {
4470 XSETINT (base, XINT (base) - ('a' - 'A'));
4471 modifiers &= ~shift_modifier;
4472 }
4473
4474 /* Turn (control a) into C-a. */
4475 if (modifiers & ctrl_modifier)
4476 return make_number ((modifiers & ~ctrl_modifier)
4477 | make_ctrl_char (XINT (base)));
4478 else
4479 return make_number (modifiers | XINT (base));
4480 }
4481 else if (SYMBOLP (base))
4482 return apply_modifiers (modifiers, base);
4483 else
4484 error ("Invalid base event");
4485 }
4486
4487 /* Try to recognize SYMBOL as a modifier name.
4488 Return the modifier flag bit, or 0 if not recognized. */
4489
4490 static int
4491 parse_solitary_modifier (symbol)
4492 Lisp_Object symbol;
4493 {
4494 struct Lisp_String *name = XSYMBOL (symbol)->name;
4495
4496 switch (name->data[0])
4497 {
4498 #define SINGLE_LETTER_MOD(BIT) \
4499 if (name->size == 1) \
4500 return BIT;
4501
4502 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
4503 if (LEN == name->size \
4504 && ! strncmp (name->data, NAME, LEN)) \
4505 return BIT;
4506
4507 case 'A':
4508 SINGLE_LETTER_MOD (alt_modifier);
4509 break;
4510
4511 case 'a':
4512 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
4513 break;
4514
4515 case 'C':
4516 SINGLE_LETTER_MOD (ctrl_modifier);
4517 break;
4518
4519 case 'c':
4520 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
4521 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
4522 break;
4523
4524 case 'H':
4525 SINGLE_LETTER_MOD (hyper_modifier);
4526 break;
4527
4528 case 'h':
4529 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
4530 break;
4531
4532 case 'M':
4533 SINGLE_LETTER_MOD (meta_modifier);
4534 break;
4535
4536 case 'm':
4537 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
4538 break;
4539
4540 case 'S':
4541 SINGLE_LETTER_MOD (shift_modifier);
4542 break;
4543
4544 case 's':
4545 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
4546 MULTI_LETTER_MOD (super_modifier, "super", 5);
4547 SINGLE_LETTER_MOD (super_modifier);
4548 break;
4549
4550 case 'd':
4551 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
4552 MULTI_LETTER_MOD (down_modifier, "down", 4);
4553 MULTI_LETTER_MOD (double_modifier, "double", 6);
4554 break;
4555
4556 case 't':
4557 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
4558 break;
4559
4560 #undef SINGLE_LETTER_MOD
4561 #undef MULTI_LETTER_MOD
4562 }
4563
4564 return 0;
4565 }
4566
4567 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
4568 Such a list is not valid as an event,
4569 but it can be a Lucid-style event type list. */
4570
4571 int
4572 lucid_event_type_list_p (object)
4573 Lisp_Object object;
4574 {
4575 Lisp_Object tail;
4576
4577 if (! CONSP (object))
4578 return 0;
4579
4580 for (tail = object; CONSP (tail); tail = XCONS (tail)->cdr)
4581 {
4582 Lisp_Object elt;
4583 elt = XCONS (tail)->car;
4584 if (! (INTEGERP (elt) || SYMBOLP (elt)))
4585 return 0;
4586 }
4587
4588 return NILP (tail);
4589 }
4590 \f
4591 /* Store into *addr a value nonzero if terminal input chars are available.
4592 Serves the purpose of ioctl (0, FIONREAD, addr)
4593 but works even if FIONREAD does not exist.
4594 (In fact, this may actually read some input.)
4595
4596 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
4597
4598 static void
4599 get_input_pending (addr, do_timers_now)
4600 int *addr;
4601 int do_timers_now;
4602 {
4603 /* First of all, have we already counted some input? */
4604 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
4605
4606 /* If input is being read as it arrives, and we have none, there is none. */
4607 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
4608 return;
4609
4610 /* Try to read some input and see how much we get. */
4611 gobble_input (0);
4612 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
4613 }
4614
4615 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
4616
4617 int
4618 gobble_input (expected)
4619 int expected;
4620 {
4621 #ifndef VMS
4622 #ifdef SIGIO
4623 if (interrupt_input)
4624 {
4625 SIGMASKTYPE mask;
4626 mask = sigblockx (SIGIO);
4627 read_avail_input (expected);
4628 sigsetmask (mask);
4629 }
4630 else
4631 #ifdef POLL_FOR_INPUT
4632 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
4633 {
4634 SIGMASKTYPE mask;
4635 mask = sigblockx (SIGALRM);
4636 read_avail_input (expected);
4637 sigsetmask (mask);
4638 }
4639 else
4640 #endif
4641 #endif
4642 read_avail_input (expected);
4643 #endif
4644 }
4645
4646 /* Put a buffer_switch_event in the buffer
4647 so that read_key_sequence will notice the new current buffer. */
4648
4649 record_asynch_buffer_change ()
4650 {
4651 struct input_event event;
4652 Lisp_Object tem;
4653
4654 event.kind = buffer_switch_event;
4655 event.frame_or_window = Qnil;
4656
4657 #ifdef subprocesses
4658 /* We don't need a buffer-switch event unless Emacs is waiting for input.
4659 The purpose of the event is to make read_key_sequence look up the
4660 keymaps again. If we aren't in read_key_sequence, we don't need one,
4661 and the event could cause trouble by messing up (input-pending-p). */
4662 tem = Fwaiting_for_user_input_p ();
4663 if (NILP (tem))
4664 return;
4665 #else
4666 /* We never need these events if we have no asynchronous subprocesses. */
4667 return;
4668 #endif
4669
4670 /* Make sure no interrupt happens while storing the event. */
4671 #ifdef SIGIO
4672 if (interrupt_input)
4673 {
4674 SIGMASKTYPE mask;
4675 mask = sigblockx (SIGIO);
4676 kbd_buffer_store_event (&event);
4677 sigsetmask (mask);
4678 }
4679 else
4680 #endif
4681 {
4682 stop_polling ();
4683 kbd_buffer_store_event (&event);
4684 start_polling ();
4685 }
4686 }
4687 \f
4688 #ifndef VMS
4689
4690 /* Read any terminal input already buffered up by the system
4691 into the kbd_buffer, but do not wait.
4692
4693 EXPECTED should be nonzero if the caller knows there is some input.
4694
4695 Except on VMS, all input is read by this function.
4696 If interrupt_input is nonzero, this function MUST be called
4697 only when SIGIO is blocked.
4698
4699 Returns the number of keyboard chars read, or -1 meaning
4700 this is a bad time to try to read input. */
4701
4702 static int
4703 read_avail_input (expected)
4704 int expected;
4705 {
4706 struct input_event buf[KBD_BUFFER_SIZE];
4707 register int i;
4708 int nread;
4709
4710 if (read_socket_hook)
4711 /* No need for FIONREAD or fcntl; just say don't wait. */
4712 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE,
4713 expected, expected);
4714 else
4715 {
4716 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
4717 the kbd_buffer can really hold. That may prevent loss
4718 of characters on some systems when input is stuffed at us. */
4719 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
4720 int n_to_read;
4721
4722 /* Determine how many characters we should *try* to read. */
4723 #ifdef WINDOWSNT
4724 return 0;
4725 #else /* not WINDOWSNT */
4726 #ifdef MSDOS
4727 n_to_read = dos_keysns ();
4728 if (n_to_read == 0)
4729 return 0;
4730 #else /* not MSDOS */
4731 #ifdef FIONREAD
4732 /* Find out how much input is available. */
4733 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
4734 /* Formerly simply reported no input, but that sometimes led to
4735 a failure of Emacs to terminate.
4736 SIGHUP seems appropriate if we can't reach the terminal. */
4737 /* ??? Is it really right to send the signal just to this process
4738 rather than to the whole process group?
4739 Perhaps on systems with FIONREAD Emacs is alone in its group. */
4740 kill (getpid (), SIGHUP);
4741 if (n_to_read == 0)
4742 return 0;
4743 if (n_to_read > sizeof cbuf)
4744 n_to_read = sizeof cbuf;
4745 #else /* no FIONREAD */
4746 #if defined (USG) || defined (DGUX)
4747 /* Read some input if available, but don't wait. */
4748 n_to_read = sizeof cbuf;
4749 fcntl (input_fd, F_SETFL, O_NDELAY);
4750 #else
4751 you lose;
4752 #endif
4753 #endif
4754 #endif /* not MSDOS */
4755 #endif /* not WINDOWSNT */
4756
4757 /* Now read; for one reason or another, this will not block.
4758 NREAD is set to the number of chars read. */
4759 do
4760 {
4761 #ifdef MSDOS
4762 cbuf[0] = dos_keyread ();
4763 nread = 1;
4764 #else
4765 nread = read (input_fd, cbuf, n_to_read);
4766 #endif
4767 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
4768 /* The kernel sometimes fails to deliver SIGHUP for ptys.
4769 This looks incorrect, but it isn't, because _BSD causes
4770 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
4771 and that causes a value other than 0 when there is no input. */
4772 if (nread == 0)
4773 kill (0, SIGHUP);
4774 #endif
4775 }
4776 while (
4777 /* We used to retry the read if it was interrupted.
4778 But this does the wrong thing when O_NDELAY causes
4779 an EAGAIN error. Does anybody know of a situation
4780 where a retry is actually needed? */
4781 #if 0
4782 nread < 0 && (errno == EAGAIN
4783 #ifdef EFAULT
4784 || errno == EFAULT
4785 #endif
4786 #ifdef EBADSLT
4787 || errno == EBADSLT
4788 #endif
4789 )
4790 #else
4791 0
4792 #endif
4793 );
4794
4795 #ifndef FIONREAD
4796 #if defined (USG) || defined (DGUX)
4797 fcntl (input_fd, F_SETFL, 0);
4798 #endif /* USG or DGUX */
4799 #endif /* no FIONREAD */
4800 for (i = 0; i < nread; i++)
4801 {
4802 buf[i].kind = ascii_keystroke;
4803 buf[i].modifiers = 0;
4804 if (meta_key == 1 && (cbuf[i] & 0x80))
4805 buf[i].modifiers = meta_modifier;
4806 if (meta_key != 2)
4807 cbuf[i] &= ~0x80;
4808
4809 buf[i].code = cbuf[i];
4810 #ifdef MULTI_FRAME
4811 XSETFRAME (buf[i].frame_or_window, selected_frame);
4812 #else
4813 buf[i].frame_or_window = Qnil;
4814 #endif
4815 }
4816 }
4817
4818 /* Scan the chars for C-g and store them in kbd_buffer. */
4819 for (i = 0; i < nread; i++)
4820 {
4821 kbd_buffer_store_event (&buf[i]);
4822 /* Don't look at input that follows a C-g too closely.
4823 This reduces lossage due to autorepeat on C-g. */
4824 if (buf[i].kind == ascii_keystroke
4825 && buf[i].code == quit_char)
4826 break;
4827 }
4828
4829 return nread;
4830 }
4831 #endif /* not VMS */
4832 \f
4833 #ifdef SIGIO /* for entire page */
4834 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4835
4836 SIGTYPE
4837 input_available_signal (signo)
4838 int signo;
4839 {
4840 /* Must preserve main program's value of errno. */
4841 int old_errno = errno;
4842 #ifdef BSD4_1
4843 extern int select_alarmed;
4844 #endif
4845
4846 #ifdef USG
4847 /* USG systems forget handlers when they are used;
4848 must reestablish each time */
4849 signal (signo, input_available_signal);
4850 #endif /* USG */
4851
4852 #ifdef BSD4_1
4853 sigisheld (SIGIO);
4854 #endif
4855
4856 if (input_available_clear_time)
4857 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
4858
4859 while (1)
4860 {
4861 int nread;
4862 nread = read_avail_input (1);
4863 /* -1 means it's not ok to read the input now.
4864 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
4865 0 means there was no keyboard input available. */
4866 if (nread <= 0)
4867 break;
4868
4869 #ifdef BSD4_1
4870 select_alarmed = 1; /* Force the select emulator back to life */
4871 #endif
4872 }
4873
4874 #ifdef BSD4_1
4875 sigfree ();
4876 #endif
4877 errno = old_errno;
4878 }
4879 #endif /* SIGIO */
4880
4881 /* Send ourselves a SIGIO.
4882
4883 This function exists so that the UNBLOCK_INPUT macro in
4884 blockinput.h can have some way to take care of input we put off
4885 dealing with, without assuming that every file which uses
4886 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
4887 void
4888 reinvoke_input_signal ()
4889 {
4890 #ifdef SIGIO
4891 kill (getpid (), SIGIO);
4892 #endif
4893 }
4894
4895
4896 \f
4897 /* Return the prompt-string of a sparse keymap.
4898 This is the first element which is a string.
4899 Return nil if there is none. */
4900
4901 Lisp_Object
4902 map_prompt (map)
4903 Lisp_Object map;
4904 {
4905 while (CONSP (map))
4906 {
4907 register Lisp_Object tem;
4908 tem = Fcar (map);
4909 if (STRINGP (tem))
4910 return tem;
4911 map = Fcdr (map);
4912 }
4913 return Qnil;
4914 }
4915
4916 static void menu_bar_item ();
4917 static void menu_bar_one_keymap ();
4918
4919 /* These variables hold the vector under construction within
4920 menu_bar_items and its subroutines, and the current index
4921 for storing into that vector. */
4922 static Lisp_Object menu_bar_items_vector;
4923 static int menu_bar_items_index;
4924
4925 /* Return a vector of menu items for a menu bar, appropriate
4926 to the current buffer. Each item has three elements in the vector:
4927 KEY STRING MAPLIST.
4928
4929 OLD is an old vector we can optionally reuse, or nil. */
4930
4931 Lisp_Object
4932 menu_bar_items (old)
4933 Lisp_Object old;
4934 {
4935 /* The number of keymaps we're scanning right now, and the number of
4936 keymaps we have allocated space for. */
4937 int nmaps;
4938
4939 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
4940 in the current keymaps, or nil where it is not a prefix. */
4941 Lisp_Object *maps;
4942
4943 Lisp_Object def, tem, tail;
4944
4945 Lisp_Object result;
4946
4947 int mapno;
4948 Lisp_Object oquit;
4949
4950 int i;
4951
4952 struct gcpro gcpro1;
4953
4954 /* In order to build the menus, we need to call the keymap
4955 accessors. They all call QUIT. But this function is called
4956 during redisplay, during which a quit is fatal. So inhibit
4957 quitting while building the menus.
4958 We do this instead of specbind because (1) errors will clear it anyway
4959 and (2) this avoids risk of specpdl overflow. */
4960 oquit = Vinhibit_quit;
4961 Vinhibit_quit = Qt;
4962
4963 if (!NILP (old))
4964 menu_bar_items_vector = old;
4965 else
4966 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
4967 menu_bar_items_index = 0;
4968
4969 GCPRO1 (menu_bar_items_vector);
4970
4971 /* Build our list of keymaps.
4972 If we recognize a function key and replace its escape sequence in
4973 keybuf with its symbol, or if the sequence starts with a mouse
4974 click and we need to switch buffers, we jump back here to rebuild
4975 the initial keymaps from the current buffer. */
4976 {
4977 Lisp_Object *tmaps;
4978
4979 /* Should overriding-terminal-local-map and overriding-local-map apply? */
4980 if (!NILP (Voverriding_local_map_menu_flag))
4981 {
4982 /* Yes, use them (if non-nil) as well as the global map. */
4983 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
4984 nmaps = 0;
4985 if (!NILP (current_kboard->Voverriding_terminal_local_map))
4986 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
4987 if (!NILP (Voverriding_local_map))
4988 maps[nmaps++] = Voverriding_local_map;
4989 }
4990 else
4991 {
4992 /* No, so use major and minor mode keymaps. */
4993 nmaps = current_minor_maps (NULL, &tmaps);
4994 maps = (Lisp_Object *) alloca ((nmaps + 2) * sizeof (maps[0]));
4995 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
4996 #ifdef USE_TEXT_PROPERTIES
4997 maps[nmaps++] = get_local_map (PT, current_buffer);
4998 #else
4999 maps[nmaps++] = current_buffer->keymap;
5000 #endif
5001 }
5002 maps[nmaps++] = current_global_map;
5003 }
5004
5005 /* Look up in each map the dummy prefix key `menu-bar'. */
5006
5007 result = Qnil;
5008
5009 for (mapno = nmaps - 1; mapno >= 0; mapno--)
5010 {
5011 if (! NILP (maps[mapno]))
5012 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
5013 else
5014 def = Qnil;
5015
5016 tem = Fkeymapp (def);
5017 if (!NILP (tem))
5018 menu_bar_one_keymap (def);
5019 }
5020
5021 /* Move to the end those items that should be at the end. */
5022
5023 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
5024 {
5025 int i;
5026 int end = menu_bar_items_index;
5027
5028 for (i = 0; i < end; i += 3)
5029 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i]))
5030 {
5031 Lisp_Object tem0, tem1, tem2;
5032 /* Move the item at index I to the end,
5033 shifting all the others forward. */
5034 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
5035 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
5036 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
5037 if (end > i + 3)
5038 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
5039 &XVECTOR (menu_bar_items_vector)->contents[i],
5040 (end - i - 3) * sizeof (Lisp_Object));
5041 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem0;
5042 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem1;
5043 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem2;
5044 break;
5045 }
5046 }
5047
5048 /* Add nil, nil, nil at the end. */
5049 i = menu_bar_items_index;
5050 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
5051 {
5052 Lisp_Object tem;
5053 int newsize = 2 * i;
5054 tem = Fmake_vector (make_number (2 * i), Qnil);
5055 bcopy (XVECTOR (menu_bar_items_vector)->contents,
5056 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
5057 menu_bar_items_vector = tem;
5058 }
5059 /* Add this item. */
5060 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5061 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5062 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5063 menu_bar_items_index = i;
5064
5065 Vinhibit_quit = oquit;
5066 UNGCPRO;
5067 return menu_bar_items_vector;
5068 }
5069 \f
5070 /* Scan one map KEYMAP, accumulating any menu items it defines
5071 in menu_bar_items_vector. */
5072
5073 static void
5074 menu_bar_one_keymap (keymap)
5075 Lisp_Object keymap;
5076 {
5077 Lisp_Object tail, item, key, binding, item_string, table;
5078
5079 /* Loop over all keymap entries that have menu strings. */
5080 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr)
5081 {
5082 item = XCONS (tail)->car;
5083 if (CONSP (item))
5084 {
5085 key = XCONS (item)->car;
5086 binding = XCONS (item)->cdr;
5087 if (CONSP (binding))
5088 {
5089 item_string = XCONS (binding)->car;
5090 if (STRINGP (item_string))
5091 menu_bar_item (key, item_string, Fcdr (binding));
5092 }
5093 else if (EQ (binding, Qundefined))
5094 menu_bar_item (key, Qnil, binding);
5095 }
5096 else if (VECTORP (item))
5097 {
5098 /* Loop over the char values represented in the vector. */
5099 int len = XVECTOR (item)->size;
5100 int c;
5101 for (c = 0; c < len; c++)
5102 {
5103 Lisp_Object character;
5104 XSETFASTINT (character, c);
5105 binding = XVECTOR (item)->contents[c];
5106 if (CONSP (binding))
5107 {
5108 item_string = XCONS (binding)->car;
5109 if (STRINGP (item_string))
5110 menu_bar_item (key, item_string, Fcdr (binding));
5111 }
5112 else if (EQ (binding, Qundefined))
5113 menu_bar_item (key, Qnil, binding);
5114 }
5115 }
5116 }
5117 }
5118
5119 /* This is used as the handler when calling internal_condition_case_1. */
5120
5121 static Lisp_Object
5122 menu_bar_item_1 (arg)
5123 Lisp_Object arg;
5124 {
5125 return Qnil;
5126 }
5127
5128 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
5129 If there's already an item for KEY, add this DEF to it. */
5130
5131 static void
5132 menu_bar_item (key, item_string, def)
5133 Lisp_Object key, item_string, def;
5134 {
5135 Lisp_Object tem;
5136 Lisp_Object enabled;
5137 int i;
5138
5139 if (EQ (def, Qundefined))
5140 {
5141 /* If a map has an explicit `undefined' as definition,
5142 discard any previously made menu bar item. */
5143
5144 for (i = 0; i < menu_bar_items_index; i += 3)
5145 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
5146 {
5147 if (menu_bar_items_index > i + 3)
5148 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
5149 &XVECTOR (menu_bar_items_vector)->contents[i],
5150 (menu_bar_items_index - i - 3) * sizeof (Lisp_Object));
5151 menu_bar_items_index -= 3;
5152 return;
5153 }
5154
5155 /* If there's no definition for this key yet,
5156 just ignore `undefined'. */
5157 return;
5158 }
5159
5160 /* See if this entry is enabled. */
5161 enabled = Qt;
5162
5163 if (SYMBOLP (def))
5164 {
5165 /* No property, or nil, means enable.
5166 Otherwise, enable if value is not nil. */
5167 tem = Fget (def, Qmenu_enable);
5168 if (!NILP (tem))
5169 /* (condition-case nil (eval tem)
5170 (error nil)) */
5171 enabled = internal_condition_case_1 (Feval, tem, Qerror,
5172 menu_bar_item_1);
5173 }
5174
5175 /* Ignore this item if it's not enabled. */
5176 if (NILP (enabled))
5177 return;
5178
5179 /* Find any existing item for this KEY. */
5180 for (i = 0; i < menu_bar_items_index; i += 3)
5181 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
5182 break;
5183
5184 /* If we did not find this KEY, add it at the end. */
5185 if (i == menu_bar_items_index)
5186 {
5187 /* If vector is too small, get a bigger one. */
5188 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
5189 {
5190 Lisp_Object tem;
5191 int newsize = 2 * i;
5192 tem = Fmake_vector (make_number (2 * i), Qnil);
5193 bcopy (XVECTOR (menu_bar_items_vector)->contents,
5194 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
5195 menu_bar_items_vector = tem;
5196 }
5197 /* Add this item. */
5198 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
5199 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string;
5200 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil);
5201 menu_bar_items_index = i;
5202 }
5203 /* We did find an item for this KEY. Add DEF to its list of maps. */
5204 else
5205 {
5206 Lisp_Object old;
5207 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
5208 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old);
5209 }
5210 }
5211 \f
5212 /* Read a character using menus based on maps in the array MAPS.
5213 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
5214 Return t if we displayed a menu but the user rejected it.
5215
5216 PREV_EVENT is the previous input event, or nil if we are reading
5217 the first event of a key sequence.
5218
5219 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
5220 if we used a mouse menu to read the input, or zero otherwise. If
5221 USED_MOUSE_MENU is null, we don't dereference it.
5222
5223 The prompting is done based on the prompt-string of the map
5224 and the strings associated with various map elements.
5225
5226 This can be done with X menus or with menus put in the minibuf.
5227 These are done in different ways, depending on how the input will be read.
5228 Menus using X are done after auto-saving in read-char, getting the input
5229 event from Fx_popup_menu; menus using the minibuf use read_char recursively
5230 and do auto-saving in the inner call of read_char. */
5231
5232 static Lisp_Object
5233 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
5234 int nmaps;
5235 Lisp_Object *maps;
5236 Lisp_Object prev_event;
5237 int *used_mouse_menu;
5238 {
5239 int mapno;
5240 register Lisp_Object name;
5241 Lisp_Object rest, vector;
5242
5243 if (used_mouse_menu)
5244 *used_mouse_menu = 0;
5245
5246 /* Use local over global Menu maps */
5247
5248 if (! menu_prompting)
5249 return Qnil;
5250
5251 /* Optionally disregard all but the global map. */
5252 if (inhibit_local_menu_bar_menus)
5253 {
5254 maps += (nmaps - 1);
5255 nmaps = 1;
5256 }
5257
5258 /* Get the menu name from the first map that has one (a prompt string). */
5259 for (mapno = 0; mapno < nmaps; mapno++)
5260 {
5261 name = map_prompt (maps[mapno]);
5262 if (!NILP (name))
5263 break;
5264 }
5265
5266 /* If we don't have any menus, just read a character normally. */
5267 if (mapno >= nmaps)
5268 return Qnil;
5269
5270 #ifdef HAVE_MENUS
5271 /* If we got to this point via a mouse click,
5272 use a real menu for mouse selection. */
5273 if (EVENT_HAS_PARAMETERS (prev_event)
5274 && !EQ (XCONS (prev_event)->car, Qmenu_bar))
5275 {
5276 /* Display the menu and get the selection. */
5277 Lisp_Object *realmaps
5278 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
5279 Lisp_Object value;
5280 int nmaps1 = 0;
5281
5282 /* Use the maps that are not nil. */
5283 for (mapno = 0; mapno < nmaps; mapno++)
5284 if (!NILP (maps[mapno]))
5285 realmaps[nmaps1++] = maps[mapno];
5286
5287 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
5288 if (CONSP (value))
5289 {
5290 Lisp_Object tem;
5291
5292 /* If we got multiple events, unread all but
5293 the first.
5294 There is no way to prevent those unread events
5295 from showing up later in last_nonmenu_event.
5296 So turn symbol and integer events into lists,
5297 to indicate that they came from a mouse menu,
5298 so that when present in last_nonmenu_event
5299 they won't confuse things. */
5300 for (tem = XCONS (value)->cdr; !NILP (tem);
5301 tem = XCONS (tem)->cdr)
5302 if (SYMBOLP (XCONS (tem)->car)
5303 || INTEGERP (XCONS (tem)->car))
5304 XCONS (tem)->car
5305 = Fcons (XCONS (tem)->car, Qnil);
5306
5307 /* If we got more than one event, put all but the first
5308 onto this list to be read later.
5309 Return just the first event now. */
5310 Vunread_command_events
5311 = nconc2 (XCONS (value)->cdr, Vunread_command_events);
5312 value = XCONS (value)->car;
5313 }
5314 else if (NILP (value))
5315 value = Qt;
5316 if (used_mouse_menu)
5317 *used_mouse_menu = 1;
5318 return value;
5319 }
5320 #endif /* HAVE_MENUS */
5321 return Qnil ;
5322 }
5323
5324 /* Buffer in use so far for the minibuf prompts for menu keymaps.
5325 We make this bigger when necessary, and never free it. */
5326 static char *read_char_minibuf_menu_text;
5327 /* Size of that buffer. */
5328 static int read_char_minibuf_menu_width;
5329
5330 static Lisp_Object
5331 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
5332 int commandflag ;
5333 int nmaps;
5334 Lisp_Object *maps;
5335 {
5336 int mapno;
5337 register Lisp_Object name;
5338 int nlength;
5339 int width = FRAME_WIDTH (selected_frame) - 4;
5340 int idx = -1;
5341 int nobindings = 1;
5342 Lisp_Object rest, vector;
5343 char *menu;
5344
5345 if (! menu_prompting)
5346 return Qnil;
5347
5348 /* Make sure we have a big enough buffer for the menu text. */
5349 if (read_char_minibuf_menu_text == 0)
5350 {
5351 read_char_minibuf_menu_width = width + 4;
5352 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
5353 }
5354 else if (width + 4 > read_char_minibuf_menu_width)
5355 {
5356 read_char_minibuf_menu_width = width + 4;
5357 read_char_minibuf_menu_text
5358 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
5359 }
5360 menu = read_char_minibuf_menu_text;
5361
5362 /* Get the menu name from the first map that has one (a prompt string). */
5363 for (mapno = 0; mapno < nmaps; mapno++)
5364 {
5365 name = map_prompt (maps[mapno]);
5366 if (!NILP (name))
5367 break;
5368 }
5369
5370 /* If we don't have any menus, just read a character normally. */
5371 if (mapno >= nmaps)
5372 return Qnil;
5373
5374 /* Prompt string always starts with map's prompt, and a space. */
5375 strcpy (menu, XSTRING (name)->data);
5376 nlength = XSTRING (name)->size;
5377 menu[nlength++] = ':';
5378 menu[nlength++] = ' ';
5379 menu[nlength] = 0;
5380
5381 /* Start prompting at start of first map. */
5382 mapno = 0;
5383 rest = maps[mapno];
5384
5385 /* Present the documented bindings, a line at a time. */
5386 while (1)
5387 {
5388 int notfirst = 0;
5389 int i = nlength;
5390 Lisp_Object obj;
5391 int ch;
5392 Lisp_Object orig_defn_macro;
5393
5394 /* Loop over elements of map. */
5395 while (i < width)
5396 {
5397 Lisp_Object s, elt;
5398
5399 /* If reached end of map, start at beginning of next map. */
5400 if (NILP (rest))
5401 {
5402 mapno++;
5403 /* At end of last map, wrap around to first map if just starting,
5404 or end this line if already have something on it. */
5405 if (mapno == nmaps)
5406 {
5407 mapno = 0;
5408 if (notfirst || nobindings) break;
5409 }
5410 rest = maps[mapno];
5411 }
5412
5413 /* Look at the next element of the map. */
5414 if (idx >= 0)
5415 elt = XVECTOR (vector)->contents[idx];
5416 else
5417 elt = Fcar_safe (rest);
5418
5419 if (idx < 0 && VECTORP (elt))
5420 {
5421 /* If we found a dense table in the keymap,
5422 advanced past it, but start scanning its contents. */
5423 rest = Fcdr_safe (rest);
5424 vector = elt;
5425 idx = 0;
5426 }
5427 else
5428 {
5429 /* An ordinary element. */
5430 Lisp_Object event;
5431
5432 if (idx < 0)
5433 {
5434 s = Fcar_safe (Fcdr_safe (elt)); /* alist */
5435 event = Fcar_safe (elt);
5436 }
5437 else
5438 {
5439 s = Fcar_safe (elt); /* vector */
5440 XSETINT (event, idx);
5441 }
5442
5443 /* Ignore the element if it has no prompt string. */
5444 if (STRINGP (s) && INTEGERP (event))
5445 {
5446 /* 1 if the char to type matches the string. */
5447 int char_matches;
5448 Lisp_Object upcased_event, downcased_event;
5449 Lisp_Object desc;
5450
5451 upcased_event = Fupcase (event);
5452 downcased_event = Fdowncase (event);
5453 char_matches = (XINT (upcased_event) == XSTRING (s)->data[0]
5454 || XINT (downcased_event) == XSTRING (s)->data[0]);
5455 if (! char_matches)
5456 desc = Fsingle_key_description (event);
5457
5458 /* If we have room for the prompt string, add it to this line.
5459 If this is the first on the line, always add it. */
5460 if ((XSTRING (s)->size + i + 2
5461 + (char_matches ? 0 : XSTRING (desc)->size + 3))
5462 < width
5463 || !notfirst)
5464 {
5465 int thiswidth;
5466
5467 /* Punctuate between strings. */
5468 if (notfirst)
5469 {
5470 strcpy (menu + i, ", ");
5471 i += 2;
5472 }
5473 notfirst = 1;
5474 nobindings = 0 ;
5475
5476 /* If the char to type doesn't match the string's
5477 first char, explicitly show what char to type. */
5478 if (! char_matches)
5479 {
5480 /* Add as much of string as fits. */
5481 thiswidth = XSTRING (desc)->size;
5482 if (thiswidth + i > width)
5483 thiswidth = width - i;
5484 bcopy (XSTRING (desc)->data, menu + i, thiswidth);
5485 i += thiswidth;
5486 strcpy (menu + i, " = ");
5487 i += 3;
5488 }
5489
5490 /* Add as much of string as fits. */
5491 thiswidth = XSTRING (s)->size;
5492 if (thiswidth + i > width)
5493 thiswidth = width - i;
5494 bcopy (XSTRING (s)->data, menu + i, thiswidth);
5495 i += thiswidth;
5496 menu[i] = 0;
5497 }
5498 else
5499 {
5500 /* If this element does not fit, end the line now,
5501 and save the element for the next line. */
5502 strcpy (menu + i, "...");
5503 break;
5504 }
5505 }
5506
5507 /* Move past this element. */
5508 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
5509 /* Handle reaching end of dense table. */
5510 idx = -1;
5511 if (idx >= 0)
5512 idx++;
5513 else
5514 rest = Fcdr_safe (rest);
5515 }
5516 }
5517
5518 /* Prompt with that and read response. */
5519 message1 (menu);
5520
5521 /* Make believe its not a keyboard macro in case the help char
5522 is pressed. Help characters are not recorded because menu prompting
5523 is not used on replay.
5524 */
5525 orig_defn_macro = current_kboard->defining_kbd_macro;
5526 current_kboard->defining_kbd_macro = Qnil;
5527 do
5528 obj = read_char (commandflag, 0, 0, Qnil, 0);
5529 while (BUFFERP (obj));
5530 current_kboard->defining_kbd_macro = orig_defn_macro;
5531
5532 if (!INTEGERP (obj))
5533 return obj;
5534 else
5535 ch = XINT (obj);
5536
5537 if (! EQ (obj, menu_prompt_more_char)
5538 && (!INTEGERP (menu_prompt_more_char)
5539 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
5540 {
5541 if (!NILP (current_kboard->defining_kbd_macro))
5542 store_kbd_macro_char (obj);
5543 return obj;
5544 }
5545 /* Help char - go round again */
5546 }
5547 }
5548 \f
5549 /* Reading key sequences. */
5550
5551 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
5552 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
5553 keymap, or nil otherwise. Return the index of the first keymap in
5554 which KEY has any binding, or NMAPS if no map has a binding.
5555
5556 If KEY is a meta ASCII character, treat it like meta-prefix-char
5557 followed by the corresponding non-meta character. Keymaps in
5558 CURRENT with non-prefix bindings for meta-prefix-char become nil in
5559 NEXT.
5560
5561 If KEY has no bindings in any of the CURRENT maps, NEXT is left
5562 unmodified.
5563
5564 NEXT may be the same array as CURRENT. */
5565
5566 static int
5567 follow_key (key, nmaps, current, defs, next)
5568 Lisp_Object key;
5569 Lisp_Object *current, *defs, *next;
5570 int nmaps;
5571 {
5572 int i, first_binding;
5573 int did_meta = 0;
5574
5575 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
5576 followed by the corresponding non-meta character.
5577 Put the results into DEFS, since we are going to alter that anyway.
5578 Do not alter CURRENT or NEXT. */
5579 if (INTEGERP (key) && (XINT (key) & CHAR_META))
5580 {
5581 for (i = 0; i < nmaps; i++)
5582 if (! NILP (current[i]))
5583 {
5584 Lisp_Object def;
5585 def = get_keyelt (access_keymap (current[i],
5586 meta_prefix_char, 1, 0));
5587
5588 /* Note that since we pass the resulting bindings through
5589 get_keymap_1, non-prefix bindings for meta-prefix-char
5590 disappear. */
5591 defs[i] = get_keymap_1 (def, 0, 1);
5592 }
5593 else
5594 defs[i] = Qnil;
5595
5596 did_meta = 1;
5597 XSETINT (key, XFASTINT (key) & ~CHAR_META);
5598 }
5599
5600 first_binding = nmaps;
5601 for (i = nmaps - 1; i >= 0; i--)
5602 {
5603 if (! NILP (current[i]))
5604 {
5605 Lisp_Object map;
5606 if (did_meta)
5607 map = defs[i];
5608 else
5609 map = current[i];
5610
5611 defs[i] = get_keyelt (access_keymap (map, key, 1, 0));
5612 if (! NILP (defs[i]))
5613 first_binding = i;
5614 }
5615 else
5616 defs[i] = Qnil;
5617 }
5618
5619 /* Given the set of bindings we've found, produce the next set of maps. */
5620 if (first_binding < nmaps)
5621 for (i = 0; i < nmaps; i++)
5622 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
5623
5624 return first_binding;
5625 }
5626
5627 /* Read a sequence of keys that ends with a non prefix character,
5628 storing it in KEYBUF, a buffer of size BUFSIZE.
5629 Prompt with PROMPT.
5630 Return the length of the key sequence stored.
5631 Return -1 if the user rejected a command menu.
5632
5633 Echo starting immediately unless `prompt' is 0.
5634
5635 Where a key sequence ends depends on the currently active keymaps.
5636 These include any minor mode keymaps active in the current buffer,
5637 the current buffer's local map, and the global map.
5638
5639 If a key sequence has no other bindings, we check Vfunction_key_map
5640 to see if some trailing subsequence might be the beginning of a
5641 function key's sequence. If so, we try to read the whole function
5642 key, and substitute its symbolic name into the key sequence.
5643
5644 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
5645 `double-' events into similar click events, if that would make them
5646 bound. We try to turn `triple-' events first into `double-' events,
5647 then into clicks.
5648
5649 If we get a mouse click in a mode line, vertical divider, or other
5650 non-text area, we treat the click as if it were prefixed by the
5651 symbol denoting that area - `mode-line', `vertical-line', or
5652 whatever.
5653
5654 If the sequence starts with a mouse click, we read the key sequence
5655 with respect to the buffer clicked on, not the current buffer.
5656
5657 If the user switches frames in the midst of a key sequence, we put
5658 off the switch-frame event until later; the next call to
5659 read_char will return it. */
5660
5661 static int
5662 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
5663 can_return_switch_frame)
5664 Lisp_Object *keybuf;
5665 int bufsize;
5666 Lisp_Object prompt;
5667 int dont_downcase_last;
5668 int can_return_switch_frame;
5669 {
5670 int count = specpdl_ptr - specpdl;
5671
5672 /* How many keys there are in the current key sequence. */
5673 int t;
5674
5675 /* The length of the echo buffer when we started reading, and
5676 the length of this_command_keys when we started reading. */
5677 int echo_start;
5678 int keys_start;
5679
5680 /* The number of keymaps we're scanning right now, and the number of
5681 keymaps we have allocated space for. */
5682 int nmaps;
5683 int nmaps_allocated = 0;
5684
5685 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
5686 the current keymaps. */
5687 Lisp_Object *defs;
5688
5689 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
5690 in the current keymaps, or nil where it is not a prefix. */
5691 Lisp_Object *submaps;
5692
5693 /* The local map to start out with at start of key sequence. */
5694 Lisp_Object orig_local_map;
5695
5696 /* 1 if we have already considered switching to the local-map property
5697 of the place where a mouse click occurred. */
5698 int localized_local_map = 0;
5699
5700 /* The index in defs[] of the first keymap that has a binding for
5701 this key sequence. In other words, the lowest i such that
5702 defs[i] is non-nil. */
5703 int first_binding;
5704
5705 /* If t < mock_input, then KEYBUF[t] should be read as the next
5706 input key.
5707
5708 We use this to recover after recognizing a function key. Once we
5709 realize that a suffix of the current key sequence is actually a
5710 function key's escape sequence, we replace the suffix with the
5711 function key's binding from Vfunction_key_map. Now keybuf
5712 contains a new and different key sequence, so the echo area,
5713 this_command_keys, and the submaps and defs arrays are wrong. In
5714 this situation, we set mock_input to t, set t to 0, and jump to
5715 restart_sequence; the loop will read keys from keybuf up until
5716 mock_input, thus rebuilding the state; and then it will resume
5717 reading characters from the keyboard. */
5718 int mock_input = 0;
5719
5720 /* If the sequence is unbound in submaps[], then
5721 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
5722 and fkey_map is its binding.
5723
5724 These might be > t, indicating that all function key scanning
5725 should hold off until t reaches them. We do this when we've just
5726 recognized a function key, to avoid searching for the function
5727 key's again in Vfunction_key_map. */
5728 int fkey_start = 0, fkey_end = 0;
5729 Lisp_Object fkey_map;
5730
5731 /* Likewise, for key_translation_map. */
5732 int keytran_start = 0, keytran_end = 0;
5733 Lisp_Object keytran_map;
5734
5735 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
5736 we put it off for later. While we're reading, we keep the event here. */
5737 Lisp_Object delayed_switch_frame;
5738
5739 /* See the comment below... */
5740 #if defined (GOBBLE_FIRST_EVENT)
5741 Lisp_Object first_event;
5742 #endif
5743
5744 Lisp_Object original_uppercase;
5745 int original_uppercase_position = -1;
5746
5747 /* Gets around Microsoft compiler limitations. */
5748 int dummyflag = 0;
5749
5750 struct buffer *starting_buffer;
5751
5752 /* Nonzero if we seem to have got the beginning of a binding
5753 in function_key_map. */
5754 int function_key_possible = 0;
5755 int key_translation_possible = 0;
5756
5757 /* Save the status of key translation before each step,
5758 so that we can restore this after downcasing. */
5759 Lisp_Object prev_fkey_map;
5760 Lisp_Object prev_fkey_start;
5761 Lisp_Object prev_fkey_end;
5762
5763 Lisp_Object prev_keytran_map;
5764 Lisp_Object prev_keytran_start;
5765 Lisp_Object prev_keytran_end;
5766
5767 int junk;
5768
5769 last_nonmenu_event = Qnil;
5770
5771 delayed_switch_frame = Qnil;
5772 fkey_map = Vfunction_key_map;
5773 keytran_map = Vkey_translation_map;
5774
5775 /* If there is no function-key-map, turn off function key scanning. */
5776 if (NILP (Fkeymapp (Vfunction_key_map)))
5777 fkey_start = fkey_end = bufsize + 1;
5778
5779 /* If there is no key-translation-map, turn off scanning. */
5780 if (NILP (Fkeymapp (Vkey_translation_map)))
5781 keytran_start = keytran_end = bufsize + 1;
5782
5783 if (INTERACTIVE)
5784 {
5785 if (!NILP (prompt))
5786 echo_prompt (XSTRING (prompt)->data);
5787 else if (cursor_in_echo_area && echo_keystrokes)
5788 /* This doesn't put in a dash if the echo buffer is empty, so
5789 you don't always see a dash hanging out in the minibuffer. */
5790 echo_dash ();
5791 }
5792
5793 /* Record the initial state of the echo area and this_command_keys;
5794 we will need to restore them if we replay a key sequence. */
5795 if (INTERACTIVE)
5796 echo_start = echo_length ();
5797 keys_start = this_command_key_count;
5798
5799 #if defined (GOBBLE_FIRST_EVENT)
5800 /* This doesn't quite work, because some of the things that read_char
5801 does cannot safely be bypassed. It seems too risky to try to make
5802 this work right. */
5803
5804 /* Read the first char of the sequence specially, before setting
5805 up any keymaps, in case a filter runs and switches buffers on us. */
5806 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
5807 &junk);
5808 #endif /* GOBBLE_FIRST_EVENT */
5809
5810 orig_local_map = get_local_map (PT, current_buffer);
5811
5812 /* We jump here when the key sequence has been thoroughly changed, and
5813 we need to rescan it starting from the beginning. When we jump here,
5814 keybuf[0..mock_input] holds the sequence we should reread. */
5815 replay_sequence:
5816
5817 starting_buffer = current_buffer;
5818 function_key_possible = 0;
5819 key_translation_possible = 0;
5820
5821 /* Build our list of keymaps.
5822 If we recognize a function key and replace its escape sequence in
5823 keybuf with its symbol, or if the sequence starts with a mouse
5824 click and we need to switch buffers, we jump back here to rebuild
5825 the initial keymaps from the current buffer. */
5826 {
5827 Lisp_Object *maps;
5828
5829 if (!NILP (current_kboard->Voverriding_terminal_local_map)
5830 || !NILP (Voverriding_local_map))
5831 {
5832 if (3 > nmaps_allocated)
5833 {
5834 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
5835 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
5836 nmaps_allocated = 3;
5837 }
5838 nmaps = 0;
5839 if (!NILP (current_kboard->Voverriding_terminal_local_map))
5840 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
5841 if (!NILP (Voverriding_local_map))
5842 submaps[nmaps++] = Voverriding_local_map;
5843 }
5844 else
5845 {
5846 nmaps = current_minor_maps (0, &maps);
5847 if (nmaps + 2 > nmaps_allocated)
5848 {
5849 submaps = (Lisp_Object *) alloca ((nmaps+2) * sizeof (submaps[0]));
5850 defs = (Lisp_Object *) alloca ((nmaps+2) * sizeof (defs[0]));
5851 nmaps_allocated = nmaps + 2;
5852 }
5853 bcopy (maps, submaps, nmaps * sizeof (submaps[0]));
5854 #ifdef USE_TEXT_PROPERTIES
5855 submaps[nmaps++] = orig_local_map;
5856 #else
5857 submaps[nmaps++] = current_buffer->keymap;
5858 #endif
5859 }
5860 submaps[nmaps++] = current_global_map;
5861 }
5862
5863 /* Find an accurate initial value for first_binding. */
5864 for (first_binding = 0; first_binding < nmaps; first_binding++)
5865 if (! NILP (submaps[first_binding]))
5866 break;
5867
5868 /* Start from the beginning in keybuf. */
5869 t = 0;
5870
5871 /* These are no-ops the first time through, but if we restart, they
5872 revert the echo area and this_command_keys to their original state. */
5873 this_command_key_count = keys_start;
5874 if (INTERACTIVE && t < mock_input)
5875 echo_truncate (echo_start);
5876
5877 /* If the best binding for the current key sequence is a keymap, or
5878 we may be looking at a function key's escape sequence, keep on
5879 reading. */
5880 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
5881 || (first_binding >= nmaps
5882 && fkey_start < t
5883 /* mock input is never part of a function key's sequence. */
5884 && mock_input <= fkey_start)
5885 || (first_binding >= nmaps
5886 && keytran_start < t && key_translation_possible)
5887 /* Don't return in the middle of a possible function key sequence,
5888 if the only bindings we found were via case conversion.
5889 Thus, if ESC O a has a function-key-map translation
5890 and ESC o has a binding, don't return after ESC O,
5891 so that we can translate ESC O plus the next character. */
5892 )
5893 {
5894 Lisp_Object key;
5895 int used_mouse_menu = 0;
5896
5897 /* Where the last real key started. If we need to throw away a
5898 key that has expanded into more than one element of keybuf
5899 (say, a mouse click on the mode line which is being treated
5900 as [mode-line (mouse-...)], then we backtrack to this point
5901 of keybuf. */
5902 int last_real_key_start;
5903
5904 /* These variables are analogous to echo_start and keys_start;
5905 while those allow us to restart the entire key sequence,
5906 echo_local_start and keys_local_start allow us to throw away
5907 just one key. */
5908 int echo_local_start, keys_local_start, local_first_binding;
5909
5910 if (t >= bufsize)
5911 error ("Key sequence too long");
5912
5913 if (INTERACTIVE)
5914 echo_local_start = echo_length ();
5915 keys_local_start = this_command_key_count;
5916 local_first_binding = first_binding;
5917
5918 replay_key:
5919 /* These are no-ops, unless we throw away a keystroke below and
5920 jumped back up to replay_key; in that case, these restore the
5921 variables to their original state, allowing us to replay the
5922 loop. */
5923 if (INTERACTIVE && t < mock_input)
5924 echo_truncate (echo_local_start);
5925 this_command_key_count = keys_local_start;
5926 first_binding = local_first_binding;
5927
5928 /* By default, assume each event is "real". */
5929 last_real_key_start = t;
5930
5931 /* Does mock_input indicate that we are re-reading a key sequence? */
5932 if (t < mock_input)
5933 {
5934 key = keybuf[t];
5935 add_command_key (key);
5936 if (echo_keystrokes)
5937 echo_char (key);
5938 }
5939
5940 /* If not, we should actually read a character. */
5941 else
5942 {
5943 struct buffer *buf = current_buffer;
5944
5945 {
5946 #ifdef MULTI_KBOARD
5947 KBOARD *interrupted_kboard = current_kboard;
5948 struct frame *interrupted_frame = selected_frame;
5949 if (setjmp (wrong_kboard_jmpbuf))
5950 {
5951 if (!NILP (delayed_switch_frame))
5952 {
5953 interrupted_kboard->kbd_queue
5954 = Fcons (delayed_switch_frame,
5955 interrupted_kboard->kbd_queue);
5956 delayed_switch_frame = Qnil;
5957 }
5958 while (t > 0)
5959 interrupted_kboard->kbd_queue
5960 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
5961
5962 /* If the side queue is non-empty, ensure it begins with a
5963 switch-frame, so we'll replay it in the right context. */
5964 if (CONSP (interrupted_kboard->kbd_queue)
5965 && (key = XCONS (interrupted_kboard->kbd_queue)->car,
5966 !(EVENT_HAS_PARAMETERS (key)
5967 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
5968 Qswitch_frame))))
5969 {
5970 Lisp_Object frame;
5971 XSETFRAME (frame, interrupted_frame);
5972 interrupted_kboard->kbd_queue
5973 = Fcons (make_lispy_switch_frame (frame),
5974 interrupted_kboard->kbd_queue);
5975 }
5976 mock_input = 0;
5977 orig_local_map = get_local_map (PT, current_buffer);
5978 goto replay_sequence;
5979 }
5980 #endif
5981 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event,
5982 &used_mouse_menu);
5983 }
5984
5985 /* read_char returns t when it shows a menu and the user rejects it.
5986 Just return -1. */
5987 if (EQ (key, Qt))
5988 return -1;
5989
5990 /* read_char returns -1 at the end of a macro.
5991 Emacs 18 handles this by returning immediately with a
5992 zero, so that's what we'll do. */
5993 if (INTEGERP (key) && XINT (key) == -1)
5994 {
5995 t = 0;
5996 /* The Microsoft C compiler can't handle the goto that
5997 would go here. */
5998 dummyflag = 1;
5999 break;
6000 }
6001
6002 /* If the current buffer has been changed from under us, the
6003 keymap may have changed, so replay the sequence. */
6004 if (BUFFERP (key))
6005 {
6006 mock_input = t;
6007 orig_local_map = get_local_map (PT, current_buffer);
6008 goto replay_sequence;
6009 }
6010
6011 /* If we have a quit that was typed in another frame, and
6012 quit_throw_to_read_char switched buffers,
6013 replay to get the right keymap. */
6014 if (XINT (key) == quit_char && current_buffer != starting_buffer)
6015 {
6016 keybuf[t++] = key;
6017 mock_input = t;
6018 Vquit_flag = Qnil;
6019 orig_local_map = get_local_map (PT, current_buffer);
6020 goto replay_sequence;
6021 }
6022
6023 Vquit_flag = Qnil;
6024 }
6025
6026 /* Clicks in non-text areas get prefixed by the symbol
6027 in their CHAR-ADDRESS field. For example, a click on
6028 the mode line is prefixed by the symbol `mode-line'.
6029
6030 Furthermore, key sequences beginning with mouse clicks
6031 are read using the keymaps of the buffer clicked on, not
6032 the current buffer. So we may have to switch the buffer
6033 here.
6034
6035 When we turn one event into two events, we must make sure
6036 that neither of the two looks like the original--so that,
6037 if we replay the events, they won't be expanded again.
6038 If not for this, such reexpansion could happen either here
6039 or when user programs play with this-command-keys. */
6040 if (EVENT_HAS_PARAMETERS (key))
6041 {
6042 Lisp_Object kind;
6043
6044 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
6045 if (EQ (kind, Qmouse_click))
6046 {
6047 Lisp_Object window, posn;
6048
6049 window = POSN_WINDOW (EVENT_START (key));
6050 posn = POSN_BUFFER_POSN (EVENT_START (key));
6051 if (CONSP (posn))
6052 {
6053 /* We're looking at the second event of a
6054 sequence which we expanded before. Set
6055 last_real_key_start appropriately. */
6056 if (t > 0)
6057 last_real_key_start = t - 1;
6058 }
6059
6060 /* Key sequences beginning with mouse clicks are
6061 read using the keymaps in the buffer clicked on,
6062 not the current buffer. If we're at the
6063 beginning of a key sequence, switch buffers. */
6064 if (last_real_key_start == 0
6065 && WINDOWP (window)
6066 && BUFFERP (XWINDOW (window)->buffer)
6067 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
6068 {
6069 keybuf[t] = key;
6070 mock_input = t + 1;
6071
6072 /* Arrange to go back to the original buffer once we're
6073 done reading the key sequence. Note that we can't
6074 use save_excursion_{save,restore} here, because they
6075 save point as well as the current buffer; we don't
6076 want to save point, because redisplay may change it,
6077 to accommodate a Fset_window_start or something. We
6078 don't want to do this at the top of the function,
6079 because we may get input from a subprocess which
6080 wants to change the selected window and stuff (say,
6081 emacsclient). */
6082 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
6083
6084 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
6085 orig_local_map = get_local_map (PT, current_buffer);
6086 goto replay_sequence;
6087 }
6088 /* For a mouse click, get the local text-property keymap
6089 of the place clicked on, rather than point. */
6090 if (last_real_key_start == 0 && CONSP (XCONS (key)->cdr)
6091 && ! localized_local_map)
6092 {
6093 Lisp_Object map_here, start, pos;
6094
6095 localized_local_map = 1;
6096 start = EVENT_START (key);
6097 if (CONSP (start) && CONSP (XCONS (start)->cdr))
6098 {
6099 pos = POSN_BUFFER_POSN (start);
6100 if (INTEGERP (pos)
6101 && XINT (pos) >= BEG && XINT (pos) <= Z)
6102 {
6103 map_here = get_local_map (XINT (pos), current_buffer);
6104 if (!EQ (map_here, orig_local_map))
6105 {
6106 orig_local_map = map_here;
6107 keybuf[t] = key;
6108 mock_input = t + 1;
6109
6110 goto replay_sequence;
6111 }
6112 }
6113 }
6114 }
6115
6116 /* Expand mode-line and scroll-bar events into two events:
6117 use posn as a fake prefix key. */
6118 if (SYMBOLP (posn))
6119 {
6120 if (t + 1 >= bufsize)
6121 error ("Key sequence too long");
6122 keybuf[t] = posn;
6123 keybuf[t+1] = key;
6124 mock_input = t + 2;
6125
6126 /* Zap the position in key, so we know that we've
6127 expanded it, and don't try to do so again. */
6128 POSN_BUFFER_POSN (EVENT_START (key))
6129 = Fcons (posn, Qnil);
6130 goto replay_key;
6131 }
6132 }
6133 else if (EQ (kind, Qswitch_frame))
6134 {
6135 /* If we're at the beginning of a key sequence, and the caller
6136 says it's okay, go ahead and return this event. If we're
6137 in the midst of a key sequence, delay it until the end. */
6138 if (t > 0 || !can_return_switch_frame)
6139 {
6140 delayed_switch_frame = key;
6141 goto replay_key;
6142 }
6143 }
6144 else if (CONSP (XCONS (key)->cdr)
6145 && CONSP (EVENT_START (key))
6146 && CONSP (XCONS (EVENT_START (key))->cdr))
6147 {
6148 Lisp_Object posn;
6149
6150 posn = POSN_BUFFER_POSN (EVENT_START (key));
6151 /* Handle menu-bar events:
6152 insert the dummy prefix event `menu-bar'. */
6153 if (EQ (posn, Qmenu_bar))
6154 {
6155 if (t + 1 >= bufsize)
6156 error ("Key sequence too long");
6157 keybuf[t] = posn;
6158 keybuf[t+1] = key;
6159
6160 /* Zap the position in key, so we know that we've
6161 expanded it, and don't try to do so again. */
6162 POSN_BUFFER_POSN (EVENT_START (key))
6163 = Fcons (posn, Qnil);
6164
6165 mock_input = t + 2;
6166 goto replay_sequence;
6167 }
6168 else if (CONSP (posn))
6169 {
6170 /* We're looking at the second event of a
6171 sequence which we expanded before. Set
6172 last_real_key_start appropriately. */
6173 if (last_real_key_start == t && t > 0)
6174 last_real_key_start = t - 1;
6175 }
6176 }
6177 }
6178
6179 /* We have finally decided that KEY is something we might want
6180 to look up. */
6181 first_binding = (follow_key (key,
6182 nmaps - first_binding,
6183 submaps + first_binding,
6184 defs + first_binding,
6185 submaps + first_binding)
6186 + first_binding);
6187
6188 /* If KEY wasn't bound, we'll try some fallbacks. */
6189 if (first_binding >= nmaps)
6190 {
6191 Lisp_Object head;
6192
6193 head = EVENT_HEAD (key);
6194 if (help_char_p (head) && t > 0)
6195 {
6196 read_key_sequence_cmd = Vprefix_help_command;
6197 keybuf[t++] = key;
6198 last_nonmenu_event = key;
6199 /* The Microsoft C compiler can't handle the goto that
6200 would go here. */
6201 dummyflag = 1;
6202 break;
6203 }
6204
6205 if (SYMBOLP (head))
6206 {
6207 Lisp_Object breakdown;
6208 int modifiers;
6209
6210 breakdown = parse_modifiers (head);
6211 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
6212 /* Attempt to reduce an unbound mouse event to a simpler
6213 event that is bound:
6214 Drags reduce to clicks.
6215 Double-clicks reduce to clicks.
6216 Triple-clicks reduce to double-clicks, then to clicks.
6217 Down-clicks are eliminated.
6218 Double-downs reduce to downs, then are eliminated.
6219 Triple-downs reduce to double-downs, then to downs,
6220 then are eliminated. */
6221 if (modifiers & (down_modifier | drag_modifier
6222 | double_modifier | triple_modifier))
6223 {
6224 while (modifiers & (down_modifier | drag_modifier
6225 | double_modifier | triple_modifier))
6226 {
6227 Lisp_Object new_head, new_click;
6228 if (modifiers & triple_modifier)
6229 modifiers ^= (double_modifier | triple_modifier);
6230 else if (modifiers & double_modifier)
6231 modifiers &= ~double_modifier;
6232 else if (modifiers & drag_modifier)
6233 modifiers &= ~drag_modifier;
6234 else
6235 {
6236 /* Dispose of this `down' event by simply jumping
6237 back to replay_key, to get another event.
6238
6239 Note that if this event came from mock input,
6240 then just jumping back to replay_key will just
6241 hand it to us again. So we have to wipe out any
6242 mock input.
6243
6244 We could delete keybuf[t] and shift everything
6245 after that to the left by one spot, but we'd also
6246 have to fix up any variable that points into
6247 keybuf, and shifting isn't really necessary
6248 anyway.
6249
6250 Adding prefixes for non-textual mouse clicks
6251 creates two characters of mock input, and both
6252 must be thrown away. If we're only looking at
6253 the prefix now, we can just jump back to
6254 replay_key. On the other hand, if we've already
6255 processed the prefix, and now the actual click
6256 itself is giving us trouble, then we've lost the
6257 state of the keymaps we want to backtrack to, and
6258 we need to replay the whole sequence to rebuild
6259 it.
6260
6261 Beyond that, only function key expansion could
6262 create more than two keys, but that should never
6263 generate mouse events, so it's okay to zero
6264 mock_input in that case too.
6265
6266 Isn't this just the most wonderful code ever? */
6267 if (t == last_real_key_start)
6268 {
6269 mock_input = 0;
6270 goto replay_key;
6271 }
6272 else
6273 {
6274 mock_input = last_real_key_start;
6275 goto replay_sequence;
6276 }
6277 }
6278
6279 new_head
6280 = apply_modifiers (modifiers, XCONS (breakdown)->car);
6281 new_click
6282 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
6283
6284 /* Look for a binding for this new key. follow_key
6285 promises that it didn't munge submaps the
6286 last time we called it, since key was unbound. */
6287 first_binding
6288 = (follow_key (new_click,
6289 nmaps - local_first_binding,
6290 submaps + local_first_binding,
6291 defs + local_first_binding,
6292 submaps + local_first_binding)
6293 + local_first_binding);
6294
6295 /* If that click is bound, go for it. */
6296 if (first_binding < nmaps)
6297 {
6298 key = new_click;
6299 break;
6300 }
6301 /* Otherwise, we'll leave key set to the drag event. */
6302 }
6303 }
6304 }
6305 }
6306
6307 keybuf[t++] = key;
6308 /* Normally, last_nonmenu_event gets the previous key we read.
6309 But when a mouse popup menu is being used,
6310 we don't update last_nonmenu_event; it continues to hold the mouse
6311 event that preceded the first level of menu. */
6312 if (!used_mouse_menu)
6313 last_nonmenu_event = key;
6314
6315 prev_fkey_map = fkey_map;
6316 prev_fkey_start = fkey_start;
6317 prev_fkey_end = fkey_end;
6318
6319 prev_keytran_map = keytran_map;
6320 prev_keytran_start = keytran_start;
6321 prev_keytran_end = keytran_end;
6322
6323 /* If the sequence is unbound, see if we can hang a function key
6324 off the end of it. We only want to scan real keyboard input
6325 for function key sequences, so if mock_input says that we're
6326 re-reading old events, don't examine it. */
6327 if (first_binding >= nmaps
6328 && t >= mock_input)
6329 {
6330 Lisp_Object fkey_next;
6331
6332 /* Continue scan from fkey_end until we find a bound suffix.
6333 If we fail, increment fkey_start
6334 and start fkey_end from there. */
6335 while (fkey_end < t)
6336 {
6337 Lisp_Object key;
6338
6339 key = keybuf[fkey_end++];
6340 /* Look up meta-characters by prefixing them
6341 with meta_prefix_char. I hate this. */
6342 if (INTEGERP (key) && XINT (key) & meta_modifier)
6343 {
6344 fkey_next
6345 = get_keymap_1
6346 (get_keyelt
6347 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
6348 0, 1);
6349 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
6350 }
6351 else
6352 fkey_next = fkey_map;
6353
6354 fkey_next
6355 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
6356
6357 #if 0 /* I didn't turn this on, because it might cause trouble
6358 for the mapping of return into C-m and tab into C-i. */
6359 /* Optionally don't map function keys into other things.
6360 This enables the user to redefine kp- keys easily. */
6361 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
6362 fkey_next = Qnil;
6363 #endif
6364
6365 /* If the function key map gives a function, not an
6366 array, then call the function with no args and use
6367 its value instead. */
6368 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
6369 && fkey_end == t)
6370 {
6371 struct gcpro gcpro1, gcpro2, gcpro3;
6372 Lisp_Object tem;
6373 tem = fkey_next;
6374
6375 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
6376 fkey_next = call1 (fkey_next, prompt);
6377 UNGCPRO;
6378 /* If the function returned something invalid,
6379 barf--don't ignore it.
6380 (To ignore it safely, we would need to gcpro a bunch of
6381 other variables.) */
6382 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
6383 error ("Function in function-key-map returns invalid key sequence");
6384 }
6385
6386 function_key_possible = ! NILP (fkey_next);
6387
6388 /* If keybuf[fkey_start..fkey_end] is bound in the
6389 function key map and it's a suffix of the current
6390 sequence (i.e. fkey_end == t), replace it with
6391 the binding and restart with fkey_start at the end. */
6392 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
6393 && fkey_end == t)
6394 {
6395 int len = XFASTINT (Flength (fkey_next));
6396
6397 t = fkey_start + len;
6398 if (t >= bufsize)
6399 error ("Key sequence too long");
6400
6401 if (VECTORP (fkey_next))
6402 bcopy (XVECTOR (fkey_next)->contents,
6403 keybuf + fkey_start,
6404 (t - fkey_start) * sizeof (keybuf[0]));
6405 else if (STRINGP (fkey_next))
6406 {
6407 int i;
6408
6409 for (i = 0; i < len; i++)
6410 XSETFASTINT (keybuf[fkey_start + i],
6411 XSTRING (fkey_next)->data[i]);
6412 }
6413
6414 mock_input = t;
6415 fkey_start = fkey_end = t;
6416 fkey_map = Vfunction_key_map;
6417
6418 /* Do pass the results through key-translation-map. */
6419 keytran_start = keytran_end = 0;
6420 keytran_map = Vkey_translation_map;
6421
6422 goto replay_sequence;
6423 }
6424
6425 fkey_map = get_keymap_1 (fkey_next, 0, 1);
6426
6427 /* If we no longer have a bound suffix, try a new positions for
6428 fkey_start. */
6429 if (NILP (fkey_map))
6430 {
6431 fkey_end = ++fkey_start;
6432 fkey_map = Vfunction_key_map;
6433 function_key_possible = 0;
6434 }
6435 }
6436 }
6437
6438 /* Look for this sequence in key-translation-map. */
6439 {
6440 Lisp_Object keytran_next;
6441
6442 /* Scan from keytran_end until we find a bound suffix. */
6443 while (keytran_end < t)
6444 {
6445 Lisp_Object key;
6446
6447 key = keybuf[keytran_end++];
6448 /* Look up meta-characters by prefixing them
6449 with meta_prefix_char. I hate this. */
6450 if (INTEGERP (key) && XINT (key) & meta_modifier)
6451 {
6452 keytran_next
6453 = get_keymap_1
6454 (get_keyelt
6455 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
6456 0, 1);
6457 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
6458 }
6459 else
6460 keytran_next = keytran_map;
6461
6462 keytran_next
6463 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
6464
6465 /* If the key translation map gives a function, not an
6466 array, then call the function with no args and use
6467 its value instead. */
6468 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
6469 && keytran_end == t)
6470 {
6471 struct gcpro gcpro1, gcpro2, gcpro3;
6472 Lisp_Object tem;
6473 tem = keytran_next;
6474
6475 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
6476 keytran_next = call1 (keytran_next, prompt);
6477 UNGCPRO;
6478 /* If the function returned something invalid,
6479 barf--don't ignore it.
6480 (To ignore it safely, we would need to gcpro a bunch of
6481 other variables.) */
6482 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
6483 error ("Function in key-translation-map returns invalid key sequence");
6484 }
6485
6486 key_translation_possible = ! NILP (keytran_next);
6487
6488 /* If keybuf[keytran_start..keytran_end] is bound in the
6489 key translation map and it's a suffix of the current
6490 sequence (i.e. keytran_end == t), replace it with
6491 the binding and restart with keytran_start at the end. */
6492 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
6493 && keytran_end == t)
6494 {
6495 int len = XFASTINT (Flength (keytran_next));
6496
6497 t = keytran_start + len;
6498 if (t >= bufsize)
6499 error ("Key sequence too long");
6500
6501 if (VECTORP (keytran_next))
6502 bcopy (XVECTOR (keytran_next)->contents,
6503 keybuf + keytran_start,
6504 (t - keytran_start) * sizeof (keybuf[0]));
6505 else if (STRINGP (keytran_next))
6506 {
6507 int i;
6508
6509 for (i = 0; i < len; i++)
6510 XSETFASTINT (keybuf[keytran_start + i],
6511 XSTRING (keytran_next)->data[i]);
6512 }
6513
6514 mock_input = t;
6515 keytran_start = keytran_end = t;
6516 keytran_map = Vkey_translation_map;
6517
6518 /* Don't pass the results of key-translation-map
6519 through function-key-map. */
6520 fkey_start = fkey_end = t;
6521 fkey_map = Vkey_translation_map;
6522
6523 goto replay_sequence;
6524 }
6525
6526 keytran_map = get_keymap_1 (keytran_next, 0, 1);
6527
6528 /* If we no longer have a bound suffix, try a new positions for
6529 keytran_start. */
6530 if (NILP (keytran_map))
6531 {
6532 keytran_end = ++keytran_start;
6533 keytran_map = Vkey_translation_map;
6534 key_translation_possible = 0;
6535 }
6536 }
6537 }
6538
6539 /* If KEY is not defined in any of the keymaps,
6540 and cannot be part of a function key or translation,
6541 and is an upper case letter
6542 use the corresponding lower-case letter instead. */
6543 if (first_binding == nmaps && ! function_key_possible
6544 && ! key_translation_possible
6545 && INTEGERP (key)
6546 && ((((XINT (key) & 0x3ffff)
6547 < XSTRING (current_buffer->downcase_table)->size)
6548 && UPPERCASEP (XINT (key) & 0x3ffff))
6549 || (XINT (key) & shift_modifier)))
6550 {
6551 Lisp_Object new_key;
6552
6553 original_uppercase = key;
6554 original_uppercase_position = t - 1;
6555
6556 if (XINT (new_key) & shift_modifier)
6557 XSETINT (new_key, XINT (key) & ~shift_modifier);
6558 else
6559 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
6560 | (XINT (key) & ~0x3ffff)));
6561
6562 /* We have to do this unconditionally, regardless of whether
6563 the lower-case char is defined in the keymaps, because they
6564 might get translated through function-key-map. */
6565 keybuf[t - 1] = new_key;
6566 mock_input = t;
6567
6568 fkey_map = prev_fkey_map;
6569 fkey_start = prev_fkey_start;
6570 fkey_end = prev_fkey_end;
6571
6572 keytran_map = prev_keytran_map;
6573 keytran_start = prev_keytran_start;
6574 keytran_end = prev_keytran_end;
6575
6576 goto replay_sequence;
6577 }
6578 /* If KEY is not defined in any of the keymaps,
6579 and cannot be part of a function key or translation,
6580 and is a shifted function key,
6581 use the corresponding unshifted function key instead. */
6582 if (first_binding == nmaps && ! function_key_possible
6583 && ! key_translation_possible
6584 && SYMBOLP (key))
6585 {
6586 Lisp_Object breakdown;
6587 int modifiers;
6588
6589 breakdown = parse_modifiers (key);
6590 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
6591 if (modifiers & shift_modifier)
6592 {
6593 Lisp_Object new_key;
6594
6595 original_uppercase = key;
6596 original_uppercase_position = t - 1;
6597
6598 modifiers &= ~shift_modifier;
6599 new_key = apply_modifiers (modifiers,
6600 XCONS (breakdown)->car);
6601
6602 keybuf[t - 1] = new_key;
6603 mock_input = t;
6604
6605 fkey_map = prev_fkey_map;
6606 fkey_start = prev_fkey_start;
6607 fkey_end = prev_fkey_end;
6608
6609 keytran_map = prev_keytran_map;
6610 keytran_start = prev_keytran_start;
6611 keytran_end = prev_keytran_end;
6612
6613 goto replay_sequence;
6614 }
6615 }
6616 }
6617
6618 if (!dummyflag)
6619 read_key_sequence_cmd = (first_binding < nmaps
6620 ? defs[first_binding]
6621 : Qnil);
6622
6623 unread_switch_frame = delayed_switch_frame;
6624 unbind_to (count, Qnil);
6625
6626 /* Don't downcase the last character if the caller says don't.
6627 Don't downcase it if the result is undefined, either. */
6628 if ((dont_downcase_last || first_binding >= nmaps)
6629 && t - 1 == original_uppercase_position)
6630 keybuf[t - 1] = original_uppercase;
6631
6632 /* Occasionally we fabricate events, perhaps by expanding something
6633 according to function-key-map, or by adding a prefix symbol to a
6634 mouse click in the scroll bar or modeline. In this cases, return
6635 the entire generated key sequence, even if we hit an unbound
6636 prefix or a definition before the end. This means that you will
6637 be able to push back the event properly, and also means that
6638 read-key-sequence will always return a logical unit.
6639
6640 Better ideas? */
6641 for (; t < mock_input; t++)
6642 {
6643 if (echo_keystrokes)
6644 echo_char (keybuf[t]);
6645 add_command_key (keybuf[t]);
6646 }
6647
6648 return t;
6649 }
6650
6651 #if 0 /* This doc string is too long for some compilers.
6652 This commented-out definition serves for DOC. */
6653 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
6654 "Read a sequence of keystrokes and return as a string or vector.\n\
6655 The sequence is sufficient to specify a non-prefix command in the\n\
6656 current local and global maps.\n\
6657 \n\
6658 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
6659 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
6660 as a continuation of the previous key.\n\
6661 \n\
6662 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
6663 convert the last event to lower case. (Normally any upper case event\n\
6664 is converted to lower case if the original event is undefined and the lower\n\
6665 case equivalent is defined.) A non-nil value is appropriate for reading\n\
6666 a key sequence to be defined.\n\
6667 \n\
6668 A C-g typed while in this function is treated like any other character,\n\
6669 and `quit-flag' is not set.\n\
6670 \n\
6671 If the key sequence starts with a mouse click, then the sequence is read\n\
6672 using the keymaps of the buffer of the window clicked in, not the buffer\n\
6673 of the selected window as normal.\n\
6674 ""\n\
6675 `read-key-sequence' drops unbound button-down events, since you normally\n\
6676 only care about the click or drag events which follow them. If a drag\n\
6677 or multi-click event is unbound, but the corresponding click event would\n\
6678 be bound, `read-key-sequence' turns the event into a click event at the\n\
6679 drag's starting position. This means that you don't have to distinguish\n\
6680 between click and drag, double, or triple events unless you want to.\n\
6681 \n\
6682 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
6683 lines separating windows, and scroll bars with imaginary keys\n\
6684 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
6685 \n\
6686 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this\n\
6687 function will process a switch-frame event if the user switches frames\n\
6688 before typing anything. If the user switches frames in the middle of a\n\
6689 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME\n\
6690 is nil, then the event will be put off until after the current key sequence.\n\
6691 \n\
6692 `read-key-sequence' checks `function-key-map' for function key\n\
6693 sequences, where they wouldn't conflict with ordinary bindings. See\n\
6694 `function-key-map' for more details.")
6695 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
6696 #endif
6697
6698 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
6699 0)
6700 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
6701 Lisp_Object prompt, continue_echo, dont_downcase_last;
6702 Lisp_Object can_return_switch_frame;
6703 {
6704 Lisp_Object keybuf[30];
6705 register int i;
6706 struct gcpro gcpro1, gcpro2;
6707
6708 if (!NILP (prompt))
6709 CHECK_STRING (prompt, 0);
6710 QUIT;
6711
6712 bzero (keybuf, sizeof keybuf);
6713 GCPRO1 (keybuf[0]);
6714 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
6715
6716 if (NILP (continue_echo))
6717 this_command_key_count = 0;
6718
6719 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
6720 prompt, ! NILP (dont_downcase_last),
6721 ! NILP (can_return_switch_frame));
6722
6723 if (i == -1)
6724 {
6725 Vquit_flag = Qt;
6726 QUIT;
6727 }
6728 UNGCPRO;
6729 return make_event_array (i, keybuf);
6730 }
6731 \f
6732 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
6733 "Execute CMD as an editor command.\n\
6734 CMD must be a symbol that satisfies the `commandp' predicate.\n\
6735 Optional second arg RECORD-FLAG non-nil\n\
6736 means unconditionally put this command in `command-history'.\n\
6737 Otherwise, that is done only if an arg is read using the minibuffer.\n\
6738 The argument KEYS specifies the value to use instead of (this-command-keys)\n\
6739 when reading the arguments; if it is nil, (this_command_key_count) is used.\n\
6740 The argument SPECIAL, if non-nil, means that this command is executing\n\
6741 a special event, so ignore the prefix argument and don't clear it.")
6742 (cmd, record_flag, keys, special)
6743 Lisp_Object cmd, record_flag, keys, special;
6744 {
6745 register Lisp_Object final;
6746 register Lisp_Object tem;
6747 Lisp_Object prefixarg;
6748 struct backtrace backtrace;
6749 extern int debug_on_next_call;
6750
6751 debug_on_next_call = 0;
6752
6753 if (NILP (special))
6754 {
6755 prefixarg = current_kboard->Vprefix_arg;
6756 Vcurrent_prefix_arg = prefixarg;
6757 current_kboard->Vprefix_arg = Qnil;
6758 }
6759 else
6760 prefixarg = Qnil;
6761
6762 if (SYMBOLP (cmd))
6763 {
6764 tem = Fget (cmd, Qdisabled);
6765 if (!NILP (tem) && !NILP (Vrun_hooks))
6766 {
6767 tem = Fsymbol_value (Qdisabled_command_hook);
6768 if (!NILP (tem))
6769 return call1 (Vrun_hooks, Qdisabled_command_hook);
6770 }
6771 }
6772
6773 while (1)
6774 {
6775 final = Findirect_function (cmd);
6776
6777 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
6778 do_autoload (final, cmd);
6779 else
6780 break;
6781 }
6782
6783 if (STRINGP (final) || VECTORP (final))
6784 {
6785 /* If requested, place the macro in the command history. For
6786 other sorts of commands, call-interactively takes care of
6787 this. */
6788 if (!NILP (record_flag))
6789 Vcommand_history
6790 = Fcons (Fcons (Qexecute_kbd_macro,
6791 Fcons (final, Fcons (prefixarg, Qnil))),
6792 Vcommand_history);
6793
6794 return Fexecute_kbd_macro (final, prefixarg);
6795 }
6796 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
6797 {
6798 backtrace.next = backtrace_list;
6799 backtrace_list = &backtrace;
6800 backtrace.function = &Qcall_interactively;
6801 backtrace.args = &cmd;
6802 backtrace.nargs = 1;
6803 backtrace.evalargs = 0;
6804
6805 tem = Fcall_interactively (cmd, record_flag, keys);
6806
6807 backtrace_list = backtrace.next;
6808 return tem;
6809 }
6810 return Qnil;
6811 }
6812 \f
6813 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
6814 1, 1, "P",
6815 "Read function name, then read its arguments and call it.")
6816 (prefixarg)
6817 Lisp_Object prefixarg;
6818 {
6819 Lisp_Object function;
6820 char buf[40];
6821 Lisp_Object saved_keys;
6822 struct gcpro gcpro1;
6823
6824 saved_keys = Fvector (this_command_key_count,
6825 XVECTOR (this_command_keys)->contents);
6826 buf[0] = 0;
6827 GCPRO1 (saved_keys);
6828
6829 if (EQ (prefixarg, Qminus))
6830 strcpy (buf, "- ");
6831 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
6832 strcpy (buf, "C-u ");
6833 else if (CONSP (prefixarg) && INTEGERP (XCONS (prefixarg)->car))
6834 {
6835 if (sizeof (int) == sizeof (EMACS_INT))
6836 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
6837 else if (sizeof (long) == sizeof (EMACS_INT))
6838 sprintf (buf, "%ld ", XINT (XCONS (prefixarg)->car));
6839 else
6840 abort ();
6841 }
6842 else if (INTEGERP (prefixarg))
6843 {
6844 if (sizeof (int) == sizeof (EMACS_INT))
6845 sprintf (buf, "%d ", XINT (prefixarg));
6846 else if (sizeof (long) == sizeof (EMACS_INT))
6847 sprintf (buf, "%ld ", XINT (prefixarg));
6848 else
6849 abort ();
6850 }
6851
6852 /* This isn't strictly correct if execute-extended-command
6853 is bound to anything else. Perhaps it should use
6854 this_command_keys? */
6855 strcat (buf, "M-x ");
6856
6857 /* Prompt with buf, and then read a string, completing from and
6858 restricting to the set of all defined commands. Don't provide
6859 any initial input. Save the command read on the extended-command
6860 history list. */
6861 function = Fcompleting_read (build_string (buf),
6862 Vobarray, Qcommandp,
6863 Qt, Qnil, Qextended_command_history);
6864
6865 if (STRINGP (function) && XSTRING (function)->size == 0)
6866 error ("No command name given");
6867
6868 /* Set this_command_keys to the concatenation of saved_keys and
6869 function, followed by a RET. */
6870 {
6871 struct Lisp_String *str;
6872 Lisp_Object *keys;
6873 int i;
6874 Lisp_Object tem;
6875
6876 this_command_key_count = 0;
6877
6878 keys = XVECTOR (saved_keys)->contents;
6879 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
6880 add_command_key (keys[i]);
6881
6882 str = XSTRING (function);
6883 for (i = 0; i < str->size; i++)
6884 {
6885 XSETFASTINT (tem, str->data[i]);
6886 add_command_key (tem);
6887 }
6888
6889 XSETFASTINT (tem, '\015');
6890 add_command_key (tem);
6891 }
6892
6893 UNGCPRO;
6894
6895 function = Fintern (function, Qnil);
6896 current_kboard->Vprefix_arg = prefixarg;
6897 this_command = function;
6898
6899 /* If enabled, show which key runs this command. */
6900 if (!NILP (Vsuggest_key_bindings)
6901 && SYMBOLP (function))
6902 {
6903 Lisp_Object bindings;
6904
6905 bindings = Fwhere_is_internal (function, Voverriding_local_map,
6906 Qt, Qnil);
6907
6908 if (!NILP (bindings))
6909 {
6910 message ("You can run the command `%s' by typing %s",
6911 XSYMBOL (function)->name->data,
6912 XSTRING (Fkey_description (bindings))->data);
6913 Fsit_for ((NUMBERP (Vsuggest_key_bindings)
6914 ? Vsuggest_key_bindings : make_number (2)),
6915 Qnil, Qnil);
6916 }
6917 }
6918
6919 return Fcommand_execute (function, Qt, Qnil, Qnil);
6920 }
6921
6922 /* Find the set of keymaps now active.
6923 Store into *MAPS_P a vector holding the various maps
6924 and return the number of them. The vector was malloc'd
6925 and the caller should free it. */
6926
6927 int
6928 current_active_maps (maps_p)
6929 Lisp_Object **maps_p;
6930 {
6931 Lisp_Object *tmaps, *maps;
6932 int nmaps;
6933
6934 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6935 if (!NILP (Voverriding_local_map_menu_flag))
6936 {
6937 /* Yes, use them (if non-nil) as well as the global map. */
6938 maps = (Lisp_Object *) xmalloc (3 * sizeof (maps[0]));
6939 nmaps = 0;
6940 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6941 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6942 if (!NILP (Voverriding_local_map))
6943 maps[nmaps++] = Voverriding_local_map;
6944 }
6945 else
6946 {
6947 /* No, so use major and minor mode keymaps. */
6948 nmaps = current_minor_maps (NULL, &tmaps);
6949 maps = (Lisp_Object *) xmalloc ((nmaps + 2) * sizeof (maps[0]));
6950 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
6951 #ifdef USE_TEXT_PROPERTIES
6952 maps[nmaps++] = get_local_map (PT, current_buffer);
6953 #else
6954 maps[nmaps++] = current_buffer->keymap;
6955 #endif
6956 }
6957 maps[nmaps++] = current_global_map;
6958
6959 *maps_p = maps;
6960 return nmaps;
6961 }
6962 \f
6963 /* Return nonzero if input events are pending. */
6964
6965 detect_input_pending ()
6966 {
6967 if (!input_pending)
6968 get_input_pending (&input_pending, 0);
6969
6970 return input_pending;
6971 }
6972
6973 /* Return nonzero if input events are pending.
6974 Execute timers immediately; don't make events for them. */
6975
6976 detect_input_pending_run_timers (do_display)
6977 int do_display;
6978 {
6979 int old_timers_run = timers_run;
6980
6981 if (!input_pending)
6982 get_input_pending (&input_pending, 1);
6983
6984 if (old_timers_run != timers_run && do_display)
6985 redisplay_preserve_echo_area ();
6986
6987 return input_pending;
6988 }
6989
6990 /* This is called in some cases before a possible quit.
6991 It cases the next call to detect_input_pending to recompute input_pending.
6992 So calling this function unnecessarily can't do any harm. */
6993 clear_input_pending ()
6994 {
6995 input_pending = 0;
6996 }
6997
6998 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
6999 "T if command input is currently available with no waiting.\n\
7000 Actually, the value is nil only if we can be sure that no input is available.")
7001 ()
7002 {
7003 if (!NILP (Vunread_command_events) || unread_command_char != -1)
7004 return (Qt);
7005
7006 get_input_pending (&input_pending, 1);
7007 return input_pending > 0 ? Qt : Qnil;
7008 }
7009
7010 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
7011 "Return vector of last 100 events, not counting those from keyboard macros.")
7012 ()
7013 {
7014 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
7015 Lisp_Object val;
7016
7017 if (total_keys < NUM_RECENT_KEYS)
7018 return Fvector (total_keys, keys);
7019 else
7020 {
7021 val = Fvector (NUM_RECENT_KEYS, keys);
7022 bcopy (keys + recent_keys_index,
7023 XVECTOR (val)->contents,
7024 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
7025 bcopy (keys,
7026 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
7027 recent_keys_index * sizeof (Lisp_Object));
7028 return val;
7029 }
7030 }
7031
7032 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
7033 "Return the key sequence that invoked this command.\n\
7034 The value is a string or a vector.")
7035 ()
7036 {
7037 return make_event_array (this_command_key_count,
7038 XVECTOR (this_command_keys)->contents);
7039 }
7040
7041 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
7042 Sreset_this_command_lengths, 0, 0, 0,
7043 "Used for complicated reasons in `universal-argument-other-key'.\n\
7044 \n\
7045 `universal-argument-other-key' rereads the event just typed.\n\
7046 It then gets translated through `function-key-map'.\n\
7047 The translated event gets included in the echo area and in\n\
7048 the value of `this-command-keys' in addition to the raw original event.\n\
7049 That is not right.\n\
7050 \n\
7051 Calling this function directs the translated event to replace\n\
7052 the original event, so that only one version of the event actually\n\
7053 appears in the echo area and in the value of `this-command-keys.'.")
7054 ()
7055 {
7056 before_command_restore_flag = 1;
7057 before_command_key_count_1 = before_command_key_count;
7058 before_command_echo_length_1 = before_command_echo_length;
7059 }
7060
7061 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
7062 "Return the current depth in recursive edits.")
7063 ()
7064 {
7065 Lisp_Object temp;
7066 XSETFASTINT (temp, command_loop_level + minibuf_level);
7067 return temp;
7068 }
7069
7070 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
7071 "FOpen dribble file: ",
7072 "Start writing all keyboard characters to a dribble file called FILE.\n\
7073 If FILE is nil, close any open dribble file.")
7074 (file)
7075 Lisp_Object file;
7076 {
7077 if (dribble)
7078 {
7079 fclose (dribble);
7080 dribble = 0;
7081 }
7082 if (!NILP (file))
7083 {
7084 file = Fexpand_file_name (file, Qnil);
7085 dribble = fopen (XSTRING (file)->data, "w");
7086 if (dribble == 0)
7087 report_file_error ("Opening dribble", Fcons (file, Qnil));
7088 }
7089 return Qnil;
7090 }
7091
7092 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
7093 "Discard the contents of the terminal input buffer.\n\
7094 Also cancel any kbd macro being defined.")
7095 ()
7096 {
7097 current_kboard->defining_kbd_macro = Qnil;
7098 update_mode_lines++;
7099
7100 Vunread_command_events = Qnil;
7101 unread_command_char = -1;
7102
7103 discard_tty_input ();
7104
7105 /* Without the cast, GCC complains that this assignment loses the
7106 volatile qualifier of kbd_store_ptr. Is there anything wrong
7107 with that? */
7108 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr;
7109 Ffillarray (kbd_buffer_frame_or_window, Qnil);
7110 input_pending = 0;
7111
7112 return Qnil;
7113 }
7114 \f
7115 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
7116 "Stop Emacs and return to superior process. You can resume later.\n\
7117 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
7118 control, run a subshell instead.\n\n\
7119 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
7120 to be read as terminal input by Emacs's parent, after suspension.\n\
7121 \n\
7122 Before suspending, run the normal hook `suspend-hook'.\n\
7123 After resumption run the normal hook `suspend-resume-hook'.\n\
7124 \n\
7125 Some operating systems cannot stop the Emacs process and resume it later.\n\
7126 On such systems, Emacs starts a subshell instead of suspending.")
7127 (stuffstring)
7128 Lisp_Object stuffstring;
7129 {
7130 Lisp_Object tem;
7131 int count = specpdl_ptr - specpdl;
7132 int old_height, old_width;
7133 int width, height;
7134 struct gcpro gcpro1, gcpro2;
7135 extern init_sys_modes ();
7136
7137 if (!NILP (stuffstring))
7138 CHECK_STRING (stuffstring, 0);
7139
7140 /* Run the functions in suspend-hook. */
7141 if (!NILP (Vrun_hooks))
7142 call1 (Vrun_hooks, intern ("suspend-hook"));
7143
7144 GCPRO1 (stuffstring);
7145 get_frame_size (&old_width, &old_height);
7146 reset_sys_modes ();
7147 /* sys_suspend can get an error if it tries to fork a subshell
7148 and the system resources aren't available for that. */
7149 record_unwind_protect (init_sys_modes, 0);
7150 stuff_buffered_input (stuffstring);
7151 if (cannot_suspend)
7152 sys_subshell ();
7153 else
7154 sys_suspend ();
7155 unbind_to (count, Qnil);
7156
7157 /* Check if terminal/window size has changed.
7158 Note that this is not useful when we are running directly
7159 with a window system; but suspend should be disabled in that case. */
7160 get_frame_size (&width, &height);
7161 if (width != old_width || height != old_height)
7162 change_frame_size (selected_frame, height, width, 0, 0);
7163
7164 /* Run suspend-resume-hook. */
7165 if (!NILP (Vrun_hooks))
7166 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
7167
7168 UNGCPRO;
7169 return Qnil;
7170 }
7171
7172 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
7173 Then in any case stuff anything Emacs has read ahead and not used. */
7174
7175 stuff_buffered_input (stuffstring)
7176 Lisp_Object stuffstring;
7177 {
7178 /* stuff_char works only in BSD, versions 4.2 and up. */
7179 #ifdef BSD
7180 #ifndef BSD4_1
7181 register unsigned char *p;
7182
7183 if (STRINGP (stuffstring))
7184 {
7185 register int count;
7186
7187 p = XSTRING (stuffstring)->data;
7188 count = XSTRING (stuffstring)->size;
7189 while (count-- > 0)
7190 stuff_char (*p++);
7191 stuff_char ('\n');
7192 }
7193 /* Anything we have read ahead, put back for the shell to read. */
7194 /* ?? What should this do when we have multiple keyboards??
7195 Should we ignore anything that was typed in at the "wrong" kboard? */
7196 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
7197 {
7198 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
7199 kbd_fetch_ptr = kbd_buffer;
7200 if (kbd_fetch_ptr->kind == ascii_keystroke)
7201 stuff_char (kbd_fetch_ptr->code);
7202 kbd_fetch_ptr->kind = no_event;
7203 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr
7204 - kbd_buffer]
7205 = Qnil);
7206 }
7207 input_pending = 0;
7208 #endif
7209 #endif /* BSD and not BSD4_1 */
7210 }
7211 \f
7212 set_waiting_for_input (time_to_clear)
7213 EMACS_TIME *time_to_clear;
7214 {
7215 input_available_clear_time = time_to_clear;
7216
7217 /* Tell interrupt_signal to throw back to read_char, */
7218 waiting_for_input = 1;
7219
7220 /* If interrupt_signal was called before and buffered a C-g,
7221 make it run again now, to avoid timing error. */
7222 if (!NILP (Vquit_flag))
7223 quit_throw_to_read_char ();
7224 }
7225
7226 clear_waiting_for_input ()
7227 {
7228 /* Tell interrupt_signal not to throw back to read_char, */
7229 waiting_for_input = 0;
7230 input_available_clear_time = 0;
7231 }
7232
7233 /* This routine is called at interrupt level in response to C-G.
7234 If interrupt_input, this is the handler for SIGINT.
7235 Otherwise, it is called from kbd_buffer_store_event,
7236 in handling SIGIO or SIGTINT.
7237
7238 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
7239 immediately throw back to read_char.
7240
7241 Otherwise it sets the Lisp variable quit-flag not-nil.
7242 This causes eval to throw, when it gets a chance.
7243 If quit-flag is already non-nil, it stops the job right away. */
7244
7245 SIGTYPE
7246 interrupt_signal (signalnum) /* If we don't have an argument, */
7247 int signalnum; /* some compilers complain in signal calls. */
7248 {
7249 char c;
7250 /* Must preserve main program's value of errno. */
7251 int old_errno = errno;
7252
7253 #ifdef USG
7254 if (!read_socket_hook && NILP (Vwindow_system))
7255 {
7256 /* USG systems forget handlers when they are used;
7257 must reestablish each time */
7258 signal (SIGINT, interrupt_signal);
7259 signal (SIGQUIT, interrupt_signal);
7260 }
7261 #endif /* USG */
7262
7263 cancel_echoing ();
7264
7265 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
7266 {
7267 fflush (stdout);
7268 reset_sys_modes ();
7269 sigfree ();
7270 #ifdef SIGTSTP /* Support possible in later USG versions */
7271 /*
7272 * On systems which can suspend the current process and return to the original
7273 * shell, this command causes the user to end up back at the shell.
7274 * The "Auto-save" and "Abort" questions are not asked until
7275 * the user elects to return to emacs, at which point he can save the current
7276 * job and either dump core or continue.
7277 */
7278 sys_suspend ();
7279 #else
7280 #ifdef VMS
7281 if (sys_suspend () == -1)
7282 {
7283 printf ("Not running as a subprocess;\n");
7284 printf ("you can continue or abort.\n");
7285 }
7286 #else /* not VMS */
7287 /* Perhaps should really fork an inferior shell?
7288 But that would not provide any way to get back
7289 to the original shell, ever. */
7290 printf ("No support for stopping a process on this operating system;\n");
7291 printf ("you can continue or abort.\n");
7292 #endif /* not VMS */
7293 #endif /* not SIGTSTP */
7294 #ifdef MSDOS
7295 /* We must remain inside the screen area when the internal terminal
7296 is used. Note that [Enter] is not echoed by dos. */
7297 cursor_to (0, 0);
7298 #endif
7299 /* It doesn't work to autosave while GC is in progress;
7300 the code used for auto-saving doesn't cope with the mark bit. */
7301 if (!gc_in_progress)
7302 {
7303 printf ("Auto-save? (y or n) ");
7304 fflush (stdout);
7305 if (((c = getchar ()) & ~040) == 'Y')
7306 {
7307 Fdo_auto_save (Qt, Qnil);
7308 #ifdef MSDOS
7309 printf ("\r\nAuto-save done");
7310 #else /* not MSDOS */
7311 printf ("Auto-save done\n");
7312 #endif /* not MSDOS */
7313 }
7314 while (c != '\n') c = getchar ();
7315 }
7316 else
7317 {
7318 /* During GC, it must be safe to reenable quitting again. */
7319 Vinhibit_quit = Qnil;
7320 #ifdef MSDOS
7321 printf ("\r\n");
7322 #endif /* not MSDOS */
7323 printf ("Garbage collection in progress; cannot auto-save now\r\n");
7324 printf ("but will instead do a real quit after garbage collection ends\r\n");
7325 fflush (stdout);
7326 }
7327
7328 #ifdef MSDOS
7329 printf ("\r\nAbort? (y or n) ");
7330 #else /* not MSDOS */
7331 #ifdef VMS
7332 printf ("Abort (and enter debugger)? (y or n) ");
7333 #else /* not VMS */
7334 printf ("Abort (and dump core)? (y or n) ");
7335 #endif /* not VMS */
7336 #endif /* not MSDOS */
7337 fflush (stdout);
7338 if (((c = getchar ()) & ~040) == 'Y')
7339 abort ();
7340 while (c != '\n') c = getchar ();
7341 #ifdef MSDOS
7342 printf ("\r\nContinuing...\r\n");
7343 #else /* not MSDOS */
7344 printf ("Continuing...\n");
7345 #endif /* not MSDOS */
7346 fflush (stdout);
7347 init_sys_modes ();
7348 }
7349 else
7350 {
7351 /* If executing a function that wants to be interrupted out of
7352 and the user has not deferred quitting by binding `inhibit-quit'
7353 then quit right away. */
7354 if (immediate_quit && NILP (Vinhibit_quit))
7355 {
7356 immediate_quit = 0;
7357 sigfree ();
7358 Fsignal (Qquit, Qnil);
7359 }
7360 else
7361 /* Else request quit when it's safe */
7362 Vquit_flag = Qt;
7363 }
7364
7365 if (waiting_for_input && !echoing)
7366 quit_throw_to_read_char ();
7367
7368 errno = old_errno;
7369 }
7370
7371 /* Handle a C-g by making read_char return C-g. */
7372
7373 quit_throw_to_read_char ()
7374 {
7375 quit_error_check ();
7376 sigfree ();
7377 /* Prevent another signal from doing this before we finish. */
7378 clear_waiting_for_input ();
7379 input_pending = 0;
7380
7381 Vunread_command_events = Qnil;
7382 unread_command_char = -1;
7383
7384 #if 0 /* Currently, sit_for is called from read_char without turning
7385 off polling. And that can call set_waiting_for_input.
7386 It seems to be harmless. */
7387 #ifdef POLL_FOR_INPUT
7388 /* May be > 1 if in recursive minibuffer. */
7389 if (poll_suppress_count == 0)
7390 abort ();
7391 #endif
7392 #endif
7393 #ifdef MULTI_FRAME
7394 if (FRAMEP (internal_last_event_frame)
7395 && XFRAME (internal_last_event_frame) != selected_frame)
7396 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
7397 Qnil, 0);
7398 #endif
7399
7400 _longjmp (getcjmp, 1);
7401 }
7402 \f
7403 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
7404 "Set mode of reading keyboard input.\n\
7405 First arg INTERRUPT non-nil means use input interrupts;\n\
7406 nil means use CBREAK mode.\n\
7407 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
7408 (no effect except in CBREAK mode).\n\
7409 Third arg META t means accept 8-bit input (for a Meta key).\n\
7410 META nil means ignore the top bit, on the assumption it is parity.\n\
7411 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
7412 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
7413 See also `current-input-mode'.")
7414 (interrupt, flow, meta, quit)
7415 Lisp_Object interrupt, flow, meta, quit;
7416 {
7417 if (!NILP (quit)
7418 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
7419 error ("set-input-mode: QUIT must be an ASCII character");
7420
7421 #ifdef POLL_FOR_INPUT
7422 stop_polling ();
7423 #endif
7424
7425 #ifndef MSDOS
7426 /* this causes startup screen to be restored and messes with the mouse */
7427 reset_sys_modes ();
7428 #endif
7429
7430 #ifdef SIGIO
7431 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7432 if (read_socket_hook)
7433 {
7434 /* When using X, don't give the user a real choice,
7435 because we haven't implemented the mechanisms to support it. */
7436 #ifdef NO_SOCK_SIGIO
7437 interrupt_input = 0;
7438 #else /* not NO_SOCK_SIGIO */
7439 interrupt_input = 1;
7440 #endif /* NO_SOCK_SIGIO */
7441 }
7442 else
7443 interrupt_input = !NILP (interrupt);
7444 #else /* not SIGIO */
7445 interrupt_input = 0;
7446 #endif /* not SIGIO */
7447
7448 /* Our VMS input only works by interrupts, as of now. */
7449 #ifdef VMS
7450 interrupt_input = 1;
7451 #endif
7452
7453 flow_control = !NILP (flow);
7454 if (NILP (meta))
7455 meta_key = 0;
7456 else if (EQ (meta, Qt))
7457 meta_key = 1;
7458 else
7459 meta_key = 2;
7460 if (!NILP (quit))
7461 /* Don't let this value be out of range. */
7462 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
7463
7464 #ifndef MSDOS
7465 init_sys_modes ();
7466 #endif
7467
7468 #ifdef POLL_FOR_INPUT
7469 poll_suppress_count = 1;
7470 start_polling ();
7471 #endif
7472 return Qnil;
7473 }
7474
7475 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
7476 "Return information about the way Emacs currently reads keyboard input.\n\
7477 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
7478 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
7479 nil, Emacs is using CBREAK mode.\n\
7480 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
7481 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
7482 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
7483 META nil means ignoring the top bit, on the assumption it is parity.\n\
7484 META is neither t nor nil if accepting 8-bit input and using\n\
7485 all 8 bits as the character code.\n\
7486 QUIT is the character Emacs currently uses to quit.\n\
7487 The elements of this list correspond to the arguments of\n\
7488 `set-input-mode'.")
7489 ()
7490 {
7491 Lisp_Object val[4];
7492
7493 val[0] = interrupt_input ? Qt : Qnil;
7494 val[1] = flow_control ? Qt : Qnil;
7495 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
7496 XSETFASTINT (val[3], quit_char);
7497
7498 return Flist (sizeof (val) / sizeof (val[0]), val);
7499 }
7500
7501 \f
7502 /*
7503 * Set up a new kboard object with reasonable initial values.
7504 */
7505 void
7506 init_kboard (kb)
7507 KBOARD *kb;
7508 {
7509 kb->Voverriding_terminal_local_map = Qnil;
7510 kb->Vlast_command = Qnil;
7511 kb->Vprefix_arg = Qnil;
7512 kb->kbd_queue = Qnil;
7513 kb->kbd_queue_has_data = 0;
7514 kb->immediate_echo = 0;
7515 kb->echoptr = kb->echobuf;
7516 kb->echo_after_prompt = -1;
7517 kb->kbd_macro_buffer = 0;
7518 kb->kbd_macro_bufsize = 0;
7519 kb->defining_kbd_macro = Qnil;
7520 kb->Vlast_kbd_macro = Qnil;
7521 kb->reference_count = 0;
7522 kb->Vsystem_key_alist = Qnil;
7523 kb->system_key_syms = Qnil;
7524 kb->Vdefault_minibuffer_frame = Qnil;
7525 }
7526
7527 /*
7528 * Destroy the contents of a kboard object, but not the object itself.
7529 * We use this just before deleting it, or if we're going to initialize
7530 * it a second time.
7531 */
7532 static void
7533 wipe_kboard (kb)
7534 KBOARD *kb;
7535 {
7536 if (kb->kbd_macro_buffer)
7537 xfree (kb->kbd_macro_buffer);
7538 }
7539
7540 #ifdef MULTI_KBOARD
7541 void
7542 delete_kboard (kb)
7543 KBOARD *kb;
7544 {
7545 KBOARD **kbp;
7546 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
7547 if (*kbp == NULL)
7548 abort ();
7549 *kbp = kb->next_kboard;
7550 wipe_kboard (kb);
7551 xfree (kb);
7552 }
7553 #endif
7554
7555 init_keyboard ()
7556 {
7557 /* This is correct before outermost invocation of the editor loop */
7558 command_loop_level = -1;
7559 immediate_quit = 0;
7560 quit_char = Ctl ('g');
7561 Vunread_command_events = Qnil;
7562 unread_command_char = -1;
7563 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
7564 total_keys = 0;
7565 recent_keys_index = 0;
7566 kbd_fetch_ptr = kbd_buffer;
7567 kbd_store_ptr = kbd_buffer;
7568 kbd_buffer_frame_or_window
7569 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7570 #ifdef HAVE_MOUSE
7571 do_mouse_tracking = Qnil;
7572 #endif
7573 input_pending = 0;
7574
7575 #ifdef MULTI_FRAME
7576 /* This means that command_loop_1 won't try to select anything the first
7577 time through. */
7578 internal_last_event_frame = Qnil;
7579 Vlast_event_frame = internal_last_event_frame;
7580 #endif
7581
7582 #ifdef MULTI_KBOARD
7583 current_kboard = initial_kboard;
7584 #endif
7585 wipe_kboard (current_kboard);
7586 init_kboard (current_kboard);
7587
7588 if (initialized)
7589 Ffillarray (kbd_buffer_frame_or_window, Qnil);
7590
7591 kbd_buffer_frame_or_window
7592 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7593 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
7594 {
7595 signal (SIGINT, interrupt_signal);
7596 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
7597 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
7598 SIGQUIT and we can't tell which one it will give us. */
7599 signal (SIGQUIT, interrupt_signal);
7600 #endif /* HAVE_TERMIO */
7601 }
7602 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7603 #ifdef SIGIO
7604 if (!noninteractive)
7605 signal (SIGIO, input_available_signal);
7606 #endif /* SIGIO */
7607
7608 /* Use interrupt input by default, if it works and noninterrupt input
7609 has deficiencies. */
7610
7611 #ifdef INTERRUPT_INPUT
7612 interrupt_input = 1;
7613 #else
7614 interrupt_input = 0;
7615 #endif
7616
7617 /* Our VMS input only works by interrupts, as of now. */
7618 #ifdef VMS
7619 interrupt_input = 1;
7620 #endif
7621
7622 sigfree ();
7623 dribble = 0;
7624
7625 if (keyboard_init_hook)
7626 (*keyboard_init_hook) ();
7627
7628 #ifdef POLL_FOR_INPUT
7629 poll_suppress_count = 1;
7630 start_polling ();
7631 #endif
7632 }
7633
7634 /* This type's only use is in syms_of_keyboard, to initialize the
7635 event header symbols and put properties on them. */
7636 struct event_head {
7637 Lisp_Object *var;
7638 char *name;
7639 Lisp_Object *kind;
7640 };
7641
7642 struct event_head head_table[] = {
7643 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
7644 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
7645 &Qswitch_frame, "switch-frame", &Qswitch_frame,
7646 &Qdelete_frame, "delete-frame", &Qdelete_frame,
7647 &Qiconify_frame, "iconify-frame", &Qiconify_frame,
7648 &Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible,
7649 };
7650
7651 syms_of_keyboard ()
7652 {
7653 Qdisabled_command_hook = intern ("disabled-command-hook");
7654 staticpro (&Qdisabled_command_hook);
7655
7656 Qself_insert_command = intern ("self-insert-command");
7657 staticpro (&Qself_insert_command);
7658
7659 Qforward_char = intern ("forward-char");
7660 staticpro (&Qforward_char);
7661
7662 Qbackward_char = intern ("backward-char");
7663 staticpro (&Qbackward_char);
7664
7665 Qdisabled = intern ("disabled");
7666 staticpro (&Qdisabled);
7667
7668 Qundefined = intern ("undefined");
7669 staticpro (&Qundefined);
7670
7671 Qpre_command_hook = intern ("pre-command-hook");
7672 staticpro (&Qpre_command_hook);
7673
7674 Qpost_command_hook = intern ("post-command-hook");
7675 staticpro (&Qpost_command_hook);
7676
7677 Qpost_command_idle_hook = intern ("post-command-idle-hook");
7678 staticpro (&Qpost_command_idle_hook);
7679
7680 Qdeferred_action_function = intern ("deferred-action-function");
7681 staticpro (&Qdeferred_action_function);
7682
7683 Qcommand_hook_internal = intern ("command-hook-internal");
7684 staticpro (&Qcommand_hook_internal);
7685
7686 Qfunction_key = intern ("function-key");
7687 staticpro (&Qfunction_key);
7688 Qmouse_click = intern ("mouse-click");
7689 staticpro (&Qmouse_click);
7690 Qtimer_event = intern ("timer-event");
7691 staticpro (&Qtimer_event);
7692
7693 Qmenu_enable = intern ("menu-enable");
7694 staticpro (&Qmenu_enable);
7695
7696 Qmode_line = intern ("mode-line");
7697 staticpro (&Qmode_line);
7698 Qvertical_line = intern ("vertical-line");
7699 staticpro (&Qvertical_line);
7700 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
7701 staticpro (&Qvertical_scroll_bar);
7702 Qmenu_bar = intern ("menu-bar");
7703 staticpro (&Qmenu_bar);
7704
7705 Qabove_handle = intern ("above-handle");
7706 staticpro (&Qabove_handle);
7707 Qhandle = intern ("handle");
7708 staticpro (&Qhandle);
7709 Qbelow_handle = intern ("below-handle");
7710 staticpro (&Qbelow_handle);
7711
7712 Qevent_kind = intern ("event-kind");
7713 staticpro (&Qevent_kind);
7714 Qevent_symbol_elements = intern ("event-symbol-elements");
7715 staticpro (&Qevent_symbol_elements);
7716 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
7717 staticpro (&Qevent_symbol_element_mask);
7718 Qmodifier_cache = intern ("modifier-cache");
7719 staticpro (&Qmodifier_cache);
7720
7721 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
7722 staticpro (&Qrecompute_lucid_menubar);
7723 Qactivate_menubar_hook = intern ("activate-menubar-hook");
7724 staticpro (&Qactivate_menubar_hook);
7725
7726 Qpolling_period = intern ("polling-period");
7727 staticpro (&Qpolling_period);
7728
7729 {
7730 struct event_head *p;
7731
7732 for (p = head_table;
7733 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
7734 p++)
7735 {
7736 *p->var = intern (p->name);
7737 staticpro (p->var);
7738 Fput (*p->var, Qevent_kind, *p->kind);
7739 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
7740 }
7741 }
7742
7743 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
7744 staticpro (&button_down_location);
7745
7746 {
7747 int i;
7748 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
7749
7750 modifier_symbols = Fmake_vector (make_number (len), Qnil);
7751 for (i = 0; i < len; i++)
7752 if (modifier_names[i])
7753 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
7754 staticpro (&modifier_symbols);
7755 }
7756
7757 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
7758 staticpro (&recent_keys);
7759
7760 this_command_keys = Fmake_vector (make_number (40), Qnil);
7761 staticpro (&this_command_keys);
7762
7763 Qextended_command_history = intern ("extended-command-history");
7764 Fset (Qextended_command_history, Qnil);
7765 staticpro (&Qextended_command_history);
7766
7767 kbd_buffer_frame_or_window
7768 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7769 staticpro (&kbd_buffer_frame_or_window);
7770
7771 accent_key_syms = Qnil;
7772 staticpro (&accent_key_syms);
7773
7774 func_key_syms = Qnil;
7775 staticpro (&func_key_syms);
7776
7777 mouse_syms = Qnil;
7778 staticpro (&mouse_syms);
7779
7780 unread_switch_frame = Qnil;
7781 staticpro (&unread_switch_frame);
7782
7783 defsubr (&Sevent_convert_list);
7784 defsubr (&Sread_key_sequence);
7785 defsubr (&Srecursive_edit);
7786 #ifdef HAVE_MOUSE
7787 defsubr (&Strack_mouse);
7788 #endif
7789 defsubr (&Sinput_pending_p);
7790 defsubr (&Scommand_execute);
7791 defsubr (&Srecent_keys);
7792 defsubr (&Sthis_command_keys);
7793 defsubr (&Sreset_this_command_lengths);
7794 defsubr (&Ssuspend_emacs);
7795 defsubr (&Sabort_recursive_edit);
7796 defsubr (&Sexit_recursive_edit);
7797 defsubr (&Srecursion_depth);
7798 defsubr (&Stop_level);
7799 defsubr (&Sdiscard_input);
7800 defsubr (&Sopen_dribble_file);
7801 defsubr (&Sset_input_mode);
7802 defsubr (&Scurrent_input_mode);
7803 defsubr (&Sexecute_extended_command);
7804
7805 DEFVAR_LISP ("last-command-char", &last_command_char,
7806 "Last input event that was part of a command.");
7807
7808 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
7809 "Last input event that was part of a command.");
7810
7811 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
7812 "Last input event in a command, except for mouse menu events.\n\
7813 Mouse menus give back keys that don't look like mouse events;\n\
7814 this variable holds the actual mouse event that led to the menu,\n\
7815 so that you can determine whether the command was run by mouse or not.");
7816
7817 DEFVAR_LISP ("last-input-char", &last_input_char,
7818 "Last input event.");
7819
7820 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
7821 "Last input event.");
7822
7823 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
7824 "List of objects to be read as next command input events.");
7825
7826 DEFVAR_INT ("unread-command-char", &unread_command_char,
7827 "If not -1, an object to be read as next command input event.");
7828
7829 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
7830 "Meta-prefix character code. Meta-foo as command input\n\
7831 turns into this character followed by foo.");
7832 XSETINT (meta_prefix_char, 033);
7833
7834 DEFVAR_KBOARD ("last-command", Vlast_command,
7835 "The last command executed. Normally a symbol with a function definition,\n\
7836 but can be whatever was found in the keymap, or whatever the variable\n\
7837 `this-command' was set to by that command.\n\
7838 \n\
7839 The value `mode-exit' is special; it means that the previous command\n\
7840 read an event that told it to exit, and it did so and unread that event.\n\
7841 In other words, the present command is the event that made the previous\n\
7842 command exit.\n\
7843 \n\
7844 The value `kill-region' is special; it means that the previous command\n\
7845 was a kill command.");
7846
7847 DEFVAR_LISP ("this-command", &this_command,
7848 "The command now being executed.\n\
7849 The command can set this variable; whatever is put here\n\
7850 will be in `last-command' during the following command.");
7851 this_command = Qnil;
7852
7853 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
7854 "*Number of keyboard input characters between auto-saves.\n\
7855 Zero means disable autosaving due to number of characters typed.");
7856 auto_save_interval = 300;
7857
7858 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
7859 "*Number of seconds idle time before auto-save.\n\
7860 Zero or nil means disable auto-saving due to idleness.\n\
7861 After auto-saving due to this many seconds of idle time,\n\
7862 Emacs also does a garbage collection if that seems to be warranted.");
7863 XSETFASTINT (Vauto_save_timeout, 30);
7864
7865 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
7866 "*Nonzero means echo unfinished commands after this many seconds of pause.");
7867 echo_keystrokes = 1;
7868
7869 DEFVAR_INT ("polling-period", &polling_period,
7870 "*Interval between polling for input during Lisp execution.\n\
7871 The reason for polling is to make C-g work to stop a running program.\n\
7872 Polling is needed only when using X windows and SIGIO does not work.\n\
7873 Polling is automatically disabled in all other cases.");
7874 polling_period = 2;
7875
7876 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
7877 "*Maximum time between mouse clicks to make a double-click.\n\
7878 Measured in milliseconds. nil means disable double-click recognition;\n\
7879 t means double-clicks have no time limit and are detected\n\
7880 by position only.");
7881 Vdouble_click_time = make_number (500);
7882
7883 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
7884 "*Non-nil means inhibit local map menu bar menus.");
7885 inhibit_local_menu_bar_menus = 0;
7886
7887 DEFVAR_INT ("num-input-keys", &num_input_keys,
7888 "Number of complete keys read from the keyboard so far.");
7889 num_input_keys = 0;
7890
7891 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
7892 "The frame in which the most recently read event occurred.\n\
7893 If the last event came from a keyboard macro, this is set to `macro'.");
7894 Vlast_event_frame = Qnil;
7895
7896 DEFVAR_LISP ("help-char", &Vhelp_char,
7897 "Character to recognize as meaning Help.\n\
7898 When it is read, do `(eval help-form)', and display result if it's a string.\n\
7899 If the value of `help-form' is nil, this char can be read normally.");
7900 XSETINT (Vhelp_char, Ctl ('H'));
7901
7902 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
7903 "List of input events to recognize as meaning Help.\n\
7904 These work just like the value of `help-char' (see that).");
7905 Vhelp_event_list = Qnil;
7906
7907 DEFVAR_LISP ("help-form", &Vhelp_form,
7908 "Form to execute when character `help-char' is read.\n\
7909 If the form returns a string, that string is displayed.\n\
7910 If `help-form' is nil, the help char is not recognized.");
7911 Vhelp_form = Qnil;
7912
7913 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
7914 "Command to run when `help-char' character follows a prefix key.\n\
7915 This command is used only when there is no actual binding\n\
7916 for that character after that prefix key.");
7917 Vprefix_help_command = Qnil;
7918
7919 DEFVAR_LISP ("top-level", &Vtop_level,
7920 "Form to evaluate when Emacs starts up.\n\
7921 Useful to set before you dump a modified Emacs.");
7922 Vtop_level = Qnil;
7923
7924 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
7925 "Translate table for keyboard input, or nil.\n\
7926 Each character is looked up in this string and the contents used instead.\n\
7927 The value may be a string, a vector, or a char-table.\n\
7928 If it is a string or vector of length N,\n\
7929 character codes N and up are untranslated.\n\
7930 In a vector or a char-table, an element which is nil means \"no translation\".");
7931 Vkeyboard_translate_table = Qnil;
7932
7933 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
7934 "Non-nil means to always spawn a subshell instead of suspending,\n\
7935 even if the operating system has support for stopping a process.");
7936 cannot_suspend = 0;
7937
7938 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
7939 "Non-nil means prompt with menus when appropriate.\n\
7940 This is done when reading from a keymap that has a prompt string,\n\
7941 for elements that have prompt strings.\n\
7942 The menu is displayed on the screen\n\
7943 if X menus were enabled at configuration\n\
7944 time and the previous event was a mouse click prefix key.\n\
7945 Otherwise, menu prompting uses the echo area.");
7946 menu_prompting = 1;
7947
7948 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
7949 "Character to see next line of menu prompt.\n\
7950 Type this character while in a menu prompt to rotate around the lines of it.");
7951 XSETINT (menu_prompt_more_char, ' ');
7952
7953 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
7954 "A mask of additional modifier keys to use with every keyboard character.\n\
7955 Emacs applies the modifiers of the character stored here to each keyboard\n\
7956 character it reads. For example, after evaluating the expression\n\
7957 (setq extra-keyboard-modifiers ?\\C-x)\n\
7958 all input characters will have the control modifier applied to them.\n\
7959 \n\
7960 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
7961 not count as a control character; rather, it counts as a character\n\
7962 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
7963 cancels any modification.");
7964 extra_keyboard_modifiers = 0;
7965
7966 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
7967 "If an editing command sets this to t, deactivate the mark afterward.\n\
7968 The command loop sets this to nil before each command,\n\
7969 and tests the value when the command returns.\n\
7970 Buffer modification stores t in this variable.");
7971 Vdeactivate_mark = Qnil;
7972
7973 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
7974 "Temporary storage of pre-command-hook or post-command-hook.");
7975 Vcommand_hook_internal = Qnil;
7976
7977 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
7978 "Normal hook run before each command is executed.\n\
7979 Errors running the hook are caught and ignored.");
7980 Vpre_command_hook = Qnil;
7981
7982 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
7983 "Normal hook run after each command is executed.\n\
7984 Errors running the hook are caught and ignored.");
7985 Vpost_command_hook = Qnil;
7986
7987 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
7988 "Normal hook run after each command is executed, if idle.\n\
7989 Errors running the hook are caught and ignored.");
7990 Vpost_command_idle_hook = Qnil;
7991
7992 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
7993 "Delay time before running `post-command-idle-hook'.\n\
7994 This is measured in microseconds.");
7995 post_command_idle_delay = 100000;
7996
7997 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
7998 "t means menu bar, specified Lucid style, needs to be recomputed.");
7999 Vlucid_menu_bar_dirty_flag = Qnil;
8000
8001 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
8002 "List of menu bar items to move to the end of the menu bar.\n\
8003 The elements of the list are event types that may have menu bar bindings.");
8004 Vmenu_bar_final_items = Qnil;
8005
8006 DEFVAR_KBOARD ("overriding-terminal-local-map",
8007 Voverriding_terminal_local_map,
8008 "Keymap that overrides all other local keymaps.\n\
8009 If this variable is non-nil, it is used as a keymap instead of the\n\
8010 buffer's local map, and the minor mode keymaps and text property keymaps.");
8011
8012 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
8013 "Keymap that overrides all other local keymaps.\n\
8014 If this variable is non-nil, it is used as a keymap instead of the\n\
8015 buffer's local map, and the minor mode keymaps and text property keymaps.");
8016 Voverriding_local_map = Qnil;
8017
8018 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
8019 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
8020 Otherwise, the menu bar continues to reflect the buffer's local map\n\
8021 and the minor mode maps regardless of `overriding-local-map'.");
8022 Voverriding_local_map_menu_flag = Qnil;
8023
8024 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
8025 "Keymap defining bindings for special events to execute at low level.");
8026 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
8027
8028 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
8029 "*Non-nil means generate motion events for mouse motion.");
8030
8031 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
8032 "Alist of system-specific X windows key symbols.\n\
8033 Each element should have the form (N . SYMBOL) where N is the\n\
8034 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
8035 and SYMBOL is its name.");
8036
8037 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
8038 "List of deferred actions to be performed at a later time.\n\
8039 The precise format isn't relevant here; we just check whether it is nil.");
8040 Vdeferred_action_list = Qnil;
8041
8042 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
8043 "Function to call to handle deferred actions, after each command.\n\
8044 This function is called with no arguments after each command\n\
8045 whenever `deferred-action-list' is non-nil.");
8046 Vdeferred_action_function = Qnil;
8047
8048 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
8049 "Non-nil means show the equivalent key-binding when M-x command has one.\n\
8050 The value can be a length of time to show the message for.\n\
8051 If the value is non-nil and not a number, we wait 2 seconds.");
8052 Vsuggest_key_bindings = Qt;
8053
8054 DEFVAR_LISP ("column-number-mode", &Vcolumn_number_mode,
8055 "Non-nil enables display of the current column number in the mode line.");
8056 Vcolumn_number_mode = Qnil;
8057
8058 DEFVAR_LISP ("timer-list", &Vtimer_list,
8059 "List of active absolute time timers in order of increasing time");
8060 Vtimer_list = Qnil;
8061
8062 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
8063 "List of active idle-time timers in order of increasing time");
8064 Vtimer_idle_list = Qnil;
8065 }
8066
8067 keys_of_keyboard ()
8068 {
8069 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
8070 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
8071 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
8072 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
8073 initial_define_key (meta_map, 'x', "execute-extended-command");
8074
8075 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
8076 "handle-delete-frame");
8077 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
8078 "ignore-event");
8079 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
8080 "ignore-event");
8081 }