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