]> code.delx.au - gnu-emacs/blob - src/keyboard.c
(echo_after_prompt): New variable.
[gnu-emacs] / src / keyboard.c
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 /* Allow config.h to undefine symbols found here. */
21 #include <signal.h>
22
23 #include <config.h>
24 #include <stdio.h>
25 #undef NULL
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 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
61 #include "systime.h"
62
63 extern int errno;
64
65 /* Variables for blockinput.h: */
66
67 /* Non-zero if interrupt input is blocked right now. */
68 int interrupt_input_blocked;
69
70 /* Nonzero means an input interrupt has arrived
71 during the current critical section. */
72 int interrupt_input_pending;
73
74
75 #ifdef HAVE_X_WINDOWS
76 extern Lisp_Object Vmouse_grabbed;
77
78 /* Make all keyboard buffers much bigger when using X windows. */
79 #define KBD_BUFFER_SIZE 4096
80 #else /* No X-windows, character input */
81 #define KBD_BUFFER_SIZE 256
82 #endif /* No X-windows */
83
84 /* Following definition copied from eval.c */
85
86 struct backtrace
87 {
88 struct backtrace *next;
89 Lisp_Object *function;
90 Lisp_Object *args; /* Points to vector of args. */
91 int nargs; /* length of vector. If nargs is UNEVALLED,
92 args points to slot holding list of
93 unevalled args */
94 char evalargs;
95 };
96
97 /* Non-nil disable property on a command means
98 do not execute it; call disabled-command-hook's value instead. */
99 Lisp_Object Qdisabled, Qdisabled_command_hook;
100
101 #define NUM_RECENT_KEYS (100)
102 int recent_keys_index; /* Index for storing next element into recent_keys */
103 int total_keys; /* Total number of elements stored into recent_keys */
104 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
105
106 /* Vector holding the key sequence that invoked the current command.
107 It is reused for each command, and it may be longer than the current
108 sequence; this_command_key_count indicates how many elements
109 actually mean something.
110 It's easier to staticpro a single Lisp_Object than an array. */
111 Lisp_Object this_command_keys;
112 int this_command_key_count;
113
114 extern int minbuf_level;
115
116 extern struct backtrace *backtrace_list;
117
118 /* Nonzero means do menu prompting. */
119 static int menu_prompting;
120
121 /* Character to see next line of menu prompt. */
122 static Lisp_Object menu_prompt_more_char;
123
124 /* For longjmp to where kbd input is being done. */
125 static jmp_buf getcjmp;
126
127 /* True while doing kbd input. */
128 int waiting_for_input;
129
130 /* True while displaying for echoing. Delays C-g throwing. */
131 static int echoing;
132
133 /* Nonzero means C-g should cause immediate error-signal. */
134 int immediate_quit;
135
136 /* Character to recognize as the help char. */
137 Lisp_Object Vhelp_char;
138
139 /* Form to execute when help char is typed. */
140 Lisp_Object Vhelp_form;
141
142 /* Command to run when the help character follows a prefix key. */
143 Lisp_Object Vprefix_help_command;
144
145 /* List of items that should move to the end of the menu bar. */
146 Lisp_Object Vmenu_bar_final_items;
147
148 /* Character that causes a quit. Normally C-g.
149
150 If we are running on an ordinary terminal, this must be an ordinary
151 ASCII char, since we want to make it our interrupt character.
152
153 If we are not running on an ordinary terminal, it still needs to be
154 an ordinary ASCII char. This character needs to be recognized in
155 the input interrupt handler. At this point, the keystroke is
156 represented as a struct input_event, while the desired quit
157 character is specified as a lispy event. The mapping from struct
158 input_events to lispy events cannot run in an interrupt handler,
159 and the reverse mapping is difficult for anything but ASCII
160 keystrokes.
161
162 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
163 ASCII character. */
164 int quit_char;
165
166 extern Lisp_Object current_global_map;
167 extern int minibuf_level;
168
169 /* If non-nil, this is a map that overrides all other local maps. */
170 Lisp_Object Voverriding_local_map;
171
172 /* Current depth in recursive edits. */
173 int command_loop_level;
174
175 /* Total number of times command_loop has read a key sequence. */
176 int num_input_keys;
177
178 /* Last input character read as a command. */
179 Lisp_Object last_command_char;
180
181 /* Last input character read as a command, not counting menus
182 reached by the mouse. */
183 Lisp_Object last_nonmenu_event;
184
185 /* Last input character read for any purpose. */
186 Lisp_Object last_input_char;
187
188 /* If not Qnil, a list of objects to be read as subsequent command input. */
189 Lisp_Object Vunread_command_events;
190
191 /* If not -1, an event to be read as subsequent command input. */
192 int unread_command_char;
193
194 /* If not Qnil, this is a switch-frame event which we decided to put
195 off until the end of a key sequence. This should be read as the
196 next command input, after any unread_command_events.
197
198 read_key_sequence uses this to delay switch-frame events until the
199 end of the key sequence; Fread_char uses it to put off switch-frame
200 events until a non-ASCII event is acceptable as input. */
201 Lisp_Object unread_switch_frame;
202
203 /* A mask of extra modifier bits to put into every keyboard char. */
204 int extra_keyboard_modifiers;
205
206 /* Char to use as prefix when a meta character is typed in.
207 This is bound on entry to minibuffer in case ESC is changed there. */
208
209 Lisp_Object meta_prefix_char;
210
211 /* Last size recorded for a current buffer which is not a minibuffer. */
212 static int last_non_minibuf_size;
213
214 /* Number of idle seconds before an auto-save and garbage collection. */
215 static Lisp_Object Vauto_save_timeout;
216
217 /* Total number of times read_char has returned. */
218 int num_input_chars;
219
220 /* Total number of times read_char has returned, outside of macros. */
221 int num_nonmacro_input_chars;
222
223 /* Auto-save automatically when this many characters have been typed
224 since the last time. */
225
226 static int auto_save_interval;
227
228 /* Value of num_nonmacro_input_chars as of last auto save. */
229
230 int last_auto_save;
231
232 /* Last command executed by the editor command loop, not counting
233 commands that set the prefix argument. */
234
235 Lisp_Object last_command;
236
237 /* The command being executed by the command loop.
238 Commands may set this, and the value set will be copied into last_command
239 instead of the actual command. */
240 Lisp_Object this_command;
241
242 /* The value of point when the last command was executed. */
243 int last_point_position;
244
245 /* The buffer that was current when the last command was started. */
246 Lisp_Object last_point_position_buffer;
247
248 #ifdef MULTI_FRAME
249 /* The frame in which the last input event occurred, or Qmacro if the
250 last event came from a macro. We use this to determine when to
251 generate switch-frame events. This may be cleared by functions
252 like Fselect_frame, to make sure that a switch-frame event is
253 generated by the next character. */
254 Lisp_Object internal_last_event_frame;
255 #endif
256
257 /* A user-visible version of the above, intended to allow users to
258 figure out where the last event came from, if the event doesn't
259 carry that information itself (i.e. if it was a character). */
260 Lisp_Object Vlast_event_frame;
261
262 /* The timestamp of the last input event we received from the X server.
263 X Windows wants this for selection ownership. */
264 unsigned long last_event_timestamp;
265
266 Lisp_Object Qself_insert_command;
267 Lisp_Object Qforward_char;
268 Lisp_Object Qbackward_char;
269 Lisp_Object Qundefined;
270
271 /* read_key_sequence stores here the command definition of the
272 key sequence that it reads. */
273 Lisp_Object read_key_sequence_cmd;
274
275 /* Form to evaluate (if non-nil) when Emacs is started. */
276 Lisp_Object Vtop_level;
277
278 /* User-supplied string to translate input characters through. */
279 Lisp_Object Vkeyboard_translate_table;
280
281 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
282 extern Lisp_Object Vfunction_key_map;
283
284 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
285 Lisp_Object Vkey_translation_map;
286
287 /* Non-nil means deactivate the mark at end of this command. */
288 Lisp_Object Vdeactivate_mark;
289
290 /* Menu bar specified in Lucid Emacs fashion. */
291
292 Lisp_Object Vlucid_menu_bar_dirty_flag;
293 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
294
295 /* Hooks to run before and after each command. */
296 Lisp_Object Qpre_command_hook, Qpost_command_hook;
297 Lisp_Object Vpre_command_hook, Vpost_command_hook;
298 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
299
300 /* File in which we write all commands we read. */
301 FILE *dribble;
302
303 /* Nonzero if input is available. */
304 int input_pending;
305
306 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
307 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
308
309 int meta_key;
310
311 extern char *pending_malloc_warning;
312
313 /* Circular buffer for pre-read keyboard input. */
314 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
315
316 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
317
318 The interrupt-level event handlers will never enqueue an event on a
319 frame which is not in Vframe_list, and once an event is dequeued,
320 internal_last_event_frame or the event itself points to the frame.
321 So that's all fine.
322
323 But while the event is sitting in the queue, it's completely
324 unprotected. Suppose the user types one command which will run for
325 a while and then delete a frame, and then types another event at
326 the frame that will be deleted, before the command gets around to
327 it. Suppose there are no references to this frame elsewhere in
328 Emacs, and a GC occurs before the second event is dequeued. Now we
329 have an event referring to a freed frame, which will crash Emacs
330 when it is dequeued.
331
332 Similar things happen when an event on a scroll bar is enqueued; the
333 window may be deleted while the event is in the queue.
334
335 So, we use this vector to protect the frame_or_window field in the
336 event queue. That way, they'll be dequeued as dead frames or
337 windows, but still valid lisp objects.
338
339 If kbd_buffer[i].kind != no_event, then
340 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
341 == kbd_buffer[i].frame_or_window. */
342 static Lisp_Object kbd_buffer_frame_or_window;
343
344 /* Pointer to next available character in kbd_buffer.
345 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
346 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
347 next available char is in kbd_buffer[0]. */
348 static struct input_event *kbd_fetch_ptr;
349
350 /* Pointer to next place to store character in kbd_buffer. This
351 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
352 character should go in kbd_buffer[0]. */
353 #ifdef __STDC__
354 volatile
355 #endif
356 static struct input_event *kbd_store_ptr;
357
358 /* The above pair of variables forms a "queue empty" flag. When we
359 enqueue a non-hook event, we increment kbd_write_count. When we
360 dequeue a non-hook event, we increment kbd_read_count. We say that
361 there is input available iff the two counters are not equal.
362
363 Why not just have a flag set and cleared by the enqueuing and
364 dequeuing functions? Such a flag could be screwed up by interrupts
365 at inopportune times. */
366
367 /* If this flag is non-zero, we check mouse_moved to see when the
368 mouse moves, and motion events will appear in the input stream. If
369 it is zero, mouse motion is ignored. */
370 static int do_mouse_tracking;
371
372 /* The window system handling code should set this if the mouse has
373 moved since the last call to the mouse_position_hook. Calling that
374 hook should clear this. Code assumes that if this is set, it can
375 call mouse_position_hook to get the promised position, so don't set
376 it unless you're prepared to substantiate the claim! */
377 int mouse_moved;
378
379 /* True iff there is an event in kbd_buffer, or if mouse tracking is
380 enabled and there is a new mouse position in the mouse movement
381 buffer. Note that if this is false, that doesn't mean that there
382 is readable input; all the events in the queue might be button-up
383 events, and do_mouse_tracking might be off. */
384 #define EVENT_QUEUES_EMPTY \
385 ((kbd_fetch_ptr == kbd_store_ptr) && (!do_mouse_tracking || !mouse_moved))
386
387
388 /* Symbols to head events. */
389 Lisp_Object Qmouse_movement;
390 Lisp_Object Qscroll_bar_movement;
391 Lisp_Object Qswitch_frame;
392
393 /* Symbols to denote kinds of events. */
394 Lisp_Object Qfunction_key;
395 Lisp_Object Qmouse_click;
396 /* Lisp_Object Qmouse_movement; - also an event header */
397
398 /* Properties of event headers. */
399 Lisp_Object Qevent_kind;
400 Lisp_Object Qevent_symbol_elements;
401
402 Lisp_Object Qmenu_enable;
403
404 /* An event header symbol HEAD may have a property named
405 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
406 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
407 mask of modifiers applied to it. If present, this is used to help
408 speed up parse_modifiers. */
409 Lisp_Object Qevent_symbol_element_mask;
410
411 /* An unmodified event header BASE may have a property named
412 Qmodifier_cache, which is an alist mapping modifier masks onto
413 modified versions of BASE. If present, this helps speed up
414 apply_modifiers. */
415 Lisp_Object Qmodifier_cache;
416
417 /* Symbols to use for parts of windows. */
418 Lisp_Object Qmode_line;
419 Lisp_Object Qvertical_line;
420 Lisp_Object Qvertical_scroll_bar;
421 Lisp_Object Qmenu_bar;
422
423 extern Lisp_Object Qmenu_enable;
424
425 Lisp_Object recursive_edit_unwind (), command_loop ();
426 Lisp_Object Fthis_command_keys ();
427 Lisp_Object Qextended_command_history;
428
429 Lisp_Object Qpolling_period;
430
431 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
432 happens. */
433 EMACS_TIME *input_available_clear_time;
434
435 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
436 Default is 1 if INTERRUPT_INPUT is defined. */
437 int interrupt_input;
438
439 /* Nonzero while interrupts are temporarily deferred during redisplay. */
440 int interrupts_deferred;
441
442 /* nonzero means use ^S/^Q for flow control. */
443 int flow_control;
444
445 /* Allow m- file to inhibit use of FIONREAD. */
446 #ifdef BROKEN_FIONREAD
447 #undef FIONREAD
448 #endif
449
450 /* We are unable to use interrupts if FIONREAD is not available,
451 so flush SIGIO so we won't try. */
452 #ifndef FIONREAD
453 #ifdef SIGIO
454 #undef SIGIO
455 #endif
456 #endif
457
458 /* If we support X Windows, turn on the code to poll periodically
459 to detect C-g. It isn't actually used when doing interrupt input. */
460 #ifdef HAVE_X_WINDOWS
461 #define POLL_FOR_INPUT
462 #endif
463 \f
464 /* Global variable declarations. */
465
466 /* Function for init_keyboard to call with no args (if nonzero). */
467 void (*keyboard_init_hook) ();
468
469 static int read_avail_input ();
470 static void get_input_pending ();
471 static int readable_events ();
472 static Lisp_Object read_char_x_menu_prompt ();
473 static Lisp_Object read_char_minibuf_menu_prompt ();
474 static Lisp_Object make_lispy_event ();
475 static Lisp_Object make_lispy_movement ();
476 static Lisp_Object modify_event_symbol ();
477 static Lisp_Object make_lispy_switch_frame ();
478
479 /* > 0 if we are to echo keystrokes. */
480 static int echo_keystrokes;
481
482 /* Nonzero means echo each character as typed. */
483 static int immediate_echo;
484
485 /* The text we're echoing in the modeline - partial key sequences,
486 usually. '\0'-terminated. This really shouldn't have a fixed size. */
487 static char echobuf[300];
488
489 /* Where to append more text to echobuf if we want to. */
490 static char *echoptr;
491
492 /* If we have echoed a prompt string specified by the user,
493 this is its length. Otherwise this is -1. */
494 static int echo_after_prompt;
495
496 /* Nonzero means don't try to suspend even if the operating system seems
497 to support it. */
498 static int cannot_suspend;
499
500 #define min(a,b) ((a)<(b)?(a):(b))
501 #define max(a,b) ((a)>(b)?(a):(b))
502
503 /* Install the string STR as the beginning of the string of echoing,
504 so that it serves as a prompt for the next character.
505 Also start echoing. */
506
507 echo_prompt (str)
508 char *str;
509 {
510 int len = strlen (str);
511
512 if (len > sizeof echobuf - 4)
513 len = sizeof echobuf - 4;
514 bcopy (str, echobuf, len);
515 echoptr = echobuf + len;
516 *echoptr = '\0';
517
518 echo_after_prompt = len;
519
520 echo ();
521 }
522
523 /* Add C to the echo string, if echoing is going on.
524 C can be a character, which is printed prettily ("M-C-x" and all that
525 jazz), or a symbol, whose name is printed. */
526
527 echo_char (c)
528 Lisp_Object c;
529 {
530 extern char *push_key_description ();
531
532 if (immediate_echo)
533 {
534 char *ptr = echoptr;
535
536 if (ptr != echobuf)
537 *ptr++ = ' ';
538
539 /* If someone has passed us a composite event, use its head symbol. */
540 c = EVENT_HEAD (c);
541
542 if (XTYPE (c) == Lisp_Int)
543 {
544 if (ptr - echobuf > sizeof echobuf - 6)
545 return;
546
547 ptr = push_key_description (XINT (c), ptr);
548 }
549 else if (XTYPE (c) == Lisp_Symbol)
550 {
551 struct Lisp_String *name = XSYMBOL (c)->name;
552 if (((ptr - echobuf) + name->size + 4) > sizeof echobuf)
553 return;
554 bcopy (name->data, ptr, name->size);
555 ptr += name->size;
556 }
557
558 if (echoptr == echobuf && EQ (c, Vhelp_char))
559 {
560 strcpy (ptr, " (Type ? for further options)");
561 ptr += strlen (ptr);
562 }
563
564 *ptr = 0;
565 echoptr = ptr;
566
567 echo ();
568 }
569 }
570
571 /* Temporarily add a dash to the end of the echo string if it's not
572 empty, so that it serves as a mini-prompt for the very next character. */
573
574 echo_dash ()
575 {
576 if (!immediate_echo && echoptr == echobuf)
577 return;
578 /* Do nothing if we just printed a prompt. */
579 if (echo_after_prompt != echoptr - echobuf)
580 return;
581 /* Do nothing if not echoing at all. */
582 if (echoptr == 0)
583 return;
584
585 /* Put a dash at the end of the buffer temporarily,
586 but make it go away when the next character is added. */
587 echoptr[0] = '-';
588 echoptr[1] = 0;
589
590 echo ();
591 }
592
593 /* Display the current echo string, and begin echoing if not already
594 doing so. */
595
596 echo ()
597 {
598 if (!immediate_echo)
599 {
600 int i;
601 immediate_echo = 1;
602
603 for (i = 0; i < this_command_key_count; i++)
604 {
605 Lisp_Object c;
606 c = XVECTOR (this_command_keys)->contents[i];
607 if (! (EVENT_HAS_PARAMETERS (c)
608 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
609 echo_char (c);
610 }
611 echo_dash ();
612 }
613
614 echoing = 1;
615 message1 (echobuf);
616 echoing = 0;
617
618 if (waiting_for_input && !NILP (Vquit_flag))
619 quit_throw_to_read_char ();
620 }
621
622 /* Turn off echoing, for the start of a new command. */
623
624 cancel_echoing ()
625 {
626 immediate_echo = 0;
627 echoptr = echobuf;
628 echo_after_prompt = -1;
629 }
630
631 /* Return the length of the current echo string. */
632
633 static int
634 echo_length ()
635 {
636 return echoptr - echobuf;
637 }
638
639 /* Truncate the current echo message to its first LEN chars.
640 This and echo_char get used by read_key_sequence when the user
641 switches frames while entering a key sequence. */
642
643 static void
644 echo_truncate (len)
645 int len;
646 {
647 echobuf[len] = '\0';
648 echoptr = echobuf + len;
649 truncate_echo_area (len);
650 }
651
652 \f
653 /* Functions for manipulating this_command_keys. */
654 static void
655 add_command_key (key)
656 Lisp_Object key;
657 {
658 int size = XVECTOR (this_command_keys)->size;
659
660 if (this_command_key_count >= size)
661 {
662 Lisp_Object new_keys;
663
664 new_keys = Fmake_vector (make_number (size * 2), Qnil);
665 bcopy (XVECTOR (this_command_keys)->contents,
666 XVECTOR (new_keys)->contents,
667 size * sizeof (Lisp_Object));
668
669 this_command_keys = new_keys;
670 }
671
672 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
673 }
674 \f
675 Lisp_Object
676 recursive_edit_1 ()
677 {
678 int count = specpdl_ptr - specpdl;
679 Lisp_Object val;
680
681 if (command_loop_level > 0)
682 {
683 specbind (Qstandard_output, Qt);
684 specbind (Qstandard_input, Qt);
685 }
686
687 val = command_loop ();
688 if (EQ (val, Qt))
689 Fsignal (Qquit, Qnil);
690
691 return unbind_to (count, Qnil);
692 }
693
694 /* When an auto-save happens, record the "time", and don't do again soon. */
695
696 record_auto_save ()
697 {
698 last_auto_save = num_nonmacro_input_chars;
699 }
700
701 /* Make an auto save happen as soon as possible at command level. */
702
703 force_auto_save_soon ()
704 {
705 last_auto_save = - auto_save_interval - 1;
706
707 record_asynch_buffer_change ();
708 }
709 \f
710 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
711 "Invoke the editor command loop recursively.\n\
712 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
713 that tells this function to return.\n\
714 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
715 This function is called by the editor initialization to begin editing.")
716 ()
717 {
718 int count = specpdl_ptr - specpdl;
719 Lisp_Object val;
720
721 command_loop_level++;
722 update_mode_lines = 1;
723
724 record_unwind_protect (recursive_edit_unwind,
725 (command_loop_level
726 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
727 ? Fcurrent_buffer ()
728 : Qnil);
729 recursive_edit_1 ();
730 return unbind_to (count, Qnil);
731 }
732
733 Lisp_Object
734 recursive_edit_unwind (buffer)
735 Lisp_Object buffer;
736 {
737 if (!NILP (buffer))
738 Fset_buffer (buffer);
739
740 command_loop_level--;
741 update_mode_lines = 1;
742 return Qnil;
743 }
744 \f
745 Lisp_Object
746 cmd_error (data)
747 Lisp_Object data;
748 {
749 Lisp_Object errmsg, tail, errname, file_error;
750 Lisp_Object stream;
751 struct gcpro gcpro1;
752 int i;
753
754 Vquit_flag = Qnil;
755 Vinhibit_quit = Qt;
756 Vstandard_output = Qt;
757 Vstandard_input = Qt;
758 Vexecuting_macro = Qnil;
759 echo_area_glyphs = 0;
760
761 /* If the window system or terminal frame hasn't been initialized
762 yet, or we're not interactive, it's best to dump this message out
763 to stderr and exit. */
764 if (! FRAME_MESSAGE_BUF (selected_frame)
765 || noninteractive)
766 stream = Qexternal_debugging_output;
767 else
768 {
769 Fdiscard_input ();
770 bitch_at_user ();
771 stream = Qt;
772 }
773
774 errname = Fcar (data);
775
776 if (EQ (errname, Qerror))
777 {
778 data = Fcdr (data);
779 if (!CONSP (data)) data = Qnil;
780 errmsg = Fcar (data);
781 file_error = Qnil;
782 }
783 else
784 {
785 errmsg = Fget (errname, Qerror_message);
786 file_error = Fmemq (Qfile_error,
787 Fget (errname, Qerror_conditions));
788 }
789
790 /* Print an error message including the data items.
791 This is done by printing it into a scratch buffer
792 and then making a copy of the text in the buffer. */
793
794 if (!CONSP (data)) data = Qnil;
795 tail = Fcdr (data);
796 GCPRO1 (tail);
797
798 /* For file-error, make error message by concatenating
799 all the data items. They are all strings. */
800 if (!NILP (file_error) && !NILP (tail))
801 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr;
802
803 if (XTYPE (errmsg) == Lisp_String)
804 Fprinc (errmsg, stream);
805 else
806 write_string_1 ("peculiar error", -1, stream);
807
808 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
809 {
810 write_string_1 (i ? ", " : ": ", 2, stream);
811 if (!NILP (file_error))
812 Fprinc (Fcar (tail), stream);
813 else
814 Fprin1 (Fcar (tail), stream);
815 }
816 UNGCPRO;
817
818 /* If the window system or terminal frame hasn't been initialized
819 yet, or we're in -batch mode, this error should cause Emacs to exit. */
820 if (! FRAME_MESSAGE_BUF (selected_frame)
821 || noninteractive)
822 {
823 Fterpri (stream);
824 Fkill_emacs (make_number (-1));
825 }
826
827 Vquit_flag = Qnil;
828
829 Vinhibit_quit = Qnil;
830 return make_number (0);
831 }
832 \f
833 Lisp_Object command_loop_1 ();
834 Lisp_Object command_loop_2 ();
835 Lisp_Object top_level_1 ();
836
837 /* Entry to editor-command-loop.
838 This level has the catches for exiting/returning to editor command loop.
839 It returns nil to exit recursive edit, t to abort it. */
840
841 Lisp_Object
842 command_loop ()
843 {
844 if (command_loop_level > 0 || minibuf_level > 0)
845 {
846 return internal_catch (Qexit, command_loop_2, Qnil);
847 }
848 else
849 while (1)
850 {
851 internal_catch (Qtop_level, top_level_1, Qnil);
852 internal_catch (Qtop_level, command_loop_2, Qnil);
853
854 /* End of file in -batch run causes exit here. */
855 if (noninteractive)
856 Fkill_emacs (Qt);
857 }
858 }
859
860 /* Here we catch errors in execution of commands within the
861 editing loop, and reenter the editing loop.
862 When there is an error, cmd_error runs and returns a non-nil
863 value to us. A value of nil means that cmd_loop_1 itself
864 returned due to end of file (or end of kbd macro). */
865
866 Lisp_Object
867 command_loop_2 ()
868 {
869 register Lisp_Object val;
870
871 do
872 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
873 while (!NILP (val));
874
875 return Qnil;
876 }
877
878 Lisp_Object
879 top_level_2 ()
880 {
881 return Feval (Vtop_level);
882 }
883
884 Lisp_Object
885 top_level_1 ()
886 {
887 /* On entry to the outer level, run the startup file */
888 if (!NILP (Vtop_level))
889 internal_condition_case (top_level_2, Qerror, cmd_error);
890 else if (!NILP (Vpurify_flag))
891 message ("Bare impure Emacs (standard Lisp code not loaded)");
892 else
893 message ("Bare Emacs (standard Lisp code not loaded)");
894 return Qnil;
895 }
896
897 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
898 "Exit all recursive editing levels.")
899 ()
900 {
901 Fthrow (Qtop_level, Qnil);
902 }
903
904 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
905 "Exit from the innermost recursive edit or minibuffer.")
906 ()
907 {
908 if (command_loop_level > 0 || minibuf_level > 0)
909 Fthrow (Qexit, Qnil);
910
911 error ("No recursive edit is in progress");
912 }
913
914 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
915 "Abort the command that requested this recursive edit or minibuffer input.")
916 ()
917 {
918 if (command_loop_level > 0 || minibuf_level > 0)
919 Fthrow (Qexit, Qt);
920
921 error ("No recursive edit is in progress");
922 }
923 \f
924 /* This is the actual command reading loop,
925 sans error-handling encapsulation. */
926
927 Lisp_Object Fcommand_execute ();
928 static int read_key_sequence ();
929 static void safe_run_hooks ();
930
931 Lisp_Object
932 command_loop_1 ()
933 {
934 Lisp_Object cmd, tem;
935 int lose;
936 int nonundocount;
937 Lisp_Object keybuf[30];
938 int i;
939 int no_redisplay;
940 int no_direct;
941 int prev_modiff;
942 struct buffer *prev_buffer;
943
944 Vprefix_arg = Qnil;
945 Vdeactivate_mark = Qnil;
946 waiting_for_input = 0;
947 cancel_echoing ();
948
949 nonundocount = 0;
950 no_redisplay = 0;
951 this_command_key_count = 0;
952
953 /* Make sure this hook runs after commands that get errors and
954 throw to top level. */
955 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
956 safe_run_hooks (&Vpost_command_hook);
957
958 /* Do this after running Vpost_command_hook, for consistency. */
959 last_command = this_command;
960
961 while (1)
962 {
963 /* Install chars successfully executed in kbd macro. */
964
965 if (defining_kbd_macro && NILP (Vprefix_arg))
966 finalize_kbd_macro_chars ();
967
968 /* Make sure the current window's buffer is selected. */
969 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
970 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
971
972 /* Display any malloc warning that just came out. Use while because
973 displaying one warning can cause another. */
974
975 while (pending_malloc_warning)
976 display_malloc_warning ();
977
978 no_direct = 0;
979
980 Vdeactivate_mark = Qnil;
981
982 /* If minibuffer on and echo area in use,
983 wait 2 sec and redraw minibuffer. */
984
985 if (minibuf_level && echo_area_glyphs)
986 {
987 /* Bind inhibit-quit to t so that C-g gets read in
988 rather than quitting back to the minibuffer. */
989 int count = specpdl_ptr - specpdl;
990 specbind (Qinhibit_quit, Qt);
991 Fsit_for (make_number (2), Qnil, Qnil);
992 unbind_to (count, Qnil);
993
994 echo_area_glyphs = 0;
995 no_direct = 1;
996 if (!NILP (Vquit_flag))
997 {
998 Vquit_flag = Qnil;
999 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1000 }
1001 }
1002
1003 #ifdef C_ALLOCA
1004 alloca (0); /* Cause a garbage collection now */
1005 /* Since we can free the most stuff here. */
1006 #endif /* C_ALLOCA */
1007
1008 #if 0
1009 #ifdef MULTI_FRAME
1010 /* Select the frame that the last event came from. Usually,
1011 switch-frame events will take care of this, but if some lisp
1012 code swallows a switch-frame event, we'll fix things up here.
1013 Is this a good idea? */
1014 if (XTYPE (internal_last_event_frame) == Lisp_Frame
1015 && XFRAME (internal_last_event_frame) != selected_frame)
1016 Fselect_frame (internal_last_event_frame, Qnil);
1017 #endif
1018 #endif
1019 /* If it has changed current-menubar from previous value,
1020 really recompute the menubar from the value. */
1021 if (! NILP (Vlucid_menu_bar_dirty_flag)
1022 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1023 call0 (Qrecompute_lucid_menubar);
1024
1025 /* Read next key sequence; i gets its length. */
1026 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])), Qnil);
1027
1028 ++num_input_keys;
1029
1030 /* Now we have read a key sequence of length I,
1031 or else I is 0 and we found end of file. */
1032
1033 if (i == 0) /* End of file -- happens only in */
1034 return Qnil; /* a kbd macro, at the end. */
1035 /* -1 means read_key_sequence got a menu that was rejected.
1036 Just loop around and read another command. */
1037 if (i == -1)
1038 {
1039 cancel_echoing ();
1040 this_command_key_count = 0;
1041 continue;
1042 }
1043
1044 last_command_char = keybuf[i - 1];
1045
1046 /* If the previous command tried to force a specific window-start,
1047 forget about that, in case this command moves point far away
1048 from that position. */
1049 XWINDOW (selected_window)->force_start = Qnil;
1050
1051 cmd = read_key_sequence_cmd;
1052 if (!NILP (Vexecuting_macro))
1053 {
1054 if (!NILP (Vquit_flag))
1055 {
1056 Vexecuting_macro = Qt;
1057 QUIT; /* Make some noise. */
1058 /* Will return since macro now empty. */
1059 }
1060 }
1061
1062 /* Do redisplay processing after this command except in special
1063 cases identified below that set no_redisplay to 1.
1064 (actually, there's currently no way to prevent the redisplay,
1065 and no_redisplay is ignored.
1066 Perhaps someday we will really implement it. */
1067 no_redisplay = 0;
1068
1069 prev_buffer = current_buffer;
1070 prev_modiff = MODIFF;
1071 last_point_position = PT;
1072 XSET (last_point_position_buffer, Lisp_Buffer, prev_buffer);
1073
1074 /* Execute the command. */
1075
1076 this_command = cmd;
1077 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1078 safe_run_hooks (&Vpre_command_hook);
1079
1080 if (NILP (this_command))
1081 {
1082 /* nil means key is undefined. */
1083 bitch_at_user ();
1084 defining_kbd_macro = 0;
1085 update_mode_lines = 1;
1086 Vprefix_arg = Qnil;
1087
1088 }
1089 else
1090 {
1091 if (NILP (Vprefix_arg) && ! no_direct)
1092 {
1093 /* Recognize some common commands in common situations and
1094 do them directly. */
1095 if (EQ (this_command, Qforward_char) && PT < ZV)
1096 {
1097 struct Lisp_Vector *dp
1098 = window_display_table (XWINDOW (selected_window));
1099 lose = FETCH_CHAR (PT);
1100 SET_PT (PT + 1);
1101 if ((dp
1102 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1103 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1)
1104 : (lose >= 0x20 && lose < 0x7f))
1105 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1106 >= MODIFF)
1107 && (XFASTINT (XWINDOW (selected_window)->last_point)
1108 == PT - 1)
1109 && !windows_or_buffers_changed
1110 && EQ (current_buffer->selective_display, Qnil)
1111 && !detect_input_pending ()
1112 && NILP (Vexecuting_macro))
1113 no_redisplay = direct_output_forward_char (1);
1114 goto directly_done;
1115 }
1116 else if (EQ (this_command, Qbackward_char) && PT > BEGV)
1117 {
1118 struct Lisp_Vector *dp
1119 = window_display_table (XWINDOW (selected_window));
1120 SET_PT (PT - 1);
1121 lose = FETCH_CHAR (PT);
1122 if ((dp
1123 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1124 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1)
1125 : (lose >= 0x20 && lose < 0x7f))
1126 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1127 >= MODIFF)
1128 && (XFASTINT (XWINDOW (selected_window)->last_point)
1129 == PT + 1)
1130 && !windows_or_buffers_changed
1131 && EQ (current_buffer->selective_display, Qnil)
1132 && !detect_input_pending ()
1133 && NILP (Vexecuting_macro))
1134 no_redisplay = direct_output_forward_char (-1);
1135 goto directly_done;
1136 }
1137 else if (EQ (this_command, Qself_insert_command)
1138 /* Try this optimization only on ascii keystrokes. */
1139 && XTYPE (last_command_char) == Lisp_Int)
1140 {
1141 unsigned char c = XINT (last_command_char);
1142
1143 if (NILP (Vexecuting_macro) &&
1144 !EQ (minibuf_window, selected_window))
1145 {
1146 if (!nonundocount || nonundocount >= 20)
1147 {
1148 Fundo_boundary ();
1149 nonundocount = 0;
1150 }
1151 nonundocount++;
1152 }
1153 lose = (XFASTINT (XWINDOW (selected_window)->last_modified)
1154 < MODIFF)
1155 || (XFASTINT (XWINDOW (selected_window)->last_point) != PT)
1156 || MODIFF <= current_buffer->save_modified
1157 || windows_or_buffers_changed
1158 || !EQ (current_buffer->selective_display, Qnil)
1159 || detect_input_pending ()
1160 || !NILP (Vexecuting_macro);
1161 if (internal_self_insert (c, 0))
1162 {
1163 lose = 1;
1164 nonundocount = 0;
1165 }
1166 if (!lose &&
1167 (PT == ZV || FETCH_CHAR (PT) == '\n'))
1168 {
1169 struct Lisp_Vector *dp
1170 = window_display_table (XWINDOW (selected_window));
1171 int lose = c;
1172
1173 if (dp)
1174 {
1175 Lisp_Object obj;
1176
1177 obj = DISP_CHAR_VECTOR (dp, lose);
1178 if (NILP (obj))
1179 {
1180 /* Do it only for char codes
1181 that by default display as themselves. */
1182 if (lose >= 0x20 && lose <= 0x7e)
1183 no_redisplay = direct_output_for_insert (lose);
1184 }
1185 else if (XTYPE (obj) == Lisp_Vector
1186 && XVECTOR (obj)->size == 1
1187 && (XTYPE (obj = XVECTOR (obj)->contents[0])
1188 == Lisp_Int)
1189 /* Insist face not specified in glyph. */
1190 && (XINT (obj) & ((-1) << 8)) == 0)
1191 no_redisplay
1192 = direct_output_for_insert (XINT (obj));
1193 }
1194 else
1195 {
1196 if (lose >= 0x20 && lose <= 0x7e)
1197 no_redisplay = direct_output_for_insert (lose);
1198 }
1199 }
1200 goto directly_done;
1201 }
1202 }
1203
1204 /* Here for a command that isn't executed directly */
1205
1206 nonundocount = 0;
1207 if (NILP (Vprefix_arg))
1208 Fundo_boundary ();
1209 Fcommand_execute (this_command, Qnil);
1210
1211 }
1212 directly_done: ;
1213
1214 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1215 safe_run_hooks (&Vpost_command_hook);
1216
1217 /* If there is a prefix argument,
1218 1) We don't want last_command to be ``universal-argument''
1219 (that would be dumb), so don't set last_command,
1220 2) we want to leave echoing on so that the prefix will be
1221 echoed as part of this key sequence, so don't call
1222 cancel_echoing, and
1223 3) we want to leave this_command_key_count non-zero, so that
1224 read_char will realize that it is re-reading a character, and
1225 not echo it a second time. */
1226 if (NILP (Vprefix_arg))
1227 {
1228 last_command = this_command;
1229 cancel_echoing ();
1230 this_command_key_count = 0;
1231 }
1232
1233 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1234 {
1235 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1236 {
1237 current_buffer->mark_active = Qnil;
1238 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1239 }
1240 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1241 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1242 }
1243 }
1244 }
1245
1246 /* If we get an error while running the hook, cause the hook variable
1247 to be nil. Also inhibit quits, so that C-g won't cause the hook
1248 to mysteriously evaporate. */
1249 static void
1250 safe_run_hooks (hook)
1251 Lisp_Object *hook;
1252 {
1253 int count = specpdl_ptr - specpdl;
1254 specbind (Qinhibit_quit, Qt);
1255
1256 Vcommand_hook_internal = *hook;
1257 *hook = Qnil;
1258 call1 (Vrun_hooks, Qcommand_hook_internal);
1259 *hook = Vcommand_hook_internal;
1260
1261 unbind_to (count, Qnil);
1262 }
1263 \f
1264 /* Number of seconds between polling for input. */
1265 int polling_period;
1266
1267 /* Nonzero means polling for input is temporarily suppressed. */
1268 int poll_suppress_count;
1269
1270 #ifdef POLL_FOR_INPUT
1271 int polling_for_input;
1272
1273 /* Handle an alarm once each second and read pending input
1274 so as to handle a C-g if it comces in. */
1275
1276 SIGTYPE
1277 input_poll_signal ()
1278 {
1279 if (interrupt_input_blocked == 0
1280 && !waiting_for_input)
1281 read_avail_input (0);
1282 signal (SIGALRM, input_poll_signal);
1283 alarm (polling_period);
1284 }
1285
1286 #endif
1287
1288 /* Begin signals to poll for input, if they are appropriate.
1289 This function is called unconditionally from various places. */
1290
1291 start_polling ()
1292 {
1293 #ifdef POLL_FOR_INPUT
1294 if (read_socket_hook && !interrupt_input)
1295 {
1296 poll_suppress_count--;
1297 if (poll_suppress_count == 0)
1298 {
1299 signal (SIGALRM, input_poll_signal);
1300 polling_for_input = 1;
1301 alarm (polling_period);
1302 }
1303 }
1304 #endif
1305 }
1306
1307 /* Turn off polling. */
1308
1309 stop_polling ()
1310 {
1311 #ifdef POLL_FOR_INPUT
1312 if (read_socket_hook && !interrupt_input)
1313 {
1314 if (poll_suppress_count == 0)
1315 {
1316 polling_for_input = 0;
1317 alarm (0);
1318 }
1319 poll_suppress_count++;
1320 }
1321 #endif
1322 }
1323
1324 /* Set the value of poll_suppress_count to COUNT
1325 and start or stop polling accordingly. */
1326
1327 void
1328 set_poll_suppress_count (count)
1329 int count;
1330 {
1331 #ifdef POLL_FOR_INPUT
1332 if (count == 0 && poll_suppress_count != 0)
1333 {
1334 poll_suppress_count = 1;
1335 start_polling ();
1336 }
1337 else if (count != 0 && poll_suppress_count == 0)
1338 {
1339 stop_polling ();
1340 }
1341 poll_suppress_count = count;
1342 #endif
1343 }
1344
1345 /* Bind polling_period to a value at least N.
1346 But don't decrease it. */
1347
1348 bind_polling_period (n)
1349 int n;
1350 {
1351 #ifdef POLL_FOR_INPUT
1352 int new = polling_period;
1353
1354 if (n > new)
1355 new = n;
1356
1357 stop_polling ();
1358 specbind (Qpolling_period, make_number (new));
1359 /* Start a new alarm with the new period. */
1360 start_polling ();
1361 #endif
1362 }
1363 \f
1364 /* Applying the control modifier to CHARACTER. */
1365 int
1366 make_ctrl_char (c)
1367 int c;
1368 {
1369 /* Save the upper bits here. */
1370 int upper = c & ~0177;
1371
1372 c &= 0177;
1373
1374 /* Everything in the columns containing the upper-case letters
1375 denotes a control character. */
1376 if (c >= 0100 && c < 0140)
1377 {
1378 int oc = c;
1379 c &= ~0140;
1380 /* Set the shift modifier for a control char
1381 made from a shifted letter. But only for letters! */
1382 if (oc >= 'A' && oc <= 'Z')
1383 c |= shift_modifier;
1384 }
1385
1386 /* The lower-case letters denote control characters too. */
1387 else if (c >= 'a' && c <= 'z')
1388 c &= ~0140;
1389
1390 /* Include the bits for control and shift
1391 only if the basic ASCII code can't indicate them. */
1392 else if (c >= ' ')
1393 c |= ctrl_modifier;
1394
1395 /* Replace the high bits. */
1396 c |= (upper & ~ctrl_modifier);
1397
1398 return c;
1399 }
1400
1401
1402 \f
1403 /* Input of single characters from keyboard */
1404
1405 Lisp_Object print_help ();
1406 static Lisp_Object kbd_buffer_get_event ();
1407
1408 /* read a character from the keyboard; call the redisplay if needed */
1409 /* commandflag 0 means do not do auto-saving, but do do redisplay.
1410 -1 means do not do redisplay, but do do autosaving.
1411 1 means do both. */
1412
1413 /* The arguments MAPS and NMAPS are for menu prompting.
1414 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1415
1416 PREV_EVENT is the previous input event, or nil if we are reading
1417 the first event of a key sequence.
1418
1419 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
1420 if we used a mouse menu to read the input, or zero otherwise. If
1421 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
1422
1423 Value is t if we showed a menu and the user rejected it. */
1424
1425 Lisp_Object
1426 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
1427 int commandflag;
1428 int nmaps;
1429 Lisp_Object *maps;
1430 Lisp_Object prev_event;
1431 int *used_mouse_menu;
1432 {
1433 register Lisp_Object c;
1434 int count;
1435 jmp_buf save_jump;
1436
1437 if (CONSP (Vunread_command_events))
1438 {
1439 c = XCONS (Vunread_command_events)->car;
1440 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
1441
1442 if (this_command_key_count == 0)
1443 goto reread_first;
1444 else
1445 goto reread;
1446 }
1447
1448 if (unread_command_char != -1)
1449 {
1450 XSET (c, Lisp_Int, unread_command_char);
1451 unread_command_char = -1;
1452
1453 if (this_command_key_count == 0)
1454 goto reread_first;
1455 else
1456 goto reread;
1457 }
1458
1459 if (!NILP (Vexecuting_macro))
1460 {
1461 #ifdef MULTI_FRAME
1462 /* We set this to Qmacro; since that's not a frame, nobody will
1463 try to switch frames on us, and the selected window will
1464 remain unchanged.
1465
1466 Since this event came from a macro, it would be misleading to
1467 leave internal_last_event_frame set to wherever the last
1468 real event came from. Normally, a switch-frame event selects
1469 internal_last_event_frame after each command is read, but
1470 events read from a macro should never cause a new frame to be
1471 selected. */
1472 Vlast_event_frame = internal_last_event_frame = Qmacro;
1473 #endif
1474
1475 /* Exit the macro if we are at the end.
1476 Also, some things replace the macro with t
1477 to force an early exit. */
1478 if (EQ (Vexecuting_macro, Qt)
1479 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
1480 {
1481 XSET (c, Lisp_Int, -1);
1482 return c;
1483 }
1484
1485 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
1486 if (XTYPE (Vexecuting_macro) == Lisp_String
1487 && (XINT (c) & 0x80))
1488 XFASTINT (c) = CHAR_META | (XINT (c) & ~0x80);
1489
1490 executing_macro_index++;
1491
1492 goto from_macro;
1493 }
1494
1495 if (!NILP (unread_switch_frame))
1496 {
1497 c = unread_switch_frame;
1498 unread_switch_frame = Qnil;
1499
1500 /* This event should make it into this_command_keys, and get echoed
1501 again, so we go to reread_first, rather than reread. */
1502 goto reread_first;
1503 }
1504
1505 /* Don't bother updating menu bars while doing mouse tracking.
1506 We get events very rapidly then, and the menu bar won't be changing.
1507 We do update the menu bar once on entry to Ftrack_mouse. */
1508 if (commandflag > 0 && !input_pending && !detect_input_pending ())
1509 prepare_menu_bars ();
1510
1511 /* Save outer setjmp data, in case called recursively. */
1512 save_getcjmp (save_jump);
1513
1514 stop_polling ();
1515
1516 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1517 redisplay ();
1518
1519 if (_setjmp (getcjmp))
1520 {
1521 XSET (c, Lisp_Int, quit_char);
1522 #ifdef MULTI_FRAME
1523 XSET (internal_last_event_frame, Lisp_Frame, selected_frame);
1524 Vlast_event_frame = internal_last_event_frame;
1525 #endif
1526 /* If we report the quit char as an event,
1527 don't do so more than once. */
1528 if (!NILP (Vinhibit_quit))
1529 Vquit_flag = Qnil;
1530
1531 goto non_reread;
1532 }
1533
1534 /* Message turns off echoing unless more keystrokes turn it on again. */
1535 if (echo_area_glyphs && *echo_area_glyphs && echo_area_glyphs != echobuf)
1536 cancel_echoing ();
1537 else
1538 /* If already echoing, continue. */
1539 echo_dash ();
1540
1541 /* Try reading a character via menu prompting in the minibuf.
1542 Try this before the sit-for, because the sit-for
1543 would do the wrong thing if we are supposed to do
1544 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
1545 after a mouse event so don't try a minibuf menu. */
1546 c = Qnil;
1547 if (nmaps > 0 && INTERACTIVE
1548 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
1549 /* Don't bring up a menu if we already have another event. */
1550 && NILP (Vunread_command_events)
1551 && unread_command_char < 0
1552 && !detect_input_pending ())
1553 {
1554 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
1555 if (! NILP (c))
1556 return c;
1557 }
1558
1559 /* If in middle of key sequence and minibuffer not active,
1560 start echoing if enough time elapses. */
1561 if (minibuf_level == 0 && !immediate_echo && this_command_key_count > 0
1562 && ! noninteractive
1563 && echo_keystrokes > 0
1564 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0))
1565 {
1566 Lisp_Object tem0;
1567
1568 /* After a mouse event, start echoing right away.
1569 This is because we are probably about to display a menu,
1570 and we don't want to delay before doing so. */
1571 if (EVENT_HAS_PARAMETERS (prev_event))
1572 echo ();
1573 else
1574 {
1575 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
1576 if (EQ (tem0, Qt))
1577 echo ();
1578 }
1579 }
1580
1581 /* Maybe auto save due to number of keystrokes or idle time. */
1582
1583 if (commandflag != 0
1584 && auto_save_interval > 0
1585 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20)
1586 && !detect_input_pending ())
1587 {
1588 jmp_buf temp;
1589 save_getcjmp (temp);
1590 Fdo_auto_save (Qnil, Qnil);
1591 restore_getcjmp (temp);
1592 }
1593
1594 /* Try reading using an X menu.
1595 This is never confused with reading using the minibuf
1596 because the recursive call of read_char in read_char_minibuf_menu_prompt
1597 does not pass on any keymaps. */
1598 if (nmaps > 0 && INTERACTIVE
1599 && !NILP (prev_event) && EVENT_HAS_PARAMETERS (prev_event)
1600 /* Don't bring up a menu if we already have another event. */
1601 && NILP (Vunread_command_events)
1602 && unread_command_char < 0)
1603 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
1604
1605 /* Slow down auto saves logarithmically in size of current buffer,
1606 and garbage collect while we're at it. */
1607 if (INTERACTIVE && NILP (c))
1608 {
1609 int delay_level, buffer_size;
1610
1611 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
1612 last_non_minibuf_size = Z - BEG;
1613 buffer_size = (last_non_minibuf_size >> 8) + 1;
1614 delay_level = 0;
1615 while (buffer_size > 64)
1616 delay_level++, buffer_size -= buffer_size >> 2;
1617 if (delay_level < 4) delay_level = 4;
1618 /* delay_level is 4 for files under around 50k, 7 at 100k,
1619 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1620
1621 /* Auto save if enough time goes by without input. */
1622 if (commandflag != 0
1623 && num_nonmacro_input_chars > last_auto_save
1624 && XTYPE (Vauto_save_timeout) == Lisp_Int
1625 && XINT (Vauto_save_timeout) > 0)
1626 {
1627 Lisp_Object tem0;
1628 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4;
1629 tem0 = sit_for (delay, 0, 1, 1);
1630 if (EQ (tem0, Qt))
1631 {
1632 jmp_buf temp;
1633 save_getcjmp (temp);
1634 Fdo_auto_save (Qnil, Qnil);
1635 restore_getcjmp (temp);
1636
1637 /* If we have auto-saved and there is still no input
1638 available, garbage collect if there has been enough
1639 consing going on to make it worthwhile. */
1640 if (!detect_input_pending ()
1641 && consing_since_gc > gc_cons_threshold / 2)
1642 {
1643 Fgarbage_collect ();
1644 /* prepare_menu_bars isn't safe here, but it should
1645 also be unnecessary. */
1646 redisplay ();
1647 }
1648 }
1649 }
1650 }
1651
1652 /* Actually read a character, waiting if necessary. */
1653 while (NILP (c))
1654 {
1655 c = kbd_buffer_get_event ();
1656 if (!NILP (c))
1657 break;
1658 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1659 {
1660 prepare_menu_bars ();
1661 redisplay ();
1662 }
1663 }
1664
1665 /* Terminate Emacs in batch mode if at eof. */
1666 if (noninteractive && XTYPE (c) == Lisp_Int && XINT (c) < 0)
1667 Fkill_emacs (make_number (1));
1668
1669 if (XTYPE (c) == Lisp_Int)
1670 {
1671 /* Add in any extra modifiers, where appropriate. */
1672 if ((extra_keyboard_modifiers & CHAR_CTL)
1673 || ((extra_keyboard_modifiers & 0177) < ' '
1674 && (extra_keyboard_modifiers & 0177) != 0))
1675 XSETINT (c, make_ctrl_char (XINT (c)));
1676
1677 /* Transfer any other modifier bits directly from
1678 extra_keyboard_modifiers to c. Ignore the actual character code
1679 in the low 16 bits of extra_keyboard_modifiers. */
1680 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
1681 }
1682
1683 non_reread:
1684
1685 restore_getcjmp (save_jump);
1686
1687 start_polling ();
1688
1689 /* Don't wipe the echo area for a trivial event. */
1690 if (XTYPE (c) != Lisp_Buffer)
1691 echo_area_glyphs = 0;
1692
1693 /* Handle things that only apply to characters. */
1694 if (XTYPE (c) == Lisp_Int)
1695 {
1696 /* If kbd_buffer_get_event gave us an EOF, return that. */
1697 if (XINT (c) == -1)
1698 return c;
1699
1700 if (XTYPE (Vkeyboard_translate_table) == Lisp_String
1701 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c))
1702 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
1703 }
1704
1705 total_keys++;
1706 XVECTOR (recent_keys)->contents[recent_keys_index] = c;
1707 if (++recent_keys_index >= NUM_RECENT_KEYS)
1708 recent_keys_index = 0;
1709
1710 /* Write c to the dribble file. If c is a lispy event, write
1711 the event's symbol to the dribble file, in <brackets>. Bleaugh.
1712 If you, dear reader, have a better idea, you've got the source. :-) */
1713 if (dribble)
1714 {
1715 if (XTYPE (c) == Lisp_Int)
1716 putc (XINT (c), dribble);
1717 else
1718 {
1719 Lisp_Object dribblee;
1720
1721 /* If it's a structured event, take the event header. */
1722 dribblee = EVENT_HEAD (c);
1723
1724 if (XTYPE (dribblee) == Lisp_Symbol)
1725 {
1726 putc ('<', dribble);
1727 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
1728 XSYMBOL (dribblee)->name->size,
1729 dribble);
1730 putc ('>', dribble);
1731 }
1732 }
1733
1734 fflush (dribble);
1735 }
1736
1737 store_kbd_macro_char (c);
1738
1739 num_nonmacro_input_chars++;
1740
1741 from_macro:
1742 reread_first:
1743
1744 /* Don't echo mouse motion events. */
1745 if (! (EVENT_HAS_PARAMETERS (c)
1746 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
1747 echo_char (c);
1748
1749 /* Record this character as part of the current key. */
1750 add_command_key (c);
1751
1752 /* Re-reading in the middle of a command */
1753 reread:
1754 last_input_char = c;
1755 num_input_chars++;
1756
1757 /* Process the help character specially if enabled */
1758 if (EQ (c, Vhelp_char) && !NILP (Vhelp_form))
1759 {
1760 Lisp_Object tem0;
1761 count = specpdl_ptr - specpdl;
1762
1763 record_unwind_protect (Fset_window_configuration,
1764 Fcurrent_window_configuration (Qnil));
1765
1766 tem0 = Feval (Vhelp_form);
1767 if (XTYPE (tem0) == Lisp_String)
1768 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
1769
1770 cancel_echoing ();
1771 do
1772 c = read_char (0, 0, 0, Qnil, 0);
1773 while (XTYPE (c) == Lisp_Buffer);
1774 /* Remove the help from the frame */
1775 unbind_to (count, Qnil);
1776 prepare_menu_bars ();
1777 redisplay ();
1778 if (EQ (c, make_number (040)))
1779 {
1780 cancel_echoing ();
1781 do
1782 c = read_char (0, 0, 0, Qnil, 0);
1783 while (XTYPE (c) == Lisp_Buffer);
1784 }
1785 }
1786
1787 return c;
1788 }
1789
1790 Lisp_Object
1791 print_help (object)
1792 Lisp_Object object;
1793 {
1794 Fprinc (object, Qnil);
1795 return Qnil;
1796 }
1797
1798 /* Copy out or in the info on where C-g should throw to.
1799 This is used when running Lisp code from within get_char,
1800 in case get_char is called recursively.
1801 See read_process_output. */
1802
1803 save_getcjmp (temp)
1804 jmp_buf temp;
1805 {
1806 bcopy (getcjmp, temp, sizeof getcjmp);
1807 }
1808
1809 restore_getcjmp (temp)
1810 jmp_buf temp;
1811 {
1812 bcopy (temp, getcjmp, sizeof getcjmp);
1813 }
1814
1815 \f
1816 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1817 of this function. */
1818 static Lisp_Object
1819 tracking_off (old_value)
1820 Lisp_Object old_value;
1821 {
1822 if (! XFASTINT (old_value))
1823 {
1824 do_mouse_tracking = 0;
1825
1826 /* Redisplay may have been preempted because there was input
1827 available, and it assumes it will be called again after the
1828 input has been processed. If the only input available was
1829 the sort that we have just disabled, then we need to call
1830 redisplay. */
1831 if (!readable_events ())
1832 {
1833 prepare_menu_bars ();
1834 redisplay_preserve_echo_area ();
1835 get_input_pending (&input_pending);
1836 }
1837 }
1838 }
1839
1840 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1841 "Evaluate BODY with mouse movement events enabled.\n\
1842 Within a `track-mouse' form, mouse motion generates input events that\n\
1843 you can read with `read-event'.\n\
1844 Normally, mouse motion is ignored.")
1845 (args)
1846 Lisp_Object args;
1847 {
1848 int count = specpdl_ptr - specpdl;
1849 Lisp_Object val;
1850
1851 XSET (val, Lisp_Int, do_mouse_tracking);
1852 record_unwind_protect (tracking_off, val);
1853
1854 if (!input_pending && !detect_input_pending ())
1855 prepare_menu_bars ();
1856
1857 do_mouse_tracking = 1;
1858
1859 val = Fprogn (args);
1860 return unbind_to (count, val);
1861 }
1862 \f
1863 /* Low level keyboard/mouse input.
1864 kbd_buffer_store_event places events in kbd_buffer, and
1865 kbd_buffer_get_event retrieves them.
1866 mouse_moved indicates when the mouse has moved again, and
1867 *mouse_position_hook provides the mouse position. */
1868
1869 /* Return true iff there are any events in the queue that read-char
1870 would return. If this returns false, a read-char would block. */
1871 static int
1872 readable_events ()
1873 {
1874 return ! EVENT_QUEUES_EMPTY;
1875 }
1876
1877 /* Set this for debugging, to have a way to get out */
1878 int stop_character;
1879
1880 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
1881
1882 void
1883 kbd_buffer_store_event (event)
1884 register struct input_event *event;
1885 {
1886 if (event->kind == no_event)
1887 abort ();
1888
1889 if (event->kind == ascii_keystroke)
1890 {
1891 register int c = event->code & 0377;
1892
1893 if (event->modifiers & ctrl_modifier)
1894 c = make_ctrl_char (c);
1895
1896 c |= (event->modifiers
1897 & (meta_modifier | alt_modifier
1898 | hyper_modifier | super_modifier));
1899
1900 if (c == quit_char)
1901 {
1902 extern SIGTYPE interrupt_signal ();
1903
1904 #ifdef MULTI_FRAME
1905 /* If this results in a quit_char being returned to Emacs as
1906 input, set Vlast_event_frame properly. If this doesn't
1907 get returned to Emacs as an event, the next event read
1908 will set Vlast_event_frame again, so this is safe to do. */
1909 {
1910 Lisp_Object focus;
1911
1912 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
1913 if (NILP (focus))
1914 internal_last_event_frame = event->frame_or_window;
1915 else
1916 internal_last_event_frame = focus;
1917 Vlast_event_frame = internal_last_event_frame;
1918 }
1919 #endif
1920
1921 last_event_timestamp = event->timestamp;
1922 interrupt_signal ();
1923 return;
1924 }
1925
1926 if (c && c == stop_character)
1927 {
1928 sys_suspend ();
1929 return;
1930 }
1931 }
1932
1933 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
1934 kbd_store_ptr = kbd_buffer;
1935
1936 /* Don't let the very last slot in the buffer become full,
1937 since that would make the two pointers equal,
1938 and that is indistinguishable from an empty buffer.
1939 Discard the event if it would fill the last slot. */
1940 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
1941 {
1942 kbd_store_ptr->kind = event->kind;
1943 if (event->kind == selection_request_event)
1944 {
1945 /* We must not use the ordinary copying code for this case,
1946 since `part' is an enum and copying it might not copy enough
1947 in this case. */
1948 bcopy (event, kbd_store_ptr, sizeof (*event));
1949 }
1950 else
1951 {
1952 kbd_store_ptr->code = event->code;
1953 kbd_store_ptr->part = event->part;
1954 kbd_store_ptr->frame_or_window = event->frame_or_window;
1955 kbd_store_ptr->modifiers = event->modifiers;
1956 kbd_store_ptr->x = event->x;
1957 kbd_store_ptr->y = event->y;
1958 kbd_store_ptr->timestamp = event->timestamp;
1959 }
1960 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr
1961 - kbd_buffer]
1962 = event->frame_or_window);
1963
1964 kbd_store_ptr++;
1965 }
1966 }
1967 \f
1968 /* Read one event from the event buffer, waiting if necessary.
1969 The value is a Lisp object representing the event.
1970 The value is nil for an event that should be ignored,
1971 or that was handled here.
1972 We always read and discard one event. */
1973
1974 static Lisp_Object
1975 kbd_buffer_get_event ()
1976 {
1977 register int c;
1978 Lisp_Object obj;
1979
1980 if (noninteractive)
1981 {
1982 c = getchar ();
1983 XSET (obj, Lisp_Int, c);
1984 return obj;
1985 }
1986
1987 /* Wait until there is input available. */
1988 for (;;)
1989 {
1990 if (!EVENT_QUEUES_EMPTY)
1991 break;
1992
1993 /* If the quit flag is set, then read_char will return
1994 quit_char, so that counts as "available input." */
1995 if (!NILP (Vquit_flag))
1996 quit_throw_to_read_char ();
1997
1998 /* One way or another, wait until input is available; then, if
1999 interrupt handlers have not read it, read it now. */
2000
2001 #ifdef OLDVMS
2002 wait_for_kbd_input ();
2003 #else
2004 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2005 #ifdef SIGIO
2006 gobble_input (0);
2007 #endif /* SIGIO */
2008 if (EVENT_QUEUES_EMPTY)
2009 {
2010 Lisp_Object minus_one;
2011
2012 XSET (minus_one, Lisp_Int, -1);
2013 wait_reading_process_input (0, 0, minus_one, 1);
2014
2015 if (!interrupt_input && EVENT_QUEUES_EMPTY)
2016 /* Pass 1 for EXPECT since we just waited to have input. */
2017 read_avail_input (1);
2018 }
2019 #endif /* not VMS */
2020 }
2021
2022 /* At this point, we know that there is a readable event available
2023 somewhere. If the event queue is empty, then there must be a
2024 mouse movement enabled and available. */
2025 if (kbd_fetch_ptr != kbd_store_ptr)
2026 {
2027 struct input_event *event;
2028
2029 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2030 ? kbd_fetch_ptr
2031 : kbd_buffer);
2032
2033 last_event_timestamp = event->timestamp;
2034
2035 obj = Qnil;
2036
2037 /* These two kinds of events get special handling
2038 and don't actually appear to the command loop.
2039 We return nil for them. */
2040 if (event->kind == selection_request_event)
2041 {
2042 #ifdef HAVE_X11
2043 x_handle_selection_request (event);
2044 kbd_fetch_ptr = event + 1;
2045 #else
2046 /* We're getting selection request events, but we don't have
2047 a window system. */
2048 abort ();
2049 #endif
2050 }
2051
2052 else if (event->kind == selection_clear_event)
2053 {
2054 #ifdef HAVE_X11
2055 x_handle_selection_clear (event);
2056 kbd_fetch_ptr = event + 1;
2057 #else
2058 /* We're getting selection request events, but we don't have
2059 a window system. */
2060 abort ();
2061 #endif
2062 }
2063 #ifdef HAVE_X11
2064 else if (event->kind == delete_window_event)
2065 {
2066 Lisp_Object tail, frame;
2067 struct frame *f;
2068
2069 /* If the user destroys the only frame, Emacs should exit.
2070 Count visible frames and iconified frames. */
2071 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
2072 {
2073 frame = XCONS (tail)->car;
2074 if (XTYPE (frame) != Lisp_Frame || EQ (frame, event->frame_or_window))
2075 continue;
2076 f = XFRAME (frame);
2077 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
2078 break;
2079 }
2080
2081 if (! CONSP (tail))
2082 Fkill_emacs (Qnil);
2083
2084 Fdelete_frame (event->frame_or_window, Qt);
2085 kbd_fetch_ptr = event + 1;
2086 }
2087 #endif
2088 else if (event->kind == menu_bar_event)
2089 {
2090 /* The event value is in the frame_or_window slot. */
2091 obj = event->frame_or_window;
2092 kbd_fetch_ptr = event + 1;
2093 }
2094 else if (event->kind == buffer_switch_event)
2095 {
2096 /* The value doesn't matter here; only the type is tested. */
2097 XSET (obj, Lisp_Buffer, current_buffer);
2098 kbd_fetch_ptr = event + 1;
2099 }
2100 /* Just discard these, by returning nil.
2101 (They shouldn't be found in the buffer,
2102 but on some machines it appears they do show up.) */
2103 else if (event->kind == no_event)
2104 kbd_fetch_ptr = event + 1;
2105
2106 /* If this event is on a different frame, return a switch-frame this
2107 time, and leave the event in the queue for next time. */
2108 else
2109 {
2110 #ifdef MULTI_FRAME
2111 Lisp_Object frame;
2112 Lisp_Object focus;
2113
2114 frame = event->frame_or_window;
2115 if (XTYPE (frame) == Lisp_Window)
2116 frame = WINDOW_FRAME (XWINDOW (frame));
2117
2118 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
2119 if (! NILP (focus))
2120 frame = focus;
2121
2122 if (! EQ (frame, internal_last_event_frame)
2123 && XFRAME (frame) != selected_frame)
2124 obj = make_lispy_switch_frame (frame);
2125 internal_last_event_frame = frame;
2126 #endif /* MULTI_FRAME */
2127
2128 /* If we didn't decide to make a switch-frame event, go ahead
2129 and build a real event from the queue entry. */
2130
2131 if (NILP (obj))
2132 {
2133 obj = make_lispy_event (event);
2134
2135 /* Wipe out this event, to catch bugs. */
2136 event->kind = no_event;
2137 (XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer]
2138 = Qnil);
2139
2140 kbd_fetch_ptr = event + 1;
2141 }
2142 }
2143 }
2144 /* Try generating a mouse motion event. */
2145 else if (do_mouse_tracking && mouse_moved)
2146 {
2147 FRAME_PTR f = 0;
2148 Lisp_Object bar_window;
2149 enum scroll_bar_part part;
2150 Lisp_Object x, y;
2151 unsigned long time;
2152
2153 (*mouse_position_hook) (&f, &bar_window, &part, &x, &y, &time);
2154
2155 obj = Qnil;
2156
2157 #ifdef MULTI_FRAME
2158 /* Decide if we should generate a switch-frame event. Don't
2159 generate switch-frame events for motion outside of all Emacs
2160 frames. */
2161 if (f)
2162 {
2163 Lisp_Object frame;
2164
2165 frame = FRAME_FOCUS_FRAME (f);
2166 if (NILP (frame))
2167 XSET (frame, Lisp_Frame, f);
2168
2169 if (! EQ (frame, internal_last_event_frame)
2170 && XFRAME (frame) != selected_frame)
2171 obj = make_lispy_switch_frame (frame);
2172 internal_last_event_frame = frame;
2173 }
2174
2175 /* If we didn't decide to make a switch-frame event, go ahead and
2176 return a mouse-motion event. */
2177 if (NILP (obj))
2178 obj = make_lispy_movement (f, bar_window, part, x, y, time);
2179 #endif
2180 }
2181 else
2182 /* We were promised by the above while loop that there was
2183 something for us to read! */
2184 abort ();
2185
2186 input_pending = readable_events ();
2187
2188 #ifdef MULTI_FRAME
2189 Vlast_event_frame = internal_last_event_frame;
2190 #endif
2191
2192 return (obj);
2193 }
2194 \f
2195 /* Process any events that are not user-visible,
2196 then return, without reading any user-visible events. */
2197
2198 void
2199 swallow_events ()
2200 {
2201 while (kbd_fetch_ptr != kbd_store_ptr)
2202 {
2203 struct input_event *event;
2204
2205 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2206 ? kbd_fetch_ptr
2207 : kbd_buffer);
2208
2209 last_event_timestamp = event->timestamp;
2210
2211 /* These two kinds of events get special handling
2212 and don't actually appear to the command loop. */
2213 if (event->kind == selection_request_event)
2214 {
2215 #ifdef HAVE_X11
2216 x_handle_selection_request (event);
2217 kbd_fetch_ptr = event + 1;
2218 #else
2219 /* We're getting selection request events, but we don't have
2220 a window system. */
2221 abort ();
2222 #endif
2223 }
2224
2225 else if (event->kind == selection_clear_event)
2226 {
2227 #ifdef HAVE_X11
2228 x_handle_selection_clear (event);
2229 kbd_fetch_ptr = event + 1;
2230 #else
2231 /* We're getting selection request events, but we don't have
2232 a window system. */
2233 abort ();
2234 #endif
2235 }
2236 else
2237 break;
2238 }
2239
2240 get_input_pending (&input_pending);
2241 }
2242 \f
2243 /* Caches for modify_event_symbol. */
2244 static Lisp_Object accent_key_syms;
2245 static Lisp_Object system_key_syms;
2246 static Lisp_Object func_key_syms;
2247 static Lisp_Object mouse_syms;
2248
2249 Lisp_Object Vsystem_key_alist;
2250
2251 /* This is a list of keysym codes for special "accent" characters.
2252 It parallels lispy_accent_keys. */
2253
2254 static int lispy_accent_codes[] =
2255 {
2256 #ifdef XK_dead_circumflex
2257 XK_dead_circumflex,
2258 #else
2259 0,
2260 #endif
2261 #ifdef XK_dead_grave
2262 XK_dead_grave,
2263 #else
2264 0,
2265 #endif
2266 #ifdef XK_dead_tilde
2267 XK_dead_tilde,
2268 #else
2269 0,
2270 #endif
2271 #ifdef XK_dead_diaeresis
2272 XK_dead_diaeresis,
2273 #else
2274 0,
2275 #endif
2276 #ifdef XK_dead_macron
2277 XK_dead_macron,
2278 #else
2279 0,
2280 #endif
2281 #ifdef XK_dead_degree
2282 XK_dead_degree,
2283 #else
2284 0,
2285 #endif
2286 #ifdef XK_dead_acute
2287 XK_dead_acute,
2288 #else
2289 0,
2290 #endif
2291 #ifdef XK_dead_cedilla
2292 XK_dead_cedilla,
2293 #else
2294 0,
2295 #endif
2296 #ifdef XK_dead_breve
2297 XK_dead_breve,
2298 #else
2299 0,
2300 #endif
2301 #ifdef XK_dead_ogonek
2302 XK_dead_ogonek,
2303 #else
2304 0,
2305 #endif
2306 #ifdef XK_dead_caron
2307 XK_dead_caron,
2308 #else
2309 0,
2310 #endif
2311 #ifdef XK_dead_doubleacute
2312 XK_dead_doubleacute,
2313 #else
2314 0,
2315 #endif
2316 #ifdef XK_dead_abovedot
2317 XK_dead_abovedot,
2318 #else
2319 0,
2320 #endif
2321 };
2322
2323 /* This is a list of Lisp names for special "accent" characters.
2324 It parallels lispy_accent_codes. */
2325
2326 static char *lispy_accent_keys[] =
2327 {
2328 "dead-circumflex",
2329 "dead-grave",
2330 "dead-tilde",
2331 "dead-diaeresis",
2332 "dead-macron",
2333 "dead-degree",
2334 "dead-acute",
2335 "dead-cedilla",
2336 "dead-breve",
2337 "dead-ogonek",
2338 "dead-caron",
2339 "dead-doubleacute",
2340 "dead-abovedot",
2341 };
2342
2343 /* You'll notice that this table is arranged to be conveniently
2344 indexed by X Windows keysym values. */
2345 static char *lispy_function_keys[] =
2346 {
2347 /* X Keysym value */
2348
2349 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
2350 "backspace",
2351 "tab",
2352 "linefeed",
2353 "clear",
2354 0,
2355 "return",
2356 0, 0,
2357 0, 0, 0, /* 0xff10 */
2358 "pause",
2359 0, 0, 0, 0, 0, 0, 0,
2360 "escape",
2361 0, 0, 0, 0,
2362 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
2363 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
2364 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
2365
2366 "home", /* 0xff50 */ /* IsCursorKey */
2367 "left",
2368 "up",
2369 "right",
2370 "down",
2371 "prior",
2372 "next",
2373 "end",
2374 "begin",
2375 0, /* 0xff59 */
2376 0, 0, 0, 0, 0, 0,
2377 "select", /* 0xff60 */ /* IsMiscFunctionKey */
2378 "print",
2379 "execute",
2380 "insert",
2381 0, /* 0xff64 */
2382 "undo",
2383 "redo",
2384 "menu",
2385 "find",
2386 "cancel",
2387 "help",
2388 "break", /* 0xff6b */
2389
2390 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
2391 0, /* 0xff76 */
2392 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
2393 "kp-space", /* 0xff80 */ /* IsKeypadKey */
2394 0, 0, 0, 0, 0, 0, 0, 0,
2395 "kp-tab", /* 0xff89 */
2396 0, 0, 0,
2397 "kp-enter", /* 0xff8d */
2398 0, 0, 0,
2399 "kp-f1", /* 0xff91 */
2400 "kp-f2",
2401 "kp-f3",
2402 "kp-f4",
2403 "kp-home", /* 0xff95 */
2404 "kp-left",
2405 "kp-up",
2406 "kp-right",
2407 "kp-down",
2408 "kp-prior", /* kp-page-up */
2409 "kp-next", /* kp-page-down */
2410 "kp-end",
2411 "kp-begin",
2412 "kp-insert",
2413 "kp-delete",
2414 0, /* 0xffa0 */
2415 0, 0, 0, 0, 0, 0, 0, 0, 0,
2416 "kp-multiply", /* 0xffaa */
2417 "kp-add",
2418 "kp-separator",
2419 "kp-subtract",
2420 "kp-decimal",
2421 "kp-divide", /* 0xffaf */
2422 "kp-0", /* 0xffb0 */
2423 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
2424 0, /* 0xffba */
2425 0, 0,
2426 "kp-equal", /* 0xffbd */
2427 "f1", /* 0xffbe */ /* IsFunctionKey */
2428 "f2",
2429 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
2430 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
2431 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
2432 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
2433 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
2434 0, 0, 0, 0, 0, 0, 0, 0,
2435 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
2436 0, 0, 0, 0, 0, 0, 0, "delete"
2437 };
2438
2439 static char *lispy_mouse_names[] =
2440 {
2441 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
2442 };
2443
2444 /* Scroll bar parts. */
2445 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
2446
2447 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
2448 Lisp_Object *scroll_bar_parts[] = {
2449 &Qabove_handle, &Qhandle, &Qbelow_handle
2450 };
2451
2452
2453 /* A vector, indexed by button number, giving the down-going location
2454 of currently depressed buttons, both scroll bar and non-scroll bar.
2455
2456 The elements have the form
2457 (BUTTON-NUMBER MODIFIER-MASK . REST)
2458 where REST is the cdr of a position as it would be reported in the event.
2459
2460 The make_lispy_event function stores positions here to tell the
2461 difference between click and drag events, and to store the starting
2462 location to be included in drag events. */
2463
2464 static Lisp_Object button_down_location;
2465
2466 /* Information about the most recent up-going button event: Which
2467 button, what location, and what time. */
2468
2469 static int last_mouse_button;
2470 static int last_mouse_x;
2471 static int last_mouse_y;
2472 static unsigned long button_down_time;
2473
2474 /* The maximum time between clicks to make a double-click,
2475 or Qnil to disable double-click detection,
2476 or Qt for no time limit. */
2477 Lisp_Object Vdouble_click_time;
2478
2479 /* The number of clicks in this multiple-click. */
2480
2481 int double_click_count;
2482
2483 #ifdef USE_X_TOOLKIT
2484 extern Lisp_Object map_event_to_object ();
2485 #endif /* USE_X_TOOLKIT */
2486
2487 /* Given a struct input_event, build the lisp event which represents
2488 it. If EVENT is 0, build a mouse movement event from the mouse
2489 movement buffer, which should have a movement event in it.
2490
2491 Note that events must be passed to this function in the order they
2492 are received; this function stores the location of button presses
2493 in order to build drag events when the button is released. */
2494
2495 static Lisp_Object
2496 make_lispy_event (event)
2497 struct input_event *event;
2498 {
2499 int i;
2500
2501 #ifdef SWITCH_ENUM_BUG
2502 switch ((int) event->kind)
2503 #else
2504 switch (event->kind)
2505 #endif
2506 {
2507 /* A simple keystroke. */
2508 case ascii_keystroke:
2509 {
2510 int c = event->code & 0377;
2511 /* Turn ASCII characters into control characters
2512 when proper. */
2513 if (event->modifiers & ctrl_modifier)
2514 c = make_ctrl_char (c);
2515
2516 /* Add in the other modifier bits. We took care of ctrl_modifier
2517 just above, and the shift key was taken care of by the X code,
2518 and applied to control characters by make_ctrl_char. */
2519 c |= (event->modifiers
2520 & (meta_modifier | alt_modifier
2521 | hyper_modifier | super_modifier));
2522 button_down_time = 0;
2523 return c;
2524 }
2525
2526 /* A function key. The symbol may need to have modifier prefixes
2527 tacked onto it. */
2528 case non_ascii_keystroke:
2529 button_down_time = 0;
2530
2531 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
2532 if (event->code == lispy_accent_codes[i])
2533 return modify_event_symbol (i,
2534 event->modifiers,
2535 Qfunction_key, Qnil,
2536 lispy_accent_keys, &accent_key_syms,
2537 (sizeof (lispy_accent_keys)
2538 / sizeof (lispy_accent_keys[0])));
2539
2540 /* Handle system-specific keysyms. */
2541 if (event->code & (1 << 28))
2542 {
2543 /* We need to use an alist rather than a vector as the cache
2544 since we can't make a vector long enuf. */
2545 if (NILP (system_key_syms))
2546 system_key_syms = Fcons (Qnil, Qnil);
2547 return modify_event_symbol (event->code & 0xffffff,
2548 event->modifiers,
2549 Qfunction_key, Vsystem_key_alist,
2550 0, &system_key_syms, 0xffffff);
2551 }
2552
2553 return modify_event_symbol (event->code - 0xff00,
2554 event->modifiers,
2555 Qfunction_key, Qnil,
2556 lispy_function_keys, &func_key_syms,
2557 (sizeof (lispy_function_keys)
2558 / sizeof (lispy_function_keys[0])));
2559 break;
2560
2561 #if defined(MULTI_FRAME) || defined(HAVE_MOUSE)
2562 /* A mouse click. Figure out where it is, decide whether it's
2563 a press, click or drag, and build the appropriate structure. */
2564 case mouse_click:
2565 case scroll_bar_click:
2566 {
2567 int button = event->code;
2568 int is_double;
2569 Lisp_Object position;
2570 Lisp_Object *start_pos_ptr;
2571 Lisp_Object start_pos;
2572
2573 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
2574 abort ();
2575
2576 /* Build the position as appropriate for this mouse click. */
2577 if (event->kind == mouse_click)
2578 {
2579 int part;
2580 FRAME_PTR f = XFRAME (event->frame_or_window);
2581 Lisp_Object window;
2582 Lisp_Object posn;
2583 int row, column;
2584
2585 /* Ignore mouse events that were made on frame that
2586 have been deleted. */
2587 if (! FRAME_LIVE_P (f))
2588 return Qnil;
2589
2590 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
2591 &column, &row, 0, 0);
2592
2593 #ifdef USE_X_TOOLKIT
2594 if (FRAME_EXTERNAL_MENU_BAR (f) && XINT (event->y) == -1)
2595 #else
2596 if (row < FRAME_MENU_BAR_LINES (f))
2597 #endif
2598 {
2599 Lisp_Object items, item;
2600
2601 #ifdef USE_X_TOOLKIT
2602 /* The click happened in the menubar.
2603 Look for the menu item selected. */
2604 item = map_event_to_object (event, f);
2605
2606 XFASTINT (event->y) = 1;
2607 #else /* not USE_X_TOOLKIT */
2608 int hpos;
2609 int i;
2610
2611 item = Qnil;
2612 items = FRAME_MENU_BAR_ITEMS (f);
2613 for (i = 0; i < XVECTOR (items)->size; i += 3)
2614 {
2615 Lisp_Object pos, string;
2616 string = XVECTOR (items)->contents[i + 1];
2617 pos = XVECTOR (items)->contents[i + 2];
2618 if (NILP (string))
2619 break;
2620 if (column >= XINT (pos)
2621 && column < XINT (pos) + XSTRING (string)->size)
2622 {
2623 item = XVECTOR (items)->contents[i];
2624 break;
2625 }
2626 }
2627 #endif /* not USE_X_TOOLKIT */
2628
2629 position
2630 = Fcons (event->frame_or_window,
2631 Fcons (Qmenu_bar,
2632 Fcons (Fcons (event->x, event->y),
2633 Fcons (make_number (event->timestamp),
2634 Qnil))));
2635
2636 return Fcons (item, Fcons (position, Qnil));
2637 }
2638
2639 window = window_from_coordinates (f, column, row, &part);
2640
2641 if (XTYPE (window) != Lisp_Window)
2642 posn = Qnil;
2643 else
2644 {
2645 int pixcolumn, pixrow;
2646 column -= XINT (XWINDOW (window)->left);
2647 row -= XINT (XWINDOW (window)->top);
2648 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow);
2649 XSETINT (event->x, pixcolumn);
2650 XSETINT (event->y, pixrow);
2651
2652 if (part == 1)
2653 posn = Qmode_line;
2654 else if (part == 2)
2655 posn = Qvertical_line;
2656 else
2657 XSET (posn, Lisp_Int,
2658 buffer_posn_from_coords (XWINDOW (window),
2659 column, row));
2660 }
2661
2662 position
2663 = Fcons (window,
2664 Fcons (posn,
2665 Fcons (Fcons (event->x, event->y),
2666 Fcons (make_number (event->timestamp),
2667 Qnil))));
2668 }
2669 else
2670 {
2671 Lisp_Object window;
2672 Lisp_Object portion_whole;
2673 Lisp_Object part;
2674
2675 window = event->frame_or_window;
2676 portion_whole = Fcons (event->x, event->y);
2677 part = *scroll_bar_parts[(int) event->part];
2678
2679 position =
2680 Fcons (window,
2681 Fcons (Qvertical_scroll_bar,
2682 Fcons (portion_whole,
2683 Fcons (make_number (event->timestamp),
2684 Fcons (part, Qnil)))));
2685 }
2686
2687 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
2688
2689 start_pos = *start_pos_ptr;
2690 *start_pos_ptr = Qnil;
2691
2692 is_double = (button == last_mouse_button
2693 && XINT (event->x) == last_mouse_x
2694 && XINT (event->y) == last_mouse_y
2695 && button_down_time != 0
2696 && (EQ (Vdouble_click_time, Qt)
2697 || (INTEGERP (Vdouble_click_time)
2698 && ((int)(event->timestamp - button_down_time)
2699 < XINT (Vdouble_click_time)))));
2700 last_mouse_button = button;
2701 last_mouse_x = XINT (event->x);
2702 last_mouse_y = XINT (event->y);
2703
2704 /* If this is a button press, squirrel away the location, so
2705 we can decide later whether it was a click or a drag. */
2706 if (event->modifiers & down_modifier)
2707 {
2708 if (is_double)
2709 {
2710 double_click_count++;
2711 event->modifiers |= ((double_click_count > 2)
2712 ? triple_modifier
2713 : double_modifier);
2714 }
2715 else
2716 double_click_count = 1;
2717 button_down_time = event->timestamp;
2718 *start_pos_ptr = Fcopy_alist (position);
2719 }
2720
2721 /* Now we're releasing a button - check the co-ordinates to
2722 see if this was a click or a drag. */
2723 else if (event->modifiers & up_modifier)
2724 {
2725 /* If we did not see a down before this up,
2726 ignore the up. Probably this happened because
2727 the down event chose a menu item.
2728 It would be an annoyance to treat the release
2729 of the button that chose the menu item
2730 as a separate event. */
2731
2732 if (XTYPE (start_pos) != Lisp_Cons)
2733 return Qnil;
2734
2735 event->modifiers &= ~up_modifier;
2736 #if 0 /* Formerly we treated an up with no down as a click event. */
2737 if (XTYPE (start_pos) != Lisp_Cons)
2738 event->modifiers |= click_modifier;
2739 else
2740 #endif
2741 {
2742 /* The third element of every position should be the (x,y)
2743 pair. */
2744 Lisp_Object down;
2745
2746 down = Fnth (make_number (2), start_pos);
2747 if (EQ (event->x, XCONS (down)->car)
2748 && EQ (event->y, XCONS (down)->cdr))
2749 {
2750 if (is_double && double_click_count > 1)
2751 event->modifiers |= ((double_click_count > 2)
2752 ? triple_modifier
2753 : double_modifier);
2754 else
2755 event->modifiers |= click_modifier;
2756 }
2757 else
2758 {
2759 button_down_time = 0;
2760 event->modifiers |= drag_modifier;
2761 }
2762 }
2763 }
2764 else
2765 /* Every mouse event should either have the down_modifier or
2766 the up_modifier set. */
2767 abort ();
2768
2769 {
2770 /* Get the symbol we should use for the mouse click. */
2771 Lisp_Object head;
2772
2773 head = modify_event_symbol (button,
2774 event->modifiers,
2775 Qmouse_click, Qnil,
2776 lispy_mouse_names, &mouse_syms,
2777 (sizeof (lispy_mouse_names)
2778 / sizeof (lispy_mouse_names[0])));
2779 if (event->modifiers & drag_modifier)
2780 return Fcons (head,
2781 Fcons (start_pos,
2782 Fcons (position,
2783 Qnil)));
2784 else if (event->modifiers & (double_modifier | triple_modifier))
2785 return Fcons (head,
2786 Fcons (position,
2787 Fcons (make_number (double_click_count),
2788 Qnil)));
2789 else
2790 return Fcons (head,
2791 Fcons (position,
2792 Qnil));
2793 }
2794 }
2795 #endif /* MULTI_FRAME or HAVE_MOUSE */
2796
2797 /* The 'kind' field of the event is something we don't recognize. */
2798 default:
2799 abort ();
2800 }
2801 }
2802
2803 #ifdef MULTI_FRAME
2804
2805 static Lisp_Object
2806 make_lispy_movement (frame, bar_window, part, x, y, time)
2807 FRAME_PTR frame;
2808 Lisp_Object bar_window;
2809 enum scroll_bar_part part;
2810 Lisp_Object x, y;
2811 unsigned long time;
2812 {
2813 /* Is it a scroll bar movement? */
2814 if (frame && ! NILP (bar_window))
2815 {
2816 Lisp_Object part_sym;
2817
2818 part_sym = *scroll_bar_parts[(int) part];
2819 return Fcons (Qscroll_bar_movement,
2820 (Fcons (Fcons (bar_window,
2821 Fcons (Qvertical_scroll_bar,
2822 Fcons (Fcons (x, y),
2823 Fcons (make_number (time),
2824 Fcons (part_sym,
2825 Qnil))))),
2826 Qnil)));
2827 }
2828
2829 /* Or is it an ordinary mouse movement? */
2830 else
2831 {
2832 int area;
2833 Lisp_Object window;
2834 Lisp_Object posn;
2835 int column, row;
2836
2837 if (frame)
2838 {
2839 /* It's in a frame; which window on that frame? */
2840 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, 0, 1);
2841 window = window_from_coordinates (frame, column, row, &area);
2842 }
2843 else
2844 window = Qnil;
2845
2846 if (XTYPE (window) == Lisp_Window)
2847 {
2848 int pixcolumn, pixrow;
2849 column -= XINT (XWINDOW (window)->left);
2850 row -= XINT (XWINDOW (window)->top);
2851 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow);
2852 XSETINT (x, pixcolumn);
2853 XSETINT (y, pixrow);
2854
2855 if (area == 1)
2856 posn = Qmode_line;
2857 else if (area == 2)
2858 posn = Qvertical_line;
2859 else
2860 XSET (posn, Lisp_Int,
2861 buffer_posn_from_coords (XWINDOW (window), column, row));
2862 }
2863 else if (frame != 0)
2864 {
2865 XSET (window, Lisp_Frame, frame);
2866 posn = Qnil;
2867 }
2868 else
2869 {
2870 window = Qnil;
2871 posn = Qnil;
2872 XFASTINT (x) = 0;
2873 XFASTINT (y) = 0;
2874 }
2875
2876 return Fcons (Qmouse_movement,
2877 Fcons (Fcons (window,
2878 Fcons (posn,
2879 Fcons (Fcons (x, y),
2880 Fcons (make_number (time),
2881 Qnil)))),
2882 Qnil));
2883 }
2884 }
2885
2886 #endif /* MULTI_FRAME */
2887
2888 /* Construct a switch frame event. */
2889 static Lisp_Object
2890 make_lispy_switch_frame (frame)
2891 Lisp_Object frame;
2892 {
2893 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
2894 }
2895 \f
2896 /* Manipulating modifiers. */
2897
2898 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
2899
2900 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
2901 SYMBOL's name of the end of the modifiers; the string from this
2902 position is the unmodified symbol name.
2903
2904 This doesn't use any caches. */
2905 static int
2906 parse_modifiers_uncached (symbol, modifier_end)
2907 Lisp_Object symbol;
2908 int *modifier_end;
2909 {
2910 struct Lisp_String *name;
2911 int i;
2912 int modifiers;
2913
2914 CHECK_SYMBOL (symbol, 1);
2915
2916 modifiers = 0;
2917 name = XSYMBOL (symbol)->name;
2918
2919
2920 for (i = 0; i+2 <= name->size; )
2921 switch (name->data[i])
2922 {
2923 #define SINGLE_LETTER_MOD(bit) \
2924 if (name->data[i+1] != '-') \
2925 goto no_more_modifiers; \
2926 modifiers |= bit; \
2927 i += 2;
2928
2929 case 'A':
2930 SINGLE_LETTER_MOD (alt_modifier);
2931 break;
2932
2933 case 'C':
2934 SINGLE_LETTER_MOD (ctrl_modifier);
2935 break;
2936
2937 case 'H':
2938 SINGLE_LETTER_MOD (hyper_modifier);
2939 break;
2940
2941 case 'M':
2942 SINGLE_LETTER_MOD (meta_modifier);
2943 break;
2944
2945 case 'S':
2946 SINGLE_LETTER_MOD (shift_modifier);
2947 break;
2948
2949 case 's':
2950 SINGLE_LETTER_MOD (super_modifier);
2951 break;
2952
2953 case 'd':
2954 if (i + 5 > name->size)
2955 goto no_more_modifiers;
2956 if (! strncmp (name->data + i, "drag-", 5))
2957 {
2958 modifiers |= drag_modifier;
2959 i += 5;
2960 }
2961 else if (! strncmp (name->data + i, "down-", 5))
2962 {
2963 modifiers |= down_modifier;
2964 i += 5;
2965 }
2966 else if (i + 7 <= name->size
2967 && ! strncmp (name->data + i, "double-", 7))
2968 {
2969 modifiers |= double_modifier;
2970 i += 7;
2971 }
2972 else
2973 goto no_more_modifiers;
2974 break;
2975
2976 case 't':
2977 if (i + 7 > name->size)
2978 goto no_more_modifiers;
2979 if (! strncmp (name->data + i, "triple-", 7))
2980 {
2981 modifiers |= triple_modifier;
2982 i += 7;
2983 }
2984 else
2985 goto no_more_modifiers;
2986 break;
2987
2988 default:
2989 goto no_more_modifiers;
2990
2991 #undef SINGLE_LETTER_MOD
2992 }
2993 no_more_modifiers:
2994
2995 /* Should we include the `click' modifier? */
2996 if (! (modifiers & (down_modifier | drag_modifier
2997 | double_modifier | triple_modifier))
2998 && i + 7 == name->size
2999 && strncmp (name->data + i, "mouse-", 6) == 0
3000 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
3001 modifiers |= click_modifier;
3002
3003 if (modifier_end)
3004 *modifier_end = i;
3005
3006 return modifiers;
3007 }
3008
3009
3010 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
3011 prepended to the string BASE[0..BASE_LEN-1].
3012 This doesn't use any caches. */
3013 static Lisp_Object
3014 apply_modifiers_uncached (modifiers, base, base_len)
3015 int modifiers;
3016 char *base;
3017 int base_len;
3018 {
3019 /* Since BASE could contain nulls, we can't use intern here; we have
3020 to use Fintern, which expects a genuine Lisp_String, and keeps a
3021 reference to it. */
3022 char *new_mods =
3023 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
3024 int mod_len;
3025
3026 {
3027 char *p = new_mods;
3028
3029 /* Only the event queue may use the `up' modifier; it should always
3030 be turned into a click or drag event before presented to lisp code. */
3031 if (modifiers & up_modifier)
3032 abort ();
3033
3034 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
3035 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
3036 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
3037 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
3038 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
3039 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
3040 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
3041 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
3042 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
3043 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
3044 /* The click modifier is denoted by the absence of other modifiers. */
3045
3046 *p = '\0';
3047
3048 mod_len = p - new_mods;
3049 }
3050
3051 {
3052 Lisp_Object new_name;
3053
3054 new_name = make_uninit_string (mod_len + base_len);
3055 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
3056 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
3057
3058 return Fintern (new_name, Qnil);
3059 }
3060 }
3061
3062
3063 static char *modifier_names[] =
3064 {
3065 "up", "down", "drag", "click", "double", "triple", 0, 0,
3066 0, 0, 0, 0, 0, 0, 0, 0,
3067 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
3068 };
3069 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
3070
3071 static Lisp_Object modifier_symbols;
3072
3073 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
3074 static Lisp_Object
3075 lispy_modifier_list (modifiers)
3076 int modifiers;
3077 {
3078 Lisp_Object modifier_list;
3079 int i;
3080
3081 modifier_list = Qnil;
3082 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
3083 if (modifiers & (1<<i))
3084 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
3085 modifier_list);
3086
3087 return modifier_list;
3088 }
3089
3090
3091 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
3092 where UNMODIFIED is the unmodified form of SYMBOL,
3093 MASK is the set of modifiers present in SYMBOL's name.
3094 This is similar to parse_modifiers_uncached, but uses the cache in
3095 SYMBOL's Qevent_symbol_element_mask property, and maintains the
3096 Qevent_symbol_elements property. */
3097 static Lisp_Object
3098 parse_modifiers (symbol)
3099 Lisp_Object symbol;
3100 {
3101 Lisp_Object elements;
3102
3103 elements = Fget (symbol, Qevent_symbol_element_mask);
3104 if (CONSP (elements))
3105 return elements;
3106 else
3107 {
3108 int end;
3109 int modifiers = parse_modifiers_uncached (symbol, &end);
3110 Lisp_Object unmodified;
3111 Lisp_Object mask;
3112
3113 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
3114 XSYMBOL (symbol)->name->size - end),
3115 Qnil);
3116
3117 if (modifiers & ~((1<<VALBITS) - 1))
3118 abort ();
3119 XFASTINT (mask) = modifiers;
3120 elements = Fcons (unmodified, Fcons (mask, Qnil));
3121
3122 /* Cache the parsing results on SYMBOL. */
3123 Fput (symbol, Qevent_symbol_element_mask,
3124 elements);
3125 Fput (symbol, Qevent_symbol_elements,
3126 Fcons (unmodified, lispy_modifier_list (modifiers)));
3127
3128 /* Since we know that SYMBOL is modifiers applied to unmodified,
3129 it would be nice to put that in unmodified's cache.
3130 But we can't, since we're not sure that parse_modifiers is
3131 canonical. */
3132
3133 return elements;
3134 }
3135 }
3136
3137 /* Apply the modifiers MODIFIERS to the symbol BASE.
3138 BASE must be unmodified.
3139
3140 This is like apply_modifiers_uncached, but uses BASE's
3141 Qmodifier_cache property, if present. It also builds
3142 Qevent_symbol_elements properties, since it has that info anyway.
3143
3144 apply_modifiers copies the value of BASE's Qevent_kind property to
3145 the modified symbol. */
3146 static Lisp_Object
3147 apply_modifiers (modifiers, base)
3148 int modifiers;
3149 Lisp_Object base;
3150 {
3151 Lisp_Object cache, index, entry, new_symbol;
3152
3153 /* Mask out upper bits. We don't know where this value's been. */
3154 modifiers &= (1<<VALBITS) - 1;
3155
3156 /* The click modifier never figures into cache indices. */
3157 cache = Fget (base, Qmodifier_cache);
3158 XFASTINT (index) = (modifiers & ~click_modifier);
3159 entry = Fassq (index, cache);
3160
3161 if (CONSP (entry))
3162 new_symbol = XCONS (entry)->cdr;
3163 else
3164 {
3165 /* We have to create the symbol ourselves. */
3166 new_symbol = apply_modifiers_uncached (modifiers,
3167 XSYMBOL (base)->name->data,
3168 XSYMBOL (base)->name->size);
3169
3170 /* Add the new symbol to the base's cache. */
3171 entry = Fcons (index, new_symbol);
3172 Fput (base, Qmodifier_cache, Fcons (entry, cache));
3173
3174 /* We have the parsing info now for free, so add it to the caches. */
3175 XFASTINT (index) = modifiers;
3176 Fput (new_symbol, Qevent_symbol_element_mask,
3177 Fcons (base, Fcons (index, Qnil)));
3178 Fput (new_symbol, Qevent_symbol_elements,
3179 Fcons (base, lispy_modifier_list (modifiers)));
3180 }
3181
3182 /* Make sure this symbol is of the same kind as BASE.
3183
3184 You'd think we could just set this once and for all when we
3185 intern the symbol above, but reorder_modifiers may call us when
3186 BASE's property isn't set right; we can't assume that just
3187 because it has a Qmodifier_cache property it must have its
3188 Qevent_kind set right as well. */
3189 if (NILP (Fget (new_symbol, Qevent_kind)))
3190 {
3191 Lisp_Object kind;
3192
3193 kind = Fget (base, Qevent_kind);
3194 if (! NILP (kind))
3195 Fput (new_symbol, Qevent_kind, kind);
3196 }
3197
3198 return new_symbol;
3199 }
3200
3201
3202 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
3203 return a symbol with the modifiers placed in the canonical order.
3204 Canonical order is alphabetical, except for down and drag, which
3205 always come last. The 'click' modifier is never written out.
3206
3207 Fdefine_key calls this to make sure that (for example) C-M-foo
3208 and M-C-foo end up being equivalent in the keymap. */
3209
3210 Lisp_Object
3211 reorder_modifiers (symbol)
3212 Lisp_Object symbol;
3213 {
3214 /* It's hopefully okay to write the code this way, since everything
3215 will soon be in caches, and no consing will be done at all. */
3216 Lisp_Object parsed;
3217
3218 parsed = parse_modifiers (symbol);
3219 return apply_modifiers (XCONS (XCONS (parsed)->cdr)->car,
3220 XCONS (parsed)->car);
3221 }
3222
3223
3224 /* For handling events, we often want to produce a symbol whose name
3225 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
3226 to some base, like the name of a function key or mouse button.
3227 modify_event_symbol produces symbols of this sort.
3228
3229 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
3230 is the name of the i'th symbol. TABLE_SIZE is the number of elements
3231 in the table.
3232
3233 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
3234 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
3235
3236 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
3237 persist between calls to modify_event_symbol that it can use to
3238 store a cache of the symbols it's generated for this NAME_TABLE
3239 before. The object stored there may be a vector or an alist.
3240
3241 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
3242
3243 MODIFIERS is a set of modifier bits (as given in struct input_events)
3244 whose prefixes should be applied to the symbol name.
3245
3246 SYMBOL_KIND is the value to be placed in the event_kind property of
3247 the returned symbol.
3248
3249 The symbols we create are supposed to have an
3250 `event-symbol-elements' property, which lists the modifiers present
3251 in the symbol's name. */
3252
3253 static Lisp_Object
3254 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
3255 name_table, symbol_table, table_size)
3256 int symbol_num;
3257 unsigned modifiers;
3258 Lisp_Object symbol_kind;
3259 Lisp_Object name_alist;
3260 char **name_table;
3261 Lisp_Object *symbol_table;
3262 int table_size;
3263 {
3264 Lisp_Object value;
3265 Lisp_Object symbol_int;
3266
3267 XSET (symbol_int, Lisp_Int, symbol_num);
3268
3269 /* Is this a request for a valid symbol? */
3270 if (symbol_num < 0 || symbol_num >= table_size)
3271 return Qnil;
3272
3273 if (CONSP (*symbol_table))
3274 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
3275
3276 /* If *symbol_table doesn't seem to be initialized properly, fix that.
3277 *symbol_table should be a lisp vector TABLE_SIZE elements long,
3278 where the Nth element is the symbol for NAME_TABLE[N], or nil if
3279 we've never used that symbol before. */
3280 else
3281 {
3282 if (! VECTORP (*symbol_table)
3283 || XVECTOR (*symbol_table)->size != table_size)
3284 {
3285 Lisp_Object size;
3286
3287 XFASTINT (size) = table_size;
3288 *symbol_table = Fmake_vector (size, Qnil);
3289 }
3290
3291 value = XVECTOR (*symbol_table)->contents[symbol_num];
3292 }
3293
3294 /* Have we already used this symbol before? */
3295 if (NILP (value))
3296 {
3297 /* No; let's create it. */
3298 if (!NILP (name_alist))
3299 value = Fcdr_safe (Fassq (symbol_int, name_alist));
3300 else if (name_table[symbol_num])
3301 value = intern (name_table[symbol_num]);
3302
3303 if (NILP (value))
3304 {
3305 char buf[20];
3306 sprintf (buf, "key-%d", symbol_num);
3307 value = intern (buf);
3308 }
3309
3310 if (CONSP (*symbol_table))
3311 *symbol_table = Fcons (value, *symbol_table);
3312 else
3313 XVECTOR (*symbol_table)->contents[symbol_num] = value;
3314
3315 /* Fill in the cache entries for this symbol; this also
3316 builds the Qevent_symbol_elements property, which the user
3317 cares about. */
3318 apply_modifiers (modifiers & click_modifier, value);
3319 Fput (value, Qevent_kind, symbol_kind);
3320 }
3321
3322 /* Apply modifiers to that symbol. */
3323 return apply_modifiers (modifiers, value);
3324 }
3325
3326 \f
3327 /* Store into *addr a value nonzero if terminal input chars are available.
3328 Serves the purpose of ioctl (0, FIONREAD, addr)
3329 but works even if FIONREAD does not exist.
3330 (In fact, this may actually read some input.) */
3331
3332 static void
3333 get_input_pending (addr)
3334 int *addr;
3335 {
3336 /* First of all, have we already counted some input? */
3337 *addr = !NILP (Vquit_flag) || readable_events ();
3338
3339 /* If input is being read as it arrives, and we have none, there is none. */
3340 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
3341 return;
3342
3343 /* Try to read some input and see how much we get. */
3344 gobble_input (0);
3345 *addr = !NILP (Vquit_flag) || readable_events ();
3346 }
3347
3348 /* Interface to read_avail_input, blocking SIGIO if necessary. */
3349
3350 int
3351 gobble_input (expected)
3352 int expected;
3353 {
3354 #ifndef VMS
3355 #ifdef SIGIO
3356 if (interrupt_input)
3357 {
3358 SIGMASKTYPE mask;
3359 mask = sigblockx (SIGIO);
3360 read_avail_input (expected);
3361 sigsetmask (mask);
3362 }
3363 else
3364 #endif
3365 read_avail_input (expected);
3366 #endif
3367 }
3368
3369 /* Put a buffer_switch_event in the buffer
3370 so that read_key_sequence will notice the new current buffer. */
3371
3372 record_asynch_buffer_change ()
3373 {
3374 struct input_event event;
3375 event.kind = buffer_switch_event;
3376 event.frame_or_window = Qnil;
3377
3378 /* Make sure no interrupt happens while storing the event. */
3379 #ifdef SIGIO
3380 if (interrupt_input)
3381 {
3382 SIGMASKTYPE mask;
3383 mask = sigblockx (SIGIO);
3384 kbd_buffer_store_event (&event);
3385 sigsetmask (mask);
3386 }
3387 else
3388 #endif
3389 {
3390 stop_polling ();
3391 kbd_buffer_store_event (&event);
3392 start_polling ();
3393 }
3394 }
3395 \f
3396 #ifndef VMS
3397
3398 /* Read any terminal input already buffered up by the system
3399 into the kbd_buffer, but do not wait.
3400
3401 EXPECTED should be nonzero if the caller knows there is some input.
3402
3403 Except on VMS, all input is read by this function.
3404 If interrupt_input is nonzero, this function MUST be called
3405 only when SIGIO is blocked.
3406
3407 Returns the number of keyboard chars read, or -1 meaning
3408 this is a bad time to try to read input. */
3409
3410 static int
3411 read_avail_input (expected)
3412 int expected;
3413 {
3414 struct input_event buf[KBD_BUFFER_SIZE];
3415 register int i;
3416 int nread;
3417
3418 if (read_socket_hook)
3419 /* No need for FIONREAD or fcntl; just say don't wait. */
3420 nread = (*read_socket_hook) (0, buf, KBD_BUFFER_SIZE, expected, expected);
3421 else
3422 {
3423 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
3424 the kbd_buffer can really hold. That may prevent loss
3425 of characters on some systems when input is stuffed at us. */
3426 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
3427 int n_to_read;
3428
3429 /* Determine how many characters we should *try* to read. */
3430 #ifdef MSDOS
3431 n_to_read = dos_keysns ();
3432 if (n_to_read == 0)
3433 return 0;
3434 #else /* not MSDOS */
3435 #ifdef FIONREAD
3436 /* Find out how much input is available. */
3437 if (ioctl (0, FIONREAD, &n_to_read) < 0)
3438 /* Formerly simply reported no input, but that sometimes led to
3439 a failure of Emacs to terminate.
3440 SIGHUP seems appropriate if we can't reach the terminal. */
3441 /* ??? Is it really right to send the signal just to this process
3442 rather than to the whole process group?
3443 Perhaps on systems with FIONREAD Emacs is alone in its group. */
3444 kill (getpid (), SIGHUP);
3445 if (n_to_read == 0)
3446 return 0;
3447 if (n_to_read > sizeof cbuf)
3448 n_to_read = sizeof cbuf;
3449 #else /* no FIONREAD */
3450 #if defined(USG) || defined(DGUX)
3451 /* Read some input if available, but don't wait. */
3452 n_to_read = sizeof cbuf;
3453 fcntl (fileno (stdin), F_SETFL, O_NDELAY);
3454 #else
3455 you lose;
3456 #endif
3457 #endif
3458 #endif /* not MSDOS */
3459
3460 /* Now read; for one reason or another, this will not block.
3461 NREAD is set to the number of chars read. */
3462 do
3463 {
3464 #ifdef MSDOS
3465 cbuf[0] = dos_keyread();
3466 nread = 1;
3467 #else
3468 nread = read (fileno (stdin), cbuf, n_to_read);
3469 #endif
3470 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
3471 /* The kernel sometimes fails to deliver SIGHUP for ptys.
3472 This looks incorrect, but it isn't, because _BSD causes
3473 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
3474 and that causes a value other than 0 when there is no input. */
3475 if (nread == 0)
3476 kill (0, SIGHUP);
3477 #endif
3478 }
3479 while (
3480 /* We used to retry the read if it was interrupted.
3481 But this does the wrong thing when O_NDELAY causes
3482 an EAGAIN error. Does anybody know of a situation
3483 where a retry is actually needed? */
3484 #if 0
3485 nread < 0 && (errno == EAGAIN
3486 #ifdef EFAULT
3487 || errno == EFAULT
3488 #endif
3489 #ifdef EBADSLT
3490 || errno == EBADSLT
3491 #endif
3492 )
3493 #else
3494 0
3495 #endif
3496 );
3497
3498 #ifndef FIONREAD
3499 #if defined (USG) || defined (DGUX)
3500 fcntl (fileno (stdin), F_SETFL, 0);
3501 #endif /* USG or DGUX */
3502 #endif /* no FIONREAD */
3503 for (i = 0; i < nread; i++)
3504 {
3505 buf[i].kind = ascii_keystroke;
3506 buf[i].modifiers = 0;
3507 if (meta_key == 1 && (cbuf[i] & 0x80))
3508 buf[i].modifiers = meta_modifier;
3509 if (meta_key != 2)
3510 cbuf[i] &= ~0x80;
3511
3512 XSET (buf[i].code, Lisp_Int, cbuf[i]);
3513 #ifdef MULTI_FRAME
3514 XSET (buf[i].frame_or_window, Lisp_Frame, selected_frame);
3515 #else
3516 buf[i].frame_or_window = Qnil;
3517 #endif
3518 }
3519 }
3520
3521 /* Scan the chars for C-g and store them in kbd_buffer. */
3522 for (i = 0; i < nread; i++)
3523 {
3524 kbd_buffer_store_event (&buf[i]);
3525 /* Don't look at input that follows a C-g too closely.
3526 This reduces lossage due to autorepeat on C-g. */
3527 if (buf[i].kind == ascii_keystroke
3528 && XINT(buf[i].code) == quit_char)
3529 break;
3530 }
3531
3532 return nread;
3533 }
3534 #endif /* not VMS */
3535 \f
3536 #ifdef SIGIO /* for entire page */
3537 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3538
3539 SIGTYPE
3540 input_available_signal (signo)
3541 int signo;
3542 {
3543 /* Must preserve main program's value of errno. */
3544 int old_errno = errno;
3545 #ifdef BSD4_1
3546 extern int select_alarmed;
3547 #endif
3548
3549 #ifdef USG
3550 /* USG systems forget handlers when they are used;
3551 must reestablish each time */
3552 signal (signo, input_available_signal);
3553 #endif /* USG */
3554
3555 #ifdef BSD4_1
3556 sigisheld (SIGIO);
3557 #endif
3558
3559 if (input_available_clear_time)
3560 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
3561
3562 while (1)
3563 {
3564 int nread;
3565 nread = read_avail_input (1);
3566 /* -1 means it's not ok to read the input now.
3567 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
3568 0 means there was no keyboard input available. */
3569 if (nread <= 0)
3570 break;
3571
3572 #ifdef BSD4_1
3573 select_alarmed = 1; /* Force the select emulator back to life */
3574 #endif
3575 }
3576
3577 #ifdef BSD4_1
3578 sigfree ();
3579 #endif
3580 errno = old_errno;
3581 }
3582 #endif /* SIGIO */
3583
3584 /* Send ourselves a SIGIO.
3585
3586 This function exists so that the UNBLOCK_INPUT macro in
3587 blockinput.h can have some way to take care of input we put off
3588 dealing with, without assuming that every file which uses
3589 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
3590 void
3591 reinvoke_input_signal ()
3592 {
3593 #ifdef SIGIO
3594 kill (0, SIGIO);
3595 #endif
3596 }
3597
3598
3599 \f
3600 /* Return the prompt-string of a sparse keymap.
3601 This is the first element which is a string.
3602 Return nil if there is none. */
3603
3604 Lisp_Object
3605 map_prompt (map)
3606 Lisp_Object map;
3607 {
3608 while (CONSP (map))
3609 {
3610 register Lisp_Object tem;
3611 tem = Fcar (map);
3612 if (XTYPE (tem) == Lisp_String)
3613 return tem;
3614 map = Fcdr (map);
3615 }
3616 return Qnil;
3617 }
3618
3619 static void menu_bar_item ();
3620 static void menu_bar_one_keymap ();
3621
3622 /* These variables hold the vector under construction within
3623 menu_bar_items and its subroutines, and the current index
3624 for storing into that vector. */
3625 static Lisp_Object menu_bar_items_vector;
3626 static Lisp_Object menu_bar_items_index;
3627
3628 /* Return a vector of menu items for a menu bar, appropriate
3629 to the current buffer. Each item has three elements in the vector:
3630 KEY STRING MAPLIST.
3631
3632 OLD is an old vector we can optionally reuse, or nil. */
3633
3634 Lisp_Object
3635 menu_bar_items (old)
3636 Lisp_Object old;
3637 {
3638 /* The number of keymaps we're scanning right now, and the number of
3639 keymaps we have allocated space for. */
3640 int nmaps;
3641
3642 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
3643 in the current keymaps, or nil where it is not a prefix. */
3644 Lisp_Object *maps;
3645
3646 Lisp_Object def, tem, tail;
3647
3648 Lisp_Object result;
3649
3650 int mapno;
3651 Lisp_Object oquit;
3652
3653 int i;
3654
3655 struct gcpro gcpro1;
3656
3657 /* In order to build the menus, we need to call the keymap
3658 accessors. They all call QUIT. But this function is called
3659 during redisplay, during which a quit is fatal. So inhibit
3660 quitting while building the menus.
3661 We do this instead of specbind because (1) errors will clear it anyway
3662 and (2) this avoids risk of specpdl overflow. */
3663 oquit = Vinhibit_quit;
3664 Vinhibit_quit = Qt;
3665
3666 if (!NILP (old))
3667 menu_bar_items_vector = old;
3668 else
3669 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
3670 menu_bar_items_index = 0;
3671
3672 GCPRO1 (menu_bar_items_vector);
3673
3674 /* Build our list of keymaps.
3675 If we recognize a function key and replace its escape sequence in
3676 keybuf with its symbol, or if the sequence starts with a mouse
3677 click and we need to switch buffers, we jump back here to rebuild
3678 the initial keymaps from the current buffer. */
3679 {
3680 Lisp_Object *tmaps;
3681
3682 if (!NILP (Voverriding_local_map))
3683 {
3684 nmaps = 2;
3685 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3686 maps[0] = Voverriding_local_map;
3687 }
3688 else
3689 {
3690 nmaps = current_minor_maps (0, &tmaps) + 2;
3691 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3692 bcopy (tmaps, maps, (nmaps - 2) * sizeof (maps[0]));
3693 #ifdef USE_TEXT_PROPERTIES
3694 maps[nmaps-2] = get_local_map (PT, current_buffer);
3695 #else
3696 maps[nmaps-2] = current_buffer->keymap;
3697 #endif
3698 }
3699 maps[nmaps-1] = current_global_map;
3700 }
3701
3702 /* Look up in each map the dummy prefix key `menu-bar'. */
3703
3704 result = Qnil;
3705
3706 for (mapno = nmaps - 1; mapno >= 0; mapno--)
3707 {
3708 if (! NILP (maps[mapno]))
3709 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
3710 else
3711 def = Qnil;
3712
3713 tem = Fkeymapp (def);
3714 if (!NILP (tem))
3715 menu_bar_one_keymap (def);
3716 }
3717
3718 /* Move to the end those items that should be at the end. */
3719
3720 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
3721 {
3722 int i;
3723 int end = menu_bar_items_index;
3724
3725 for (i = 0; i < end; i += 3)
3726 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i]))
3727 {
3728 Lisp_Object tem0, tem1, tem2;
3729 /* Move the item at index I to the end,
3730 shifting all the others forward. */
3731 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
3732 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
3733 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
3734 if (end > i + 3)
3735 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
3736 &XVECTOR (menu_bar_items_vector)->contents[i],
3737 (end - i - 3) * sizeof (Lisp_Object));
3738 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem0;
3739 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem1;
3740 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem2;
3741 break;
3742 }
3743 }
3744
3745 /* Add nil, nil, nil at the end. */
3746 i = menu_bar_items_index;
3747 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
3748 {
3749 Lisp_Object tem;
3750 int newsize = 2 * i;
3751 tem = Fmake_vector (make_number (2 * i), Qnil);
3752 bcopy (XVECTOR (menu_bar_items_vector)->contents,
3753 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
3754 menu_bar_items_vector = tem;
3755 }
3756 /* Add this item. */
3757 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3758 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3759 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3760 menu_bar_items_index = i;
3761
3762 Vinhibit_quit = oquit;
3763 UNGCPRO;
3764 return menu_bar_items_vector;
3765 }
3766 \f
3767 /* Scan one map KEYMAP, accumulating any menu items it defines
3768 in menu_bar_items_vector. */
3769
3770 static void
3771 menu_bar_one_keymap (keymap)
3772 Lisp_Object keymap;
3773 {
3774 Lisp_Object tail, item, key, binding, item_string, table;
3775
3776 /* Loop over all keymap entries that have menu strings. */
3777 for (tail = keymap; XTYPE (tail) == Lisp_Cons; tail = XCONS (tail)->cdr)
3778 {
3779 item = XCONS (tail)->car;
3780 if (XTYPE (item) == Lisp_Cons)
3781 {
3782 key = XCONS (item)->car;
3783 binding = XCONS (item)->cdr;
3784 if (XTYPE (binding) == Lisp_Cons)
3785 {
3786 item_string = XCONS (binding)->car;
3787 if (XTYPE (item_string) == Lisp_String)
3788 menu_bar_item (key, item_string, Fcdr (binding));
3789 }
3790 else if (EQ (binding, Qundefined))
3791 menu_bar_item (key, Qnil, binding);
3792 }
3793 else if (XTYPE (item) == Lisp_Vector)
3794 {
3795 /* Loop over the char values represented in the vector. */
3796 int len = XVECTOR (item)->size;
3797 int c;
3798 for (c = 0; c < len; c++)
3799 {
3800 Lisp_Object character;
3801 XFASTINT (character) = c;
3802 binding = XVECTOR (item)->contents[c];
3803 if (XTYPE (binding) == Lisp_Cons)
3804 {
3805 item_string = XCONS (binding)->car;
3806 if (XTYPE (item_string) == Lisp_String)
3807 menu_bar_item (key, item_string, Fcdr (binding));
3808 }
3809 else if (EQ (binding, Qundefined))
3810 menu_bar_item (key, Qnil, binding);
3811 }
3812 }
3813 }
3814 }
3815
3816 /* This is used as the handler when calling internal_condition_case_1. */
3817
3818 static Lisp_Object
3819 menu_bar_item_1 (arg)
3820 Lisp_Object arg;
3821 {
3822 return Qnil;
3823 }
3824
3825 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
3826 If there's already an item for KEY, add this DEF to it. */
3827
3828 static void
3829 menu_bar_item (key, item_string, def)
3830 Lisp_Object key, item_string, def;
3831 {
3832 Lisp_Object tem;
3833 Lisp_Object enabled;
3834 int i;
3835
3836 if (EQ (def, Qundefined))
3837 {
3838 /* If a map has an explicit `undefined' as definition,
3839 discard any previously made menu bar item. */
3840
3841 for (i = 0; i < menu_bar_items_index; i += 3)
3842 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
3843 {
3844 if (menu_bar_items_index > i + 3)
3845 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
3846 &XVECTOR (menu_bar_items_vector)->contents[i],
3847 (menu_bar_items_index - i - 3) * sizeof (Lisp_Object));
3848 menu_bar_items_index -= 3;
3849 return;
3850 }
3851
3852 /* If there's no definition for this key yet,
3853 just ignore `undefined'. */
3854 return;
3855 }
3856
3857 /* See if this entry is enabled. */
3858 enabled = Qt;
3859
3860 if (XTYPE (def) == Lisp_Symbol)
3861 {
3862 /* No property, or nil, means enable.
3863 Otherwise, enable if value is not nil. */
3864 tem = Fget (def, Qmenu_enable);
3865 if (!NILP (tem))
3866 /* (condition-case nil (eval tem)
3867 (error nil)) */
3868 enabled = internal_condition_case_1 (Feval, tem, Qerror,
3869 menu_bar_item_1);
3870 }
3871
3872 /* Ignore this item if it's not enabled. */
3873 if (NILP (enabled))
3874 return;
3875
3876 /* Find any existing item for this KEY. */
3877 for (i = 0; i < menu_bar_items_index; i += 3)
3878 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
3879 break;
3880
3881 /* If we did not find this KEY, add it at the end. */
3882 if (i == menu_bar_items_index)
3883 {
3884 /* If vector is too small, get a bigger one. */
3885 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
3886 {
3887 Lisp_Object tem;
3888 int newsize = 2 * i;
3889 tem = Fmake_vector (make_number (2 * i), Qnil);
3890 bcopy (XVECTOR (menu_bar_items_vector)->contents,
3891 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
3892 menu_bar_items_vector = tem;
3893 }
3894 /* Add this item. */
3895 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
3896 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string;
3897 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil);
3898 menu_bar_items_index = i;
3899 }
3900 /* We did find an item for this KEY. Add DEF to its list of maps. */
3901 else
3902 {
3903 Lisp_Object old;
3904 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
3905 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old);
3906 }
3907 }
3908 \f
3909 /* Read a character using menus based on maps in the array MAPS.
3910 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
3911 Return t if we displayed a menu but the user rejected it.
3912
3913 PREV_EVENT is the previous input event, or nil if we are reading
3914 the first event of a key sequence.
3915
3916 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
3917 if we used a mouse menu to read the input, or zero otherwise. If
3918 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
3919
3920 The prompting is done based on the prompt-string of the map
3921 and the strings associated with various map elements.
3922
3923 This can be done with X menus or with menus put in the minibuf.
3924 These are done in different ways, depending on how the input will be read.
3925 Menus using X are done after auto-saving in read-char, getting the input
3926 event from Fx_popup_menu; menus using the minibuf use read_char recursively
3927 and do auto-saving in the inner call of read_char. */
3928
3929 static Lisp_Object
3930 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
3931 int nmaps;
3932 Lisp_Object *maps;
3933 Lisp_Object prev_event;
3934 int *used_mouse_menu;
3935 {
3936 int mapno;
3937 register Lisp_Object name;
3938 Lisp_Object rest, vector;
3939
3940 if (used_mouse_menu)
3941 *used_mouse_menu = 0;
3942
3943 /* Use local over global Menu maps */
3944
3945 if (! menu_prompting)
3946 return Qnil;
3947
3948 /* Get the menu name from the first map that has one (a prompt string). */
3949 for (mapno = 0; mapno < nmaps; mapno++)
3950 {
3951 name = map_prompt (maps[mapno]);
3952 if (!NILP (name))
3953 break;
3954 }
3955
3956 /* If we don't have any menus, just read a character normally. */
3957 if (mapno >= nmaps)
3958 return Qnil;
3959
3960 #ifdef HAVE_X_WINDOWS
3961 #ifdef HAVE_X_MENU
3962 /* If we got to this point via a mouse click,
3963 use a real menu for mouse selection. */
3964 if (EVENT_HAS_PARAMETERS (prev_event))
3965 {
3966 /* Display the menu and get the selection. */
3967 Lisp_Object *realmaps
3968 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
3969 Lisp_Object value;
3970 int nmaps1 = 0;
3971
3972 /* Use the maps that are not nil. */
3973 for (mapno = 0; mapno < nmaps; mapno++)
3974 if (!NILP (maps[mapno]))
3975 realmaps[nmaps1++] = maps[mapno];
3976
3977 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
3978 if (CONSP (value))
3979 {
3980 /* If we got more than one event, put all but the first
3981 onto this list to be read later.
3982 Return just the first event now. */
3983 Vunread_command_events
3984 = nconc2 (XCONS (value)->cdr, Vunread_command_events);
3985 value = XCONS (value)->car;
3986 }
3987 else if (NILP (value))
3988 value = Qt;
3989 if (used_mouse_menu)
3990 *used_mouse_menu = 1;
3991 return value;
3992 }
3993 #endif /* HAVE_X_MENU */
3994 #endif /* HAVE_X_WINDOWS */
3995 return Qnil ;
3996 }
3997
3998 static Lisp_Object
3999 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
4000 int commandflag ;
4001 int nmaps;
4002 Lisp_Object *maps;
4003 {
4004 int mapno;
4005 register Lisp_Object name;
4006 int nlength;
4007 int width = FRAME_WIDTH (selected_frame) - 4;
4008 char *menu = (char *) alloca (width + 4);
4009 int idx = -1;
4010 int nobindings = 1;
4011 Lisp_Object rest, vector;
4012
4013 if (! menu_prompting)
4014 return Qnil;
4015
4016 /* Get the menu name from the first map that has one (a prompt string). */
4017 for (mapno = 0; mapno < nmaps; mapno++)
4018 {
4019 name = map_prompt (maps[mapno]);
4020 if (!NILP (name))
4021 break;
4022 }
4023
4024 /* If we don't have any menus, just read a character normally. */
4025 if (mapno >= nmaps)
4026 return Qnil;
4027
4028 /* Prompt string always starts with map's prompt, and a space. */
4029 strcpy (menu, XSTRING (name)->data);
4030 nlength = XSTRING (name)->size;
4031 menu[nlength++] = ':';
4032 menu[nlength++] = ' ';
4033 menu[nlength] = 0;
4034
4035 /* Start prompting at start of first map. */
4036 mapno = 0;
4037 rest = maps[mapno];
4038
4039 /* Present the documented bindings, a line at a time. */
4040 while (1)
4041 {
4042 int notfirst = 0;
4043 int i = nlength;
4044 Lisp_Object obj;
4045 int ch;
4046 int orig_defn_macro ;
4047
4048 /* Loop over elements of map. */
4049 while (i < width)
4050 {
4051 Lisp_Object s, elt;
4052
4053 /* If reached end of map, start at beginning of next map. */
4054 if (NILP (rest))
4055 {
4056 mapno++;
4057 /* At end of last map, wrap around to first map if just starting,
4058 or end this line if already have something on it. */
4059 if (mapno == nmaps)
4060 {
4061 mapno = 0;
4062 if (notfirst || nobindings) break;
4063 }
4064 rest = maps[mapno];
4065 }
4066
4067 /* Look at the next element of the map. */
4068 if (idx >= 0)
4069 elt = XVECTOR (vector)->contents[idx];
4070 else
4071 elt = Fcar_safe (rest);
4072
4073 if (idx < 0 && XTYPE (elt) == Lisp_Vector)
4074 {
4075 /* If we found a dense table in the keymap,
4076 advanced past it, but start scanning its contents. */
4077 rest = Fcdr_safe (rest);
4078 vector = elt;
4079 idx = 0;
4080 }
4081 else
4082 {
4083 /* An ordinary element. */
4084 if ( idx < 0 )
4085 s = Fcar_safe (Fcdr_safe (elt)); /* alist */
4086 else
4087 s = Fcar_safe(elt); /* vector */
4088 if (XTYPE (s) != Lisp_String)
4089 /* Ignore the element if it has no prompt string. */
4090 ;
4091 /* If we have room for the prompt string, add it to this line.
4092 If this is the first on the line, always add it. */
4093 else if (XSTRING (s)->size + i + 2 < width
4094 || !notfirst)
4095 {
4096 int thiswidth;
4097
4098 /* Punctuate between strings. */
4099 if (notfirst)
4100 {
4101 strcpy (menu + i, ", ");
4102 i += 2;
4103 }
4104 notfirst = 1;
4105 nobindings = 0 ;
4106
4107 /* Add as much of string as fits. */
4108 thiswidth = XSTRING (s)->size;
4109 if (thiswidth + i > width)
4110 thiswidth = width - i;
4111 bcopy (XSTRING (s)->data, menu + i, thiswidth);
4112 i += thiswidth;
4113 menu[i] = 0;
4114 }
4115 else
4116 {
4117 /* If this element does not fit, end the line now,
4118 and save the element for the next line. */
4119 strcpy (menu + i, "...");
4120 break;
4121 }
4122
4123 /* Move past this element. */
4124 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
4125 /* Handle reaching end of dense table. */
4126 idx = -1;
4127 if (idx >= 0)
4128 idx++;
4129 else
4130 rest = Fcdr_safe (rest);
4131 }
4132 }
4133
4134 /* Prompt with that and read response. */
4135 message1 (menu);
4136
4137 /* Make believe its not a keyboard macro in case the help char
4138 is pressed. Help characters are not recorded because menu prompting
4139 is not used on replay.
4140 */
4141 orig_defn_macro = defining_kbd_macro ;
4142 defining_kbd_macro = 0 ;
4143 do
4144 obj = read_char (commandflag, 0, 0, Qnil, 0);
4145 while (XTYPE (obj) == Lisp_Buffer);
4146 defining_kbd_macro = orig_defn_macro ;
4147
4148 if (XTYPE (obj) != Lisp_Int)
4149 return obj;
4150 else
4151 ch = XINT (obj);
4152
4153 if (! EQ (obj, menu_prompt_more_char)
4154 && (XTYPE (menu_prompt_more_char) != Lisp_Int
4155 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
4156 {
4157 if ( defining_kbd_macro )
4158 store_kbd_macro_char(obj) ;
4159 return obj;
4160 }
4161 /* Help char - go round again */
4162 }
4163 }
4164 \f
4165 /* Reading key sequences. */
4166
4167 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
4168 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
4169 keymap, or nil otherwise. Return the index of the first keymap in
4170 which KEY has any binding, or NMAPS if no map has a binding.
4171
4172 If KEY is a meta ASCII character, treat it like meta-prefix-char
4173 followed by the corresponding non-meta character. Keymaps in
4174 CURRENT with non-prefix bindings for meta-prefix-char become nil in
4175 NEXT.
4176
4177 When KEY is not defined in any of the keymaps, if it is an upper
4178 case letter and there are bindings for the corresponding lower-case
4179 letter, return the bindings for the lower-case letter.
4180 We store 1 in *CASE_CONVERTED in this case.
4181 Otherwise, we don't change *CASE_CONVERTED.
4182
4183 If KEY has no bindings in any of the CURRENT maps, NEXT is left
4184 unmodified.
4185
4186 NEXT may == CURRENT. */
4187
4188 static int
4189 follow_key (key, nmaps, current, defs, next, case_converted)
4190 Lisp_Object key;
4191 Lisp_Object *current, *defs, *next;
4192 int nmaps;
4193 int *case_converted;
4194 {
4195 int i, first_binding;
4196
4197 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
4198 followed by the corresponding non-meta character. */
4199 if (XTYPE (key) == Lisp_Int && (XINT (key) & CHAR_META))
4200 {
4201 for (i = 0; i < nmaps; i++)
4202 if (! NILP (current[i]))
4203 {
4204 next[i] =
4205 get_keyelt (access_keymap (current[i], meta_prefix_char, 1, 0));
4206
4207 /* Note that since we pass the resulting bindings through
4208 get_keymap_1, non-prefix bindings for meta-prefix-char
4209 disappear. */
4210 next[i] = get_keymap_1 (next[i], 0, 1);
4211 }
4212 else
4213 next[i] = Qnil;
4214
4215 current = next;
4216 XSET (key, Lisp_Int, XFASTINT (key) & ~CHAR_META);
4217 }
4218
4219 first_binding = nmaps;
4220 for (i = nmaps - 1; i >= 0; i--)
4221 {
4222 if (! NILP (current[i]))
4223 {
4224 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
4225 if (! NILP (defs[i]))
4226 first_binding = i;
4227 }
4228 else
4229 defs[i] = Qnil;
4230 }
4231
4232 /* When KEY is not defined in any of the keymaps, if it is an upper
4233 case letter and there are bindings for the corresponding
4234 lower-case letter, return the bindings for the lower-case letter. */
4235 if (first_binding == nmaps
4236 && XTYPE (key) == Lisp_Int
4237 && ((((XINT (key) & 0x3ffff)
4238 < XSTRING (current_buffer->downcase_table)->size)
4239 && UPPERCASEP (XINT (key) & 0x3ffff))
4240 || (XINT (key) & shift_modifier)))
4241 {
4242 if (XINT (key) & shift_modifier)
4243 XSETINT (key, XINT (key) & ~shift_modifier);
4244 else
4245 XSETINT (key, (DOWNCASE (XINT (key) & 0x3ffff)
4246 | (XINT (key) & ~0x3ffff)));
4247
4248 first_binding = nmaps;
4249 for (i = nmaps - 1; i >= 0; i--)
4250 {
4251 if (! NILP (current[i]))
4252 {
4253 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
4254 if (! NILP (defs[i]))
4255 first_binding = i;
4256 }
4257 else
4258 defs[i] = Qnil;
4259 }
4260 if (first_binding != nmaps)
4261 *case_converted = 1;
4262 }
4263
4264 /* Given the set of bindings we've found, produce the next set of maps. */
4265 if (first_binding < nmaps)
4266 for (i = 0; i < nmaps; i++)
4267 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
4268
4269 return first_binding;
4270 }
4271
4272 /* Read a sequence of keys that ends with a non prefix character,
4273 storing it in KEYBUF, a buffer of size BUFSIZE.
4274 Prompt with PROMPT.
4275 Return the length of the key sequence stored.
4276 Return -1 if the user rejected a command menu.
4277
4278 Echo starting immediately unless `prompt' is 0.
4279
4280 Where a key sequence ends depends on the currently active keymaps.
4281 These include any minor mode keymaps active in the current buffer,
4282 the current buffer's local map, and the global map.
4283
4284 If a key sequence has no other bindings, we check Vfunction_key_map
4285 to see if some trailing subsequence might be the beginning of a
4286 function key's sequence. If so, we try to read the whole function
4287 key, and substitute its symbolic name into the key sequence.
4288
4289 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
4290 `double-' events into similar click events, if that would make them
4291 bound. We try to turn `triple-' events first into `double-' events,
4292 then into clicks.
4293
4294 If we get a mouse click in a mode line, vertical divider, or other
4295 non-text area, we treat the click as if it were prefixed by the
4296 symbol denoting that area - `mode-line', `vertical-line', or
4297 whatever.
4298
4299 If the sequence starts with a mouse click, we read the key sequence
4300 with respect to the buffer clicked on, not the current buffer.
4301
4302 If the user switches frames in the midst of a key sequence, we put
4303 off the switch-frame event until later; the next call to
4304 read_char will return it. */
4305
4306 static int
4307 read_key_sequence (keybuf, bufsize, prompt)
4308 Lisp_Object *keybuf;
4309 int bufsize;
4310 Lisp_Object prompt;
4311 {
4312 int count = specpdl_ptr - specpdl;
4313
4314 /* How many keys there are in the current key sequence. */
4315 int t;
4316
4317 /* The length of the echo buffer when we started reading, and
4318 the length of this_command_keys when we started reading. */
4319 int echo_start;
4320 int keys_start;
4321
4322 /* The number of keymaps we're scanning right now, and the number of
4323 keymaps we have allocated space for. */
4324 int nmaps;
4325 int nmaps_allocated = 0;
4326
4327 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
4328 the current keymaps. */
4329 Lisp_Object *defs;
4330
4331 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
4332 in the current keymaps, or nil where it is not a prefix. */
4333 Lisp_Object *submaps;
4334
4335 /* The index in defs[] of the first keymap that has a binding for
4336 this key sequence. In other words, the lowest i such that
4337 defs[i] is non-nil. */
4338 int first_binding;
4339
4340 /* If t < mock_input, then KEYBUF[t] should be read as the next
4341 input key.
4342
4343 We use this to recover after recognizing a function key. Once we
4344 realize that a suffix of the current key sequence is actually a
4345 function key's escape sequence, we replace the suffix with the
4346 function key's binding from Vfunction_key_map. Now keybuf
4347 contains a new and different key sequence, so the echo area,
4348 this_command_keys, and the submaps and defs arrays are wrong. In
4349 this situation, we set mock_input to t, set t to 0, and jump to
4350 restart_sequence; the loop will read keys from keybuf up until
4351 mock_input, thus rebuilding the state; and then it will resume
4352 reading characters from the keyboard. */
4353 int mock_input = 0;
4354
4355 /* If the sequence is unbound in submaps[], then
4356 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
4357 and fkey_map is its binding.
4358
4359 These might be > t, indicating that all function key scanning
4360 should hold off until t reaches them. We do this when we've just
4361 recognized a function key, to avoid searching for the function
4362 key's again in Vfunction_key_map. */
4363 int fkey_start = 0, fkey_end = 0;
4364 Lisp_Object fkey_map;
4365
4366 /* Likewise, for key_translation_map. */
4367 int keytran_start = 0, keytran_end = 0;
4368 Lisp_Object keytran_map;
4369
4370 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
4371 we put it off for later. While we're reading, we keep the event here. */
4372 Lisp_Object delayed_switch_frame;
4373
4374 /* See the comment below... */
4375 #if defined (GOBBLE_FIRST_EVENT)
4376 Lisp_Object first_event;
4377 #endif
4378
4379 struct buffer *starting_buffer;
4380
4381 /* Nonzero if we found the binding for one of the chars
4382 in this key sequence by downcasing it. */
4383 int case_converted = 0;
4384
4385 /* Nonzero if we seem to have got the beginning of a binding
4386 in function_key_map. */
4387 int function_key_possible = 0;
4388
4389 int junk;
4390
4391 last_nonmenu_event = Qnil;
4392
4393 delayed_switch_frame = Qnil;
4394 fkey_map = Vfunction_key_map;
4395 keytran_map = Vkey_translation_map;
4396
4397 /* If there is no function-key-map, turn off function key scanning. */
4398 if (NILP (Fkeymapp (Vfunction_key_map)))
4399 fkey_start = fkey_end = bufsize + 1;
4400
4401 /* If there is no key-translation-map, turn off scanning. */
4402 if (NILP (Fkeymapp (Vkey_translation_map)))
4403 keytran_start = keytran_end = bufsize + 1;
4404
4405 if (INTERACTIVE)
4406 {
4407 if (!NILP (prompt))
4408 echo_prompt (XSTRING (prompt)->data);
4409 else if (cursor_in_echo_area)
4410 /* This doesn't put in a dash if the echo buffer is empty, so
4411 you don't always see a dash hanging out in the minibuffer. */
4412 echo_dash ();
4413 }
4414
4415 /* Record the initial state of the echo area and this_command_keys;
4416 we will need to restore them if we replay a key sequence. */
4417 if (INTERACTIVE)
4418 echo_start = echo_length ();
4419 keys_start = this_command_key_count;
4420
4421 #if defined (GOBBLE_FIRST_EVENT)
4422 /* This doesn't quite work, because some of the things that read_char
4423 does cannot safely be bypassed. It seems too risky to try to make
4424 this work right. */
4425
4426 /* Read the first char of the sequence specially, before setting
4427 up any keymaps, in case a filter runs and switches buffers on us. */
4428 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
4429 &junk);
4430 #endif /* GOBBLE_FIRST_EVENT */
4431
4432 /* We jump here when the key sequence has been thoroughly changed, and
4433 we need to rescan it starting from the beginning. When we jump here,
4434 keybuf[0..mock_input] holds the sequence we should reread. */
4435 replay_sequence:
4436
4437 starting_buffer = current_buffer;
4438 case_converted = 0;
4439 function_key_possible = 0;
4440
4441 /* Build our list of keymaps.
4442 If we recognize a function key and replace its escape sequence in
4443 keybuf with its symbol, or if the sequence starts with a mouse
4444 click and we need to switch buffers, we jump back here to rebuild
4445 the initial keymaps from the current buffer. */
4446 {
4447 Lisp_Object *maps;
4448
4449 if (!NILP (Voverriding_local_map))
4450 {
4451 nmaps = 2;
4452 if (nmaps > nmaps_allocated)
4453 {
4454 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
4455 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
4456 nmaps_allocated = nmaps;
4457 }
4458 submaps[0] = Voverriding_local_map;
4459 }
4460 else
4461 {
4462 nmaps = current_minor_maps (0, &maps) + 2;
4463 if (nmaps > nmaps_allocated)
4464 {
4465 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
4466 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
4467 nmaps_allocated = nmaps;
4468 }
4469 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0]));
4470 #ifdef USE_TEXT_PROPERTIES
4471 submaps[nmaps-2] = get_local_map (PT, current_buffer);
4472 #else
4473 submaps[nmaps-2] = current_buffer->keymap;
4474 #endif
4475 }
4476 submaps[nmaps-1] = current_global_map;
4477 }
4478
4479 /* Find an accurate initial value for first_binding. */
4480 for (first_binding = 0; first_binding < nmaps; first_binding++)
4481 if (! NILP (submaps[first_binding]))
4482 break;
4483
4484 /* Start from the beginning in keybuf. */
4485 t = 0;
4486
4487 /* These are no-ops the first time through, but if we restart, they
4488 revert the echo area and this_command_keys to their original state. */
4489 this_command_key_count = keys_start;
4490 if (INTERACTIVE && t < mock_input)
4491 echo_truncate (echo_start);
4492
4493 /* If the best binding for the current key sequence is a keymap, or
4494 we may be looking at a function key's escape sequence, keep on
4495 reading. */
4496 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
4497 || (first_binding >= nmaps
4498 && fkey_start < t
4499 /* mock input is never part of a function key's sequence. */
4500 && mock_input <= fkey_start)
4501 || (first_binding >= nmaps
4502 && keytran_start < t
4503 /* mock input is never part of a function key's sequence. */
4504 && mock_input <= keytran_start)
4505 /* Don't return in the middle of a possible function key sequence,
4506 if the only bindings we found were via case conversion.
4507 Thus, if ESC O a has a function-key-map translation
4508 and ESC o has a binding, don't return after ESC O,
4509 so that we can translate ESC O plus the next character. */
4510 || (function_key_possible && case_converted))
4511 {
4512 Lisp_Object key;
4513 int used_mouse_menu = 0;
4514
4515 /* Where the last real key started. If we need to throw away a
4516 key that has expanded into more than one element of keybuf
4517 (say, a mouse click on the mode line which is being treated
4518 as [mode-line (mouse-...)], then we backtrack to this point
4519 of keybuf. */
4520 int last_real_key_start;
4521
4522 /* These variables are analogous to echo_start and keys_start;
4523 while those allow us to restart the entire key sequence,
4524 echo_local_start and keys_local_start allow us to throw away
4525 just one key. */
4526 int echo_local_start, keys_local_start, local_first_binding;
4527
4528 if (t >= bufsize)
4529 error ("key sequence too long");
4530
4531 if (INTERACTIVE)
4532 echo_local_start = echo_length ();
4533 keys_local_start = this_command_key_count;
4534 local_first_binding = first_binding;
4535
4536 replay_key:
4537 /* These are no-ops, unless we throw away a keystroke below and
4538 jumped back up to replay_key; in that case, these restore the
4539 variables to their original state, allowing us to replay the
4540 loop. */
4541 if (INTERACTIVE && t < mock_input)
4542 echo_truncate (echo_local_start);
4543 this_command_key_count = keys_local_start;
4544 first_binding = local_first_binding;
4545
4546 /* By default, assume each event is "real". */
4547 last_real_key_start = t;
4548
4549 /* Does mock_input indicate that we are re-reading a key sequence? */
4550 if (t < mock_input)
4551 {
4552 key = keybuf[t];
4553 add_command_key (key);
4554 echo_char (key);
4555 }
4556
4557 /* If not, we should actually read a character. */
4558 else
4559 {
4560 struct buffer *buf = current_buffer;
4561
4562 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event,
4563 &used_mouse_menu);
4564
4565 /* read_char returns t when it shows a menu and the user rejects it.
4566 Just return -1. */
4567 if (EQ (key, Qt))
4568 return -1;
4569
4570 /* read_char returns -1 at the end of a macro.
4571 Emacs 18 handles this by returning immediately with a
4572 zero, so that's what we'll do. */
4573 if (XTYPE (key) == Lisp_Int && XINT (key) == -1)
4574 {
4575 t = 0;
4576 goto done;
4577 }
4578
4579 /* If the current buffer has been changed from under us, the
4580 keymap may have changed, so replay the sequence. */
4581 if (XTYPE (key) == Lisp_Buffer)
4582 {
4583 mock_input = t;
4584 goto replay_sequence;
4585 }
4586
4587 /* If we have a quit that was typed in another frame, and
4588 quit_throw_to_read_char switched buffers,
4589 replay to get the right keymap. */
4590 if (EQ (key, quit_char) && current_buffer != starting_buffer)
4591 {
4592 keybuf[t++] = key;
4593 mock_input = t;
4594 Vquit_flag = Qnil;
4595 goto replay_sequence;
4596 }
4597
4598 Vquit_flag = Qnil;
4599 }
4600
4601 /* Clicks in non-text areas get prefixed by the symbol
4602 in their CHAR-ADDRESS field. For example, a click on
4603 the mode line is prefixed by the symbol `mode-line'.
4604
4605 Furthermore, key sequences beginning with mouse clicks
4606 are read using the keymaps of the buffer clicked on, not
4607 the current buffer. So we may have to switch the buffer
4608 here.
4609
4610 When we turn one event into two events, we must make sure
4611 that neither of the two looks like the original--so that,
4612 if we replay the events, they won't be expanded again.
4613 If not for this, such reexpansion could happen either here
4614 or when user programs play with this-command-keys. */
4615 if (EVENT_HAS_PARAMETERS (key))
4616 {
4617 Lisp_Object kind;
4618
4619 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
4620 if (EQ (kind, Qmouse_click))
4621 {
4622 Lisp_Object window, posn;
4623
4624 window = POSN_WINDOW (EVENT_START (key));
4625 posn = POSN_BUFFER_POSN (EVENT_START (key));
4626 if (XTYPE (posn) == Lisp_Cons)
4627 {
4628 /* We're looking at the second event of a
4629 sequence which we expanded before. Set
4630 last_real_key_start appropriately. */
4631 if (t > 0)
4632 last_real_key_start = t - 1;
4633 }
4634
4635 /* Key sequences beginning with mouse clicks are
4636 read using the keymaps in the buffer clicked on,
4637 not the current buffer. If we're at the
4638 beginning of a key sequence, switch buffers. */
4639 if (last_real_key_start == 0
4640 && XTYPE (window) == Lisp_Window
4641 && XTYPE (XWINDOW (window)->buffer) == Lisp_Buffer
4642 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
4643 {
4644 keybuf[t] = key;
4645 mock_input = t + 1;
4646
4647 /* Arrange to go back to the original buffer once we're
4648 done reading the key sequence. Note that we can't
4649 use save_excursion_{save,restore} here, because they
4650 save point as well as the current buffer; we don't
4651 want to save point, because redisplay may change it,
4652 to accommodate a Fset_window_start or something. We
4653 don't want to do this at the top of the function,
4654 because we may get input from a subprocess which
4655 wants to change the selected window and stuff (say,
4656 emacsclient). */
4657 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
4658
4659 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
4660 goto replay_sequence;
4661 }
4662 else if (XTYPE (posn) == Lisp_Symbol)
4663 {
4664 /* Expand mode-line and scroll-bar events into two events:
4665 use posn as a fake prefix key. */
4666
4667 if (t + 1 >= bufsize)
4668 error ("key sequence too long");
4669 keybuf[t] = posn;
4670 keybuf[t+1] = key;
4671 mock_input = t + 2;
4672
4673 /* Zap the position in key, so we know that we've
4674 expanded it, and don't try to do so again. */
4675 POSN_BUFFER_POSN (EVENT_START (key))
4676 = Fcons (posn, Qnil);
4677 goto replay_key;
4678 }
4679 }
4680 else if (EQ (kind, Qswitch_frame))
4681 {
4682 /* If we're at the beginning of a key sequence, go
4683 ahead and return this event. If we're in the
4684 midst of a key sequence, delay it until the end. */
4685 if (t > 0)
4686 {
4687 delayed_switch_frame = key;
4688 goto replay_key;
4689 }
4690 }
4691 else if (CONSP (XCONS (key)->cdr)
4692 && CONSP (EVENT_START (key))
4693 && CONSP (XCONS (EVENT_START (key))->cdr))
4694 {
4695 Lisp_Object posn;
4696
4697 posn = POSN_BUFFER_POSN (EVENT_START (key));
4698 /* Handle menu-bar events:
4699 insert the dummy prefix event `menu-bar'. */
4700 if (EQ (posn, Qmenu_bar))
4701 {
4702 if (t + 1 >= bufsize)
4703 error ("key sequence too long");
4704 /* Run the Lucid hook. */
4705 if (!NILP (Vrun_hooks))
4706 call1 (Vrun_hooks, Qactivate_menubar_hook);
4707 /* If it has changed current-menubar from previous value,
4708 really recompute the menubar from the value. */
4709 if (! NILP (Vlucid_menu_bar_dirty_flag))
4710 call0 (Qrecompute_lucid_menubar);
4711 keybuf[t] = posn;
4712 keybuf[t+1] = key;
4713
4714 /* Zap the position in key, so we know that we've
4715 expanded it, and don't try to do so again. */
4716 POSN_BUFFER_POSN (EVENT_START (key))
4717 = Fcons (posn, Qnil);
4718
4719 mock_input = t + 2;
4720 goto replay_sequence;
4721 }
4722 else if (XTYPE (posn) == Lisp_Cons)
4723 {
4724 /* We're looking at the second event of a
4725 sequence which we expanded before. Set
4726 last_real_key_start appropriately. */
4727 if (last_real_key_start == t && t > 0)
4728 last_real_key_start = t - 1;
4729 }
4730 }
4731 }
4732
4733 /* We have finally decided that KEY is something we might want
4734 to look up. */
4735 first_binding = (follow_key (key,
4736 nmaps - first_binding,
4737 submaps + first_binding,
4738 defs + first_binding,
4739 submaps + first_binding,
4740 &case_converted)
4741 + first_binding);
4742
4743 /* If KEY wasn't bound, we'll try some fallbacks. */
4744 if (first_binding >= nmaps)
4745 {
4746 Lisp_Object head;
4747
4748 head = EVENT_HEAD (key);
4749 if (EQ (head, Vhelp_char))
4750 {
4751 read_key_sequence_cmd = Vprefix_help_command;
4752 keybuf[t++] = key;
4753 last_nonmenu_event = key;
4754 goto done;
4755 }
4756
4757 if (XTYPE (head) == Lisp_Symbol)
4758 {
4759 Lisp_Object breakdown;
4760 int modifiers;
4761
4762 breakdown = parse_modifiers (head);
4763 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
4764 /* Attempt to reduce an unbound mouse event to a simpler
4765 event that is bound:
4766 Drags reduce to clicks.
4767 Double-clicks reduce to clicks.
4768 Triple-clicks reduce to double-clicks, then to clicks.
4769 Down-clicks are eliminated.
4770 Double-downs reduce to downs, then are eliminated.
4771 Triple-downs reduce to double-downs, then to downs,
4772 then are eliminated. */
4773 if (modifiers & (down_modifier | drag_modifier
4774 | double_modifier | triple_modifier))
4775 {
4776 while (modifiers & (down_modifier | drag_modifier
4777 | double_modifier | triple_modifier))
4778 {
4779 Lisp_Object new_head, new_click;
4780 if (modifiers & triple_modifier)
4781 modifiers ^= (double_modifier | triple_modifier);
4782 else if (modifiers & (drag_modifier | double_modifier))
4783 modifiers &= ~(drag_modifier | double_modifier);
4784 else
4785 {
4786 /* Dispose of this `down' event by simply jumping
4787 back to replay_key, to get another event.
4788
4789 Note that if this event came from mock input,
4790 then just jumping back to replay_key will just
4791 hand it to us again. So we have to wipe out any
4792 mock input.
4793
4794 We could delete keybuf[t] and shift everything
4795 after that to the left by one spot, but we'd also
4796 have to fix up any variable that points into
4797 keybuf, and shifting isn't really necessary
4798 anyway.
4799
4800 Adding prefixes for non-textual mouse clicks
4801 creates two characters of mock input, and both
4802 must be thrown away. If we're only looking at
4803 the prefix now, we can just jump back to
4804 replay_key. On the other hand, if we've already
4805 processed the prefix, and now the actual click
4806 itself is giving us trouble, then we've lost the
4807 state of the keymaps we want to backtrack to, and
4808 we need to replay the whole sequence to rebuild
4809 it.
4810
4811 Beyond that, only function key expansion could
4812 create more than two keys, but that should never
4813 generate mouse events, so it's okay to zero
4814 mock_input in that case too.
4815
4816 Isn't this just the most wonderful code ever? */
4817 if (t == last_real_key_start)
4818 {
4819 mock_input = 0;
4820 goto replay_key;
4821 }
4822 else
4823 {
4824 mock_input = last_real_key_start;
4825 goto replay_sequence;
4826 }
4827 }
4828
4829 new_head
4830 = apply_modifiers (modifiers, XCONS (breakdown)->car);
4831 new_click
4832 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
4833
4834 /* Look for a binding for this new key. follow_key
4835 promises that it didn't munge submaps the
4836 last time we called it, since key was unbound. */
4837 first_binding
4838 = (follow_key (new_click,
4839 nmaps - local_first_binding,
4840 submaps + local_first_binding,
4841 defs + local_first_binding,
4842 submaps + local_first_binding,
4843 &case_converted)
4844 + local_first_binding);
4845
4846 /* If that click is bound, go for it. */
4847 if (first_binding < nmaps)
4848 {
4849 key = new_click;
4850 break;
4851 }
4852 /* Otherwise, we'll leave key set to the drag event. */
4853 }
4854 }
4855 }
4856 }
4857
4858 keybuf[t++] = key;
4859 /* Normally, last_nonmenu_event gets the previous key we read.
4860 But when a mouse popup menu is being used,
4861 we don't update last_nonmenu_event; it continues to hold the mouse
4862 event that preceded the first level of menu. */
4863 if (!used_mouse_menu)
4864 last_nonmenu_event = key;
4865
4866 /* If the sequence is unbound, see if we can hang a function key
4867 off the end of it. We only want to scan real keyboard input
4868 for function key sequences, so if mock_input says that we're
4869 re-reading old events, don't examine it. */
4870 if ((first_binding >= nmaps || case_converted)
4871 && t >= mock_input)
4872 {
4873 Lisp_Object fkey_next;
4874
4875 /* Continue scan from fkey_end until we find a bound suffix.
4876 If we fail, increment fkey_start
4877 and start fkey_end from there. */
4878 while (fkey_end < t)
4879 {
4880 Lisp_Object key;
4881
4882 key = keybuf[fkey_end++];
4883 /* Look up meta-characters by prefixing them
4884 with meta_prefix_char. I hate this. */
4885 if (XTYPE (key) == Lisp_Int && XINT (key) & meta_modifier)
4886 {
4887 fkey_next
4888 = get_keymap_1
4889 (get_keyelt
4890 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
4891 0, 1);
4892 XFASTINT (key) = XFASTINT (key) & ~meta_modifier;
4893 }
4894 else
4895 fkey_next = fkey_map;
4896
4897 fkey_next
4898 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
4899
4900 #if 0 /* I didn't turn this on, because it might cause trouble
4901 for the mapping of return into C-m and tab into C-i. */
4902 /* Optionally don't map function keys into other things.
4903 This enables the user to redefine kp- keys easily. */
4904 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
4905 fkey_next = Qnil;
4906 #endif
4907
4908 /* If the function key map gives a function, not an
4909 array, then call the function with no args and use
4910 its value instead. */
4911 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
4912 && fkey_end == t)
4913 {
4914 struct gcpro gcpro1, gcpro2, gcpro3;
4915 Lisp_Object tem;
4916 tem = fkey_next;
4917
4918 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
4919 fkey_next = call1 (fkey_next, prompt);
4920 UNGCPRO;
4921 /* If the function returned something invalid,
4922 barf--don't ignore it.
4923 (To ignore it safely, we would need to gcpro a bunch of
4924 other variables.) */
4925 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
4926 error ("Function in function-key-map returns invalid key sequence");
4927 }
4928
4929 function_key_possible = ! NILP (fkey_next);
4930
4931 /* If keybuf[fkey_start..fkey_end] is bound in the
4932 function key map and it's a suffix of the current
4933 sequence (i.e. fkey_end == t), replace it with
4934 the binding and restart with fkey_start at the end. */
4935 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
4936 && fkey_end == t)
4937 {
4938 int len = XFASTINT (Flength (fkey_next));
4939
4940 t = fkey_start + len;
4941 if (t >= bufsize)
4942 error ("key sequence too long");
4943
4944 if (VECTORP (fkey_next))
4945 bcopy (XVECTOR (fkey_next)->contents,
4946 keybuf + fkey_start,
4947 (t - fkey_start) * sizeof (keybuf[0]));
4948 else if (STRINGP (fkey_next))
4949 {
4950 int i;
4951
4952 for (i = 0; i < len; i++)
4953 XFASTINT (keybuf[fkey_start + i])
4954 = XSTRING (fkey_next)->data[i];
4955 }
4956
4957 mock_input = t;
4958 fkey_start = fkey_end = t;
4959 fkey_map = Vfunction_key_map;
4960
4961 goto replay_sequence;
4962 }
4963
4964 fkey_map = get_keymap_1 (fkey_next, 0, 1);
4965
4966 /* If we no longer have a bound suffix, try a new positions for
4967 fkey_start. */
4968 if (NILP (fkey_map))
4969 {
4970 fkey_end = ++fkey_start;
4971 fkey_map = Vfunction_key_map;
4972 function_key_possible = 0;
4973 }
4974 }
4975 }
4976
4977 /* Look for this sequence in key-translation-map. */
4978 {
4979 Lisp_Object keytran_next;
4980
4981 /* Scan from keytran_end until we find a bound suffix. */
4982 while (keytran_end < t)
4983 {
4984 Lisp_Object key;
4985
4986 key = keybuf[keytran_end++];
4987 /* Look up meta-characters by prefixing them
4988 with meta_prefix_char. I hate this. */
4989 if (XTYPE (key) == Lisp_Int && XINT (key) & meta_modifier)
4990 {
4991 keytran_next
4992 = get_keymap_1
4993 (get_keyelt
4994 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
4995 0, 1);
4996 XFASTINT (key) = XFASTINT (key) & ~meta_modifier;
4997 }
4998 else
4999 keytran_next = keytran_map;
5000
5001 keytran_next
5002 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
5003
5004 /* If the key translation map gives a function, not an
5005 array, then call the function with no args and use
5006 its value instead. */
5007 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
5008 && keytran_end == t)
5009 {
5010 struct gcpro gcpro1, gcpro2, gcpro3;
5011 Lisp_Object tem;
5012 tem = keytran_next;
5013
5014 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
5015 keytran_next = call1 (keytran_next, prompt);
5016 UNGCPRO;
5017 /* If the function returned something invalid,
5018 barf--don't ignore it.
5019 (To ignore it safely, we would need to gcpro a bunch of
5020 other variables.) */
5021 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
5022 error ("Function in key-translation-map returns invalid key sequence");
5023 }
5024
5025 /* If keybuf[keytran_start..keytran_end] is bound in the
5026 key translation map and it's a suffix of the current
5027 sequence (i.e. keytran_end == t), replace it with
5028 the binding and restart with keytran_start at the end. */
5029 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
5030 && keytran_end == t)
5031 {
5032 int len = XFASTINT (Flength (keytran_next));
5033
5034 t = keytran_start + len;
5035 if (t >= bufsize)
5036 error ("key sequence too long");
5037
5038 if (VECTORP (keytran_next))
5039 bcopy (XVECTOR (keytran_next)->contents,
5040 keybuf + keytran_start,
5041 (t - keytran_start) * sizeof (keybuf[0]));
5042 else if (STRINGP (keytran_next))
5043 {
5044 int i;
5045
5046 for (i = 0; i < len; i++)
5047 XFASTINT (keybuf[keytran_start + i])
5048 = XSTRING (keytran_next)->data[i];
5049 }
5050
5051 mock_input = t;
5052 keytran_start = keytran_end = t;
5053 keytran_map = Vkey_translation_map;
5054
5055 goto replay_sequence;
5056 }
5057
5058 keytran_map = get_keymap_1 (keytran_next, 0, 1);
5059
5060 /* If we no longer have a bound suffix, try a new positions for
5061 keytran_start. */
5062 if (NILP (keytran_map))
5063 {
5064 keytran_end = ++keytran_start;
5065 keytran_map = Vkey_translation_map;
5066 }
5067 }
5068 }
5069 }
5070
5071 read_key_sequence_cmd = (first_binding < nmaps
5072 ? defs[first_binding]
5073 : Qnil);
5074
5075 done:
5076 unread_switch_frame = delayed_switch_frame;
5077 unbind_to (count, Qnil);
5078
5079 /* Occasionally we fabricate events, perhaps by expanding something
5080 according to function-key-map, or by adding a prefix symbol to a
5081 mouse click in the scroll bar or modeline. In this cases, return
5082 the entire generated key sequence, even if we hit an unbound
5083 prefix or a definition before the end. This means that you will
5084 be able to push back the event properly, and also means that
5085 read-key-sequence will always return a logical unit.
5086
5087 Better ideas? */
5088 for (; t < mock_input; t++)
5089 {
5090 echo_char (keybuf[t]);
5091 add_command_key (keybuf[t]);
5092 }
5093
5094 return t;
5095 }
5096
5097 #if 0 /* This doc string is too long for some compilers.
5098 This commented-out definition serves for DOC. */
5099 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
5100 "Read a sequence of keystrokes and return as a string or vector.\n\
5101 The sequence is sufficient to specify a non-prefix command in the\n\
5102 current local and global maps.\n\
5103 \n\
5104 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
5105 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
5106 as a continuation of the previous key.\n\
5107 \n\
5108 A C-g typed while in this function is treated like any other character,\n\
5109 and `quit-flag' is not set.\n\
5110 \n\
5111 If the key sequence starts with a mouse click, then the sequence is read\n\
5112 using the keymaps of the buffer of the window clicked in, not the buffer\n\
5113 of the selected window as normal.\n\
5114 ""\n\
5115 `read-key-sequence' drops unbound button-down events, since you normally\n\
5116 only care about the click or drag events which follow them. If a drag\n\
5117 or multi-click event is unbound, but the corresponding click event would\n\
5118 be bound, `read-key-sequence' turns the event into a click event at the\n\
5119 drag's starting position. This means that you don't have to distinguish\n\
5120 between click and drag, double, or triple events unless you want to.\n\
5121 \n\
5122 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
5123 lines separating windows, and scroll bars with imaginary keys\n\
5124 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
5125 \n\
5126 If the user switches frames in the middle of a key sequence, the\n\
5127 frame-switch event is put off until after the current key sequence.\n\
5128 \n\
5129 `read-key-sequence' checks `function-key-map' for function key\n\
5130 sequences, where they wouldn't conflict with ordinary bindings. See\n\
5131 `function-key-map' for more details.")
5132 (prompt, continue_echo)
5133 #endif
5134
5135 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
5136 0)
5137 (prompt, continue_echo)
5138 Lisp_Object prompt, continue_echo;
5139 {
5140 Lisp_Object keybuf[30];
5141 register int i;
5142 struct gcpro gcpro1, gcpro2;
5143
5144 if (!NILP (prompt))
5145 CHECK_STRING (prompt, 0);
5146 QUIT;
5147
5148 bzero (keybuf, sizeof keybuf);
5149 GCPRO1 (keybuf[0]);
5150 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
5151
5152 if (NILP (continue_echo))
5153 this_command_key_count = 0;
5154
5155 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])), prompt);
5156
5157 if (i == -1)
5158 {
5159 Vquit_flag = Qt;
5160 QUIT;
5161 }
5162 UNGCPRO;
5163 return make_event_array (i, keybuf);
5164 }
5165 \f
5166 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0,
5167 "Execute CMD as an editor command.\n\
5168 CMD must be a symbol that satisfies the `commandp' predicate.\n\
5169 Optional second arg RECORD-FLAG non-nil\n\
5170 means unconditionally put this command in `command-history'.\n\
5171 Otherwise, that is done only if an arg is read using the minibuffer.")
5172 (cmd, record)
5173 Lisp_Object cmd, record;
5174 {
5175 register Lisp_Object final;
5176 register Lisp_Object tem;
5177 Lisp_Object prefixarg;
5178 struct backtrace backtrace;
5179 extern int debug_on_next_call;
5180
5181 prefixarg = Vprefix_arg, Vprefix_arg = Qnil;
5182 Vcurrent_prefix_arg = prefixarg;
5183 debug_on_next_call = 0;
5184
5185 if (XTYPE (cmd) == Lisp_Symbol)
5186 {
5187 tem = Fget (cmd, Qdisabled);
5188 if (!NILP (tem) && !NILP (Vrun_hooks))
5189 return call1 (Vrun_hooks, Qdisabled_command_hook);
5190 }
5191
5192 while (1)
5193 {
5194 final = Findirect_function (cmd);
5195
5196 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
5197 do_autoload (final, cmd);
5198 else
5199 break;
5200 }
5201
5202 if (XTYPE (final) == Lisp_String
5203 || XTYPE (final) == Lisp_Vector)
5204 {
5205 /* If requested, place the macro in the command history. For
5206 other sorts of commands, call-interactively takes care of
5207 this. */
5208 if (!NILP (record))
5209 Vcommand_history
5210 = Fcons (Fcons (Qexecute_kbd_macro,
5211 Fcons (final, Fcons (prefixarg, Qnil))),
5212 Vcommand_history);
5213
5214 return Fexecute_kbd_macro (final, prefixarg);
5215 }
5216 if (CONSP (final) || XTYPE (final) == Lisp_Subr
5217 || XTYPE (final) == Lisp_Compiled)
5218 {
5219 backtrace.next = backtrace_list;
5220 backtrace_list = &backtrace;
5221 backtrace.function = &Qcall_interactively;
5222 backtrace.args = &cmd;
5223 backtrace.nargs = 1;
5224 backtrace.evalargs = 0;
5225
5226 tem = Fcall_interactively (cmd, record);
5227
5228 backtrace_list = backtrace.next;
5229 return tem;
5230 }
5231 return Qnil;
5232 }
5233 \f
5234 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
5235 1, 1, "P",
5236 "Read function name, then read its arguments and call it.")
5237 (prefixarg)
5238 Lisp_Object prefixarg;
5239 {
5240 Lisp_Object function;
5241 char buf[40];
5242 Lisp_Object saved_keys;
5243 struct gcpro gcpro1;
5244
5245 saved_keys = Fvector (this_command_key_count,
5246 XVECTOR (this_command_keys)->contents);
5247 buf[0] = 0;
5248 GCPRO1 (saved_keys);
5249
5250 if (EQ (prefixarg, Qminus))
5251 strcpy (buf, "- ");
5252 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
5253 strcpy (buf, "C-u ");
5254 else if (CONSP (prefixarg) && XTYPE (XCONS (prefixarg)->car) == Lisp_Int)
5255 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
5256 else if (XTYPE (prefixarg) == Lisp_Int)
5257 sprintf (buf, "%d ", XINT (prefixarg));
5258
5259 /* This isn't strictly correct if execute-extended-command
5260 is bound to anything else. Perhaps it should use
5261 this_command_keys? */
5262 strcat (buf, "M-x ");
5263
5264 /* Prompt with buf, and then read a string, completing from and
5265 restricting to the set of all defined commands. Don't provide
5266 any initial input. Save the command read on the extended-command
5267 history list. */
5268 function = Fcompleting_read (build_string (buf),
5269 Vobarray, Qcommandp,
5270 Qt, Qnil, Qextended_command_history);
5271
5272 /* Set this_command_keys to the concatenation of saved_keys and
5273 function, followed by a RET. */
5274 {
5275 struct Lisp_String *str;
5276 Lisp_Object *keys;
5277 int i;
5278 Lisp_Object tem;
5279
5280 this_command_key_count = 0;
5281
5282 keys = XVECTOR (saved_keys)->contents;
5283 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
5284 add_command_key (keys[i]);
5285
5286 str = XSTRING (function);
5287 for (i = 0; i < str->size; i++)
5288 {
5289 XFASTINT (tem) = str->data[i];
5290 add_command_key (tem);
5291 }
5292
5293 XFASTINT (tem) = '\015';
5294 add_command_key (tem);
5295 }
5296
5297 UNGCPRO;
5298
5299 function = Fintern (function, Qnil);
5300 Vprefix_arg = prefixarg;
5301 this_command = function;
5302
5303 return Fcommand_execute (function, Qt);
5304 }
5305 \f
5306
5307 detect_input_pending ()
5308 {
5309 if (!input_pending)
5310 get_input_pending (&input_pending);
5311
5312 return input_pending;
5313 }
5314
5315 /* This is called in some cases before a possible quit.
5316 It cases the next call to detect_input_pending to recompute input_pending.
5317 So calling this function unnecessarily can't do any harm. */
5318 clear_input_pending ()
5319 {
5320 input_pending = 0;
5321 }
5322
5323 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
5324 "T if command input is currently available with no waiting.\n\
5325 Actually, the value is nil only if we can be sure that no input is available.")
5326 ()
5327 {
5328 if (!NILP (Vunread_command_events) || unread_command_char != -1)
5329 return (Qt);
5330
5331 return detect_input_pending () ? Qt : Qnil;
5332 }
5333
5334 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
5335 "Return vector of last 100 events, not counting those from keyboard macros.")
5336 ()
5337 {
5338 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
5339 Lisp_Object val;
5340
5341 if (total_keys < NUM_RECENT_KEYS)
5342 return Fvector (total_keys, keys);
5343 else
5344 {
5345 val = Fvector (NUM_RECENT_KEYS, keys);
5346 bcopy (keys + recent_keys_index,
5347 XVECTOR (val)->contents,
5348 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
5349 bcopy (keys,
5350 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
5351 recent_keys_index * sizeof (Lisp_Object));
5352 return val;
5353 }
5354 }
5355
5356 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
5357 "Return the key sequence that invoked this command.\n\
5358 The value is a string or a vector.")
5359 ()
5360 {
5361 return make_event_array (this_command_key_count,
5362 XVECTOR (this_command_keys)->contents);
5363 }
5364
5365 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
5366 "Return the current depth in recursive edits.")
5367 ()
5368 {
5369 Lisp_Object temp;
5370 XFASTINT (temp) = command_loop_level + minibuf_level;
5371 return temp;
5372 }
5373
5374 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
5375 "FOpen dribble file: ",
5376 "Start writing all keyboard characters to a dribble file called FILE.\n\
5377 If FILE is nil, close any open dribble file.")
5378 (file)
5379 Lisp_Object file;
5380 {
5381 if (NILP (file))
5382 {
5383 fclose (dribble);
5384 dribble = 0;
5385 }
5386 else
5387 {
5388 file = Fexpand_file_name (file, Qnil);
5389 dribble = fopen (XSTRING (file)->data, "w");
5390 }
5391 return Qnil;
5392 }
5393
5394 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
5395 "Discard the contents of the terminal input buffer.\n\
5396 Also cancel any kbd macro being defined.")
5397 ()
5398 {
5399 defining_kbd_macro = 0;
5400 update_mode_lines++;
5401
5402 Vunread_command_events = Qnil;
5403 unread_command_char = -1;
5404
5405 discard_tty_input ();
5406
5407 /* Without the cast, GCC complains that this assignment loses the
5408 volatile qualifier of kbd_store_ptr. Is there anything wrong
5409 with that? */
5410 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr;
5411 Ffillarray (kbd_buffer_frame_or_window, Qnil);
5412 input_pending = 0;
5413
5414 return Qnil;
5415 }
5416 \f
5417 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
5418 "Stop Emacs and return to superior process. You can resume later.\n\
5419 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
5420 control, run a subshell instead.\n\n\
5421 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
5422 to be read as terminal input by Emacs's parent, after suspension.\n\
5423 \n\
5424 Before suspending, call the functions in `suspend-hook' with no args.\n\
5425 If any of them returns nil, don't call the rest and don't suspend.\n\
5426 Otherwise, suspend normally and after resumption run the normal hook\n\
5427 `suspend-resume-hook' if that is bound and non-nil.\n\
5428 \n\
5429 Some operating systems cannot stop the Emacs process and resume it later.\n\
5430 On such systems, Emacs starts a subshell instead of suspending.")
5431 (stuffstring)
5432 Lisp_Object stuffstring;
5433 {
5434 Lisp_Object tem;
5435 int count = specpdl_ptr - specpdl;
5436 int old_height, old_width;
5437 int width, height;
5438 struct gcpro gcpro1, gcpro2;
5439 extern init_sys_modes ();
5440
5441 if (!NILP (stuffstring))
5442 CHECK_STRING (stuffstring, 0);
5443
5444 /* Run the functions in suspend-hook. */
5445 if (!NILP (Vrun_hooks))
5446 call1 (Vrun_hooks, intern ("suspend-hook"));
5447
5448 GCPRO1 (stuffstring);
5449 get_frame_size (&old_width, &old_height);
5450 reset_sys_modes ();
5451 /* sys_suspend can get an error if it tries to fork a subshell
5452 and the system resources aren't available for that. */
5453 record_unwind_protect (init_sys_modes, 0);
5454 stuff_buffered_input (stuffstring);
5455 if (cannot_suspend)
5456 sys_subshell ();
5457 else
5458 sys_suspend ();
5459 unbind_to (count, Qnil);
5460
5461 /* Check if terminal/window size has changed.
5462 Note that this is not useful when we are running directly
5463 with a window system; but suspend should be disabled in that case. */
5464 get_frame_size (&width, &height);
5465 if (width != old_width || height != old_height)
5466 change_frame_size (selected_frame, height, width, 0, 0);
5467
5468 /* Run suspend-resume-hook. */
5469 if (!NILP (Vrun_hooks))
5470 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
5471
5472 UNGCPRO;
5473 return Qnil;
5474 }
5475
5476 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
5477 Then in any case stuff anything Emacs has read ahead and not used. */
5478
5479 stuff_buffered_input (stuffstring)
5480 Lisp_Object stuffstring;
5481 {
5482 register unsigned char *p;
5483
5484 /* stuff_char works only in BSD, versions 4.2 and up. */
5485 #ifdef BSD
5486 #ifndef BSD4_1
5487 if (XTYPE (stuffstring) == Lisp_String)
5488 {
5489 register int count;
5490
5491 p = XSTRING (stuffstring)->data;
5492 count = XSTRING (stuffstring)->size;
5493 while (count-- > 0)
5494 stuff_char (*p++);
5495 stuff_char ('\n');
5496 }
5497 /* Anything we have read ahead, put back for the shell to read. */
5498 while (kbd_fetch_ptr != kbd_store_ptr)
5499 {
5500 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
5501 kbd_fetch_ptr = kbd_buffer;
5502 if (kbd_fetch_ptr->kind == ascii_keystroke)
5503 stuff_char (kbd_fetch_ptr->code);
5504 kbd_fetch_ptr->kind = no_event;
5505 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr
5506 - kbd_buffer]
5507 = Qnil);
5508 kbd_fetch_ptr++;
5509 }
5510 input_pending = 0;
5511 #endif
5512 #endif /* BSD and not BSD4_1 */
5513 }
5514 \f
5515 set_waiting_for_input (time_to_clear)
5516 EMACS_TIME *time_to_clear;
5517 {
5518 input_available_clear_time = time_to_clear;
5519
5520 /* Tell interrupt_signal to throw back to read_char, */
5521 waiting_for_input = 1;
5522
5523 /* If interrupt_signal was called before and buffered a C-g,
5524 make it run again now, to avoid timing error. */
5525 if (!NILP (Vquit_flag))
5526 quit_throw_to_read_char ();
5527 }
5528
5529 clear_waiting_for_input ()
5530 {
5531 /* Tell interrupt_signal not to throw back to read_char, */
5532 waiting_for_input = 0;
5533 input_available_clear_time = 0;
5534 }
5535
5536 /* This routine is called at interrupt level in response to C-G.
5537 If interrupt_input, this is the handler for SIGINT.
5538 Otherwise, it is called from kbd_buffer_store_event,
5539 in handling SIGIO or SIGTINT.
5540
5541 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
5542 immediately throw back to read_char.
5543
5544 Otherwise it sets the Lisp variable quit-flag not-nil.
5545 This causes eval to throw, when it gets a chance.
5546 If quit-flag is already non-nil, it stops the job right away. */
5547
5548 SIGTYPE
5549 interrupt_signal ()
5550 {
5551 char c;
5552 /* Must preserve main program's value of errno. */
5553 int old_errno = errno;
5554
5555 #ifdef USG
5556 if (!read_socket_hook && NILP (Vwindow_system))
5557 {
5558 /* USG systems forget handlers when they are used;
5559 must reestablish each time */
5560 signal (SIGINT, interrupt_signal);
5561 signal (SIGQUIT, interrupt_signal);
5562 }
5563 #endif /* USG */
5564
5565 cancel_echoing ();
5566
5567 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
5568 {
5569 fflush (stdout);
5570 reset_sys_modes ();
5571 sigfree ();
5572 #ifdef SIGTSTP /* Support possible in later USG versions */
5573 /*
5574 * On systems which can suspend the current process and return to the original
5575 * shell, this command causes the user to end up back at the shell.
5576 * The "Auto-save" and "Abort" questions are not asked until
5577 * the user elects to return to emacs, at which point he can save the current
5578 * job and either dump core or continue.
5579 */
5580 sys_suspend ();
5581 #else
5582 #ifdef VMS
5583 if (sys_suspend () == -1)
5584 {
5585 printf ("Not running as a subprocess;\n");
5586 printf ("you can continue or abort.\n");
5587 }
5588 #else /* not VMS */
5589 /* Perhaps should really fork an inferior shell?
5590 But that would not provide any way to get back
5591 to the original shell, ever. */
5592 printf ("No support for stopping a process on this operating system;\n");
5593 printf ("you can continue or abort.\n");
5594 #endif /* not VMS */
5595 #endif /* not SIGTSTP */
5596 #ifdef MSDOS
5597 /* We must remain inside the screen area when the internal terminal
5598 is used. Note that [Enter] is not echoed by dos. */
5599 cursor_to (0, 0);
5600 #endif
5601 printf ("Auto-save? (y or n) ");
5602 fflush (stdout);
5603 if (((c = getchar ()) & ~040) == 'Y')
5604 {
5605 Fdo_auto_save (Qt, Qnil);
5606 #ifdef MSDOS
5607 printf ("\r\nAuto-save done");
5608 #else /* not MSDOS */
5609 printf ("Auto-save done\n");
5610 #endif /* not MSDOS */
5611 }
5612 while (c != '\n') c = getchar ();
5613 #ifdef MSDOS
5614 printf ("\r\nAbort? (y or n) ");
5615 #else /* not MSDOS */
5616 #ifdef VMS
5617 printf ("Abort (and enter debugger)? (y or n) ");
5618 #else /* not VMS */
5619 printf ("Abort (and dump core)? (y or n) ");
5620 #endif /* not VMS */
5621 #endif /* not MSDOS */
5622 fflush (stdout);
5623 if (((c = getchar ()) & ~040) == 'Y')
5624 abort ();
5625 while (c != '\n') c = getchar ();
5626 #ifdef MSDOS
5627 printf ("\r\nContinuing...\r\n");
5628 #else /* not MSDOS */
5629 printf ("Continuing...\n");
5630 #endif /* not MSDOS */
5631 fflush (stdout);
5632 init_sys_modes ();
5633 }
5634 else
5635 {
5636 /* If executing a function that wants to be interrupted out of
5637 and the user has not deferred quitting by binding `inhibit-quit'
5638 then quit right away. */
5639 if (immediate_quit && NILP (Vinhibit_quit))
5640 {
5641 immediate_quit = 0;
5642 sigfree ();
5643 Fsignal (Qquit, Qnil);
5644 }
5645 else
5646 /* Else request quit when it's safe */
5647 Vquit_flag = Qt;
5648 }
5649
5650 if (waiting_for_input && !echoing)
5651 quit_throw_to_read_char ();
5652
5653 errno = old_errno;
5654 }
5655
5656 /* Handle a C-g by making read_char return C-g. */
5657
5658 quit_throw_to_read_char ()
5659 {
5660 quit_error_check ();
5661 sigfree ();
5662 /* Prevent another signal from doing this before we finish. */
5663 clear_waiting_for_input ();
5664 input_pending = 0;
5665
5666 Vunread_command_events = Qnil;
5667 unread_command_char = -1;
5668
5669 #ifdef POLL_FOR_INPUT
5670 /* May be > 1 if in recursive minibuffer. */
5671 if (poll_suppress_count == 0)
5672 abort ();
5673 #endif
5674 #ifdef MULTI_FRAME
5675 if (XTYPE (internal_last_event_frame) == Lisp_Frame
5676 && XFRAME (internal_last_event_frame) != selected_frame)
5677 Fhandle_switch_frame (make_lispy_switch_frame (internal_last_event_frame));
5678 #endif
5679
5680 _longjmp (getcjmp, 1);
5681 }
5682 \f
5683 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
5684 "Set mode of reading keyboard input.\n\
5685 First arg INTERRUPT non-nil means use input interrupts;\n\
5686 nil means use CBREAK mode.\n\
5687 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
5688 (no effect except in CBREAK mode).\n\
5689 Third arg META t means accept 8-bit input (for a Meta key).\n\
5690 META nil means ignore the top bit, on the assumption it is parity.\n\
5691 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
5692 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
5693 See also `current-input-mode'.")
5694 (interrupt, flow, meta, quit)
5695 Lisp_Object interrupt, flow, meta, quit;
5696 {
5697 if (!NILP (quit)
5698 && (XTYPE (quit) != Lisp_Int
5699 || XINT (quit) < 0 || XINT (quit) > 0400))
5700 error ("set-input-mode: QUIT must be an ASCII character");
5701
5702 #ifdef POLL_FOR_INPUT
5703 stop_polling ();
5704 #endif
5705
5706 reset_sys_modes ();
5707 #ifdef SIGIO
5708 /* Note SIGIO has been undef'd if FIONREAD is missing. */
5709 #ifdef NO_SOCK_SIGIO
5710 if (read_socket_hook)
5711 interrupt_input = 0; /* No interrupts if reading from a socket. */
5712 else
5713 #endif /* NO_SOCK_SIGIO */
5714 interrupt_input = !NILP (interrupt);
5715 #else /* not SIGIO */
5716 interrupt_input = 0;
5717 #endif /* not SIGIO */
5718 /* Our VMS input only works by interrupts, as of now. */
5719 #ifdef VMS
5720 interrupt_input = 1;
5721 #endif
5722 flow_control = !NILP (flow);
5723 if (NILP (meta))
5724 meta_key = 0;
5725 else if (EQ (meta, Qt))
5726 meta_key = 1;
5727 else
5728 meta_key = 2;
5729 if (!NILP (quit))
5730 /* Don't let this value be out of range. */
5731 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
5732
5733 init_sys_modes ();
5734
5735 #ifdef POLL_FOR_INPUT
5736 poll_suppress_count = 1;
5737 start_polling ();
5738 #endif
5739 return Qnil;
5740 }
5741
5742 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
5743 "Return information about the way Emacs currently reads keyboard input.\n\
5744 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
5745 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
5746 nil, Emacs is using CBREAK mode.\n\
5747 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
5748 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
5749 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
5750 META nil means ignoring the top bit, on the assumption it is parity.\n\
5751 META is neither t nor nil if accepting 8-bit input and using\n\
5752 all 8 bits as the character code.\n\
5753 QUIT is the character Emacs currently uses to quit.\n\
5754 The elements of this list correspond to the arguments of\n\
5755 `set-input-mode'.")
5756 ()
5757 {
5758 Lisp_Object val[4];
5759
5760 val[0] = interrupt_input ? Qt : Qnil;
5761 val[1] = flow_control ? Qt : Qnil;
5762 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
5763 XFASTINT (val[3]) = quit_char;
5764
5765 return Flist (sizeof (val) / sizeof (val[0]), val);
5766 }
5767
5768 \f
5769 init_keyboard ()
5770 {
5771 /* This is correct before outermost invocation of the editor loop */
5772 command_loop_level = -1;
5773 immediate_quit = 0;
5774 quit_char = Ctl ('g');
5775 Vunread_command_events = Qnil;
5776 unread_command_char = -1;
5777 total_keys = 0;
5778 recent_keys_index = 0;
5779 kbd_fetch_ptr = kbd_buffer;
5780 kbd_store_ptr = kbd_buffer;
5781 do_mouse_tracking = 0;
5782 input_pending = 0;
5783
5784 #ifdef MULTI_FRAME
5785 /* This means that command_loop_1 won't try to select anything the first
5786 time through. */
5787 internal_last_event_frame = Qnil;
5788 Vlast_event_frame = internal_last_event_frame;
5789 #endif
5790
5791 /* If we're running a dumped Emacs, we need to clear out
5792 kbd_buffer_frame_or_window, in case some events got into it
5793 before we dumped.
5794
5795 If we're running an undumped Emacs, it hasn't been initialized by
5796 syms_of_keyboard yet. */
5797 if (initialized)
5798 Ffillarray (kbd_buffer_frame_or_window, Qnil);
5799
5800 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
5801 {
5802 signal (SIGINT, interrupt_signal);
5803 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
5804 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
5805 SIGQUIT and we can't tell which one it will give us. */
5806 signal (SIGQUIT, interrupt_signal);
5807 #endif /* HAVE_TERMIO */
5808 }
5809 /* Note SIGIO has been undef'd if FIONREAD is missing. */
5810 #ifdef SIGIO
5811 if (!noninteractive)
5812 signal (SIGIO, input_available_signal);
5813 #endif /* SIGIO */
5814
5815 /* Use interrupt input by default, if it works and noninterrupt input
5816 has deficiencies. */
5817
5818 #ifdef INTERRUPT_INPUT
5819 interrupt_input = 1;
5820 #else
5821 interrupt_input = 0;
5822 #endif
5823
5824 /* Our VMS input only works by interrupts, as of now. */
5825 #ifdef VMS
5826 interrupt_input = 1;
5827 #endif
5828
5829 sigfree ();
5830 dribble = 0;
5831
5832 if (keyboard_init_hook)
5833 (*keyboard_init_hook) ();
5834
5835 #ifdef POLL_FOR_INPUT
5836 poll_suppress_count = 1;
5837 start_polling ();
5838 #endif
5839 }
5840
5841 /* This type's only use is in syms_of_keyboard, to initialize the
5842 event header symbols and put properties on them. */
5843 struct event_head {
5844 Lisp_Object *var;
5845 char *name;
5846 Lisp_Object *kind;
5847 };
5848
5849 struct event_head head_table[] = {
5850 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
5851 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
5852 &Qswitch_frame, "switch-frame", &Qswitch_frame,
5853 };
5854
5855 syms_of_keyboard ()
5856 {
5857 Qdisabled_command_hook = intern ("disabled-command-hook");
5858 staticpro (&Qdisabled_command_hook);
5859
5860 Qself_insert_command = intern ("self-insert-command");
5861 staticpro (&Qself_insert_command);
5862
5863 Qforward_char = intern ("forward-char");
5864 staticpro (&Qforward_char);
5865
5866 Qbackward_char = intern ("backward-char");
5867 staticpro (&Qbackward_char);
5868
5869 Qdisabled = intern ("disabled");
5870 staticpro (&Qdisabled);
5871
5872 Qundefined = intern ("undefined");
5873 staticpro (&Qundefined);
5874
5875 Qpre_command_hook = intern ("pre-command-hook");
5876 staticpro (&Qpre_command_hook);
5877
5878 Qpost_command_hook = intern ("post-command-hook");
5879 staticpro (&Qpost_command_hook);
5880
5881 Qcommand_hook_internal = intern ("command-hook-internal");
5882 staticpro (&Qcommand_hook_internal);
5883
5884 Qfunction_key = intern ("function-key");
5885 staticpro (&Qfunction_key);
5886 Qmouse_click = intern ("mouse-click");
5887 staticpro (&Qmouse_click);
5888
5889 Qmenu_enable = intern ("menu-enable");
5890 staticpro (&Qmenu_enable);
5891
5892 Qmode_line = intern ("mode-line");
5893 staticpro (&Qmode_line);
5894 Qvertical_line = intern ("vertical-line");
5895 staticpro (&Qvertical_line);
5896 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
5897 staticpro (&Qvertical_scroll_bar);
5898 Qmenu_bar = intern ("menu-bar");
5899 staticpro (&Qmenu_bar);
5900
5901 Qabove_handle = intern ("above-handle");
5902 staticpro (&Qabove_handle);
5903 Qhandle = intern ("handle");
5904 staticpro (&Qhandle);
5905 Qbelow_handle = intern ("below-handle");
5906 staticpro (&Qbelow_handle);
5907
5908 Qevent_kind = intern ("event-kind");
5909 staticpro (&Qevent_kind);
5910 Qevent_symbol_elements = intern ("event-symbol-elements");
5911 staticpro (&Qevent_symbol_elements);
5912 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
5913 staticpro (&Qevent_symbol_element_mask);
5914 Qmodifier_cache = intern ("modifier-cache");
5915 staticpro (&Qmodifier_cache);
5916
5917 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
5918 staticpro (&Qrecompute_lucid_menubar);
5919 Qactivate_menubar_hook = intern ("activate-menubar-hook");
5920 staticpro (&Qactivate_menubar_hook);
5921
5922 Qpolling_period = intern ("polling-period");
5923 staticpro (&Qpolling_period);
5924
5925 {
5926 struct event_head *p;
5927
5928 for (p = head_table;
5929 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
5930 p++)
5931 {
5932 *p->var = intern (p->name);
5933 staticpro (p->var);
5934 Fput (*p->var, Qevent_kind, *p->kind);
5935 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
5936 }
5937 }
5938
5939 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
5940 staticpro (&button_down_location);
5941
5942 {
5943 int i;
5944 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
5945
5946 modifier_symbols = Fmake_vector (make_number (len), Qnil);
5947 for (i = 0; i < len; i++)
5948 if (modifier_names[i])
5949 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
5950 staticpro (&modifier_symbols);
5951 }
5952
5953 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
5954 staticpro (&recent_keys);
5955
5956 this_command_keys = Fmake_vector (make_number (40), Qnil);
5957 staticpro (&this_command_keys);
5958
5959 Qextended_command_history = intern ("extended-command-history");
5960 Fset (Qextended_command_history, Qnil);
5961 staticpro (&Qextended_command_history);
5962
5963 kbd_buffer_frame_or_window
5964 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
5965 staticpro (&kbd_buffer_frame_or_window);
5966
5967 accent_key_syms = Qnil;
5968 staticpro (&accent_key_syms);
5969
5970 func_key_syms = Qnil;
5971 staticpro (&func_key_syms);
5972
5973 system_key_syms = Qnil;
5974 staticpro (&system_key_syms);
5975
5976 mouse_syms = Qnil;
5977 staticpro (&mouse_syms);
5978
5979 unread_switch_frame = Qnil;
5980 staticpro (&unread_switch_frame);
5981
5982 defsubr (&Sread_key_sequence);
5983 defsubr (&Srecursive_edit);
5984 defsubr (&Strack_mouse);
5985 defsubr (&Sinput_pending_p);
5986 defsubr (&Scommand_execute);
5987 defsubr (&Srecent_keys);
5988 defsubr (&Sthis_command_keys);
5989 defsubr (&Ssuspend_emacs);
5990 defsubr (&Sabort_recursive_edit);
5991 defsubr (&Sexit_recursive_edit);
5992 defsubr (&Srecursion_depth);
5993 defsubr (&Stop_level);
5994 defsubr (&Sdiscard_input);
5995 defsubr (&Sopen_dribble_file);
5996 defsubr (&Sset_input_mode);
5997 defsubr (&Scurrent_input_mode);
5998 defsubr (&Sexecute_extended_command);
5999
6000 DEFVAR_LISP ("last-command-char", &last_command_char,
6001 "Last input event that was part of a command.");
6002
6003 DEFVAR_LISP ("last-command-event", &last_command_char,
6004 "Last input event that was part of a command.");
6005
6006 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
6007 "Last input event in a command, except for mouse menu events.\n\
6008 Mouse menus give back keys that don't look like mouse events;\n\
6009 this variable holds the actual mouse event that led to the menu,\n\
6010 so that you can determine whether the command was run by mouse or not.");
6011
6012 DEFVAR_LISP ("last-input-char", &last_input_char,
6013 "Last input event.");
6014
6015 DEFVAR_LISP ("last-input-event", &last_input_char,
6016 "Last input event.");
6017
6018 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
6019 "List of objects to be read as next command input events.");
6020
6021 DEFVAR_INT ("unread-command-char", &unread_command_char,
6022 "If not -1, an object to be read as next command input event.");
6023
6024 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
6025 "Meta-prefix character code. Meta-foo as command input\n\
6026 turns into this character followed by foo.");
6027 XSET (meta_prefix_char, Lisp_Int, 033);
6028
6029 DEFVAR_LISP ("last-command", &last_command,
6030 "The last command executed. Normally a symbol with a function definition,\n\
6031 but can be whatever was found in the keymap, or whatever the variable\n\
6032 `this-command' was set to by that command.");
6033 last_command = Qnil;
6034
6035 DEFVAR_LISP ("this-command", &this_command,
6036 "The command now being executed.\n\
6037 The command can set this variable; whatever is put here\n\
6038 will be in `last-command' during the following command.");
6039 this_command = Qnil;
6040
6041 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
6042 "*Number of keyboard input characters between auto-saves.\n\
6043 Zero means disable autosaving due to number of characters typed.");
6044 auto_save_interval = 300;
6045
6046 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
6047 "*Number of seconds idle time before auto-save.\n\
6048 Zero or nil means disable auto-saving due to idleness.\n\
6049 After auto-saving due to this many seconds of idle time,\n\
6050 Emacs also does a garbage collection if that seems to be warranted.");
6051 XFASTINT (Vauto_save_timeout) = 30;
6052
6053 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
6054 "*Nonzero means echo unfinished commands after this many seconds of pause.");
6055 echo_keystrokes = 1;
6056
6057 DEFVAR_INT ("polling-period", &polling_period,
6058 "*Interval between polling for input during Lisp execution.\n\
6059 The reason for polling is to make C-g work to stop a running program.\n\
6060 Polling is needed only when using X windows and SIGIO does not work.\n\
6061 Polling is automatically disabled in all other cases.");
6062 polling_period = 2;
6063
6064 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
6065 "*Maximum time between mouse clicks to make a double-click.\n\
6066 Measured in milliseconds. nil means disable double-click recognition;\n\
6067 t means double-clicks have no time limit and are detected\n\
6068 by position only.");
6069 Vdouble_click_time = make_number (500);
6070
6071 DEFVAR_INT ("num-input-keys", &num_input_keys,
6072 "*Number of complete keys read from the keyboard so far.");
6073 num_input_keys = 0;
6074
6075 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
6076 "*The frame in which the most recently read event occurred.\n\
6077 If the last event came from a keyboard macro, this is set to `macro'.");
6078 Vlast_event_frame = Qnil;
6079
6080 DEFVAR_LISP ("help-char", &Vhelp_char,
6081 "Character to recognize as meaning Help.\n\
6082 When it is read, do `(eval help-form)', and display result if it's a string.\n\
6083 If the value of `help-form' is nil, this char can be read normally.");
6084 XSET (Vhelp_char, Lisp_Int, Ctl ('H'));
6085
6086 DEFVAR_LISP ("help-form", &Vhelp_form,
6087 "Form to execute when character `help-char' is read.\n\
6088 If the form returns a string, that string is displayed.\n\
6089 If `help-form' is nil, the help char is not recognized.");
6090 Vhelp_form = Qnil;
6091
6092 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
6093 "Command to run when `help-char' character follows a prefix key.\n\
6094 This command is used only when there is no actual binding\n\
6095 for that character after that prefix key.");
6096 Vprefix_help_command = Qnil;
6097
6098 DEFVAR_LISP ("top-level", &Vtop_level,
6099 "Form to evaluate when Emacs starts up.\n\
6100 Useful to set before you dump a modified Emacs.");
6101 Vtop_level = Qnil;
6102
6103 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
6104 "String used as translate table for keyboard input, or nil.\n\
6105 Each character is looked up in this string and the contents used instead.\n\
6106 If string is of length N, character codes N and up are untranslated.");
6107 Vkeyboard_translate_table = Qnil;
6108
6109 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
6110 "Keymap of key translations that can override keymaps.\n\
6111 This keymap works like `function-key-map', but comes after that,\n\
6112 and applies even for keys that have ordinary bindings.");
6113 Vkey_translation_map = Qnil;
6114
6115 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
6116 "Non-nil means to always spawn a subshell instead of suspending,\n\
6117 even if the operating system has support for stopping a process.");
6118 cannot_suspend = 0;
6119
6120 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
6121 "Non-nil means prompt with menus when appropriate.\n\
6122 This is done when reading from a keymap that has a prompt string,\n\
6123 for elements that have prompt strings.\n\
6124 The menu is displayed on the screen\n\
6125 if X menus were enabled at configuration\n\
6126 time and the previous event was a mouse click prefix key.\n\
6127 Otherwise, menu prompting uses the echo area.");
6128 menu_prompting = 1;
6129
6130 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
6131 "Character to see next line of menu prompt.\n\
6132 Type this character while in a menu prompt to rotate around the lines of it.");
6133 XSET (menu_prompt_more_char, Lisp_Int, ' ');
6134
6135 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
6136 "A mask of additional modifier keys to use with every keyboard character.\n\
6137 Emacs applies the modifiers of the character stored here to each keyboard\n\
6138 character it reads. For example, after evaluating the expression\n\
6139 (setq extra-keyboard-modifiers ?\C-x)\n\
6140 all input characters will have the control modifier applied to them.\n\
6141 \n\
6142 Note that the character ?\C-@, equivalent to the integer zero, does\n\
6143 not count as a control character; rather, it counts as a character\n\
6144 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
6145 cancels any modification.");
6146 extra_keyboard_modifiers = 0;
6147
6148 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
6149 "If an editing command sets this to t, deactivate the mark afterward.\n\
6150 The command loop sets this to nil before each command,\n\
6151 and tests the value when the command returns.\n\
6152 Buffer modification stores t in this variable.");
6153 Vdeactivate_mark = Qnil;
6154
6155 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
6156 "Temporary storage of pre-command-hook or post-command-hook.");
6157 Vcommand_hook_internal = Qnil;
6158
6159 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
6160 "Normal hook run before each command is executed.\n\
6161 While the hook is run, its value is temporarily set to nil\n\
6162 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6163 As a result, a hook function cannot straightforwardly alter the value of\n\
6164 `pre-command-hook'. See the Emacs Lisp manual for a way of\n\
6165 implementing hook functions that alter the set of hook functions.");
6166 Vpre_command_hook = Qnil;
6167
6168 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
6169 "Normal hook run after each command is executed.\n\
6170 While the hook is run, its value is temporarily set to nil\n\
6171 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6172 As a result, a hook function cannot straightforwardly alter the value of\n\
6173 `post-command-hook'. See the Emacs Lisp manual for a way of\n\
6174 implementing hook functions that alter the set of hook functions.");
6175 Vpost_command_hook = Qnil;
6176
6177 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
6178 "t means menu bar, specified Lucid style, needs to be recomputed.");
6179 Vlucid_menu_bar_dirty_flag = Qnil;
6180
6181 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
6182 "List of menu bar items to move to the end of the menu bar.\n\
6183 The elements of the list are event types that may have menu bar bindings.");
6184 Vmenu_bar_final_items = Qnil;
6185
6186 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
6187 "Keymap that overrides all other local keymaps.\n\
6188 If this variable is non-nil, it is used as a keymap instead of the\n\
6189 buffer's local map, and the minor mode keymaps and text property keymaps.");
6190 Voverriding_local_map = Qnil;
6191
6192 DEFVAR_BOOL ("track-mouse", &do_mouse_tracking,
6193 "*Non-nil means generate motion events for mouse motion.");
6194
6195 DEFVAR_LISP ("system-key-alist", &Vsystem_key_alist,
6196 "Alist of system-specific X windows key symbols.\n\
6197 Each element should have the form (N . SYMBOL) where N is the\n\
6198 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
6199 and SYMBOL is its name.");
6200 Vsystem_key_alist = Qnil;
6201 }
6202
6203 keys_of_keyboard ()
6204 {
6205 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
6206 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
6207 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
6208 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
6209 initial_define_key (meta_map, 'x', "execute-extended-command");
6210 }