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