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