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