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