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