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