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