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