Set encoding to utf-8.
[bpt/emacs.git] / src / keyboard.c
... / ...
CommitLineData
1/* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96,97,99, 2000, 01, 02
3 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22#include <config.h>
23#include <signal.h>
24#include <stdio.h>
25#include "termchar.h"
26#include "termopts.h"
27#include "lisp.h"
28#include "termhooks.h"
29#include "macros.h"
30#include "keyboard.h"
31#include "frame.h"
32#include "window.h"
33#include "commands.h"
34#include "buffer.h"
35#include "charset.h"
36#include "disptab.h"
37#include "dispextern.h"
38#include "syntax.h"
39#include "intervals.h"
40#include "keymap.h"
41#include "blockinput.h"
42#include "puresize.h"
43#include "systime.h"
44#include "atimer.h"
45#include <setjmp.h>
46#include <errno.h>
47
48#ifdef MSDOS
49#include "msdos.h"
50#include <time.h>
51#else /* not MSDOS */
52#ifndef VMS
53#include <sys/ioctl.h>
54#endif
55#endif /* not MSDOS */
56
57#include "syssignal.h"
58#include "systty.h"
59
60#include <sys/types.h>
61#ifdef HAVE_UNISTD_H
62#include <unistd.h>
63#endif
64
65/* This is to get the definitions of the XK_ symbols. */
66#ifdef HAVE_X_WINDOWS
67#include "xterm.h"
68#endif
69
70#ifdef HAVE_NTGUI
71#include "w32term.h"
72#endif /* HAVE_NTGUI */
73
74#ifdef MAC_OS
75#include "macterm.h"
76#endif
77
78#ifndef USE_CRT_DLL
79extern int errno;
80#endif
81
82/* Variables for blockinput.h: */
83
84/* Non-zero if interrupt input is blocked right now. */
85int interrupt_input_blocked;
86
87/* Nonzero means an input interrupt has arrived
88 during the current critical section. */
89int interrupt_input_pending;
90
91
92/* File descriptor to use for input. */
93extern int input_fd;
94
95#ifdef HAVE_WINDOW_SYSTEM
96/* Make all keyboard buffers much bigger when using X windows. */
97#ifdef MAC_OS8
98/* But not too big (local data > 32K error) if on Mac OS Classic. */
99#define KBD_BUFFER_SIZE 512
100#else
101#define KBD_BUFFER_SIZE 4096
102#endif
103#else /* No X-windows, character input */
104#define KBD_BUFFER_SIZE 4096
105#endif /* No X-windows */
106
107#define abs(x) ((x) >= 0 ? (x) : -(x))
108
109/* Following definition copied from eval.c */
110
111struct backtrace
112 {
113 struct backtrace *next;
114 Lisp_Object *function;
115 Lisp_Object *args; /* Points to vector of args. */
116 int nargs; /* length of vector. If nargs is UNEVALLED,
117 args points to slot holding list of
118 unevalled args */
119 char evalargs;
120 };
121
122#ifdef MULTI_KBOARD
123KBOARD *initial_kboard;
124KBOARD *current_kboard;
125KBOARD *all_kboards;
126int single_kboard;
127#else
128KBOARD the_only_kboard;
129#endif
130
131/* Non-nil disable property on a command means
132 do not execute it; call disabled-command-hook's value instead. */
133Lisp_Object Qdisabled, Qdisabled_command_hook;
134
135#define NUM_RECENT_KEYS (100)
136int recent_keys_index; /* Index for storing next element into recent_keys */
137int total_keys; /* Total number of elements stored into recent_keys */
138Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
139
140/* Vector holding the key sequence that invoked the current command.
141 It is reused for each command, and it may be longer than the current
142 sequence; this_command_key_count indicates how many elements
143 actually mean something.
144 It's easier to staticpro a single Lisp_Object than an array. */
145Lisp_Object this_command_keys;
146int this_command_key_count;
147
148/* This vector is used as a buffer to record the events that were actually read
149 by read_key_sequence. */
150Lisp_Object raw_keybuf;
151int raw_keybuf_count;
152
153#define GROW_RAW_KEYBUF \
154 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
155 { \
156 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
157 Lisp_Object new; \
158 new = Fmake_vector (make_number (newsize), Qnil); \
159 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
160 raw_keybuf_count * sizeof (Lisp_Object)); \
161 raw_keybuf = new; \
162 }
163
164/* Number of elements of this_command_keys
165 that precede this key sequence. */
166int this_single_command_key_start;
167
168/* Record values of this_command_key_count and echo_length ()
169 before this command was read. */
170static int before_command_key_count;
171static int before_command_echo_length;
172/* Values of before_command_key_count and before_command_echo_length
173 saved by reset-this-command-lengths. */
174static int before_command_key_count_1;
175static int before_command_echo_length_1;
176/* Flag set by reset-this-command-lengths,
177 saying to reset the lengths when add_command_key is called. */
178static int before_command_restore_flag;
179
180extern int minbuf_level;
181
182extern int message_enable_multibyte;
183
184extern struct backtrace *backtrace_list;
185
186/* If non-nil, the function that implements the display of help.
187 It's called with one argument, the help string to display. */
188
189Lisp_Object Vshow_help_function;
190
191/* If a string, the message displayed before displaying a help-echo
192 in the echo area. */
193
194Lisp_Object Vpre_help_message;
195
196/* Nonzero means do menu prompting. */
197
198static int menu_prompting;
199
200/* Character to see next line of menu prompt. */
201
202static Lisp_Object menu_prompt_more_char;
203
204/* For longjmp to where kbd input is being done. */
205
206static jmp_buf getcjmp;
207
208/* True while doing kbd input. */
209int waiting_for_input;
210
211/* True while displaying for echoing. Delays C-g throwing. */
212
213int echoing;
214
215/* Non-null means we can start echoing at the next input pause even
216 though there is something in the echo area. */
217
218static struct kboard *ok_to_echo_at_next_pause;
219
220/* The kboard last echoing, or null for none. Reset to 0 in
221 cancel_echoing. If non-null, and a current echo area message
222 exists, and echo_message_buffer is eq to the current message
223 buffer, we know that the message comes from echo_kboard. */
224
225struct kboard *echo_kboard;
226
227/* The buffer used for echoing. Set in echo_now, reset in
228 cancel_echoing. */
229
230Lisp_Object echo_message_buffer;
231
232/* Nonzero means disregard local maps for the menu bar. */
233static int inhibit_local_menu_bar_menus;
234
235/* Nonzero means C-g should cause immediate error-signal. */
236int immediate_quit;
237
238/* The user's ERASE setting. */
239Lisp_Object Vtty_erase_char;
240
241/* Character to recognize as the help char. */
242Lisp_Object Vhelp_char;
243
244/* List of other event types to recognize as meaning "help". */
245Lisp_Object Vhelp_event_list;
246
247/* Form to execute when help char is typed. */
248Lisp_Object Vhelp_form;
249
250/* Command to run when the help character follows a prefix key. */
251Lisp_Object Vprefix_help_command;
252
253/* List of items that should move to the end of the menu bar. */
254Lisp_Object Vmenu_bar_final_items;
255
256/* Non-nil means show the equivalent key-binding for
257 any M-x command that has one.
258 The value can be a length of time to show the message for.
259 If the value is non-nil and not a number, we wait 2 seconds. */
260Lisp_Object Vsuggest_key_bindings;
261
262/* How long to display an echo-area message when the minibuffer is active.
263 If the value is not a number, such messages don't time out. */
264Lisp_Object Vminibuffer_message_timeout;
265
266/* Character that causes a quit. Normally C-g.
267
268 If we are running on an ordinary terminal, this must be an ordinary
269 ASCII char, since we want to make it our interrupt character.
270
271 If we are not running on an ordinary terminal, it still needs to be
272 an ordinary ASCII char. This character needs to be recognized in
273 the input interrupt handler. At this point, the keystroke is
274 represented as a struct input_event, while the desired quit
275 character is specified as a lispy event. The mapping from struct
276 input_events to lispy events cannot run in an interrupt handler,
277 and the reverse mapping is difficult for anything but ASCII
278 keystrokes.
279
280 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
281 ASCII character. */
282int quit_char;
283
284extern Lisp_Object current_global_map;
285extern int minibuf_level;
286
287/* If non-nil, this is a map that overrides all other local maps. */
288Lisp_Object Voverriding_local_map;
289
290/* If non-nil, Voverriding_local_map applies to the menu bar. */
291Lisp_Object Voverriding_local_map_menu_flag;
292
293/* Keymap that defines special misc events that should
294 be processed immediately at a low level. */
295Lisp_Object Vspecial_event_map;
296
297/* Current depth in recursive edits. */
298int command_loop_level;
299
300/* Total number of times command_loop has read a key sequence. */
301EMACS_INT num_input_keys;
302
303/* Last input character read as a command. */
304Lisp_Object last_command_char;
305
306/* Last input character read as a command, not counting menus
307 reached by the mouse. */
308Lisp_Object last_nonmenu_event;
309
310/* Last input character read for any purpose. */
311Lisp_Object last_input_char;
312
313/* If not Qnil, a list of objects to be read as subsequent command input. */
314Lisp_Object Vunread_command_events;
315
316/* If not Qnil, a list of objects to be read as subsequent command input
317 including input method processing. */
318Lisp_Object Vunread_input_method_events;
319
320/* If not Qnil, a list of objects to be read as subsequent command input
321 but NOT including input method processing. */
322Lisp_Object Vunread_post_input_method_events;
323
324/* If not -1, an event to be read as subsequent command input. */
325EMACS_INT unread_command_char;
326
327/* If not Qnil, this is a switch-frame event which we decided to put
328 off until the end of a key sequence. This should be read as the
329 next command input, after any unread_command_events.
330
331 read_key_sequence uses this to delay switch-frame events until the
332 end of the key sequence; Fread_char uses it to put off switch-frame
333 events until a non-ASCII event is acceptable as input. */
334Lisp_Object unread_switch_frame;
335
336/* A mask of extra modifier bits to put into every keyboard char. */
337EMACS_INT extra_keyboard_modifiers;
338
339/* Char to use as prefix when a meta character is typed in.
340 This is bound on entry to minibuffer in case ESC is changed there. */
341
342Lisp_Object meta_prefix_char;
343
344/* Last size recorded for a current buffer which is not a minibuffer. */
345static int last_non_minibuf_size;
346
347/* Number of idle seconds before an auto-save and garbage collection. */
348static Lisp_Object Vauto_save_timeout;
349
350/* Total number of times read_char has returned. */
351int num_input_events;
352
353/* Total number of times read_char has returned, outside of macros. */
354EMACS_INT num_nonmacro_input_events;
355
356/* Auto-save automatically when this many characters have been typed
357 since the last time. */
358
359static EMACS_INT auto_save_interval;
360
361/* Value of num_nonmacro_input_events as of last auto save. */
362
363int last_auto_save;
364
365/* The command being executed by the command loop.
366 Commands may set this, and the value set will be copied into
367 current_kboard->Vlast_command instead of the actual command. */
368Lisp_Object Vthis_command;
369
370/* This is like Vthis_command, except that commands never set it. */
371Lisp_Object real_this_command;
372
373/* If the lookup of the command returns a binding, the original
374 command is stored in this-original-command. It is nil otherwise. */
375Lisp_Object Vthis_original_command;
376
377/* The value of point when the last command was executed. */
378int last_point_position;
379
380/* The buffer that was current when the last command was started. */
381Lisp_Object last_point_position_buffer;
382
383/* The frame in which the last input event occurred, or Qmacro if the
384 last event came from a macro. We use this to determine when to
385 generate switch-frame events. This may be cleared by functions
386 like Fselect_frame, to make sure that a switch-frame event is
387 generated by the next character. */
388Lisp_Object internal_last_event_frame;
389
390/* A user-visible version of the above, intended to allow users to
391 figure out where the last event came from, if the event doesn't
392 carry that information itself (i.e. if it was a character). */
393Lisp_Object Vlast_event_frame;
394
395/* The timestamp of the last input event we received from the X server.
396 X Windows wants this for selection ownership. */
397unsigned long last_event_timestamp;
398
399Lisp_Object Qself_insert_command;
400Lisp_Object Qforward_char;
401Lisp_Object Qbackward_char;
402Lisp_Object Qundefined;
403Lisp_Object Qtimer_event_handler;
404
405/* read_key_sequence stores here the command definition of the
406 key sequence that it reads. */
407Lisp_Object read_key_sequence_cmd;
408
409/* Echo unfinished commands after this many seconds of pause. */
410Lisp_Object Vecho_keystrokes;
411
412/* Form to evaluate (if non-nil) when Emacs is started. */
413Lisp_Object Vtop_level;
414
415/* User-supplied string to translate input characters through. */
416Lisp_Object Vkeyboard_translate_table;
417
418/* Keymap mapping ASCII function key sequences onto their preferred forms. */
419extern Lisp_Object Vfunction_key_map;
420
421/* Another keymap that maps key sequences into key sequences.
422 This one takes precedence over ordinary definitions. */
423extern Lisp_Object Vkey_translation_map;
424
425/* If non-nil, this implements the current input method. */
426Lisp_Object Vinput_method_function;
427Lisp_Object Qinput_method_function;
428
429/* When we call Vinput_method_function,
430 this holds the echo area message that was just erased. */
431Lisp_Object Vinput_method_previous_message;
432
433/* Non-nil means deactivate the mark at end of this command. */
434Lisp_Object Vdeactivate_mark;
435
436/* Menu bar specified in Lucid Emacs fashion. */
437
438Lisp_Object Vlucid_menu_bar_dirty_flag;
439Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
440
441Lisp_Object Qecho_area_clear_hook;
442
443/* Hooks to run before and after each command. */
444Lisp_Object Qpre_command_hook, Vpre_command_hook;
445Lisp_Object Qpost_command_hook, Vpost_command_hook;
446Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
447/* Hook run after a command if there's no more input soon. */
448Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
449
450/* Delay time in microseconds before running post-command-idle-hook. */
451EMACS_INT post_command_idle_delay;
452
453/* List of deferred actions to be performed at a later time.
454 The precise format isn't relevant here; we just check whether it is nil. */
455Lisp_Object Vdeferred_action_list;
456
457/* Function to call to handle deferred actions, when there are any. */
458Lisp_Object Vdeferred_action_function;
459Lisp_Object Qdeferred_action_function;
460
461Lisp_Object Qinput_method_exit_on_first_char;
462Lisp_Object Qinput_method_use_echo_area;
463
464/* File in which we write all commands we read. */
465FILE *dribble;
466
467/* Nonzero if input is available. */
468int input_pending;
469
470/* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
471 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
472
473int meta_key;
474
475/* Non-zero means force key bindings update in parse_menu_item. */
476
477int update_menu_bindings;
478
479extern char *pending_malloc_warning;
480
481/* Circular buffer for pre-read keyboard input. */
482
483static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
484
485/* Vector to GCPRO the Lisp objects referenced from kbd_buffer.
486
487 The interrupt-level event handlers will never enqueue an event on a
488 frame which is not in Vframe_list, and once an event is dequeued,
489 internal_last_event_frame or the event itself points to the frame.
490 So that's all fine.
491
492 But while the event is sitting in the queue, it's completely
493 unprotected. Suppose the user types one command which will run for
494 a while and then delete a frame, and then types another event at
495 the frame that will be deleted, before the command gets around to
496 it. Suppose there are no references to this frame elsewhere in
497 Emacs, and a GC occurs before the second event is dequeued. Now we
498 have an event referring to a freed frame, which will crash Emacs
499 when it is dequeued.
500
501 Similar things happen when an event on a scroll bar is enqueued; the
502 window may be deleted while the event is in the queue.
503
504 So, we use this vector to protect the Lisp_Objects in the event
505 queue. That way, they'll be dequeued as dead frames or windows,
506 but still valid Lisp objects.
507
508 If kbd_buffer[i].kind != NO_EVENT, then
509
510 AREF (kbd_buffer_gcpro, 2 * i) == kbd_buffer[i].frame_or_window.
511 AREF (kbd_buffer_gcpro, 2 * i + 1) == kbd_buffer[i].arg. */
512
513static Lisp_Object kbd_buffer_gcpro;
514
515/* Pointer to next available character in kbd_buffer.
516 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
517 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
518 next available char is in kbd_buffer[0]. */
519static struct input_event *kbd_fetch_ptr;
520
521/* Pointer to next place to store character in kbd_buffer. This
522 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
523 character should go in kbd_buffer[0]. */
524static struct input_event * volatile kbd_store_ptr;
525
526/* The above pair of variables forms a "queue empty" flag. When we
527 enqueue a non-hook event, we increment kbd_store_ptr. When we
528 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
529 there is input available iff the two pointers are not equal.
530
531 Why not just have a flag set and cleared by the enqueuing and
532 dequeuing functions? Such a flag could be screwed up by interrupts
533 at inopportune times. */
534
535/* If this flag is non-nil, we check mouse_moved to see when the
536 mouse moves, and motion events will appear in the input stream.
537 Otherwise, mouse motion is ignored. */
538Lisp_Object do_mouse_tracking;
539
540/* Symbols to head events. */
541Lisp_Object Qmouse_movement;
542Lisp_Object Qscroll_bar_movement;
543Lisp_Object Qswitch_frame;
544Lisp_Object Qdelete_frame;
545Lisp_Object Qiconify_frame;
546Lisp_Object Qmake_frame_visible;
547Lisp_Object Qselect_window;
548Lisp_Object Qhelp_echo;
549
550/* Symbols to denote kinds of events. */
551Lisp_Object Qfunction_key;
552Lisp_Object Qmouse_click;
553#ifdef WINDOWSNT
554Lisp_Object Qmouse_wheel;
555Lisp_Object Qlanguage_change;
556#endif
557Lisp_Object Qdrag_n_drop;
558Lisp_Object Qsave_session;
559
560/* Lisp_Object Qmouse_movement; - also an event header */
561
562/* Properties of event headers. */
563Lisp_Object Qevent_kind;
564Lisp_Object Qevent_symbol_elements;
565
566/* menu item parts */
567Lisp_Object Qmenu_alias;
568Lisp_Object Qmenu_enable;
569Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
570Lisp_Object QCbutton, QCtoggle, QCradio;
571extern Lisp_Object Vdefine_key_rebound_commands;
572extern Lisp_Object Qmenu_item;
573
574/* An event header symbol HEAD may have a property named
575 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
576 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
577 mask of modifiers applied to it. If present, this is used to help
578 speed up parse_modifiers. */
579Lisp_Object Qevent_symbol_element_mask;
580
581/* An unmodified event header BASE may have a property named
582 Qmodifier_cache, which is an alist mapping modifier masks onto
583 modified versions of BASE. If present, this helps speed up
584 apply_modifiers. */
585Lisp_Object Qmodifier_cache;
586
587/* Symbols to use for parts of windows. */
588Lisp_Object Qmode_line;
589Lisp_Object Qvertical_line;
590Lisp_Object Qvertical_scroll_bar;
591Lisp_Object Qmenu_bar;
592extern Lisp_Object Qleft_margin, Qright_margin;
593
594Lisp_Object recursive_edit_unwind (), command_loop ();
595Lisp_Object Fthis_command_keys ();
596Lisp_Object Qextended_command_history;
597EMACS_TIME timer_check ();
598
599extern Lisp_Object Vhistory_length;
600
601extern char *x_get_keysym_name ();
602
603static void record_menu_key ();
604
605Lisp_Object Qpolling_period;
606
607/* List of absolute timers. Appears in order of next scheduled event. */
608Lisp_Object Vtimer_list;
609
610/* List of idle time timers. Appears in order of next scheduled event. */
611Lisp_Object Vtimer_idle_list;
612
613/* Incremented whenever a timer is run. */
614int timers_run;
615
616extern Lisp_Object Vprint_level, Vprint_length;
617
618/* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
619 happens. */
620EMACS_TIME *input_available_clear_time;
621
622/* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
623 Default is 1 if INTERRUPT_INPUT is defined. */
624int interrupt_input;
625
626/* Nonzero while interrupts are temporarily deferred during redisplay. */
627int interrupts_deferred;
628
629/* Nonzero means use ^S/^Q for flow control. */
630int flow_control;
631
632/* Allow m- file to inhibit use of FIONREAD. */
633#ifdef BROKEN_FIONREAD
634#undef FIONREAD
635#endif
636
637/* We are unable to use interrupts if FIONREAD is not available,
638 so flush SIGIO so we won't try. */
639#ifndef FIONREAD
640#ifdef SIGIO
641#undef SIGIO
642#endif
643#endif
644
645/* If we support a window system, turn on the code to poll periodically
646 to detect C-g. It isn't actually used when doing interrupt input. */
647#ifdef HAVE_WINDOW_SYSTEM
648#define POLL_FOR_INPUT
649#endif
650
651/* After a command is executed, if point is moved into a region that
652 has specific properties (e.g. composition, display), we adjust
653 point to the boundary of the region. But, if a command sets this
654 variable to non-nil, we suppress this point adjustment. This
655 variable is set to nil before reading a command. */
656
657Lisp_Object Vdisable_point_adjustment;
658
659/* If non-nil, always disable point adjustment. */
660
661Lisp_Object Vglobal_disable_point_adjustment;
662
663/* A function to display keyboard-menus, and read the user's response.
664 If nil, keyboard menus are disabled. */
665
666Lisp_Object Vkey_menu_prompt_function;
667
668/* The time when Emacs started being idle. */
669
670static EMACS_TIME timer_idleness_start_time;
671
672/* After Emacs stops being idle, this saves the last value
673 of timer_idleness_start_time from when it was idle. */
674
675static EMACS_TIME timer_last_idleness_start_time;
676
677\f
678/* Global variable declarations. */
679
680/* Function for init_keyboard to call with no args (if nonzero). */
681void (*keyboard_init_hook) ();
682
683static int read_avail_input P_ ((int));
684static void get_input_pending P_ ((int *, int));
685static void get_filtered_input_pending P_ ((int *, int, int));
686static int readable_events P_ ((int));
687static int readable_filtered_events P_ ((int, int));
688static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
689 Lisp_Object, int *));
690static Lisp_Object read_char_x_menu_prompt ();
691static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
692 Lisp_Object *));
693static Lisp_Object make_lispy_event P_ ((struct input_event *));
694#ifdef HAVE_MOUSE
695static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
696 enum scroll_bar_part,
697 Lisp_Object, Lisp_Object,
698 unsigned long));
699#endif
700static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
701 Lisp_Object, char **,
702 Lisp_Object *, unsigned));
703static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
704static int parse_solitary_modifier P_ ((Lisp_Object));
705static int parse_solitary_modifier ();
706static void save_getcjmp P_ ((jmp_buf));
707static void save_getcjmp ();
708static void restore_getcjmp P_ ((jmp_buf));
709static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
710static void clear_event P_ ((struct input_event *));
711static void any_kboard_state P_ ((void));
712
713/* Nonzero means don't try to suspend even if the operating system seems
714 to support it. */
715static int cannot_suspend;
716
717/* Install the string STR as the beginning of the string of echoing,
718 so that it serves as a prompt for the next character.
719 Also start echoing. */
720
721void
722echo_prompt (str)
723 Lisp_Object str;
724{
725 current_kboard->echo_string = str;
726 current_kboard->echo_after_prompt = SCHARS (str);
727 echo_now ();
728}
729
730/* Add C to the echo string, if echoing is going on.
731 C can be a character, which is printed prettily ("M-C-x" and all that
732 jazz), or a symbol, whose name is printed. */
733
734void
735echo_char (c)
736 Lisp_Object c;
737{
738 if (current_kboard->immediate_echo)
739 {
740 int size = KEY_DESCRIPTION_SIZE + 100;
741 char *buffer = (char *) alloca (size);
742 char *ptr = buffer;
743 Lisp_Object echo_string;
744
745 echo_string = current_kboard->echo_string;
746
747 /* If someone has passed us a composite event, use its head symbol. */
748 c = EVENT_HEAD (c);
749
750 if (INTEGERP (c))
751 {
752 ptr = push_key_description (XINT (c), ptr, 1);
753 }
754 else if (SYMBOLP (c))
755 {
756 struct Lisp_String *name = XSTRING (SYMBOL_NAME (c));
757 int nbytes = STRING_BYTES (name);
758
759 if (size - (ptr - buffer) < nbytes)
760 {
761 int offset = ptr - buffer;
762 size = max (2 * size, size + nbytes);
763 buffer = (char *) alloca (size);
764 ptr = buffer + offset;
765 }
766
767 ptr += copy_text (name->data, ptr, nbytes,
768 name->size_byte >= 0, 1);
769 }
770
771 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
772 && help_char_p (c))
773 {
774 const char *text = " (Type ? for further options)";
775 int len = strlen (text);
776
777 if (size - (ptr - buffer) < len)
778 {
779 int offset = ptr - buffer;
780 size += len;
781 buffer = (char *) alloca (size);
782 ptr = buffer + offset;
783 }
784
785 bcopy (text, ptr, len);
786 ptr += len;
787 }
788
789 /* Replace a dash from echo_dash with a space, otherwise
790 add a space at the end as a separator between keys. */
791 if (STRINGP (echo_string)
792 && SCHARS (echo_string) > 0)
793 {
794 Lisp_Object last_char, idx;
795
796 idx = make_number (SCHARS (echo_string) - 1);
797 last_char = Faref (echo_string, idx);
798
799 if (XINT (last_char) == '-')
800 Faset (echo_string, idx, make_number (' '));
801 else
802 echo_string = concat2 (echo_string, build_string (" "));
803 }
804
805 current_kboard->echo_string
806 = concat2 (echo_string, make_string (buffer, ptr - buffer));
807
808 echo_now ();
809 }
810}
811
812/* Temporarily add a dash to the end of the echo string if it's not
813 empty, so that it serves as a mini-prompt for the very next character. */
814
815void
816echo_dash ()
817{
818 /* Do nothing if not echoing at all. */
819 if (NILP (current_kboard->echo_string))
820 return;
821
822 if (!current_kboard->immediate_echo
823 && SCHARS (current_kboard->echo_string) == 0)
824 return;
825
826 /* Do nothing if we just printed a prompt. */
827 if (current_kboard->echo_after_prompt
828 == SCHARS (current_kboard->echo_string))
829 return;
830
831 /* Put a dash at the end of the buffer temporarily,
832 but make it go away when the next character is added. */
833 current_kboard->echo_string = concat2 (current_kboard->echo_string,
834 build_string ("-"));
835 echo_now ();
836}
837
838/* Display the current echo string, and begin echoing if not already
839 doing so. */
840
841void
842echo_now ()
843{
844 if (!current_kboard->immediate_echo)
845 {
846 int i;
847 current_kboard->immediate_echo = 1;
848
849 for (i = 0; i < this_command_key_count; i++)
850 {
851 Lisp_Object c;
852 c = XVECTOR (this_command_keys)->contents[i];
853 if (! (EVENT_HAS_PARAMETERS (c)
854 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
855 echo_char (c);
856 }
857 echo_dash ();
858 }
859
860 echoing = 1;
861 message3_nolog (current_kboard->echo_string,
862 SBYTES (current_kboard->echo_string),
863 SMBP (current_kboard->echo_string));
864 echoing = 0;
865
866 /* Record in what buffer we echoed, and from which kboard. */
867 echo_message_buffer = echo_area_buffer[0];
868 echo_kboard = current_kboard;
869
870 if (waiting_for_input && !NILP (Vquit_flag))
871 quit_throw_to_read_char ();
872}
873
874/* Turn off echoing, for the start of a new command. */
875
876void
877cancel_echoing ()
878{
879 current_kboard->immediate_echo = 0;
880 current_kboard->echo_after_prompt = -1;
881 current_kboard->echo_string = Qnil;
882 ok_to_echo_at_next_pause = NULL;
883 echo_kboard = NULL;
884 echo_message_buffer = Qnil;
885}
886
887/* Return the length of the current echo string. */
888
889static int
890echo_length ()
891{
892 return (STRINGP (current_kboard->echo_string)
893 ? SCHARS (current_kboard->echo_string)
894 : 0);
895}
896
897/* Truncate the current echo message to its first LEN chars.
898 This and echo_char get used by read_key_sequence when the user
899 switches frames while entering a key sequence. */
900
901static void
902echo_truncate (nchars)
903 int nchars;
904{
905 if (STRINGP (current_kboard->echo_string))
906 current_kboard->echo_string
907 = Fsubstring (current_kboard->echo_string,
908 make_number (0), make_number (nchars));
909 truncate_echo_area (nchars);
910}
911
912\f
913/* Functions for manipulating this_command_keys. */
914static void
915add_command_key (key)
916 Lisp_Object key;
917{
918 /* If reset-this-command-length was called recently, obey it now.
919 See the doc string of that function for an explanation of why. */
920 if (before_command_restore_flag)
921 {
922 this_command_key_count = before_command_key_count_1;
923 if (this_command_key_count < this_single_command_key_start)
924 this_single_command_key_start = this_command_key_count;
925 echo_truncate (before_command_echo_length_1);
926 before_command_restore_flag = 0;
927 }
928
929 if (this_command_key_count >= ASIZE (this_command_keys))
930 this_command_keys = larger_vector (this_command_keys,
931 2 * ASIZE (this_command_keys),
932 Qnil);
933
934 AREF (this_command_keys, this_command_key_count) = key;
935 ++this_command_key_count;
936}
937
938\f
939Lisp_Object
940recursive_edit_1 ()
941{
942 int count = SPECPDL_INDEX ();
943 Lisp_Object val;
944
945 if (command_loop_level > 0)
946 {
947 specbind (Qstandard_output, Qt);
948 specbind (Qstandard_input, Qt);
949 }
950
951#ifdef HAVE_X_WINDOWS
952 /* The command loop has started an hourglass timer, so we have to
953 cancel it here, otherwise it will fire because the recursive edit
954 can take some time. Do not check for display_hourglass_p here,
955 because it could already be nil. */
956 cancel_hourglass ();
957#endif
958
959 /* This function may have been called from a debugger called from
960 within redisplay, for instance by Edebugging a function called
961 from fontification-functions. We want to allow redisplay in
962 the debugging session.
963
964 The recursive edit is left with a `(throw exit ...)'. The `exit'
965 tag is not caught anywhere in redisplay, i.e. when we leave the
966 recursive edit, the original redisplay leading to the recursive
967 edit will be unwound. The outcome should therefore be safe. */
968 specbind (Qinhibit_redisplay, Qnil);
969 redisplaying_p = 0;
970
971 val = command_loop ();
972 if (EQ (val, Qt))
973 Fsignal (Qquit, Qnil);
974 /* Handle throw from read_minibuf when using minibuffer
975 while it's active but we're in another window. */
976 if (STRINGP (val))
977 Fsignal (Qerror, Fcons (val, Qnil));
978
979 return unbind_to (count, Qnil);
980}
981
982/* When an auto-save happens, record the "time", and don't do again soon. */
983
984void
985record_auto_save ()
986{
987 last_auto_save = num_nonmacro_input_events;
988}
989
990/* Make an auto save happen as soon as possible at command level. */
991
992void
993force_auto_save_soon ()
994{
995 last_auto_save = - auto_save_interval - 1;
996
997 record_asynch_buffer_change ();
998}
999\f
1000DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
1001 doc: /* Invoke the editor command loop recursively.
1002To get out of the recursive edit, a command can do `(throw 'exit nil)';
1003that tells this function to return.
1004Alternately, `(throw 'exit t)' makes this function signal an error.
1005This function is called by the editor initialization to begin editing. */)
1006 ()
1007{
1008 int count = SPECPDL_INDEX ();
1009 Lisp_Object buffer;
1010
1011 command_loop_level++;
1012 update_mode_lines = 1;
1013
1014 if (command_loop_level
1015 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1016 buffer = Fcurrent_buffer ();
1017 else
1018 buffer = Qnil;
1019
1020 /* If we leave recursive_edit_1 below with a `throw' for instance,
1021 like it is done in the splash screen display, we have to
1022 make sure that we restore single_kboard as command_loop_1
1023 would have done if it were left normally. */
1024 record_unwind_protect (recursive_edit_unwind,
1025 Fcons (buffer, single_kboard ? Qt : Qnil));
1026
1027 recursive_edit_1 ();
1028 return unbind_to (count, Qnil);
1029}
1030
1031Lisp_Object
1032recursive_edit_unwind (info)
1033 Lisp_Object info;
1034{
1035 if (BUFFERP (XCAR (info)))
1036 Fset_buffer (XCAR (info));
1037
1038 if (NILP (XCDR (info)))
1039 any_kboard_state ();
1040 else
1041 single_kboard_state ();
1042
1043 command_loop_level--;
1044 update_mode_lines = 1;
1045 return Qnil;
1046}
1047
1048\f
1049static void
1050any_kboard_state ()
1051{
1052#ifdef MULTI_KBOARD
1053#if 0 /* Theory: if there's anything in Vunread_command_events,
1054 it will right away be read by read_key_sequence,
1055 and then if we do switch KBOARDS, it will go into the side
1056 queue then. So we don't need to do anything special here -- rms. */
1057 if (CONSP (Vunread_command_events))
1058 {
1059 current_kboard->kbd_queue
1060 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1061 current_kboard->kbd_queue_has_data = 1;
1062 }
1063 Vunread_command_events = Qnil;
1064#endif
1065 single_kboard = 0;
1066#endif
1067}
1068
1069/* Switch to the single-kboard state, making current_kboard
1070 the only KBOARD from which further input is accepted. */
1071
1072void
1073single_kboard_state ()
1074{
1075#ifdef MULTI_KBOARD
1076 single_kboard = 1;
1077#endif
1078}
1079
1080/* Maintain a stack of kboards, so other parts of Emacs
1081 can switch temporarily to the kboard of a given frame
1082 and then revert to the previous status. */
1083
1084struct kboard_stack
1085{
1086 KBOARD *kboard;
1087 struct kboard_stack *next;
1088};
1089
1090static struct kboard_stack *kboard_stack;
1091
1092void
1093push_frame_kboard (f)
1094 FRAME_PTR f;
1095{
1096#ifdef MULTI_KBOARD
1097 struct kboard_stack *p
1098 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1099
1100 p->next = kboard_stack;
1101 p->kboard = current_kboard;
1102 kboard_stack = p;
1103
1104 current_kboard = FRAME_KBOARD (f);
1105#endif
1106}
1107
1108void
1109pop_frame_kboard ()
1110{
1111#ifdef MULTI_KBOARD
1112 struct kboard_stack *p = kboard_stack;
1113 current_kboard = p->kboard;
1114 kboard_stack = p->next;
1115 xfree (p);
1116#endif
1117}
1118\f
1119/* Handle errors that are not handled at inner levels
1120 by printing an error message and returning to the editor command loop. */
1121
1122Lisp_Object
1123cmd_error (data)
1124 Lisp_Object data;
1125{
1126 Lisp_Object old_level, old_length;
1127 char macroerror[50];
1128
1129 if (!NILP (executing_macro))
1130 {
1131 if (executing_macro_iterations == 1)
1132 sprintf (macroerror, "After 1 kbd macro iteration: ");
1133 else
1134 sprintf (macroerror, "After %d kbd macro iterations: ",
1135 executing_macro_iterations);
1136 }
1137 else
1138 *macroerror = 0;
1139
1140 Vstandard_output = Qt;
1141 Vstandard_input = Qt;
1142 Vexecuting_macro = Qnil;
1143 executing_macro = Qnil;
1144 current_kboard->Vprefix_arg = Qnil;
1145 current_kboard->Vlast_prefix_arg = Qnil;
1146 cancel_echoing ();
1147
1148 /* Avoid unquittable loop if data contains a circular list. */
1149 old_level = Vprint_level;
1150 old_length = Vprint_length;
1151 XSETFASTINT (Vprint_level, 10);
1152 XSETFASTINT (Vprint_length, 10);
1153 cmd_error_internal (data, macroerror);
1154 Vprint_level = old_level;
1155 Vprint_length = old_length;
1156
1157 Vquit_flag = Qnil;
1158
1159 Vinhibit_quit = Qnil;
1160#ifdef MULTI_KBOARD
1161 any_kboard_state ();
1162#endif
1163
1164 return make_number (0);
1165}
1166
1167/* Take actions on handling an error. DATA is the data that describes
1168 the error.
1169
1170 CONTEXT is a C-string containing ASCII characters only which
1171 describes the context in which the error happened. If we need to
1172 generalize CONTEXT to allow multibyte characters, make it a Lisp
1173 string. */
1174
1175void
1176cmd_error_internal (data, context)
1177 Lisp_Object data;
1178 char *context;
1179{
1180 Lisp_Object stream;
1181 int kill_emacs_p = 0;
1182 struct frame *sf = SELECTED_FRAME ();
1183
1184 Vquit_flag = Qnil;
1185 Vinhibit_quit = Qt;
1186 clear_message (1, 0);
1187
1188 /* If the window system or terminal frame hasn't been initialized
1189 yet, or we're not interactive, it's best to dump this message out
1190 to stderr and exit. */
1191 if (!sf->glyphs_initialized_p
1192 /* This is the case of the frame dumped with Emacs, when we're
1193 running under a window system. */
1194 || (!NILP (Vwindow_system)
1195 && !inhibit_window_system
1196 && FRAME_TERMCAP_P (sf))
1197 || noninteractive)
1198 {
1199 stream = Qexternal_debugging_output;
1200 kill_emacs_p = 1;
1201 }
1202 else
1203 {
1204 Fdiscard_input ();
1205 bitch_at_user ();
1206 stream = Qt;
1207
1208 /* If we know from where the error was signaled, show it in
1209 *Messages*. */
1210 if (!NILP (Vsignaling_function) && SYMBOLP (Vsignaling_function))
1211 {
1212 char *name = XSTRING (SYMBOL_NAME (Vsignaling_function))->data;
1213 message_dolog (name, strlen (name), 0, 0);
1214 message_dolog (": ", 2, 0, 0);
1215 Vsignaling_function = Qnil;
1216 }
1217 }
1218
1219 if (context != 0)
1220 write_string_1 (context, -1, stream);
1221
1222 print_error_message (data, stream);
1223
1224 /* If the window system or terminal frame hasn't been initialized
1225 yet, or we're in -batch mode, this error should cause Emacs to exit. */
1226 if (kill_emacs_p)
1227 {
1228 Fterpri (stream);
1229 Fkill_emacs (make_number (-1));
1230 }
1231}
1232\f
1233Lisp_Object command_loop_1 ();
1234Lisp_Object command_loop_2 ();
1235Lisp_Object top_level_1 ();
1236
1237/* Entry to editor-command-loop.
1238 This level has the catches for exiting/returning to editor command loop.
1239 It returns nil to exit recursive edit, t to abort it. */
1240
1241Lisp_Object
1242command_loop ()
1243{
1244 if (command_loop_level > 0 || minibuf_level > 0)
1245 {
1246 Lisp_Object val;
1247 val = internal_catch (Qexit, command_loop_2, Qnil);
1248 executing_macro = Qnil;
1249 return val;
1250 }
1251 else
1252 while (1)
1253 {
1254 internal_catch (Qtop_level, top_level_1, Qnil);
1255 internal_catch (Qtop_level, command_loop_2, Qnil);
1256 executing_macro = Qnil;
1257
1258 /* End of file in -batch run causes exit here. */
1259 if (noninteractive)
1260 Fkill_emacs (Qt);
1261 }
1262}
1263
1264/* Here we catch errors in execution of commands within the
1265 editing loop, and reenter the editing loop.
1266 When there is an error, cmd_error runs and returns a non-nil
1267 value to us. A value of nil means that command_loop_1 itself
1268 returned due to end of file (or end of kbd macro). */
1269
1270Lisp_Object
1271command_loop_2 ()
1272{
1273 register Lisp_Object val;
1274
1275 do
1276 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1277 while (!NILP (val));
1278
1279 return Qnil;
1280}
1281
1282Lisp_Object
1283top_level_2 ()
1284{
1285 return Feval (Vtop_level);
1286}
1287
1288Lisp_Object
1289top_level_1 ()
1290{
1291 /* On entry to the outer level, run the startup file */
1292 if (!NILP (Vtop_level))
1293 internal_condition_case (top_level_2, Qerror, cmd_error);
1294 else if (!NILP (Vpurify_flag))
1295 message ("Bare impure Emacs (standard Lisp code not loaded)");
1296 else
1297 message ("Bare Emacs (standard Lisp code not loaded)");
1298 return Qnil;
1299}
1300
1301DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1302 doc: /* Exit all recursive editing levels. */)
1303 ()
1304{
1305#ifdef HAVE_X_WINDOWS
1306 if (display_hourglass_p)
1307 cancel_hourglass ();
1308#endif
1309 return Fthrow (Qtop_level, Qnil);
1310}
1311
1312DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1313 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1314 ()
1315{
1316 if (command_loop_level > 0 || minibuf_level > 0)
1317 Fthrow (Qexit, Qnil);
1318
1319 error ("No recursive edit is in progress");
1320 return Qnil;
1321}
1322
1323DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1324 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1325 ()
1326{
1327 if (command_loop_level > 0 || minibuf_level > 0)
1328 Fthrow (Qexit, Qt);
1329
1330 error ("No recursive edit is in progress");
1331 return Qnil;
1332}
1333\f
1334/* This is the actual command reading loop,
1335 sans error-handling encapsulation. */
1336
1337static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1338 int, int, int));
1339void safe_run_hooks P_ ((Lisp_Object));
1340static void adjust_point_for_property P_ ((int));
1341
1342Lisp_Object
1343command_loop_1 ()
1344{
1345 Lisp_Object cmd;
1346 int lose;
1347 int nonundocount;
1348 Lisp_Object keybuf[30];
1349 int i;
1350 int no_direct;
1351 int prev_modiff;
1352 struct buffer *prev_buffer = NULL;
1353#ifdef MULTI_KBOARD
1354 int was_locked = single_kboard;
1355#endif
1356
1357 current_kboard->Vprefix_arg = Qnil;
1358 current_kboard->Vlast_prefix_arg = Qnil;
1359 Vdeactivate_mark = Qnil;
1360 waiting_for_input = 0;
1361 cancel_echoing ();
1362
1363 nonundocount = 0;
1364 this_command_key_count = 0;
1365 this_single_command_key_start = 0;
1366
1367 if (NILP (Vmemory_full))
1368 {
1369 /* Make sure this hook runs after commands that get errors and
1370 throw to top level. */
1371 /* Note that the value cell will never directly contain nil
1372 if the symbol is a local variable. */
1373 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1374 safe_run_hooks (Qpost_command_hook);
1375
1376 /* If displaying a message, resize the echo area window to fit
1377 that message's size exactly. */
1378 if (!NILP (echo_area_buffer[0]))
1379 resize_echo_area_exactly ();
1380
1381 if (!NILP (Vdeferred_action_list))
1382 call0 (Vdeferred_action_function);
1383
1384 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1385 {
1386 if (NILP (Vunread_command_events)
1387 && NILP (Vunread_input_method_events)
1388 && NILP (Vunread_post_input_method_events)
1389 && NILP (Vexecuting_macro)
1390 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1391 safe_run_hooks (Qpost_command_idle_hook);
1392 }
1393 }
1394
1395 Vmemory_full = Qnil;
1396
1397 /* Do this after running Vpost_command_hook, for consistency. */
1398 current_kboard->Vlast_command = Vthis_command;
1399 current_kboard->Vreal_last_command = real_this_command;
1400
1401 while (1)
1402 {
1403 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1404 Fkill_emacs (Qnil);
1405
1406 /* Make sure the current window's buffer is selected. */
1407 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1408 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1409
1410 /* Display any malloc warning that just came out. Use while because
1411 displaying one warning can cause another. */
1412
1413 while (pending_malloc_warning)
1414 display_malloc_warning ();
1415
1416 no_direct = 0;
1417
1418 Vdeactivate_mark = Qnil;
1419
1420 /* If minibuffer on and echo area in use,
1421 wait a short time and redraw minibuffer. */
1422
1423 if (minibuf_level
1424 && !NILP (echo_area_buffer[0])
1425 && EQ (minibuf_window, echo_area_window)
1426 && NUMBERP (Vminibuffer_message_timeout))
1427 {
1428 /* Bind inhibit-quit to t so that C-g gets read in
1429 rather than quitting back to the minibuffer. */
1430 int count = SPECPDL_INDEX ();
1431 specbind (Qinhibit_quit, Qt);
1432
1433 Fsit_for (Vminibuffer_message_timeout, Qnil, Qnil);
1434 /* Clear the echo area. */
1435 message2 (0, 0, 0);
1436 safe_run_hooks (Qecho_area_clear_hook);
1437
1438 unbind_to (count, Qnil);
1439
1440 /* If a C-g came in before, treat it as input now. */
1441 if (!NILP (Vquit_flag))
1442 {
1443 Vquit_flag = Qnil;
1444 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1445 }
1446 }
1447
1448#ifdef C_ALLOCA
1449 alloca (0); /* Cause a garbage collection now */
1450 /* Since we can free the most stuff here. */
1451#endif /* C_ALLOCA */
1452
1453#if 0
1454 /* Select the frame that the last event came from. Usually,
1455 switch-frame events will take care of this, but if some lisp
1456 code swallows a switch-frame event, we'll fix things up here.
1457 Is this a good idea? */
1458 if (FRAMEP (internal_last_event_frame)
1459 && !EQ (internal_last_event_frame, selected_frame))
1460 Fselect_frame (internal_last_event_frame, Qnil);
1461#endif
1462 /* If it has changed current-menubar from previous value,
1463 really recompute the menubar from the value. */
1464 if (! NILP (Vlucid_menu_bar_dirty_flag)
1465 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1466 call0 (Qrecompute_lucid_menubar);
1467
1468 before_command_key_count = this_command_key_count;
1469 before_command_echo_length = echo_length ();
1470
1471 Vthis_command = Qnil;
1472 real_this_command = Qnil;
1473
1474 /* Read next key sequence; i gets its length. */
1475 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1476 Qnil, 0, 1, 1);
1477
1478 /* A filter may have run while we were reading the input. */
1479 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1480 Fkill_emacs (Qnil);
1481 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1482 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1483
1484 ++num_input_keys;
1485
1486 /* Now we have read a key sequence of length I,
1487 or else I is 0 and we found end of file. */
1488
1489 if (i == 0) /* End of file -- happens only in */
1490 return Qnil; /* a kbd macro, at the end. */
1491 /* -1 means read_key_sequence got a menu that was rejected.
1492 Just loop around and read another command. */
1493 if (i == -1)
1494 {
1495 cancel_echoing ();
1496 this_command_key_count = 0;
1497 this_single_command_key_start = 0;
1498 goto finalize;
1499 }
1500
1501 last_command_char = keybuf[i - 1];
1502
1503 /* If the previous command tried to force a specific window-start,
1504 forget about that, in case this command moves point far away
1505 from that position. But also throw away beg_unchanged and
1506 end_unchanged information in that case, so that redisplay will
1507 update the whole window properly. */
1508 if (!NILP (XWINDOW (selected_window)->force_start))
1509 {
1510 struct buffer *b;
1511 XWINDOW (selected_window)->force_start = Qnil;
1512 b = XBUFFER (XWINDOW (selected_window)->buffer);
1513 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1514 }
1515
1516 cmd = read_key_sequence_cmd;
1517 if (!NILP (Vexecuting_macro))
1518 {
1519 if (!NILP (Vquit_flag))
1520 {
1521 Vexecuting_macro = Qt;
1522 QUIT; /* Make some noise. */
1523 /* Will return since macro now empty. */
1524 }
1525 }
1526
1527 /* Do redisplay processing after this command except in special
1528 cases identified below. */
1529 prev_buffer = current_buffer;
1530 prev_modiff = MODIFF;
1531 last_point_position = PT;
1532 XSETBUFFER (last_point_position_buffer, prev_buffer);
1533
1534 /* By default, we adjust point to a boundary of a region that
1535 has such a property that should be treated intangible
1536 (e.g. composition, display). But, some commands will set
1537 this variable differently. */
1538 Vdisable_point_adjustment = Qnil;
1539
1540 /* Process filters and timers may have messed with deactivate-mark.
1541 reset it before we execute the command. */
1542 Vdeactivate_mark = Qnil;
1543
1544 /* Remap command through active keymaps */
1545 Vthis_original_command = cmd;
1546 if (SYMBOLP (cmd))
1547 {
1548 Lisp_Object cmd1;
1549 if (cmd1 = Fremap_command (cmd), !NILP (cmd1))
1550 cmd = cmd1;
1551 }
1552
1553 /* Execute the command. */
1554
1555 Vthis_command = cmd;
1556 real_this_command = cmd;
1557 /* Note that the value cell will never directly contain nil
1558 if the symbol is a local variable. */
1559 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1560 safe_run_hooks (Qpre_command_hook);
1561
1562 if (NILP (Vthis_command))
1563 {
1564 /* nil means key is undefined. */
1565 bitch_at_user ();
1566 current_kboard->defining_kbd_macro = Qnil;
1567 update_mode_lines = 1;
1568 current_kboard->Vprefix_arg = Qnil;
1569 }
1570 else
1571 {
1572 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1573 {
1574 /* In case we jump to directly_done. */
1575 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1576
1577 /* Recognize some common commands in common situations and
1578 do them directly. */
1579 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1580 {
1581 struct Lisp_Char_Table *dp
1582 = window_display_table (XWINDOW (selected_window));
1583 lose = FETCH_CHAR (PT_BYTE);
1584 SET_PT (PT + 1);
1585 if ((dp
1586 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1587 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1588 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1589 && (lose >= 0x20 && lose < 0x7f)))
1590 : (lose >= 0x20 && lose < 0x7f))
1591 /* To extract the case of continuation on
1592 wide-column characters. */
1593 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1594 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1595 >= MODIFF)
1596 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1597 >= OVERLAY_MODIFF)
1598 && (XFASTINT (XWINDOW (selected_window)->last_point)
1599 == PT - 1)
1600 && !windows_or_buffers_changed
1601 && EQ (current_buffer->selective_display, Qnil)
1602 && !detect_input_pending ()
1603 && NILP (XWINDOW (selected_window)->column_number_displayed)
1604 && NILP (Vexecuting_macro))
1605 direct_output_forward_char (1);
1606 goto directly_done;
1607 }
1608 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1609 {
1610 struct Lisp_Char_Table *dp
1611 = window_display_table (XWINDOW (selected_window));
1612 SET_PT (PT - 1);
1613 lose = FETCH_CHAR (PT_BYTE);
1614 if ((dp
1615 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1616 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1617 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1618 && (lose >= 0x20 && lose < 0x7f)))
1619 : (lose >= 0x20 && lose < 0x7f))
1620 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1621 >= MODIFF)
1622 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1623 >= OVERLAY_MODIFF)
1624 && (XFASTINT (XWINDOW (selected_window)->last_point)
1625 == PT + 1)
1626 && !windows_or_buffers_changed
1627 && EQ (current_buffer->selective_display, Qnil)
1628 && !detect_input_pending ()
1629 && NILP (XWINDOW (selected_window)->column_number_displayed)
1630 && NILP (Vexecuting_macro))
1631 direct_output_forward_char (-1);
1632 goto directly_done;
1633 }
1634 else if (EQ (Vthis_command, Qself_insert_command)
1635 /* Try this optimization only on ascii keystrokes. */
1636 && INTEGERP (last_command_char))
1637 {
1638 unsigned int c = XINT (last_command_char);
1639 int value;
1640 if (NILP (Vexecuting_macro)
1641 && !EQ (minibuf_window, selected_window))
1642 {
1643 if (!nonundocount || nonundocount >= 20)
1644 {
1645 Fundo_boundary ();
1646 nonundocount = 0;
1647 }
1648 nonundocount++;
1649 }
1650
1651 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1652 < MODIFF)
1653 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1654 < OVERLAY_MODIFF)
1655 || (XFASTINT (XWINDOW (selected_window)->last_point)
1656 != PT)
1657 || MODIFF <= SAVE_MODIFF
1658 || windows_or_buffers_changed
1659 || !EQ (current_buffer->selective_display, Qnil)
1660 || detect_input_pending ()
1661 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1662 || !NILP (Vexecuting_macro));
1663
1664 value = internal_self_insert (c, 0);
1665
1666 if (value == 2)
1667 nonundocount = 0;
1668
1669 /* VALUE == 1 when AFTER-CHANGE functions are
1670 installed which is the case most of the time
1671 because FONT-LOCK installs one. */
1672 if (!lose && !value)
1673 direct_output_for_insert (c);
1674 goto directly_done;
1675 }
1676 }
1677
1678 /* Here for a command that isn't executed directly */
1679
1680#ifdef HAVE_X_WINDOWS
1681 if (display_hourglass_p
1682 && NILP (Vexecuting_macro))
1683 start_hourglass ();
1684#endif
1685
1686 nonundocount = 0;
1687 if (NILP (current_kboard->Vprefix_arg))
1688 Fundo_boundary ();
1689 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1690
1691#ifdef HAVE_X_WINDOWS
1692 /* Do not check display_hourglass_p here, because
1693 Fcommand_execute could change it, but we should cancel
1694 hourglass cursor anyway.
1695 But don't cancel the hourglass within a macro
1696 just because a command in the macro finishes. */
1697 if (NILP (Vexecuting_macro))
1698 cancel_hourglass ();
1699#endif
1700 }
1701 directly_done: ;
1702 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1703
1704 /* Note that the value cell will never directly contain nil
1705 if the symbol is a local variable. */
1706 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1707 safe_run_hooks (Qpost_command_hook);
1708
1709 /* If displaying a message, resize the echo area window to fit
1710 that message's size exactly. */
1711 if (!NILP (echo_area_buffer[0]))
1712 resize_echo_area_exactly ();
1713
1714 if (!NILP (Vdeferred_action_list))
1715 safe_run_hooks (Qdeferred_action_function);
1716
1717 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1718 {
1719 if (NILP (Vunread_command_events)
1720 && NILP (Vunread_input_method_events)
1721 && NILP (Vunread_post_input_method_events)
1722 && NILP (Vexecuting_macro)
1723 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1724 safe_run_hooks (Qpost_command_idle_hook);
1725 }
1726
1727 /* If there is a prefix argument,
1728 1) We don't want Vlast_command to be ``universal-argument''
1729 (that would be dumb), so don't set Vlast_command,
1730 2) we want to leave echoing on so that the prefix will be
1731 echoed as part of this key sequence, so don't call
1732 cancel_echoing, and
1733 3) we want to leave this_command_key_count non-zero, so that
1734 read_char will realize that it is re-reading a character, and
1735 not echo it a second time.
1736
1737 If the command didn't actually create a prefix arg,
1738 but is merely a frame event that is transparent to prefix args,
1739 then the above doesn't apply. */
1740 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1741 {
1742 current_kboard->Vlast_command = Vthis_command;
1743 current_kboard->Vreal_last_command = real_this_command;
1744 cancel_echoing ();
1745 this_command_key_count = 0;
1746 this_single_command_key_start = 0;
1747 }
1748
1749 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1750 {
1751 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1752 {
1753 /* We could also call `deactivate'mark'. */
1754 if (EQ (Vtransient_mark_mode, Qlambda))
1755 Vtransient_mark_mode = Qnil;
1756 else
1757 {
1758 current_buffer->mark_active = Qnil;
1759 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1760 }
1761 }
1762 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1763 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1764 }
1765
1766 finalize:
1767
1768 if (current_buffer == prev_buffer
1769 && last_point_position != PT
1770 && NILP (Vdisable_point_adjustment)
1771 && NILP (Vglobal_disable_point_adjustment))
1772 adjust_point_for_property (last_point_position);
1773
1774 /* Install chars successfully executed in kbd macro. */
1775
1776 if (!NILP (current_kboard->defining_kbd_macro)
1777 && NILP (current_kboard->Vprefix_arg))
1778 finalize_kbd_macro_chars ();
1779
1780#ifdef MULTI_KBOARD
1781 if (!was_locked)
1782 any_kboard_state ();
1783#endif
1784 }
1785}
1786
1787extern Lisp_Object Qcomposition, Qdisplay;
1788
1789/* Adjust point to a boundary of a region that has such a property
1790 that should be treated intangible. For the moment, we check
1791 `composition' and `display' property. LAST_PT is the last position
1792 of point. */
1793
1794static void
1795adjust_point_for_property (last_pt)
1796 int last_pt;
1797{
1798 int start, end;
1799 Lisp_Object val;
1800 int check_composition = 1, check_display = 1;
1801
1802 while (check_composition || check_display)
1803 {
1804 if (check_composition
1805 && PT > BEGV && PT < ZV
1806 && get_property_and_range (PT, Qcomposition, &val, &start, &end, Qnil)
1807 && COMPOSITION_VALID_P (start, end, val)
1808 && start < PT && end > PT
1809 && (last_pt <= start || last_pt >= end))
1810 {
1811 if (PT < last_pt)
1812 SET_PT (start);
1813 else
1814 SET_PT (end);
1815 check_display = 1;
1816 }
1817 check_composition = 0;
1818 if (check_display
1819 && PT > BEGV && PT < ZV
1820 && get_property_and_range (PT, Qdisplay, &val, &start, &end, Qnil)
1821 && display_prop_intangible_p (val)
1822 && start < PT && end > PT
1823 && (last_pt <= start || last_pt >= end))
1824 {
1825 if (PT < last_pt)
1826 SET_PT (start);
1827 else
1828 SET_PT (end);
1829 check_composition = 1;
1830 }
1831 check_display = 0;
1832 }
1833}
1834
1835/* Subroutine for safe_run_hooks: run the hook HOOK. */
1836
1837static Lisp_Object
1838safe_run_hooks_1 (hook)
1839 Lisp_Object hook;
1840{
1841 return call1 (Vrun_hooks, Vinhibit_quit);
1842}
1843
1844/* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1845
1846static Lisp_Object
1847safe_run_hooks_error (data)
1848 Lisp_Object data;
1849{
1850 return Fset (Vinhibit_quit, Qnil);
1851}
1852
1853/* If we get an error while running the hook, cause the hook variable
1854 to be nil. Also inhibit quits, so that C-g won't cause the hook
1855 to mysteriously evaporate. */
1856
1857void
1858safe_run_hooks (hook)
1859 Lisp_Object hook;
1860{
1861 int count = SPECPDL_INDEX ();
1862 specbind (Qinhibit_quit, hook);
1863
1864 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1865
1866 unbind_to (count, Qnil);
1867}
1868
1869\f
1870/* Number of seconds between polling for input. This is a Lisp
1871 variable that can be bound. */
1872
1873EMACS_INT polling_period;
1874
1875/* Nonzero means polling for input is temporarily suppressed. */
1876
1877int poll_suppress_count;
1878
1879/* Asynchronous timer for polling. */
1880
1881struct atimer *poll_timer;
1882
1883
1884#ifdef POLL_FOR_INPUT
1885
1886/* Poll for input, so what we catch a C-g if it comes in. This
1887 function is called from x_make_frame_visible, see comment
1888 there. */
1889
1890void
1891poll_for_input_1 ()
1892{
1893 if (interrupt_input_blocked == 0
1894 && !waiting_for_input)
1895 read_avail_input (0);
1896}
1897
1898/* Timer callback function for poll_timer. TIMER is equal to
1899 poll_timer. */
1900
1901void
1902poll_for_input (timer)
1903 struct atimer *timer;
1904{
1905 if (poll_suppress_count == 0)
1906 poll_for_input_1 ();
1907}
1908
1909#endif /* POLL_FOR_INPUT */
1910
1911/* Begin signals to poll for input, if they are appropriate.
1912 This function is called unconditionally from various places. */
1913
1914void
1915start_polling ()
1916{
1917#ifdef POLL_FOR_INPUT
1918 if (read_socket_hook && !interrupt_input)
1919 {
1920 /* Turn alarm handling on unconditionally. It might have
1921 been turned off in process.c. */
1922 turn_on_atimers (1);
1923
1924 /* If poll timer doesn't exist, are we need one with
1925 a different interval, start a new one. */
1926 if (poll_timer == NULL
1927 || EMACS_SECS (poll_timer->interval) != polling_period)
1928 {
1929 EMACS_TIME interval;
1930
1931 if (poll_timer)
1932 cancel_atimer (poll_timer);
1933
1934 EMACS_SET_SECS_USECS (interval, polling_period, 0);
1935 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
1936 poll_for_input, NULL);
1937 }
1938
1939 /* Let the timer's callback function poll for input
1940 if this becomes zero. */
1941 --poll_suppress_count;
1942 }
1943#endif
1944}
1945
1946/* Nonzero if we are using polling to handle input asynchronously. */
1947
1948int
1949input_polling_used ()
1950{
1951#ifdef POLL_FOR_INPUT
1952 return read_socket_hook && !interrupt_input;
1953#else
1954 return 0;
1955#endif
1956}
1957
1958/* Turn off polling. */
1959
1960void
1961stop_polling ()
1962{
1963#ifdef POLL_FOR_INPUT
1964 if (read_socket_hook && !interrupt_input)
1965 ++poll_suppress_count;
1966#endif
1967}
1968
1969/* Set the value of poll_suppress_count to COUNT
1970 and start or stop polling accordingly. */
1971
1972void
1973set_poll_suppress_count (count)
1974 int count;
1975{
1976#ifdef POLL_FOR_INPUT
1977 if (count == 0 && poll_suppress_count != 0)
1978 {
1979 poll_suppress_count = 1;
1980 start_polling ();
1981 }
1982 else if (count != 0 && poll_suppress_count == 0)
1983 {
1984 stop_polling ();
1985 }
1986 poll_suppress_count = count;
1987#endif
1988}
1989
1990/* Bind polling_period to a value at least N.
1991 But don't decrease it. */
1992
1993void
1994bind_polling_period (n)
1995 int n;
1996{
1997#ifdef POLL_FOR_INPUT
1998 int new = polling_period;
1999
2000 if (n > new)
2001 new = n;
2002
2003 stop_other_atimers (poll_timer);
2004 stop_polling ();
2005 specbind (Qpolling_period, make_number (new));
2006 /* Start a new alarm with the new period. */
2007 start_polling ();
2008#endif
2009}
2010\f
2011/* Apply the control modifier to CHARACTER. */
2012
2013int
2014make_ctrl_char (c)
2015 int c;
2016{
2017 /* Save the upper bits here. */
2018 int upper = c & ~0177;
2019
2020 c &= 0177;
2021
2022 /* Everything in the columns containing the upper-case letters
2023 denotes a control character. */
2024 if (c >= 0100 && c < 0140)
2025 {
2026 int oc = c;
2027 c &= ~0140;
2028 /* Set the shift modifier for a control char
2029 made from a shifted letter. But only for letters! */
2030 if (oc >= 'A' && oc <= 'Z')
2031 c |= shift_modifier;
2032 }
2033
2034 /* The lower-case letters denote control characters too. */
2035 else if (c >= 'a' && c <= 'z')
2036 c &= ~0140;
2037
2038 /* Include the bits for control and shift
2039 only if the basic ASCII code can't indicate them. */
2040 else if (c >= ' ')
2041 c |= ctrl_modifier;
2042
2043 /* Replace the high bits. */
2044 c |= (upper & ~ctrl_modifier);
2045
2046 return c;
2047}
2048
2049/* Display help echo in the echo area.
2050
2051 HELP a string means display that string, HELP nil means clear the
2052 help echo. If HELP is a function, call it with OBJECT and POS as
2053 arguments; the function should return a help string or nil for
2054 none. For all other types of HELP evaluate it to obtain a string.
2055
2056 WINDOW is the window in which the help was generated, if any.
2057 It is nil if not in a window.
2058
2059 If OBJECT is a buffer, POS is the position in the buffer where the
2060 `help-echo' text property was found.
2061
2062 If OBJECT is an overlay, that overlay has a `help-echo' property,
2063 and POS is the position in the overlay's buffer under the mouse.
2064
2065 If OBJECT is a string (an overlay string or a string displayed with
2066 the `display' property). POS is the position in that string under
2067 the mouse.
2068
2069 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2070 echo overwrites a keystroke echo currently displayed in the echo
2071 area.
2072
2073 Note: this function may only be called with HELP nil or a string
2074 from X code running asynchronously. */
2075
2076void
2077show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2078 Lisp_Object help, window, object, pos;
2079 int ok_to_overwrite_keystroke_echo;
2080{
2081 if (!NILP (help) && !STRINGP (help))
2082 {
2083 if (FUNCTIONP (help))
2084 {
2085 Lisp_Object args[4];
2086 args[0] = help;
2087 args[1] = window;
2088 args[2] = object;
2089 args[3] = pos;
2090 help = safe_call (4, args);
2091 }
2092 else
2093 help = safe_eval (help);
2094
2095 if (!STRINGP (help))
2096 return;
2097 }
2098
2099 if (STRINGP (help) || NILP (help))
2100 {
2101 if (!NILP (Vshow_help_function))
2102 call1 (Vshow_help_function, help);
2103 else if (/* Don't overwrite minibuffer contents. */
2104 !MINI_WINDOW_P (XWINDOW (selected_window))
2105 /* Don't overwrite a keystroke echo. */
2106 && (NILP (echo_message_buffer)
2107 || ok_to_overwrite_keystroke_echo)
2108 /* Don't overwrite a prompt. */
2109 && !cursor_in_echo_area)
2110 {
2111 if (STRINGP (help))
2112 {
2113 int count = SPECPDL_INDEX ();
2114
2115 if (!help_echo_showing_p)
2116 Vpre_help_message = current_message ();
2117
2118 specbind (Qmessage_truncate_lines, Qt);
2119 message3_nolog (help, STRING_BYTES (XSTRING (help)),
2120 STRING_MULTIBYTE (help));
2121 unbind_to (count, Qnil);
2122 }
2123 else if (STRINGP (Vpre_help_message))
2124 {
2125 message3_nolog (Vpre_help_message,
2126 STRING_BYTES (XSTRING (Vpre_help_message)),
2127 STRING_MULTIBYTE (Vpre_help_message));
2128 Vpre_help_message = Qnil;
2129 }
2130 else
2131 message (0);
2132 }
2133
2134 help_echo_showing_p = STRINGP (help);
2135 }
2136}
2137
2138
2139\f
2140/* Input of single characters from keyboard */
2141
2142Lisp_Object print_help ();
2143static Lisp_Object kbd_buffer_get_event ();
2144static void record_char ();
2145
2146#ifdef MULTI_KBOARD
2147static jmp_buf wrong_kboard_jmpbuf;
2148#endif
2149
2150/* read a character from the keyboard; call the redisplay if needed */
2151/* commandflag 0 means do not do auto-saving, but do do redisplay.
2152 -1 means do not do redisplay, but do do autosaving.
2153 1 means do both. */
2154
2155/* The arguments MAPS and NMAPS are for menu prompting.
2156 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2157
2158 PREV_EVENT is the previous input event, or nil if we are reading
2159 the first event of a key sequence (or not reading a key sequence).
2160 If PREV_EVENT is t, that is a "magic" value that says
2161 not to run input methods, but in other respects to act as if
2162 not reading a key sequence.
2163
2164 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2165 if we used a mouse menu to read the input, or zero otherwise. If
2166 USED_MOUSE_MENU is null, we don't dereference it.
2167
2168 Value is t if we showed a menu and the user rejected it. */
2169
2170Lisp_Object
2171read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
2172 int commandflag;
2173 int nmaps;
2174 Lisp_Object *maps;
2175 Lisp_Object prev_event;
2176 int *used_mouse_menu;
2177{
2178 volatile Lisp_Object c;
2179 int count;
2180 jmp_buf local_getcjmp;
2181 jmp_buf save_jump;
2182 volatile int key_already_recorded = 0;
2183 Lisp_Object tem, save;
2184 volatile Lisp_Object previous_echo_area_message;
2185 volatile Lisp_Object also_record;
2186 volatile int reread;
2187 struct gcpro gcpro1, gcpro2;
2188 EMACS_TIME last_idle_start;
2189
2190 also_record = Qnil;
2191
2192 before_command_key_count = this_command_key_count;
2193 before_command_echo_length = echo_length ();
2194 c = Qnil;
2195 previous_echo_area_message = Qnil;
2196
2197 GCPRO2 (c, previous_echo_area_message);
2198
2199 retry:
2200
2201 reread = 0;
2202 if (CONSP (Vunread_post_input_method_events))
2203 {
2204 c = XCAR (Vunread_post_input_method_events);
2205 Vunread_post_input_method_events
2206 = XCDR (Vunread_post_input_method_events);
2207
2208 /* Undo what read_char_x_menu_prompt did when it unread
2209 additional keys returned by Fx_popup_menu. */
2210 if (CONSP (c)
2211 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2212 && NILP (XCDR (c)))
2213 c = XCAR (c);
2214
2215 reread = 1;
2216 goto reread_first;
2217 }
2218
2219 if (unread_command_char != -1)
2220 {
2221 XSETINT (c, unread_command_char);
2222 unread_command_char = -1;
2223
2224 reread = 1;
2225 goto reread_first;
2226 }
2227
2228 if (CONSP (Vunread_command_events))
2229 {
2230 c = XCAR (Vunread_command_events);
2231 Vunread_command_events = XCDR (Vunread_command_events);
2232
2233 /* Undo what read_char_x_menu_prompt did when it unread
2234 additional keys returned by Fx_popup_menu. */
2235 if (CONSP (c)
2236 && EQ (XCDR (c), Qdisabled)
2237 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2238 c = XCAR (c);
2239
2240 /* If the queued event is something that used the mouse,
2241 set used_mouse_menu accordingly. */
2242 if (used_mouse_menu
2243 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2244 *used_mouse_menu = 1;
2245
2246 reread = 1;
2247 goto reread_for_input_method;
2248 }
2249
2250 if (CONSP (Vunread_input_method_events))
2251 {
2252 c = XCAR (Vunread_input_method_events);
2253 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2254
2255 /* Undo what read_char_x_menu_prompt did when it unread
2256 additional keys returned by Fx_popup_menu. */
2257 if (CONSP (c)
2258 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2259 && NILP (XCDR (c)))
2260 c = XCAR (c);
2261 reread = 1;
2262 goto reread_for_input_method;
2263 }
2264
2265 /* If there is no function key translated before
2266 reset-this-command-lengths takes effect, forget about it. */
2267 before_command_restore_flag = 0;
2268
2269 if (!NILP (Vexecuting_macro))
2270 {
2271 /* We set this to Qmacro; since that's not a frame, nobody will
2272 try to switch frames on us, and the selected window will
2273 remain unchanged.
2274
2275 Since this event came from a macro, it would be misleading to
2276 leave internal_last_event_frame set to wherever the last
2277 real event came from. Normally, a switch-frame event selects
2278 internal_last_event_frame after each command is read, but
2279 events read from a macro should never cause a new frame to be
2280 selected. */
2281 Vlast_event_frame = internal_last_event_frame = Qmacro;
2282
2283 /* Exit the macro if we are at the end.
2284 Also, some things replace the macro with t
2285 to force an early exit. */
2286 if (EQ (Vexecuting_macro, Qt)
2287 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
2288 {
2289 XSETINT (c, -1);
2290 RETURN_UNGCPRO (c);
2291 }
2292
2293 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
2294 if (STRINGP (Vexecuting_macro)
2295 && (XINT (c) & 0x80))
2296 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2297
2298 executing_macro_index++;
2299
2300 goto from_macro;
2301 }
2302
2303 if (!NILP (unread_switch_frame))
2304 {
2305 c = unread_switch_frame;
2306 unread_switch_frame = Qnil;
2307
2308 /* This event should make it into this_command_keys, and get echoed
2309 again, so we do not set `reread'. */
2310 goto reread_first;
2311 }
2312
2313 /* if redisplay was requested */
2314 if (commandflag >= 0)
2315 {
2316 /* If there is pending input, process any events which are not
2317 user-visible, such as X selection_request events. */
2318 if (input_pending
2319 || detect_input_pending_run_timers (0))
2320 swallow_events (0); /* may clear input_pending */
2321
2322 /* Redisplay if no pending input. */
2323 while (!input_pending)
2324 {
2325 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2326 redisplay_preserve_echo_area (5);
2327 else
2328 redisplay ();
2329
2330 if (!input_pending)
2331 /* Normal case: no input arrived during redisplay. */
2332 break;
2333
2334 /* Input arrived and pre-empted redisplay.
2335 Process any events which are not user-visible. */
2336 swallow_events (0);
2337 /* If that cleared input_pending, try again to redisplay. */
2338 }
2339 }
2340
2341 /* Message turns off echoing unless more keystrokes turn it on again.
2342
2343 The code in 20.x for the condition was
2344
2345 1. echo_area_glyphs && *echo_area_glyphs
2346 2. && echo_area_glyphs != current_kboard->echobuf
2347 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2348
2349 (1) means there's a current message displayed
2350
2351 (2) means it's not the message from echoing from the current
2352 kboard.
2353
2354 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2355 is set to a non-null value. This is done in read_char and it is
2356 set to echo_area_glyphs after a call to echo_char. That means
2357 ok_to_echo_at_next_pause is either null or
2358 current_kboard->echobuf with the appropriate current_kboard at
2359 that time.
2360
2361 So, condition (3) means in clear text ok_to_echo_at_next_pause
2362 must be either null, or the current message isn't from echoing at
2363 all, or it's from echoing from a different kboard than the
2364 current one. */
2365
2366 if (/* There currently is something in the echo area. */
2367 !NILP (echo_area_buffer[0])
2368 && (/* And it's either not from echoing. */
2369 !EQ (echo_area_buffer[0], echo_message_buffer)
2370 /* Or it's an echo from a different kboard. */
2371 || echo_kboard != current_kboard
2372 /* Or we explicitly allow overwriting whatever there is. */
2373 || ok_to_echo_at_next_pause == NULL))
2374 cancel_echoing ();
2375 else
2376 echo_dash ();
2377
2378 /* Try reading a character via menu prompting in the minibuf.
2379 Try this before the sit-for, because the sit-for
2380 would do the wrong thing if we are supposed to do
2381 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2382 after a mouse event so don't try a minibuf menu. */
2383 c = Qnil;
2384 if (nmaps > 0 && INTERACTIVE
2385 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2386 /* Don't bring up a menu if we already have another event. */
2387 && NILP (Vunread_command_events)
2388 && unread_command_char < 0
2389 && !detect_input_pending_run_timers (0))
2390 {
2391 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2392 if (! NILP (c))
2393 {
2394 key_already_recorded = 1;
2395 goto non_reread_1;
2396 }
2397 }
2398
2399 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2400 We will do that below, temporarily for short sections of code,
2401 when appropriate. local_getcjmp must be in effect
2402 around any call to sit_for or kbd_buffer_get_event;
2403 it *must not* be in effect when we call redisplay. */
2404
2405 if (_setjmp (local_getcjmp))
2406 {
2407 XSETINT (c, quit_char);
2408 internal_last_event_frame = selected_frame;
2409 Vlast_event_frame = internal_last_event_frame;
2410 /* If we report the quit char as an event,
2411 don't do so more than once. */
2412 if (!NILP (Vinhibit_quit))
2413 Vquit_flag = Qnil;
2414
2415#ifdef MULTI_KBOARD
2416 {
2417 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2418 if (kb != current_kboard)
2419 {
2420 Lisp_Object link = kb->kbd_queue;
2421 /* We shouldn't get here if we were in single-kboard mode! */
2422 if (single_kboard)
2423 abort ();
2424 if (CONSP (link))
2425 {
2426 while (CONSP (XCDR (link)))
2427 link = XCDR (link);
2428 if (!NILP (XCDR (link)))
2429 abort ();
2430 }
2431 if (!CONSP (link))
2432 kb->kbd_queue = Fcons (c, Qnil);
2433 else
2434 XSETCDR (link, Fcons (c, Qnil));
2435 kb->kbd_queue_has_data = 1;
2436 current_kboard = kb;
2437 /* This is going to exit from read_char
2438 so we had better get rid of this frame's stuff. */
2439 UNGCPRO;
2440 longjmp (wrong_kboard_jmpbuf, 1);
2441 }
2442 }
2443#endif
2444 goto non_reread;
2445 }
2446
2447 timer_start_idle ();
2448
2449 /* If in middle of key sequence and minibuffer not active,
2450 start echoing if enough time elapses. */
2451
2452 if (minibuf_level == 0
2453 && !current_kboard->immediate_echo
2454 && this_command_key_count > 0
2455 && ! noninteractive
2456 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2457 && NILP (Fzerop (Vecho_keystrokes))
2458 && (/* No message. */
2459 NILP (echo_area_buffer[0])
2460 /* Or empty message. */
2461 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2462 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2463 /* Or already echoing from same kboard. */
2464 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2465 /* Or not echoing before and echoing allowed. */
2466 || (!echo_kboard && ok_to_echo_at_next_pause)))
2467 {
2468 Lisp_Object tem0;
2469
2470 /* After a mouse event, start echoing right away.
2471 This is because we are probably about to display a menu,
2472 and we don't want to delay before doing so. */
2473 if (EVENT_HAS_PARAMETERS (prev_event))
2474 echo_now ();
2475 else
2476 {
2477 int sec, usec;
2478 double duration = extract_float (Vecho_keystrokes);
2479 sec = (int) duration;
2480 usec = (duration - sec) * 1000000;
2481 save_getcjmp (save_jump);
2482 restore_getcjmp (local_getcjmp);
2483 tem0 = sit_for (sec, usec, 1, 1, 0);
2484 restore_getcjmp (save_jump);
2485 if (EQ (tem0, Qt)
2486 && ! CONSP (Vunread_command_events))
2487 echo_now ();
2488 }
2489 }
2490
2491 /* Maybe auto save due to number of keystrokes. */
2492
2493 if (commandflag != 0
2494 && auto_save_interval > 0
2495 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2496 && !detect_input_pending_run_timers (0))
2497 {
2498 Fdo_auto_save (Qnil, Qnil);
2499 /* Hooks can actually change some buffers in auto save. */
2500 redisplay ();
2501 }
2502
2503 /* Try reading using an X menu.
2504 This is never confused with reading using the minibuf
2505 because the recursive call of read_char in read_char_minibuf_menu_prompt
2506 does not pass on any keymaps. */
2507
2508 if (nmaps > 0 && INTERACTIVE
2509 && !NILP (prev_event)
2510 && EVENT_HAS_PARAMETERS (prev_event)
2511 && !EQ (XCAR (prev_event), Qmenu_bar)
2512 && !EQ (XCAR (prev_event), Qtool_bar)
2513 /* Don't bring up a menu if we already have another event. */
2514 && NILP (Vunread_command_events)
2515 && unread_command_char < 0)
2516 {
2517 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2518
2519 /* Now that we have read an event, Emacs is not idle. */
2520 timer_stop_idle ();
2521
2522 RETURN_UNGCPRO (c);
2523 }
2524
2525 /* Maybe autosave and/or garbage collect due to idleness. */
2526
2527 if (INTERACTIVE && NILP (c))
2528 {
2529 int delay_level, buffer_size;
2530
2531 /* Slow down auto saves logarithmically in size of current buffer,
2532 and garbage collect while we're at it. */
2533 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2534 last_non_minibuf_size = Z - BEG;
2535 buffer_size = (last_non_minibuf_size >> 8) + 1;
2536 delay_level = 0;
2537 while (buffer_size > 64)
2538 delay_level++, buffer_size -= buffer_size >> 2;
2539 if (delay_level < 4) delay_level = 4;
2540 /* delay_level is 4 for files under around 50k, 7 at 100k,
2541 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2542
2543 /* Auto save if enough time goes by without input. */
2544 if (commandflag != 0
2545 && num_nonmacro_input_events > last_auto_save
2546 && INTEGERP (Vauto_save_timeout)
2547 && XINT (Vauto_save_timeout) > 0)
2548 {
2549 Lisp_Object tem0;
2550
2551 save_getcjmp (save_jump);
2552 restore_getcjmp (local_getcjmp);
2553 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
2554 0, 1, 1, 0);
2555 restore_getcjmp (save_jump);
2556
2557 if (EQ (tem0, Qt)
2558 && ! CONSP (Vunread_command_events))
2559 {
2560 Fdo_auto_save (Qnil, Qnil);
2561
2562 /* If we have auto-saved and there is still no input
2563 available, garbage collect if there has been enough
2564 consing going on to make it worthwhile. */
2565 if (!detect_input_pending_run_timers (0)
2566 && consing_since_gc > gc_cons_threshold / 2)
2567 Fgarbage_collect ();
2568
2569 redisplay ();
2570 }
2571 }
2572 }
2573
2574 /* If this has become non-nil here, it has been set by a timer
2575 or sentinel or filter. */
2576 if (CONSP (Vunread_command_events))
2577 {
2578 c = XCAR (Vunread_command_events);
2579 Vunread_command_events = XCDR (Vunread_command_events);
2580 }
2581
2582 /* Read something from current KBOARD's side queue, if possible. */
2583
2584 if (NILP (c))
2585 {
2586 if (current_kboard->kbd_queue_has_data)
2587 {
2588 if (!CONSP (current_kboard->kbd_queue))
2589 abort ();
2590 c = XCAR (current_kboard->kbd_queue);
2591 current_kboard->kbd_queue
2592 = XCDR (current_kboard->kbd_queue);
2593 if (NILP (current_kboard->kbd_queue))
2594 current_kboard->kbd_queue_has_data = 0;
2595 input_pending = readable_events (0);
2596 if (EVENT_HAS_PARAMETERS (c)
2597 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2598 internal_last_event_frame = XCAR (XCDR (c));
2599 Vlast_event_frame = internal_last_event_frame;
2600 }
2601 }
2602
2603#ifdef MULTI_KBOARD
2604 /* If current_kboard's side queue is empty check the other kboards.
2605 If one of them has data that we have not yet seen here,
2606 switch to it and process the data waiting for it.
2607
2608 Note: if the events queued up for another kboard
2609 have already been seen here, and therefore are not a complete command,
2610 the kbd_queue_has_data field is 0, so we skip that kboard here.
2611 That's to avoid an infinite loop switching between kboards here. */
2612 if (NILP (c) && !single_kboard)
2613 {
2614 KBOARD *kb;
2615 for (kb = all_kboards; kb; kb = kb->next_kboard)
2616 if (kb->kbd_queue_has_data)
2617 {
2618 current_kboard = kb;
2619 /* This is going to exit from read_char
2620 so we had better get rid of this frame's stuff. */
2621 UNGCPRO;
2622 longjmp (wrong_kboard_jmpbuf, 1);
2623 }
2624 }
2625#endif
2626
2627 wrong_kboard:
2628
2629 stop_polling ();
2630
2631 /* Finally, we read from the main queue,
2632 and if that gives us something we can't use yet, we put it on the
2633 appropriate side queue and try again. */
2634
2635 if (NILP (c))
2636 {
2637 KBOARD *kb;
2638
2639 /* Actually read a character, waiting if necessary. */
2640 save_getcjmp (save_jump);
2641 restore_getcjmp (local_getcjmp);
2642 timer_start_idle ();
2643 c = kbd_buffer_get_event (&kb, used_mouse_menu);
2644 restore_getcjmp (save_jump);
2645
2646#ifdef MULTI_KBOARD
2647 if (! NILP (c) && (kb != current_kboard))
2648 {
2649 Lisp_Object link = kb->kbd_queue;
2650 if (CONSP (link))
2651 {
2652 while (CONSP (XCDR (link)))
2653 link = XCDR (link);
2654 if (!NILP (XCDR (link)))
2655 abort ();
2656 }
2657 if (!CONSP (link))
2658 kb->kbd_queue = Fcons (c, Qnil);
2659 else
2660 XSETCDR (link, Fcons (c, Qnil));
2661 kb->kbd_queue_has_data = 1;
2662 c = Qnil;
2663 if (single_kboard)
2664 goto wrong_kboard;
2665 current_kboard = kb;
2666 /* This is going to exit from read_char
2667 so we had better get rid of this frame's stuff. */
2668 UNGCPRO;
2669 longjmp (wrong_kboard_jmpbuf, 1);
2670 }
2671#endif
2672 }
2673
2674 /* Terminate Emacs in batch mode if at eof. */
2675 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2676 Fkill_emacs (make_number (1));
2677
2678 if (INTEGERP (c))
2679 {
2680 /* Add in any extra modifiers, where appropriate. */
2681 if ((extra_keyboard_modifiers & CHAR_CTL)
2682 || ((extra_keyboard_modifiers & 0177) < ' '
2683 && (extra_keyboard_modifiers & 0177) != 0))
2684 XSETINT (c, make_ctrl_char (XINT (c)));
2685
2686 /* Transfer any other modifier bits directly from
2687 extra_keyboard_modifiers to c. Ignore the actual character code
2688 in the low 16 bits of extra_keyboard_modifiers. */
2689 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2690 }
2691
2692 non_reread:
2693
2694 /* Record the last idle start time so that we can reset it
2695 should the next event read be a help-echo. */
2696 last_idle_start = timer_idleness_start_time;
2697 timer_stop_idle ();
2698 start_polling ();
2699
2700 if (NILP (c))
2701 {
2702 if (commandflag >= 0
2703 && !input_pending && !detect_input_pending_run_timers (0))
2704 redisplay ();
2705
2706 goto wrong_kboard;
2707 }
2708
2709 non_reread_1:
2710
2711 /* Buffer switch events are only for internal wakeups
2712 so don't show them to the user.
2713 Also, don't record a key if we already did. */
2714 if (BUFFERP (c) || key_already_recorded)
2715 RETURN_UNGCPRO (c);
2716
2717 /* Process special events within read_char
2718 and loop around to read another event. */
2719 save = Vquit_flag;
2720 Vquit_flag = Qnil;
2721 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2722 Vquit_flag = save;
2723
2724 if (!NILP (tem))
2725 {
2726 int was_locked = single_kboard;
2727
2728 last_input_char = c;
2729 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2730
2731 if (CONSP (c) && EQ (XCAR (c), Qselect_window))
2732 /* We stopped being idle for this event; undo that. This
2733 prevents automatic window selection (under
2734 mouse_autoselect_window from acting as a real input event, for
2735 example banishing the mouse under mouse-avoidance-mode. */
2736 timer_idleness_start_time = last_idle_start;
2737
2738 /* Resume allowing input from any kboard, if that was true before. */
2739 if (!was_locked)
2740 any_kboard_state ();
2741
2742 goto retry;
2743 }
2744
2745 /* Handle things that only apply to characters. */
2746 if (INTEGERP (c))
2747 {
2748 /* If kbd_buffer_get_event gave us an EOF, return that. */
2749 if (XINT (c) == -1)
2750 RETURN_UNGCPRO (c);
2751
2752 if ((STRINGP (Vkeyboard_translate_table)
2753 && XSTRING (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2754 || (VECTORP (Vkeyboard_translate_table)
2755 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2756 || (CHAR_TABLE_P (Vkeyboard_translate_table)
2757 && CHAR_TABLE_ORDINARY_SLOTS > (unsigned) XFASTINT (c)))
2758 {
2759 Lisp_Object d;
2760 d = Faref (Vkeyboard_translate_table, c);
2761 /* nil in keyboard-translate-table means no translation. */
2762 if (!NILP (d))
2763 c = d;
2764 }
2765 }
2766
2767 /* If this event is a mouse click in the menu bar,
2768 return just menu-bar for now. Modify the mouse click event
2769 so we won't do this twice, then queue it up. */
2770 if (EVENT_HAS_PARAMETERS (c)
2771 && CONSP (XCDR (c))
2772 && CONSP (EVENT_START (c))
2773 && CONSP (XCDR (EVENT_START (c))))
2774 {
2775 Lisp_Object posn;
2776
2777 posn = POSN_BUFFER_POSN (EVENT_START (c));
2778 /* Handle menu-bar events:
2779 insert the dummy prefix event `menu-bar'. */
2780 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2781 {
2782 /* Change menu-bar to (menu-bar) as the event "position". */
2783 POSN_BUFFER_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
2784
2785 also_record = c;
2786 Vunread_command_events = Fcons (c, Vunread_command_events);
2787 c = posn;
2788 }
2789 }
2790
2791 /* Store these characters into recent_keys, the dribble file if any,
2792 and the keyboard macro being defined, if any. */
2793 record_char (c);
2794 if (! NILP (also_record))
2795 record_char (also_record);
2796
2797 /* Wipe the echo area.
2798 But first, if we are about to use an input method,
2799 save the echo area contents for it to refer to. */
2800 if (INTEGERP (c)
2801 && ! NILP (Vinput_method_function)
2802 && (unsigned) XINT (c) >= ' '
2803 && (unsigned) XINT (c) != 127
2804 && (unsigned) XINT (c) < 256)
2805 {
2806 previous_echo_area_message = Fcurrent_message ();
2807 Vinput_method_previous_message = previous_echo_area_message;
2808 }
2809
2810 /* Now wipe the echo area, except for help events which do their
2811 own stuff with the echo area. */
2812 if (!CONSP (c)
2813 || (!(EQ (Qhelp_echo, XCAR (c)))
2814 && !(EQ (Qswitch_frame, XCAR (c)))))
2815 {
2816 if (!NILP (echo_area_buffer[0]))
2817 safe_run_hooks (Qecho_area_clear_hook);
2818 clear_message (1, 0);
2819 }
2820
2821 reread_for_input_method:
2822 from_macro:
2823 /* Pass this to the input method, if appropriate. */
2824 if (INTEGERP (c)
2825 && ! NILP (Vinput_method_function)
2826 /* Don't run the input method within a key sequence,
2827 after the first event of the key sequence. */
2828 && NILP (prev_event)
2829 && (unsigned) XINT (c) >= ' '
2830 && (unsigned) XINT (c) != 127
2831 && (unsigned) XINT (c) < 256)
2832 {
2833 Lisp_Object keys;
2834 int key_count;
2835 struct gcpro gcpro1;
2836 int count = SPECPDL_INDEX ();
2837
2838 /* Save the echo status. */
2839 int saved_immediate_echo = current_kboard->immediate_echo;
2840 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
2841 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
2842
2843 if (before_command_restore_flag)
2844 {
2845 this_command_key_count = before_command_key_count_1;
2846 if (this_command_key_count < this_single_command_key_start)
2847 this_single_command_key_start = this_command_key_count;
2848 echo_truncate (before_command_echo_length_1);
2849 before_command_restore_flag = 0;
2850 }
2851
2852 /* Save the this_command_keys status. */
2853 key_count = this_command_key_count;
2854
2855 if (key_count > 0)
2856 keys = Fcopy_sequence (this_command_keys);
2857 else
2858 keys = Qnil;
2859 GCPRO1 (keys);
2860
2861 /* Clear out this_command_keys. */
2862 this_command_key_count = 0;
2863
2864 /* Now wipe the echo area. */
2865 if (!NILP (echo_area_buffer[0]))
2866 safe_run_hooks (Qecho_area_clear_hook);
2867 clear_message (1, 0);
2868 echo_truncate (0);
2869
2870 /* If we are not reading a key sequence,
2871 never use the echo area. */
2872 if (maps == 0)
2873 {
2874 specbind (Qinput_method_use_echo_area, Qt);
2875 }
2876
2877 /* Call the input method. */
2878 tem = call1 (Vinput_method_function, c);
2879
2880 tem = unbind_to (count, tem);
2881
2882 /* Restore the saved echoing state
2883 and this_command_keys state. */
2884 this_command_key_count = key_count;
2885 if (key_count > 0)
2886 this_command_keys = keys;
2887
2888 cancel_echoing ();
2889 ok_to_echo_at_next_pause = saved_ok_to_echo;
2890 current_kboard->echo_after_prompt = saved_echo_after_prompt;
2891 if (saved_immediate_echo)
2892 echo_now ();
2893
2894 UNGCPRO;
2895
2896 /* The input method can return no events. */
2897 if (! CONSP (tem))
2898 {
2899 /* Bring back the previous message, if any. */
2900 if (! NILP (previous_echo_area_message))
2901 message_with_string ("%s", previous_echo_area_message, 0);
2902 goto retry;
2903 }
2904 /* It returned one event or more. */
2905 c = XCAR (tem);
2906 Vunread_post_input_method_events
2907 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
2908 }
2909
2910 reread_first:
2911
2912 /* Display help if not echoing. */
2913 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
2914 {
2915 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
2916 Lisp_Object help, object, position, window, tem;
2917
2918 tem = Fcdr (XCDR (c));
2919 help = Fcar (tem);
2920 tem = Fcdr (tem);
2921 window = Fcar (tem);
2922 tem = Fcdr (tem);
2923 object = Fcar (tem);
2924 tem = Fcdr (tem);
2925 position = Fcar (tem);
2926
2927 show_help_echo (help, window, object, position, 0);
2928
2929 /* We stopped being idle for this event; undo that. */
2930 timer_idleness_start_time = last_idle_start;
2931 goto retry;
2932 }
2933
2934 if (this_command_key_count == 0 || ! reread)
2935 {
2936 before_command_key_count = this_command_key_count;
2937 before_command_echo_length = echo_length ();
2938
2939 /* Don't echo mouse motion events. */
2940 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2941 && NILP (Fzerop (Vecho_keystrokes))
2942 && ! (EVENT_HAS_PARAMETERS (c)
2943 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
2944 {
2945 echo_char (c);
2946 if (! NILP (also_record))
2947 echo_char (also_record);
2948 /* Once we reread a character, echoing can happen
2949 the next time we pause to read a new one. */
2950 ok_to_echo_at_next_pause = current_kboard;
2951 }
2952
2953 /* Record this character as part of the current key. */
2954 add_command_key (c);
2955 if (! NILP (also_record))
2956 add_command_key (also_record);
2957 }
2958
2959 last_input_char = c;
2960 num_input_events++;
2961
2962 /* Process the help character specially if enabled */
2963 if (!NILP (Vhelp_form) && help_char_p (c))
2964 {
2965 Lisp_Object tem0;
2966 count = SPECPDL_INDEX ();
2967
2968 record_unwind_protect (Fset_window_configuration,
2969 Fcurrent_window_configuration (Qnil));
2970
2971 tem0 = Feval (Vhelp_form);
2972 if (STRINGP (tem0))
2973 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
2974
2975 cancel_echoing ();
2976 do
2977 c = read_char (0, 0, 0, Qnil, 0);
2978 while (BUFFERP (c));
2979 /* Remove the help from the frame */
2980 unbind_to (count, Qnil);
2981
2982 redisplay ();
2983 if (EQ (c, make_number (040)))
2984 {
2985 cancel_echoing ();
2986 do
2987 c = read_char (0, 0, 0, Qnil, 0);
2988 while (BUFFERP (c));
2989 }
2990 }
2991
2992 RETURN_UNGCPRO (c);
2993}
2994
2995/* Record a key that came from a mouse menu.
2996 Record it for echoing, for this-command-keys, and so on. */
2997
2998static void
2999record_menu_key (c)
3000 Lisp_Object c;
3001{
3002 /* Wipe the echo area. */
3003 clear_message (1, 0);
3004
3005 record_char (c);
3006
3007 before_command_key_count = this_command_key_count;
3008 before_command_echo_length = echo_length ();
3009
3010 /* Don't echo mouse motion events. */
3011 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3012 && NILP (Fzerop (Vecho_keystrokes)))
3013 {
3014 echo_char (c);
3015
3016 /* Once we reread a character, echoing can happen
3017 the next time we pause to read a new one. */
3018 ok_to_echo_at_next_pause = 0;
3019 }
3020
3021 /* Record this character as part of the current key. */
3022 add_command_key (c);
3023
3024 /* Re-reading in the middle of a command */
3025 last_input_char = c;
3026 num_input_events++;
3027}
3028
3029/* Return 1 if should recognize C as "the help character". */
3030
3031int
3032help_char_p (c)
3033 Lisp_Object c;
3034{
3035 Lisp_Object tail;
3036
3037 if (EQ (c, Vhelp_char))
3038 return 1;
3039 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3040 if (EQ (c, XCAR (tail)))
3041 return 1;
3042 return 0;
3043}
3044
3045/* Record the input event C in various ways. */
3046
3047static void
3048record_char (c)
3049 Lisp_Object c;
3050{
3051 int recorded = 0;
3052
3053 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3054 {
3055 /* To avoid filling recent_keys with help-echo and mouse-movement
3056 events, we filter out repeated help-echo events, only store the
3057 first and last in a series of mouse-movement events, and don't
3058 store repeated help-echo events which are only separated by
3059 mouse-movement events. */
3060
3061 Lisp_Object ev1, ev2, ev3;
3062 int ix1, ix2, ix3;
3063
3064 if ((ix1 = recent_keys_index - 1) < 0)
3065 ix1 = NUM_RECENT_KEYS - 1;
3066 ev1 = AREF (recent_keys, ix1);
3067
3068 if ((ix2 = ix1 - 1) < 0)
3069 ix2 = NUM_RECENT_KEYS - 1;
3070 ev2 = AREF (recent_keys, ix2);
3071
3072 if ((ix3 = ix2 - 1) < 0)
3073 ix3 = NUM_RECENT_KEYS - 1;
3074 ev3 = AREF (recent_keys, ix3);
3075
3076 if (EQ (XCAR (c), Qhelp_echo))
3077 {
3078 /* Don't record `help-echo' in recent_keys unless it shows some help
3079 message, and a different help than the previously recorded
3080 event. */
3081 Lisp_Object help, last_help;
3082
3083 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3084 if (!STRINGP (help))
3085 recorded = 1;
3086 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3087 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3088 recorded = 1;
3089 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3090 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3091 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3092 recorded = -1;
3093 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3094 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3095 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3096 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3097 recorded = -2;
3098 }
3099 else if (EQ (XCAR (c), Qmouse_movement))
3100 {
3101 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3102 So additional mouse movement events replace the last element. */
3103 Lisp_Object last_window, window;
3104
3105 window = Fcar_safe (Fcar_safe (XCDR (c)));
3106 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3107 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3108 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3109 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3110 {
3111 ASET (recent_keys, ix1, c);
3112 recorded = 1;
3113 }
3114 }
3115 }
3116 else
3117 store_kbd_macro_char (c);
3118
3119 if (!recorded)
3120 {
3121 total_keys++;
3122 ASET (recent_keys, recent_keys_index, c);
3123 if (++recent_keys_index >= NUM_RECENT_KEYS)
3124 recent_keys_index = 0;
3125 }
3126 else if (recorded < 0)
3127 {
3128 /* We need to remove one or two events from recent_keys.
3129 To do this, we simply put nil at those events and move the
3130 recent_keys_index backwards over those events. Usually,
3131 users will never see those nil events, as they will be
3132 overwritten by the command keys entered to see recent_keys
3133 (e.g. C-h l). */
3134
3135 while (recorded++ < 0 && total_keys > 0)
3136 {
3137 if (total_keys < NUM_RECENT_KEYS)
3138 total_keys--;
3139 if (--recent_keys_index < 0)
3140 recent_keys_index = NUM_RECENT_KEYS - 1;
3141 ASET (recent_keys, recent_keys_index, Qnil);
3142 }
3143 }
3144
3145 num_nonmacro_input_events++;
3146
3147 /* Write c to the dribble file. If c is a lispy event, write
3148 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3149 If you, dear reader, have a better idea, you've got the source. :-) */
3150 if (dribble)
3151 {
3152 if (INTEGERP (c))
3153 {
3154 if (XUINT (c) < 0x100)
3155 putc (XINT (c), dribble);
3156 else
3157 fprintf (dribble, " 0x%x", (int) XUINT (c));
3158 }
3159 else
3160 {
3161 Lisp_Object dribblee;
3162
3163 /* If it's a structured event, take the event header. */
3164 dribblee = EVENT_HEAD (c);
3165
3166 if (SYMBOLP (dribblee))
3167 {
3168 putc ('<', dribble);
3169 fwrite (XSTRING (SYMBOL_NAME (dribblee))->data, sizeof (char),
3170 STRING_BYTES (XSTRING (SYMBOL_NAME (dribblee))),
3171 dribble);
3172 putc ('>', dribble);
3173 }
3174 }
3175
3176 fflush (dribble);
3177 }
3178}
3179
3180Lisp_Object
3181print_help (object)
3182 Lisp_Object object;
3183{
3184 struct buffer *old = current_buffer;
3185 Fprinc (object, Qnil);
3186 set_buffer_internal (XBUFFER (Vstandard_output));
3187 call0 (intern ("help-mode"));
3188 set_buffer_internal (old);
3189 return Qnil;
3190}
3191
3192/* Copy out or in the info on where C-g should throw to.
3193 This is used when running Lisp code from within get_char,
3194 in case get_char is called recursively.
3195 See read_process_output. */
3196
3197static void
3198save_getcjmp (temp)
3199 jmp_buf temp;
3200{
3201 bcopy (getcjmp, temp, sizeof getcjmp);
3202}
3203
3204static void
3205restore_getcjmp (temp)
3206 jmp_buf temp;
3207{
3208 bcopy (temp, getcjmp, sizeof getcjmp);
3209}
3210\f
3211#ifdef HAVE_MOUSE
3212
3213/* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3214 of this function. */
3215
3216static Lisp_Object
3217tracking_off (old_value)
3218 Lisp_Object old_value;
3219{
3220 do_mouse_tracking = old_value;
3221 if (NILP (old_value))
3222 {
3223 /* Redisplay may have been preempted because there was input
3224 available, and it assumes it will be called again after the
3225 input has been processed. If the only input available was
3226 the sort that we have just disabled, then we need to call
3227 redisplay. */
3228 if (!readable_events (1))
3229 {
3230 redisplay_preserve_echo_area (6);
3231 get_input_pending (&input_pending, 1);
3232 }
3233 }
3234 return Qnil;
3235}
3236
3237DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
3238 doc: /* Evaluate BODY with mouse movement events enabled.
3239Within a `track-mouse' form, mouse motion generates input events that
3240you can read with `read-event'.
3241Normally, mouse motion is ignored.
3242usage: (track-mouse BODY ...) */)
3243 (args)
3244 Lisp_Object args;
3245{
3246 int count = SPECPDL_INDEX ();
3247 Lisp_Object val;
3248
3249 record_unwind_protect (tracking_off, do_mouse_tracking);
3250
3251 do_mouse_tracking = Qt;
3252
3253 val = Fprogn (args);
3254 return unbind_to (count, val);
3255}
3256
3257/* If mouse has moved on some frame, return one of those frames.
3258 Return 0 otherwise. */
3259
3260static FRAME_PTR
3261some_mouse_moved ()
3262{
3263 Lisp_Object tail, frame;
3264
3265 FOR_EACH_FRAME (tail, frame)
3266 {
3267 if (XFRAME (frame)->mouse_moved)
3268 return XFRAME (frame);
3269 }
3270
3271 return 0;
3272}
3273
3274#endif /* HAVE_MOUSE */
3275\f
3276/* Low level keyboard/mouse input.
3277 kbd_buffer_store_event places events in kbd_buffer, and
3278 kbd_buffer_get_event retrieves them. */
3279
3280/* Return true iff there are any events in the queue that read-char
3281 would return. If this returns false, a read-char would block. */
3282static int
3283readable_filtered_events (do_timers_now, filter_events)
3284 int do_timers_now;
3285 int filter_events;
3286{
3287 if (do_timers_now)
3288 timer_check (do_timers_now);
3289
3290 /* If the buffer contains only FOCUS_IN_EVENT events,
3291 and FILTER_EVENTS is nonzero, report it as empty. */
3292 if (kbd_fetch_ptr != kbd_store_ptr)
3293 {
3294 int have_live_event = 1;
3295
3296 if (filter_events)
3297 {
3298 struct input_event *event;
3299
3300 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3301 ? kbd_fetch_ptr
3302 : kbd_buffer);
3303
3304 while (have_live_event && event->kind == FOCUS_IN_EVENT)
3305 {
3306 event++;
3307 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3308 event = kbd_buffer;
3309 if (event == kbd_store_ptr)
3310 have_live_event = 0;
3311 }
3312 }
3313 if (have_live_event) return 1;
3314 }
3315
3316#ifdef HAVE_MOUSE
3317 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3318 return 1;
3319#endif
3320 if (single_kboard)
3321 {
3322 if (current_kboard->kbd_queue_has_data)
3323 return 1;
3324 }
3325 else
3326 {
3327 KBOARD *kb;
3328 for (kb = all_kboards; kb; kb = kb->next_kboard)
3329 if (kb->kbd_queue_has_data)
3330 return 1;
3331 }
3332 return 0;
3333}
3334
3335/* Return true iff there are any events in the queue that read-char
3336 would return. If this returns false, a read-char would block. */
3337static int
3338readable_events (do_timers_now)
3339 int do_timers_now;
3340{
3341 return readable_filtered_events (do_timers_now, 0);
3342}
3343
3344/* Set this for debugging, to have a way to get out */
3345int stop_character;
3346
3347#ifdef MULTI_KBOARD
3348static KBOARD *
3349event_to_kboard (event)
3350 struct input_event *event;
3351{
3352 Lisp_Object frame;
3353 frame = event->frame_or_window;
3354 if (CONSP (frame))
3355 frame = XCAR (frame);
3356 else if (WINDOWP (frame))
3357 frame = WINDOW_FRAME (XWINDOW (frame));
3358
3359 /* There are still some events that don't set this field.
3360 For now, just ignore the problem.
3361 Also ignore dead frames here. */
3362 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3363 return 0;
3364 else
3365 return FRAME_KBOARD (XFRAME (frame));
3366}
3367#endif
3368
3369/* Store an event obtained at interrupt level into kbd_buffer, fifo */
3370
3371void
3372kbd_buffer_store_event (event)
3373 register struct input_event *event;
3374{
3375 if (event->kind == NO_EVENT)
3376 abort ();
3377
3378 if (event->kind == ASCII_KEYSTROKE_EVENT)
3379 {
3380 register int c = event->code & 0377;
3381
3382 if (event->modifiers & ctrl_modifier)
3383 c = make_ctrl_char (c);
3384
3385 c |= (event->modifiers
3386 & (meta_modifier | alt_modifier
3387 | hyper_modifier | super_modifier));
3388
3389 if (c == quit_char)
3390 {
3391 static SIGTYPE interrupt_signal P_ ((int));
3392#ifdef MULTI_KBOARD
3393 KBOARD *kb;
3394 struct input_event *sp;
3395
3396 if (single_kboard
3397 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3398 kb != current_kboard))
3399 {
3400 kb->kbd_queue
3401 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3402 Fcons (make_number (c), Qnil));
3403 kb->kbd_queue_has_data = 1;
3404 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3405 {
3406 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3407 sp = kbd_buffer;
3408
3409 if (event_to_kboard (sp) == kb)
3410 {
3411 sp->kind = NO_EVENT;
3412 sp->frame_or_window = Qnil;
3413 sp->arg = Qnil;
3414 }
3415 }
3416 return;
3417 }
3418#endif
3419
3420 /* If this results in a quit_char being returned to Emacs as
3421 input, set Vlast_event_frame properly. If this doesn't
3422 get returned to Emacs as an event, the next event read
3423 will set Vlast_event_frame again, so this is safe to do. */
3424 {
3425 Lisp_Object focus;
3426
3427 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3428 if (NILP (focus))
3429 focus = event->frame_or_window;
3430 internal_last_event_frame = focus;
3431 Vlast_event_frame = focus;
3432 }
3433
3434 last_event_timestamp = event->timestamp;
3435 interrupt_signal (0 /* dummy */);
3436 return;
3437 }
3438
3439 if (c && c == stop_character)
3440 {
3441 sys_suspend ();
3442 return;
3443 }
3444 }
3445 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3446 Just ignore the second one. */
3447 else if (event->kind == BUFFER_SWITCH_EVENT
3448 && kbd_fetch_ptr != kbd_store_ptr
3449 && kbd_store_ptr->kind == BUFFER_SWITCH_EVENT)
3450 return;
3451
3452 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3453 kbd_store_ptr = kbd_buffer;
3454
3455 /* Don't let the very last slot in the buffer become full,
3456 since that would make the two pointers equal,
3457 and that is indistinguishable from an empty buffer.
3458 Discard the event if it would fill the last slot. */
3459 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3460 {
3461 int idx;
3462
3463#if 0 /* The SELECTION_REQUEST_EVENT case looks bogus, and it's error
3464 prone to assign individual members for other events, in case
3465 the input_event structure is changed. --2000-07-13, gerd. */
3466 struct input_event *sp = kbd_store_ptr;
3467 sp->kind = event->kind;
3468 if (event->kind == SELECTION_REQUEST_EVENT)
3469 {
3470 /* We must not use the ordinary copying code for this case,
3471 since `part' is an enum and copying it might not copy enough
3472 in this case. */
3473 bcopy (event, (char *) sp, sizeof (*event));
3474 }
3475 else
3476
3477 {
3478 sp->code = event->code;
3479 sp->part = event->part;
3480 sp->frame_or_window = event->frame_or_window;
3481 sp->arg = event->arg;
3482 sp->modifiers = event->modifiers;
3483 sp->x = event->x;
3484 sp->y = event->y;
3485 sp->timestamp = event->timestamp;
3486 }
3487#else
3488 *kbd_store_ptr = *event;
3489#endif
3490
3491 idx = 2 * (kbd_store_ptr - kbd_buffer);
3492 ASET (kbd_buffer_gcpro, idx, event->frame_or_window);
3493 ASET (kbd_buffer_gcpro, idx + 1, event->arg);
3494 ++kbd_store_ptr;
3495 }
3496}
3497
3498
3499/* Generate HELP_EVENT input_events in BUFP which has room for
3500 SIZE events. If there's not enough room in BUFP, ignore this
3501 event.
3502
3503 HELP is the help form.
3504
3505 FRAME is the frame on which the help is generated. OBJECT is the
3506 Lisp object where the help was found (a buffer, a string, an
3507 overlay, or nil if neither from a string nor from a buffer. POS is
3508 the position within OBJECT where the help was found.
3509
3510 Value is the number of input_events generated. */
3511
3512int
3513gen_help_event (bufp, size, help, frame, window, object, pos)
3514 struct input_event *bufp;
3515 int size;
3516 Lisp_Object help, frame, object, window;
3517 int pos;
3518{
3519 if (size >= 1)
3520 {
3521 bufp->kind = HELP_EVENT;
3522 bufp->frame_or_window = frame;
3523 bufp->arg = object;
3524 bufp->x = WINDOWP (window) ? window : frame;
3525 bufp->y = help;
3526 bufp->code = pos;
3527 return 1;
3528 }
3529 return 0;
3530}
3531
3532
3533/* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3534
3535void
3536kbd_buffer_store_help_event (frame, help)
3537 Lisp_Object frame, help;
3538{
3539 struct input_event event;
3540
3541 event.kind = HELP_EVENT;
3542 event.frame_or_window = frame;
3543 event.arg = Qnil;
3544 event.x = Qnil;
3545 event.y = help;
3546 event.code = 0;
3547 kbd_buffer_store_event (&event);
3548}
3549
3550\f
3551/* Discard any mouse events in the event buffer by setting them to
3552 NO_EVENT. */
3553void
3554discard_mouse_events ()
3555{
3556 struct input_event *sp;
3557 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3558 {
3559 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3560 sp = kbd_buffer;
3561
3562 if (sp->kind == MOUSE_CLICK_EVENT
3563#ifdef WINDOWSNT
3564 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
3565#endif
3566 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3567 {
3568 sp->kind = NO_EVENT;
3569 }
3570 }
3571}
3572
3573
3574/* Return non-zero if there are any real events waiting in the event
3575 buffer, not counting `NO_EVENT's.
3576
3577 If DISCARD is non-zero, discard NO_EVENT events at the front of
3578 the input queue, possibly leaving the input queue empty if there
3579 are no real input events. */
3580
3581int
3582kbd_buffer_events_waiting (discard)
3583 int discard;
3584{
3585 struct input_event *sp;
3586
3587 for (sp = kbd_fetch_ptr;
3588 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3589 ++sp)
3590 {
3591 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3592 sp = kbd_buffer;
3593 }
3594
3595 if (discard)
3596 kbd_fetch_ptr = sp;
3597
3598 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3599}
3600
3601\f
3602/* Clear input event EVENT. */
3603
3604static INLINE void
3605clear_event (event)
3606 struct input_event *event;
3607{
3608 int idx = 2 * (event - kbd_buffer);
3609 ASET (kbd_buffer_gcpro, idx, Qnil);
3610 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
3611 event->kind = NO_EVENT;
3612}
3613
3614
3615/* Read one event from the event buffer, waiting if necessary.
3616 The value is a Lisp object representing the event.
3617 The value is nil for an event that should be ignored,
3618 or that was handled here.
3619 We always read and discard one event. */
3620
3621static Lisp_Object
3622kbd_buffer_get_event (kbp, used_mouse_menu)
3623 KBOARD **kbp;
3624 int *used_mouse_menu;
3625{
3626 register int c;
3627 Lisp_Object obj;
3628
3629 if (noninteractive)
3630 {
3631 c = getchar ();
3632 XSETINT (obj, c);
3633 *kbp = current_kboard;
3634 return obj;
3635 }
3636
3637 /* Wait until there is input available. */
3638 for (;;)
3639 {
3640 if (kbd_fetch_ptr != kbd_store_ptr)
3641 break;
3642#ifdef HAVE_MOUSE
3643 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3644 break;
3645#endif
3646
3647 /* If the quit flag is set, then read_char will return
3648 quit_char, so that counts as "available input." */
3649 if (!NILP (Vquit_flag))
3650 quit_throw_to_read_char ();
3651
3652 /* One way or another, wait until input is available; then, if
3653 interrupt handlers have not read it, read it now. */
3654
3655#ifdef OLDVMS
3656 wait_for_kbd_input ();
3657#else
3658/* Note SIGIO has been undef'd if FIONREAD is missing. */
3659#ifdef SIGIO
3660 gobble_input (0);
3661#endif /* SIGIO */
3662 if (kbd_fetch_ptr != kbd_store_ptr)
3663 break;
3664#ifdef HAVE_MOUSE
3665 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3666 break;
3667#endif
3668 {
3669 Lisp_Object minus_one;
3670
3671 XSETINT (minus_one, -1);
3672 wait_reading_process_input (0, 0, minus_one, 1);
3673
3674 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3675 /* Pass 1 for EXPECT since we just waited to have input. */
3676 read_avail_input (1);
3677 }
3678#endif /* not VMS */
3679 }
3680
3681 if (CONSP (Vunread_command_events))
3682 {
3683 Lisp_Object first;
3684 first = XCAR (Vunread_command_events);
3685 Vunread_command_events = XCDR (Vunread_command_events);
3686 *kbp = current_kboard;
3687 return first;
3688 }
3689
3690 /* At this point, we know that there is a readable event available
3691 somewhere. If the event queue is empty, then there must be a
3692 mouse movement enabled and available. */
3693 if (kbd_fetch_ptr != kbd_store_ptr)
3694 {
3695 struct input_event *event;
3696
3697 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3698 ? kbd_fetch_ptr
3699 : kbd_buffer);
3700
3701 last_event_timestamp = event->timestamp;
3702
3703#ifdef MULTI_KBOARD
3704 *kbp = event_to_kboard (event);
3705 if (*kbp == 0)
3706 *kbp = current_kboard; /* Better than returning null ptr? */
3707#else
3708 *kbp = &the_only_kboard;
3709#endif
3710
3711 obj = Qnil;
3712
3713 /* These two kinds of events get special handling
3714 and don't actually appear to the command loop.
3715 We return nil for them. */
3716 if (event->kind == SELECTION_REQUEST_EVENT)
3717 {
3718#ifdef HAVE_X11
3719 struct input_event copy;
3720
3721 /* Remove it from the buffer before processing it,
3722 since otherwise swallow_events will see it
3723 and process it again. */
3724 copy = *event;
3725 kbd_fetch_ptr = event + 1;
3726 input_pending = readable_events (0);
3727 x_handle_selection_request (&copy);
3728#else
3729 /* We're getting selection request events, but we don't have
3730 a window system. */
3731 abort ();
3732#endif
3733 }
3734
3735 else if (event->kind == SELECTION_CLEAR_EVENT)
3736 {
3737#ifdef HAVE_X11
3738 struct input_event copy;
3739
3740 /* Remove it from the buffer before processing it. */
3741 copy = *event;
3742 kbd_fetch_ptr = event + 1;
3743 input_pending = readable_events (0);
3744 x_handle_selection_clear (&copy);
3745#else
3746 /* We're getting selection request events, but we don't have
3747 a window system. */
3748 abort ();
3749#endif
3750 }
3751#if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
3752 else if (event->kind == DELETE_WINDOW_EVENT)
3753 {
3754 /* Make an event (delete-frame (FRAME)). */
3755 obj = Fcons (event->frame_or_window, Qnil);
3756 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
3757 kbd_fetch_ptr = event + 1;
3758 }
3759#endif
3760#if defined (HAVE_X11) || defined (HAVE_NTGUI)
3761 else if (event->kind == ICONIFY_EVENT)
3762 {
3763 /* Make an event (iconify-frame (FRAME)). */
3764 obj = Fcons (event->frame_or_window, Qnil);
3765 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
3766 kbd_fetch_ptr = event + 1;
3767 }
3768 else if (event->kind == DEICONIFY_EVENT)
3769 {
3770 /* Make an event (make-frame-visible (FRAME)). */
3771 obj = Fcons (event->frame_or_window, Qnil);
3772 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
3773 kbd_fetch_ptr = event + 1;
3774 }
3775#endif
3776 else if (event->kind == BUFFER_SWITCH_EVENT)
3777 {
3778 /* The value doesn't matter here; only the type is tested. */
3779 XSETBUFFER (obj, current_buffer);
3780 kbd_fetch_ptr = event + 1;
3781 }
3782#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS)
3783 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
3784 {
3785 kbd_fetch_ptr = event + 1;
3786 input_pending = readable_events (0);
3787 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
3788 x_activate_menubar (XFRAME (event->frame_or_window));
3789 }
3790#endif
3791#ifdef WINDOWSNT
3792 else if (event->kind == LANGUAGE_CHANGE_EVENT)
3793 {
3794 /* Make an event (language-change (FRAME CHARSET LCID)). */
3795 obj = Fcons (event->modifiers, Qnil);
3796 obj = Fcons (event->code, obj);
3797 obj = Fcons (event->frame_or_window, obj);
3798 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
3799 kbd_fetch_ptr = event + 1;
3800 }
3801#endif
3802 else if (event->kind == SAVE_SESSION_EVENT)
3803 {
3804 obj = Fcons (Qsave_session, Qnil);
3805 kbd_fetch_ptr = event + 1;
3806 }
3807 /* Just discard these, by returning nil.
3808 With MULTI_KBOARD, these events are used as placeholders
3809 when we need to randomly delete events from the queue.
3810 (They shouldn't otherwise be found in the buffer,
3811 but on some machines it appears they do show up
3812 even without MULTI_KBOARD.) */
3813 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
3814 mouse events during a popup-menu call. */
3815 else if (event->kind == NO_EVENT)
3816 kbd_fetch_ptr = event + 1;
3817 else if (event->kind == HELP_EVENT)
3818 {
3819 Lisp_Object object, position, help, frame, window;
3820
3821 frame = event->frame_or_window;
3822 object = event->arg;
3823 position = make_number (event->code);
3824 window = event->x;
3825 help = event->y;
3826 clear_event (event);
3827
3828 kbd_fetch_ptr = event + 1;
3829 if (!WINDOWP (window))
3830 window = Qnil;
3831 obj = Fcons (Qhelp_echo,
3832 list5 (frame, help, window, object, position));
3833 }
3834 else if (event->kind == FOCUS_IN_EVENT)
3835 {
3836 /* Notification of a FocusIn event. The frame receiving the
3837 focus is in event->frame_or_window. Generate a
3838 switch-frame event if necessary. */
3839 Lisp_Object frame, focus;
3840
3841 frame = event->frame_or_window;
3842 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3843 if (FRAMEP (focus))
3844 frame = focus;
3845
3846 if (!EQ (frame, internal_last_event_frame)
3847 && !EQ (frame, selected_frame))
3848 obj = make_lispy_switch_frame (frame);
3849 internal_last_event_frame = frame;
3850 kbd_fetch_ptr = event + 1;
3851 }
3852 else if (event->kind == SELECT_WINDOW_EVENT)
3853 {
3854 /* Make an event (select-window (WINDOW)). */
3855 obj = Fcons (event->frame_or_window, Qnil);
3856 obj = Fcons (Qselect_window, Fcons (obj, Qnil));
3857
3858 kbd_fetch_ptr = event + 1;
3859 }
3860 else
3861 {
3862 /* If this event is on a different frame, return a switch-frame this
3863 time, and leave the event in the queue for next time. */
3864 Lisp_Object frame;
3865 Lisp_Object focus;
3866
3867 frame = event->frame_or_window;
3868 if (CONSP (frame))
3869 frame = XCAR (frame);
3870 else if (WINDOWP (frame))
3871 frame = WINDOW_FRAME (XWINDOW (frame));
3872
3873 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3874 if (! NILP (focus))
3875 frame = focus;
3876
3877 if (! EQ (frame, internal_last_event_frame)
3878 && !EQ (frame, selected_frame))
3879 obj = make_lispy_switch_frame (frame);
3880 internal_last_event_frame = frame;
3881
3882 /* If we didn't decide to make a switch-frame event, go ahead
3883 and build a real event from the queue entry. */
3884
3885 if (NILP (obj))
3886 {
3887 obj = make_lispy_event (event);
3888
3889#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
3890 /* If this was a menu selection, then set the flag to inhibit
3891 writing to last_nonmenu_event. Don't do this if the event
3892 we're returning is (menu-bar), though; that indicates the
3893 beginning of the menu sequence, and we might as well leave
3894 that as the `event with parameters' for this selection. */
3895 if (used_mouse_menu
3896 && !EQ (event->frame_or_window, event->arg)
3897 && (event->kind == MENU_BAR_EVENT
3898 || event->kind == TOOL_BAR_EVENT))
3899 *used_mouse_menu = 1;
3900#endif
3901
3902 /* Wipe out this event, to catch bugs. */
3903 clear_event (event);
3904 kbd_fetch_ptr = event + 1;
3905 }
3906 }
3907 }
3908#ifdef HAVE_MOUSE
3909 /* Try generating a mouse motion event. */
3910 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3911 {
3912 FRAME_PTR f = some_mouse_moved ();
3913 Lisp_Object bar_window;
3914 enum scroll_bar_part part;
3915 Lisp_Object x, y;
3916 unsigned long time;
3917
3918 *kbp = current_kboard;
3919 /* Note that this uses F to determine which display to look at.
3920 If there is no valid info, it does not store anything
3921 so x remains nil. */
3922 x = Qnil;
3923 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
3924
3925 obj = Qnil;
3926
3927 /* Decide if we should generate a switch-frame event. Don't
3928 generate switch-frame events for motion outside of all Emacs
3929 frames. */
3930 if (!NILP (x) && f)
3931 {
3932 Lisp_Object frame;
3933
3934 frame = FRAME_FOCUS_FRAME (f);
3935 if (NILP (frame))
3936 XSETFRAME (frame, f);
3937
3938 if (! EQ (frame, internal_last_event_frame)
3939 && !EQ (frame, selected_frame))
3940 obj = make_lispy_switch_frame (frame);
3941 internal_last_event_frame = frame;
3942 }
3943
3944 /* If we didn't decide to make a switch-frame event, go ahead and
3945 return a mouse-motion event. */
3946 if (!NILP (x) && NILP (obj))
3947 obj = make_lispy_movement (f, bar_window, part, x, y, time);
3948 }
3949#endif /* HAVE_MOUSE */
3950 else
3951 /* We were promised by the above while loop that there was
3952 something for us to read! */
3953 abort ();
3954
3955 input_pending = readable_events (0);
3956
3957 Vlast_event_frame = internal_last_event_frame;
3958
3959 return (obj);
3960}
3961\f
3962/* Process any events that are not user-visible,
3963 then return, without reading any user-visible events. */
3964
3965void
3966swallow_events (do_display)
3967 int do_display;
3968{
3969 int old_timers_run;
3970
3971 while (kbd_fetch_ptr != kbd_store_ptr)
3972 {
3973 struct input_event *event;
3974
3975 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3976 ? kbd_fetch_ptr
3977 : kbd_buffer);
3978
3979 last_event_timestamp = event->timestamp;
3980
3981 /* These two kinds of events get special handling
3982 and don't actually appear to the command loop. */
3983 if (event->kind == SELECTION_REQUEST_EVENT)
3984 {
3985#ifdef HAVE_X11
3986 struct input_event copy;
3987
3988 /* Remove it from the buffer before processing it,
3989 since otherwise swallow_events called recursively could see it
3990 and process it again. */
3991 copy = *event;
3992 kbd_fetch_ptr = event + 1;
3993 input_pending = readable_events (0);
3994 x_handle_selection_request (&copy);
3995#else
3996 /* We're getting selection request events, but we don't have
3997 a window system. */
3998 abort ();
3999#endif
4000 }
4001
4002 else if (event->kind == SELECTION_CLEAR_EVENT)
4003 {
4004#ifdef HAVE_X11
4005 struct input_event copy;
4006
4007 /* Remove it from the buffer before processing it, */
4008 copy = *event;
4009
4010 kbd_fetch_ptr = event + 1;
4011 input_pending = readable_events (0);
4012 x_handle_selection_clear (&copy);
4013#else
4014 /* We're getting selection request events, but we don't have
4015 a window system. */
4016 abort ();
4017#endif
4018 }
4019 else
4020 break;
4021 }
4022
4023 old_timers_run = timers_run;
4024 get_input_pending (&input_pending, 1);
4025
4026 if (timers_run != old_timers_run && do_display)
4027 redisplay_preserve_echo_area (7);
4028}
4029\f
4030/* Record the start of when Emacs is idle,
4031 for the sake of running idle-time timers. */
4032
4033void
4034timer_start_idle ()
4035{
4036 Lisp_Object timers;
4037
4038 /* If we are already in the idle state, do nothing. */
4039 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4040 return;
4041
4042 EMACS_GET_TIME (timer_idleness_start_time);
4043
4044 timer_last_idleness_start_time = timer_idleness_start_time;
4045
4046 /* Mark all idle-time timers as once again candidates for running. */
4047 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4048 {
4049 Lisp_Object timer;
4050
4051 timer = XCAR (timers);
4052
4053 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4054 continue;
4055 XVECTOR (timer)->contents[0] = Qnil;
4056 }
4057}
4058
4059/* Record that Emacs is no longer idle, so stop running idle-time timers. */
4060
4061void
4062timer_stop_idle ()
4063{
4064 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4065}
4066
4067/* This is only for debugging. */
4068struct input_event last_timer_event;
4069
4070/* Check whether a timer has fired. To prevent larger problems we simply
4071 disregard elements that are not proper timers. Do not make a circular
4072 timer list for the time being.
4073
4074 Returns the number of seconds to wait until the next timer fires. If a
4075 timer is triggering now, return zero seconds.
4076 If no timer is active, return -1 seconds.
4077
4078 If a timer is ripe, we run it, with quitting turned off.
4079
4080 DO_IT_NOW is now ignored. It used to mean that we should
4081 run the timer directly instead of queueing a timer-event.
4082 Now we always run timers directly. */
4083
4084EMACS_TIME
4085timer_check (do_it_now)
4086 int do_it_now;
4087{
4088 EMACS_TIME nexttime;
4089 EMACS_TIME now, idleness_now;
4090 Lisp_Object timers, idle_timers, chosen_timer;
4091 struct gcpro gcpro1, gcpro2, gcpro3;
4092
4093 EMACS_SET_SECS (nexttime, -1);
4094 EMACS_SET_USECS (nexttime, -1);
4095
4096 /* Always consider the ordinary timers. */
4097 timers = Vtimer_list;
4098 /* Consider the idle timers only if Emacs is idle. */
4099 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4100 idle_timers = Vtimer_idle_list;
4101 else
4102 idle_timers = Qnil;
4103 chosen_timer = Qnil;
4104 GCPRO3 (timers, idle_timers, chosen_timer);
4105
4106 if (CONSP (timers) || CONSP (idle_timers))
4107 {
4108 EMACS_GET_TIME (now);
4109 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4110 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4111 }
4112
4113 while (CONSP (timers) || CONSP (idle_timers))
4114 {
4115 Lisp_Object *vector;
4116 Lisp_Object timer = Qnil, idle_timer = Qnil;
4117 EMACS_TIME timer_time, idle_timer_time;
4118 EMACS_TIME difference, timer_difference, idle_timer_difference;
4119
4120 /* Skip past invalid timers and timers already handled. */
4121 if (!NILP (timers))
4122 {
4123 timer = XCAR (timers);
4124 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4125 {
4126 timers = XCDR (timers);
4127 continue;
4128 }
4129 vector = XVECTOR (timer)->contents;
4130
4131 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4132 || !INTEGERP (vector[3])
4133 || ! NILP (vector[0]))
4134 {
4135 timers = XCDR (timers);
4136 continue;
4137 }
4138 }
4139 if (!NILP (idle_timers))
4140 {
4141 timer = XCAR (idle_timers);
4142 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4143 {
4144 idle_timers = XCDR (idle_timers);
4145 continue;
4146 }
4147 vector = XVECTOR (timer)->contents;
4148
4149 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4150 || !INTEGERP (vector[3])
4151 || ! NILP (vector[0]))
4152 {
4153 idle_timers = XCDR (idle_timers);
4154 continue;
4155 }
4156 }
4157
4158 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4159 based on the next ordinary timer.
4160 TIMER_DIFFERENCE is the distance in time from NOW to when
4161 this timer becomes ripe (negative if it's already ripe). */
4162 if (!NILP (timers))
4163 {
4164 timer = XCAR (timers);
4165 vector = XVECTOR (timer)->contents;
4166 EMACS_SET_SECS (timer_time,
4167 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4168 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4169 EMACS_SUB_TIME (timer_difference, timer_time, now);
4170 }
4171
4172 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4173 based on the next idle timer. */
4174 if (!NILP (idle_timers))
4175 {
4176 idle_timer = XCAR (idle_timers);
4177 vector = XVECTOR (idle_timer)->contents;
4178 EMACS_SET_SECS (idle_timer_time,
4179 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4180 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4181 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4182 }
4183
4184 /* Decide which timer is the next timer,
4185 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4186 Also step down the list where we found that timer. */
4187
4188 if (! NILP (timers) && ! NILP (idle_timers))
4189 {
4190 EMACS_TIME temp;
4191 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4192 if (EMACS_TIME_NEG_P (temp))
4193 {
4194 chosen_timer = timer;
4195 timers = XCDR (timers);
4196 difference = timer_difference;
4197 }
4198 else
4199 {
4200 chosen_timer = idle_timer;
4201 idle_timers = XCDR (idle_timers);
4202 difference = idle_timer_difference;
4203 }
4204 }
4205 else if (! NILP (timers))
4206 {
4207 chosen_timer = timer;
4208 timers = XCDR (timers);
4209 difference = timer_difference;
4210 }
4211 else
4212 {
4213 chosen_timer = idle_timer;
4214 idle_timers = XCDR (idle_timers);
4215 difference = idle_timer_difference;
4216 }
4217 vector = XVECTOR (chosen_timer)->contents;
4218
4219 /* If timer is ripe, run it if it hasn't been run. */
4220 if (EMACS_TIME_NEG_P (difference)
4221 || (EMACS_SECS (difference) == 0
4222 && EMACS_USECS (difference) == 0))
4223 {
4224 if (NILP (vector[0]))
4225 {
4226 int was_locked = single_kboard;
4227 int count = SPECPDL_INDEX ();
4228 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4229
4230 /* Mark the timer as triggered to prevent problems if the lisp
4231 code fails to reschedule it right. */
4232 vector[0] = Qt;
4233
4234 specbind (Qinhibit_quit, Qt);
4235
4236 call1 (Qtimer_event_handler, chosen_timer);
4237 Vdeactivate_mark = old_deactivate_mark;
4238 timers_run++;
4239 unbind_to (count, Qnil);
4240
4241 /* Resume allowing input from any kboard, if that was true before. */
4242 if (!was_locked)
4243 any_kboard_state ();
4244
4245 /* Since we have handled the event,
4246 we don't need to tell the caller to wake up and do it. */
4247 }
4248 }
4249 else
4250 /* When we encounter a timer that is still waiting,
4251 return the amount of time to wait before it is ripe. */
4252 {
4253 UNGCPRO;
4254 return difference;
4255 }
4256 }
4257
4258 /* No timers are pending in the future. */
4259 /* Return 0 if we generated an event, and -1 if not. */
4260 UNGCPRO;
4261 return nexttime;
4262}
4263\f
4264/* Caches for modify_event_symbol. */
4265static Lisp_Object accent_key_syms;
4266static Lisp_Object func_key_syms;
4267static Lisp_Object mouse_syms;
4268#ifdef WINDOWSNT
4269static Lisp_Object mouse_wheel_syms;
4270#endif
4271static Lisp_Object drag_n_drop_syms;
4272
4273/* This is a list of keysym codes for special "accent" characters.
4274 It parallels lispy_accent_keys. */
4275
4276static int lispy_accent_codes[] =
4277{
4278#ifdef XK_dead_circumflex
4279 XK_dead_circumflex,
4280#else
4281 0,
4282#endif
4283#ifdef XK_dead_grave
4284 XK_dead_grave,
4285#else
4286 0,
4287#endif
4288#ifdef XK_dead_tilde
4289 XK_dead_tilde,
4290#else
4291 0,
4292#endif
4293#ifdef XK_dead_diaeresis
4294 XK_dead_diaeresis,
4295#else
4296 0,
4297#endif
4298#ifdef XK_dead_macron
4299 XK_dead_macron,
4300#else
4301 0,
4302#endif
4303#ifdef XK_dead_degree
4304 XK_dead_degree,
4305#else
4306 0,
4307#endif
4308#ifdef XK_dead_acute
4309 XK_dead_acute,
4310#else
4311 0,
4312#endif
4313#ifdef XK_dead_cedilla
4314 XK_dead_cedilla,
4315#else
4316 0,
4317#endif
4318#ifdef XK_dead_breve
4319 XK_dead_breve,
4320#else
4321 0,
4322#endif
4323#ifdef XK_dead_ogonek
4324 XK_dead_ogonek,
4325#else
4326 0,
4327#endif
4328#ifdef XK_dead_caron
4329 XK_dead_caron,
4330#else
4331 0,
4332#endif
4333#ifdef XK_dead_doubleacute
4334 XK_dead_doubleacute,
4335#else
4336 0,
4337#endif
4338#ifdef XK_dead_abovedot
4339 XK_dead_abovedot,
4340#else
4341 0,
4342#endif
4343};
4344
4345/* This is a list of Lisp names for special "accent" characters.
4346 It parallels lispy_accent_codes. */
4347
4348static char *lispy_accent_keys[] =
4349{
4350 "dead-circumflex",
4351 "dead-grave",
4352 "dead-tilde",
4353 "dead-diaeresis",
4354 "dead-macron",
4355 "dead-degree",
4356 "dead-acute",
4357 "dead-cedilla",
4358 "dead-breve",
4359 "dead-ogonek",
4360 "dead-caron",
4361 "dead-doubleacute",
4362 "dead-abovedot",
4363};
4364
4365#ifdef HAVE_NTGUI
4366#define FUNCTION_KEY_OFFSET 0x0
4367
4368char *lispy_function_keys[] =
4369 {
4370 0, /* 0 */
4371
4372 0, /* VK_LBUTTON 0x01 */
4373 0, /* VK_RBUTTON 0x02 */
4374 "cancel", /* VK_CANCEL 0x03 */
4375 0, /* VK_MBUTTON 0x04 */
4376
4377 0, 0, 0, /* 0x05 .. 0x07 */
4378
4379 "backspace", /* VK_BACK 0x08 */
4380 "tab", /* VK_TAB 0x09 */
4381
4382 0, 0, /* 0x0A .. 0x0B */
4383
4384 "clear", /* VK_CLEAR 0x0C */
4385 "return", /* VK_RETURN 0x0D */
4386
4387 0, 0, /* 0x0E .. 0x0F */
4388
4389 0, /* VK_SHIFT 0x10 */
4390 0, /* VK_CONTROL 0x11 */
4391 0, /* VK_MENU 0x12 */
4392 "pause", /* VK_PAUSE 0x13 */
4393 "capslock", /* VK_CAPITAL 0x14 */
4394
4395 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4396
4397 "escape", /* VK_ESCAPE 0x1B */
4398
4399 0, 0, 0, 0, /* 0x1C .. 0x1F */
4400
4401 0, /* VK_SPACE 0x20 */
4402 "prior", /* VK_PRIOR 0x21 */
4403 "next", /* VK_NEXT 0x22 */
4404 "end", /* VK_END 0x23 */
4405 "home", /* VK_HOME 0x24 */
4406 "left", /* VK_LEFT 0x25 */
4407 "up", /* VK_UP 0x26 */
4408 "right", /* VK_RIGHT 0x27 */
4409 "down", /* VK_DOWN 0x28 */
4410 "select", /* VK_SELECT 0x29 */
4411 "print", /* VK_PRINT 0x2A */
4412 "execute", /* VK_EXECUTE 0x2B */
4413 "snapshot", /* VK_SNAPSHOT 0x2C */
4414 "insert", /* VK_INSERT 0x2D */
4415 "delete", /* VK_DELETE 0x2E */
4416 "help", /* VK_HELP 0x2F */
4417
4418 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4419
4420 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4421
4422 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4423
4424 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4425
4426 0, 0, 0, 0, 0, 0, 0, 0, 0,
4427 0, 0, 0, 0, 0, 0, 0, 0, 0,
4428 0, 0, 0, 0, 0, 0, 0, 0,
4429
4430 "lwindow", /* VK_LWIN 0x5B */
4431 "rwindow", /* VK_RWIN 0x5C */
4432 "apps", /* VK_APPS 0x5D */
4433
4434 0, 0, /* 0x5E .. 0x5F */
4435
4436 "kp-0", /* VK_NUMPAD0 0x60 */
4437 "kp-1", /* VK_NUMPAD1 0x61 */
4438 "kp-2", /* VK_NUMPAD2 0x62 */
4439 "kp-3", /* VK_NUMPAD3 0x63 */
4440 "kp-4", /* VK_NUMPAD4 0x64 */
4441 "kp-5", /* VK_NUMPAD5 0x65 */
4442 "kp-6", /* VK_NUMPAD6 0x66 */
4443 "kp-7", /* VK_NUMPAD7 0x67 */
4444 "kp-8", /* VK_NUMPAD8 0x68 */
4445 "kp-9", /* VK_NUMPAD9 0x69 */
4446 "kp-multiply", /* VK_MULTIPLY 0x6A */
4447 "kp-add", /* VK_ADD 0x6B */
4448 "kp-separator", /* VK_SEPARATOR 0x6C */
4449 "kp-subtract", /* VK_SUBTRACT 0x6D */
4450 "kp-decimal", /* VK_DECIMAL 0x6E */
4451 "kp-divide", /* VK_DIVIDE 0x6F */
4452 "f1", /* VK_F1 0x70 */
4453 "f2", /* VK_F2 0x71 */
4454 "f3", /* VK_F3 0x72 */
4455 "f4", /* VK_F4 0x73 */
4456 "f5", /* VK_F5 0x74 */
4457 "f6", /* VK_F6 0x75 */
4458 "f7", /* VK_F7 0x76 */
4459 "f8", /* VK_F8 0x77 */
4460 "f9", /* VK_F9 0x78 */
4461 "f10", /* VK_F10 0x79 */
4462 "f11", /* VK_F11 0x7A */
4463 "f12", /* VK_F12 0x7B */
4464 "f13", /* VK_F13 0x7C */
4465 "f14", /* VK_F14 0x7D */
4466 "f15", /* VK_F15 0x7E */
4467 "f16", /* VK_F16 0x7F */
4468 "f17", /* VK_F17 0x80 */
4469 "f18", /* VK_F18 0x81 */
4470 "f19", /* VK_F19 0x82 */
4471 "f20", /* VK_F20 0x83 */
4472 "f21", /* VK_F21 0x84 */
4473 "f22", /* VK_F22 0x85 */
4474 "f23", /* VK_F23 0x86 */
4475 "f24", /* VK_F24 0x87 */
4476
4477 0, 0, 0, 0, /* 0x88 .. 0x8B */
4478 0, 0, 0, 0, /* 0x8C .. 0x8F */
4479
4480 "kp-numlock", /* VK_NUMLOCK 0x90 */
4481 "scroll", /* VK_SCROLL 0x91 */
4482
4483 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4484 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4485 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4486 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4487 "kp-end", /* VK_NUMPAD_END 0x96 */
4488 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4489 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4490 "kp-up", /* VK_NUMPAD_UP 0x99 */
4491 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4492 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4493 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4494 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4495
4496 0, 0, /* 0x9E .. 0x9F */
4497
4498 /*
4499 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4500 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4501 * No other API or message will distinguish left and right keys this way.
4502 */
4503 /* 0xA0 .. 0xEF */
4504
4505 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4506 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4507 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4508 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4509 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4510
4511 /* 0xF0 .. 0xF5 */
4512
4513 0, 0, 0, 0, 0, 0,
4514
4515 "attn", /* VK_ATTN 0xF6 */
4516 "crsel", /* VK_CRSEL 0xF7 */
4517 "exsel", /* VK_EXSEL 0xF8 */
4518 "ereof", /* VK_EREOF 0xF9 */
4519 "play", /* VK_PLAY 0xFA */
4520 "zoom", /* VK_ZOOM 0xFB */
4521 "noname", /* VK_NONAME 0xFC */
4522 "pa1", /* VK_PA1 0xFD */
4523 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4524 0 /* 0xFF */
4525 };
4526
4527#else /* not HAVE_NTGUI */
4528
4529#ifdef XK_kana_A
4530static char *lispy_kana_keys[] =
4531 {
4532 /* X Keysym value */
4533 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4534 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4535 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4536 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4537 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4538 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4539 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4540 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4541 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4542 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4543 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4544 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4545 "kana-i", "kana-u", "kana-e", "kana-o",
4546 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4547 "prolongedsound", "kana-A", "kana-I", "kana-U",
4548 "kana-E", "kana-O", "kana-KA", "kana-KI",
4549 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4550 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4551 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4552 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4553 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4554 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4555 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4556 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4557 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4558 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4559 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4560 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4561 };
4562#endif /* XK_kana_A */
4563
4564#define FUNCTION_KEY_OFFSET 0xff00
4565
4566/* You'll notice that this table is arranged to be conveniently
4567 indexed by X Windows keysym values. */
4568static char *lispy_function_keys[] =
4569 {
4570 /* X Keysym value */
4571
4572 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4573 "backspace", "tab", "linefeed", "clear",
4574 0, "return", 0, 0,
4575 0, 0, 0, "pause", /* 0xff10...1f */
4576 0, 0, 0, 0, 0, 0, 0, "escape",
4577 0, 0, 0, 0,
4578 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4579 "romaji", "hiragana", "katakana", "hiragana-katakana",
4580 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4581 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4582 "eisu-toggle", /* 0xff30...3f */
4583 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4584 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4585
4586 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4587 "down", "prior", "next", "end",
4588 "begin", 0, 0, 0, 0, 0, 0, 0,
4589 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4590 "print",
4591 "execute",
4592 "insert",
4593 0, /* 0xff64 */
4594 "undo",
4595 "redo",
4596 "menu",
4597 "find",
4598 "cancel",
4599 "help",
4600 "break", /* 0xff6b */
4601
4602 0, 0, 0, 0,
4603 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4604 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4605 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4606 0, 0, 0, 0, 0, 0, 0, 0,
4607 "kp-tab", /* 0xff89 */
4608 0, 0, 0,
4609 "kp-enter", /* 0xff8d */
4610 0, 0, 0,
4611 "kp-f1", /* 0xff91 */
4612 "kp-f2",
4613 "kp-f3",
4614 "kp-f4",
4615 "kp-home", /* 0xff95 */
4616 "kp-left",
4617 "kp-up",
4618 "kp-right",
4619 "kp-down",
4620 "kp-prior", /* kp-page-up */
4621 "kp-next", /* kp-page-down */
4622 "kp-end",
4623 "kp-begin",
4624 "kp-insert",
4625 "kp-delete",
4626 0, /* 0xffa0 */
4627 0, 0, 0, 0, 0, 0, 0, 0, 0,
4628 "kp-multiply", /* 0xffaa */
4629 "kp-add",
4630 "kp-separator",
4631 "kp-subtract",
4632 "kp-decimal",
4633 "kp-divide", /* 0xffaf */
4634 "kp-0", /* 0xffb0 */
4635 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4636 0, /* 0xffba */
4637 0, 0,
4638 "kp-equal", /* 0xffbd */
4639 "f1", /* 0xffbe */ /* IsFunctionKey */
4640 "f2",
4641 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4642 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4643 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4644 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4645 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4646 0, 0, 0, 0, 0, 0, 0, 0,
4647 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4648 0, 0, 0, 0, 0, 0, 0, "delete"
4649 };
4650
4651/* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4652#define ISO_FUNCTION_KEY_OFFSET 0xfe00
4653
4654static char *iso_lispy_function_keys[] =
4655 {
4656 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4657 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4658 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4659 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4660 "iso-lefttab", /* 0xfe20 */
4661 "iso-move-line-up", "iso-move-line-down",
4662 "iso-partial-line-up", "iso-partial-line-down",
4663 "iso-partial-space-left", "iso-partial-space-right",
4664 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4665 "iso-release-margin-left", "iso-release-margin-right",
4666 "iso-release-both-margins",
4667 "iso-fast-cursor-left", "iso-fast-cursor-right",
4668 "iso-fast-cursor-up", "iso-fast-cursor-down",
4669 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4670 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4671 };
4672
4673#endif /* not HAVE_NTGUI */
4674
4675Lisp_Object Vlispy_mouse_stem;
4676
4677#ifdef WINDOWSNT
4678/* mouse-wheel events are generated by the wheel on devices such as
4679 the MS Intellimouse. The wheel sits in between the left and right
4680 mouse buttons, and is typically used to scroll or zoom the window
4681 underneath the pointer. mouse-wheel events specify the object on
4682 which they operate, and a delta corresponding to the amount and
4683 direction that the wheel is rotated. Clicking the mouse-wheel
4684 generates a mouse-2 event. */
4685static char *lispy_mouse_wheel_names[] =
4686{
4687 "mouse-wheel"
4688};
4689
4690#endif /* WINDOWSNT */
4691
4692/* drag-n-drop events are generated when a set of selected files are
4693 dragged from another application and dropped onto an Emacs window. */
4694static char *lispy_drag_n_drop_names[] =
4695{
4696 "drag-n-drop"
4697};
4698
4699/* Scroll bar parts. */
4700Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4701Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
4702Lisp_Object Qtop, Qratio;
4703
4704/* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4705Lisp_Object *scroll_bar_parts[] = {
4706 &Qabove_handle, &Qhandle, &Qbelow_handle,
4707 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4708};
4709
4710/* User signal events. */
4711Lisp_Object Qusr1_signal, Qusr2_signal;
4712
4713Lisp_Object *lispy_user_signals[] =
4714{
4715 &Qusr1_signal, &Qusr2_signal
4716};
4717
4718
4719/* A vector, indexed by button number, giving the down-going location
4720 of currently depressed buttons, both scroll bar and non-scroll bar.
4721
4722 The elements have the form
4723 (BUTTON-NUMBER MODIFIER-MASK . REST)
4724 where REST is the cdr of a position as it would be reported in the event.
4725
4726 The make_lispy_event function stores positions here to tell the
4727 difference between click and drag events, and to store the starting
4728 location to be included in drag events. */
4729
4730static Lisp_Object button_down_location;
4731
4732/* Information about the most recent up-going button event: Which
4733 button, what location, and what time. */
4734
4735static int last_mouse_button;
4736static int last_mouse_x;
4737static int last_mouse_y;
4738static unsigned long button_down_time;
4739
4740/* The maximum time between clicks to make a double-click, or Qnil to
4741 disable double-click detection, or Qt for no time limit. */
4742
4743Lisp_Object Vdouble_click_time;
4744
4745/* Maximum number of pixels the mouse may be moved between clicks
4746 to make a double-click. */
4747
4748EMACS_INT double_click_fuzz;
4749
4750/* The number of clicks in this multiple-click. */
4751
4752int double_click_count;
4753
4754/* Given a struct input_event, build the lisp event which represents
4755 it. If EVENT is 0, build a mouse movement event from the mouse
4756 movement buffer, which should have a movement event in it.
4757
4758 Note that events must be passed to this function in the order they
4759 are received; this function stores the location of button presses
4760 in order to build drag events when the button is released. */
4761
4762static Lisp_Object
4763make_lispy_event (event)
4764 struct input_event *event;
4765{
4766 int i;
4767
4768 switch (SWITCH_ENUM_CAST (event->kind))
4769 {
4770 /* A simple keystroke. */
4771 case ASCII_KEYSTROKE_EVENT:
4772 {
4773 Lisp_Object lispy_c;
4774 int c = event->code & 0377;
4775 /* Turn ASCII characters into control characters
4776 when proper. */
4777 if (event->modifiers & ctrl_modifier)
4778 c = make_ctrl_char (c);
4779
4780 /* Add in the other modifier bits. We took care of ctrl_modifier
4781 just above, and the shift key was taken care of by the X code,
4782 and applied to control characters by make_ctrl_char. */
4783 c |= (event->modifiers
4784 & (meta_modifier | alt_modifier
4785 | hyper_modifier | super_modifier));
4786 /* Distinguish Shift-SPC from SPC. */
4787 if ((event->code & 0377) == 040
4788 && event->modifiers & shift_modifier)
4789 c |= shift_modifier;
4790 button_down_time = 0;
4791 XSETFASTINT (lispy_c, c);
4792 return lispy_c;
4793 }
4794
4795 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
4796 {
4797 Lisp_Object lispy_c;
4798
4799 XSETFASTINT (lispy_c, event->code);
4800 return lispy_c;
4801 }
4802
4803 /* A function key. The symbol may need to have modifier prefixes
4804 tacked onto it. */
4805 case NON_ASCII_KEYSTROKE_EVENT:
4806 button_down_time = 0;
4807
4808 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
4809 if (event->code == lispy_accent_codes[i])
4810 return modify_event_symbol (i,
4811 event->modifiers,
4812 Qfunction_key, Qnil,
4813 lispy_accent_keys, &accent_key_syms,
4814 (sizeof (lispy_accent_keys)
4815 / sizeof (lispy_accent_keys[0])));
4816
4817#ifdef XK_kana_A
4818 if (event->code >= 0x400 && event->code < 0x500)
4819 return modify_event_symbol (event->code - 0x400,
4820 event->modifiers & ~shift_modifier,
4821 Qfunction_key, Qnil,
4822 lispy_kana_keys, &func_key_syms,
4823 (sizeof (lispy_kana_keys)
4824 / sizeof (lispy_kana_keys[0])));
4825#endif /* XK_kana_A */
4826
4827#ifdef ISO_FUNCTION_KEY_OFFSET
4828 if (event->code < FUNCTION_KEY_OFFSET
4829 && event->code >= ISO_FUNCTION_KEY_OFFSET)
4830 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
4831 event->modifiers,
4832 Qfunction_key, Qnil,
4833 iso_lispy_function_keys, &func_key_syms,
4834 (sizeof (iso_lispy_function_keys)
4835 / sizeof (iso_lispy_function_keys[0])));
4836#endif
4837
4838 /* Handle system-specific or unknown keysyms. */
4839 if (event->code & (1 << 28)
4840 || event->code - FUNCTION_KEY_OFFSET < 0
4841 || (event->code - FUNCTION_KEY_OFFSET
4842 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
4843 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
4844 {
4845 /* We need to use an alist rather than a vector as the cache
4846 since we can't make a vector long enuf. */
4847 if (NILP (current_kboard->system_key_syms))
4848 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
4849 return modify_event_symbol (event->code,
4850 event->modifiers,
4851 Qfunction_key,
4852 current_kboard->Vsystem_key_alist,
4853 0, &current_kboard->system_key_syms,
4854 (unsigned) -1);
4855 }
4856
4857 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
4858 event->modifiers,
4859 Qfunction_key, Qnil,
4860 lispy_function_keys, &func_key_syms,
4861 (sizeof (lispy_function_keys)
4862 / sizeof (lispy_function_keys[0])));
4863
4864#ifdef HAVE_MOUSE
4865 /* A mouse click. Figure out where it is, decide whether it's
4866 a press, click or drag, and build the appropriate structure. */
4867 case MOUSE_CLICK_EVENT:
4868#ifndef USE_TOOLKIT_SCROLL_BARS
4869 case SCROLL_BAR_CLICK_EVENT:
4870#endif
4871 {
4872 int button = event->code;
4873 int is_double;
4874 Lisp_Object position;
4875 Lisp_Object *start_pos_ptr;
4876 Lisp_Object start_pos;
4877 Lisp_Object window;
4878
4879 position = Qnil;
4880
4881 /* Build the position as appropriate for this mouse click. */
4882 if (event->kind == MOUSE_CLICK_EVENT)
4883 {
4884 int part;
4885 struct frame *f = XFRAME (event->frame_or_window);
4886 Lisp_Object posn;
4887 Lisp_Object string_info = Qnil;
4888 int row, column;
4889
4890 /* Ignore mouse events that were made on frame that
4891 have been deleted. */
4892 if (! FRAME_LIVE_P (f))
4893 return Qnil;
4894
4895 /* EVENT->x and EVENT->y are frame-relative pixel
4896 coordinates at this place. Under old redisplay, COLUMN
4897 and ROW are set to frame relative glyph coordinates
4898 which are then used to determine whether this click is
4899 in a menu (non-toolkit version). */
4900 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
4901 &column, &row, NULL, 1);
4902
4903#ifndef USE_X_TOOLKIT
4904 /* In the non-toolkit version, clicks on the menu bar
4905 are ordinary button events in the event buffer.
4906 Distinguish them, and invoke the menu.
4907
4908 (In the toolkit version, the toolkit handles the menu bar
4909 and Emacs doesn't know about it until after the user
4910 makes a selection.) */
4911 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
4912 && (event->modifiers & down_modifier))
4913 {
4914 Lisp_Object items, item;
4915 int hpos;
4916 int i;
4917
4918#if 0
4919 /* Activate the menu bar on the down event. If the
4920 up event comes in before the menu code can deal with it,
4921 just ignore it. */
4922 if (! (event->modifiers & down_modifier))
4923 return Qnil;
4924#endif
4925
4926 /* Find the menu bar item under `column'. */
4927 item = Qnil;
4928 items = FRAME_MENU_BAR_ITEMS (f);
4929 for (i = 0; i < XVECTOR (items)->size; i += 4)
4930 {
4931 Lisp_Object pos, string;
4932 string = AREF (items, i + 1);
4933 pos = AREF (items, i + 3);
4934 if (NILP (string))
4935 break;
4936 if (column >= XINT (pos)
4937 && column < XINT (pos) + XSTRING (string)->size)
4938 {
4939 item = AREF (items, i);
4940 break;
4941 }
4942 }
4943
4944 /* ELisp manual 2.4b says (x y) are window relative but
4945 code says they are frame-relative. */
4946 position
4947 = Fcons (event->frame_or_window,
4948 Fcons (Qmenu_bar,
4949 Fcons (Fcons (event->x, event->y),
4950 Fcons (make_number (event->timestamp),
4951 Qnil))));
4952
4953 return Fcons (item, Fcons (position, Qnil));
4954 }
4955#endif /* not USE_X_TOOLKIT */
4956
4957 /* Set `window' to the window under frame pixel coordinates
4958 event->x/event->y. */
4959 window = window_from_coordinates (f, XINT (event->x),
4960 XINT (event->y), &part, 0);
4961
4962 if (!WINDOWP (window))
4963 {
4964 window = event->frame_or_window;
4965 posn = Qnil;
4966 }
4967 else
4968 {
4969 /* It's a click in window window at frame coordinates
4970 event->x/ event->y. */
4971 struct window *w = XWINDOW (window);
4972
4973 /* Get window relative coordinates. Original code
4974 `rounded' this to glyph boundaries. */
4975 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
4976 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
4977
4978 /* Set event coordinates to window-relative coordinates
4979 for constructing the Lisp event below. */
4980 XSETINT (event->x, wx);
4981 XSETINT (event->y, wy);
4982
4983 if (part == 1 || part == 3)
4984 {
4985 /* Mode line or header line. Look for a string under
4986 the mouse that may have a `local-map' property. */
4987 Lisp_Object string;
4988 int charpos;
4989
4990 posn = part == 1 ? Qmode_line : Qheader_line;
4991 string = mode_line_string (w, wx, wy, part == 1, &charpos);
4992 if (STRINGP (string))
4993 string_info = Fcons (string, make_number (charpos));
4994 }
4995 else if (part == 2)
4996 posn = Qvertical_line;
4997 else if (part == 6 || part == 7)
4998 {
4999 int charpos;
5000 Lisp_Object object = marginal_area_string (w, wx, wy, part,
5001 &charpos);
5002 posn = (part == 6) ? Qleft_margin : Qright_margin;
5003 if (STRINGP (object))
5004 string_info = Fcons (object, make_number (charpos));
5005 }
5006 else
5007 {
5008 Lisp_Object object;
5009 struct display_pos p;
5010 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5011 posn = make_number (CHARPOS (p.pos));
5012 if (STRINGP (object))
5013 string_info
5014 = Fcons (object,
5015 make_number (CHARPOS (p.string_pos)));
5016 }
5017 }
5018
5019 position
5020 = Fcons (window,
5021 Fcons (posn,
5022 Fcons (Fcons (event->x, event->y),
5023 Fcons (make_number (event->timestamp),
5024 (NILP (string_info)
5025 ? Qnil
5026 : Fcons (string_info, Qnil))))));
5027 }
5028#ifndef USE_TOOLKIT_SCROLL_BARS
5029 else
5030 {
5031 /* It's a scrollbar click. */
5032 Lisp_Object portion_whole;
5033 Lisp_Object part;
5034
5035 window = event->frame_or_window;
5036 portion_whole = Fcons (event->x, event->y);
5037 part = *scroll_bar_parts[(int) event->part];
5038
5039 position
5040 = Fcons (window,
5041 Fcons (Qvertical_scroll_bar,
5042 Fcons (portion_whole,
5043 Fcons (make_number (event->timestamp),
5044 Fcons (part, Qnil)))));
5045 }
5046#endif /* not USE_TOOLKIT_SCROLL_BARS */
5047
5048 if (button >= ASIZE (button_down_location))
5049 {
5050 button_down_location = larger_vector (button_down_location,
5051 button + 1, Qnil);
5052 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5053 }
5054
5055 start_pos_ptr = &AREF (button_down_location, button);
5056 start_pos = *start_pos_ptr;
5057 *start_pos_ptr = Qnil;
5058
5059 {
5060 /* On window-system frames, use the value of
5061 double-click-fuzz as is. On other frames, interpret it
5062 as a multiple of 1/8 characters. */
5063 struct frame *f;
5064 int fuzz;
5065
5066 if (WINDOWP (event->frame_or_window))
5067 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5068 else if (FRAMEP (event->frame_or_window))
5069 f = XFRAME (event->frame_or_window);
5070 else
5071 abort ();
5072
5073 if (FRAME_WINDOW_P (f))
5074 fuzz = double_click_fuzz;
5075 else
5076 fuzz = double_click_fuzz / 8;
5077
5078 is_double = (button == last_mouse_button
5079 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5080 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5081 && button_down_time != 0
5082 && (EQ (Vdouble_click_time, Qt)
5083 || (INTEGERP (Vdouble_click_time)
5084 && ((int)(event->timestamp - button_down_time)
5085 < XINT (Vdouble_click_time)))));
5086 }
5087
5088 last_mouse_button = button;
5089 last_mouse_x = XINT (event->x);
5090 last_mouse_y = XINT (event->y);
5091
5092 /* If this is a button press, squirrel away the location, so
5093 we can decide later whether it was a click or a drag. */
5094 if (event->modifiers & down_modifier)
5095 {
5096 if (is_double)
5097 {
5098 double_click_count++;
5099 event->modifiers |= ((double_click_count > 2)
5100 ? triple_modifier
5101 : double_modifier);
5102 }
5103 else
5104 double_click_count = 1;
5105 button_down_time = event->timestamp;
5106 *start_pos_ptr = Fcopy_alist (position);
5107 }
5108
5109 /* Now we're releasing a button - check the co-ordinates to
5110 see if this was a click or a drag. */
5111 else if (event->modifiers & up_modifier)
5112 {
5113 /* If we did not see a down before this up, ignore the up.
5114 Probably this happened because the down event chose a
5115 menu item. It would be an annoyance to treat the
5116 release of the button that chose the menu item as a
5117 separate event. */
5118
5119 if (!CONSP (start_pos))
5120 return Qnil;
5121
5122 event->modifiers &= ~up_modifier;
5123#if 0 /* Formerly we treated an up with no down as a click event. */
5124 if (!CONSP (start_pos))
5125 event->modifiers |= click_modifier;
5126 else
5127#endif
5128 {
5129 Lisp_Object down;
5130 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5131
5132 /* The third element of every position
5133 should be the (x,y) pair. */
5134 down = Fcar (Fcdr (Fcdr (start_pos)));
5135 if (CONSP (down)
5136 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5137 {
5138 xdiff = XFASTINT (event->x) - XFASTINT (XCAR (down));
5139 ydiff = XFASTINT (event->y) - XFASTINT (XCDR (down));
5140 }
5141
5142 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5143 && ydiff < double_click_fuzz
5144 && ydiff > - double_click_fuzz)
5145 /* Mouse hasn't moved (much). */
5146 event->modifiers |= click_modifier;
5147 else
5148 {
5149 button_down_time = 0;
5150 event->modifiers |= drag_modifier;
5151 }
5152
5153 /* Don't check is_double; treat this as multiple
5154 if the down-event was multiple. */
5155 if (double_click_count > 1)
5156 event->modifiers |= ((double_click_count > 2)
5157 ? triple_modifier
5158 : double_modifier);
5159 }
5160 }
5161 else
5162 /* Every mouse event should either have the down_modifier or
5163 the up_modifier set. */
5164 abort ();
5165
5166 {
5167 /* Get the symbol we should use for the mouse click. */
5168 Lisp_Object head;
5169
5170 head = modify_event_symbol (button,
5171 event->modifiers,
5172 Qmouse_click, Vlispy_mouse_stem,
5173 NULL,
5174 &mouse_syms,
5175 XVECTOR (mouse_syms)->size);
5176 if (event->modifiers & drag_modifier)
5177 return Fcons (head,
5178 Fcons (start_pos,
5179 Fcons (position,
5180 Qnil)));
5181 else if (event->modifiers & (double_modifier | triple_modifier))
5182 return Fcons (head,
5183 Fcons (position,
5184 Fcons (make_number (double_click_count),
5185 Qnil)));
5186 else
5187 return Fcons (head,
5188 Fcons (position,
5189 Qnil));
5190 }
5191 }
5192
5193#if USE_TOOLKIT_SCROLL_BARS
5194
5195 /* We don't have down and up events if using toolkit scroll bars,
5196 so make this always a click event. Store in the `part' of
5197 the Lisp event a symbol which maps to the following actions:
5198
5199 `above_handle' page up
5200 `below_handle' page down
5201 `up' line up
5202 `down' line down
5203 `top' top of buffer
5204 `bottom' bottom of buffer
5205 `handle' thumb has been dragged.
5206 `end-scroll' end of interaction with scroll bar
5207
5208 The incoming input_event contains in its `part' member an
5209 index of type `enum scroll_bar_part' which we can use as an
5210 index in scroll_bar_parts to get the appropriate symbol. */
5211
5212 case SCROLL_BAR_CLICK_EVENT:
5213 {
5214 Lisp_Object position, head, window, portion_whole, part;
5215
5216 window = event->frame_or_window;
5217 portion_whole = Fcons (event->x, event->y);
5218 part = *scroll_bar_parts[(int) event->part];
5219
5220 position
5221 = Fcons (window,
5222 Fcons (Qvertical_scroll_bar,
5223 Fcons (portion_whole,
5224 Fcons (make_number (event->timestamp),
5225 Fcons (part, Qnil)))));
5226
5227 /* Always treat scroll bar events as clicks. */
5228 event->modifiers |= click_modifier;
5229
5230 /* Get the symbol we should use for the mouse click. */
5231 head = modify_event_symbol (event->code,
5232 event->modifiers,
5233 Qmouse_click,
5234 Vlispy_mouse_stem,
5235 NULL, &mouse_syms,
5236 XVECTOR (mouse_syms)->size);
5237 return Fcons (head, Fcons (position, Qnil));
5238 }
5239
5240#endif /* USE_TOOLKIT_SCROLL_BARS */
5241
5242#ifdef WINDOWSNT
5243 case W32_SCROLL_BAR_CLICK_EVENT:
5244 {
5245 int button = event->code;
5246 int is_double;
5247 Lisp_Object position;
5248 Lisp_Object *start_pos_ptr;
5249 Lisp_Object start_pos;
5250
5251 {
5252 Lisp_Object window;
5253 Lisp_Object portion_whole;
5254 Lisp_Object part;
5255
5256 window = event->frame_or_window;
5257 portion_whole = Fcons (event->x, event->y);
5258 part = *scroll_bar_parts[(int) event->part];
5259
5260 position
5261 = Fcons (window,
5262 Fcons (Qvertical_scroll_bar,
5263 Fcons (portion_whole,
5264 Fcons (make_number (event->timestamp),
5265 Fcons (part, Qnil)))));
5266 }
5267
5268 /* Always treat W32 scroll bar events as clicks. */
5269 event->modifiers |= click_modifier;
5270
5271 {
5272 /* Get the symbol we should use for the mouse click. */
5273 Lisp_Object head;
5274
5275 head = modify_event_symbol (button,
5276 event->modifiers,
5277 Qmouse_click,
5278 Vlispy_mouse_stem,
5279 NULL, &mouse_syms,
5280 XVECTOR (mouse_syms)->size);
5281 return Fcons (head,
5282 Fcons (position,
5283 Qnil));
5284 }
5285 }
5286 case MOUSE_WHEEL_EVENT:
5287 {
5288 int part;
5289 FRAME_PTR f = XFRAME (event->frame_or_window);
5290 Lisp_Object window;
5291 Lisp_Object posn;
5292 Lisp_Object head, position;
5293 int row, column;
5294
5295 /* Ignore mouse events that were made on frame that
5296 have been deleted. */
5297 if (! FRAME_LIVE_P (f))
5298 return Qnil;
5299 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5300 &column, &row, NULL, 1);
5301 window = window_from_coordinates (f, XINT (event->x),
5302 XINT (event->y), &part, 0);
5303
5304 if (!WINDOWP (window))
5305 {
5306 window = event->frame_or_window;
5307 posn = Qnil;
5308 }
5309 else
5310 {
5311 int pixcolumn, pixrow;
5312 column -= XINT (XWINDOW (window)->left);
5313 row -= XINT (XWINDOW (window)->top);
5314 glyph_to_pixel_coords (XWINDOW(window), column, row,
5315 &pixcolumn, &pixrow);
5316 XSETINT (event->x, pixcolumn);
5317 XSETINT (event->y, pixrow);
5318
5319 if (part == 1)
5320 posn = Qmode_line;
5321 else if (part == 2)
5322 posn = Qvertical_line;
5323 else if (part == 3)
5324 posn = Qheader_line;
5325 else
5326 {
5327 Lisp_Object object;
5328 struct display_pos p;
5329 buffer_posn_from_coords (XWINDOW (window), &column, &row,
5330 &object, &p);
5331 posn = make_number (CHARPOS (p.pos));
5332 }
5333 }
5334
5335 {
5336 Lisp_Object head, position;
5337
5338 position
5339 = Fcons (window,
5340 Fcons (posn,
5341 Fcons (Fcons (event->x, event->y),
5342 Fcons (make_number (event->timestamp),
5343 Qnil))));
5344
5345 head = modify_event_symbol (0, event->modifiers,
5346 Qmouse_wheel, Qnil,
5347 lispy_mouse_wheel_names,
5348 &mouse_wheel_syms, 1);
5349 return Fcons (head,
5350 Fcons (position,
5351 /* Insert 1 here so event-click-count works. */
5352 Fcons (make_number (1),
5353 Fcons (make_number (event->code),
5354 Qnil))));
5355 }
5356 }
5357#endif /* WINDOWSNT */
5358
5359 case DRAG_N_DROP_EVENT:
5360 {
5361 int part;
5362 FRAME_PTR f;
5363 Lisp_Object window;
5364 Lisp_Object posn;
5365 Lisp_Object files;
5366
5367 /* The frame_or_window field should be a cons of the frame in
5368 which the event occurred and a list of the filenames
5369 dropped. */
5370 if (! CONSP (event->frame_or_window))
5371 abort ();
5372
5373 f = XFRAME (XCAR (event->frame_or_window));
5374 files = XCDR (event->frame_or_window);
5375
5376 /* Ignore mouse events that were made on frames that
5377 have been deleted. */
5378 if (! FRAME_LIVE_P (f))
5379 return Qnil;
5380
5381 window = window_from_coordinates (f, XINT (event->x),
5382 XINT (event->y), &part, 0);
5383
5384 if (!WINDOWP (window))
5385 {
5386 window = XCAR (event->frame_or_window);
5387 posn = Qnil;
5388 }
5389 else
5390 {
5391 /* It's an event in window `window' at frame coordinates
5392 event->x/ event->y. */
5393 struct window *w = XWINDOW (window);
5394
5395 /* Get window relative coordinates. */
5396 int wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (event->x));
5397 int wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (event->y));
5398
5399 /* Set event coordinates to window-relative coordinates
5400 for constructing the Lisp event below. */
5401 XSETINT (event->x, wx);
5402 XSETINT (event->y, wy);
5403
5404 if (part == 1)
5405 posn = Qmode_line;
5406 else if (part == 2)
5407 posn = Qvertical_line;
5408 else if (part == 3)
5409 posn = Qheader_line;
5410 else
5411 {
5412 Lisp_Object object;
5413 struct display_pos p;
5414 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5415 posn = make_number (CHARPOS (p.pos));
5416 }
5417 }
5418
5419 {
5420 Lisp_Object head, position;
5421
5422 position
5423 = Fcons (window,
5424 Fcons (posn,
5425 Fcons (Fcons (event->x, event->y),
5426 Fcons (make_number (event->timestamp),
5427 Qnil))));
5428
5429 head = modify_event_symbol (0, event->modifiers,
5430 Qdrag_n_drop, Qnil,
5431 lispy_drag_n_drop_names,
5432 &drag_n_drop_syms, 1);
5433 return Fcons (head,
5434 Fcons (position,
5435 Fcons (files,
5436 Qnil)));
5437 }
5438 }
5439#endif /* HAVE_MOUSE */
5440
5441#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS)
5442 case MENU_BAR_EVENT:
5443 if (EQ (event->arg, event->frame_or_window))
5444 /* This is the prefix key. We translate this to
5445 `(menu_bar)' because the code in keyboard.c for menu
5446 events, which we use, relies on this. */
5447 return Fcons (Qmenu_bar, Qnil);
5448 return event->arg;
5449#endif
5450
5451 case TOOL_BAR_EVENT:
5452 if (EQ (event->arg, event->frame_or_window))
5453 /* This is the prefix key. We translate this to
5454 `(tool_bar)' because the code in keyboard.c for tool bar
5455 events, which we use, relies on this. */
5456 return Fcons (Qtool_bar, Qnil);
5457 else if (SYMBOLP (event->arg))
5458 return apply_modifiers (event->modifiers, event->arg);
5459 return event->arg;
5460
5461 case USER_SIGNAL_EVENT:
5462 /* A user signal. */
5463 return *lispy_user_signals[event->code];
5464
5465 case SAVE_SESSION_EVENT:
5466 return Qsave_session;
5467
5468 /* The 'kind' field of the event is something we don't recognize. */
5469 default:
5470 abort ();
5471 }
5472}
5473
5474#ifdef HAVE_MOUSE
5475
5476static Lisp_Object
5477make_lispy_movement (frame, bar_window, part, x, y, time)
5478 FRAME_PTR frame;
5479 Lisp_Object bar_window;
5480 enum scroll_bar_part part;
5481 Lisp_Object x, y;
5482 unsigned long time;
5483{
5484 /* Is it a scroll bar movement? */
5485 if (frame && ! NILP (bar_window))
5486 {
5487 Lisp_Object part_sym;
5488
5489 part_sym = *scroll_bar_parts[(int) part];
5490 return Fcons (Qscroll_bar_movement,
5491 (Fcons (Fcons (bar_window,
5492 Fcons (Qvertical_scroll_bar,
5493 Fcons (Fcons (x, y),
5494 Fcons (make_number (time),
5495 Fcons (part_sym,
5496 Qnil))))),
5497 Qnil)));
5498 }
5499
5500 /* Or is it an ordinary mouse movement? */
5501 else
5502 {
5503 int area;
5504 Lisp_Object window;
5505 Lisp_Object posn;
5506
5507 if (frame)
5508 /* It's in a frame; which window on that frame? */
5509 window = window_from_coordinates (frame, XINT (x), XINT (y), &area, 0);
5510 else
5511 window = Qnil;
5512
5513 if (WINDOWP (window))
5514 {
5515 struct window *w = XWINDOW (window);
5516 int wx, wy;
5517
5518 /* Get window relative coordinates. */
5519 wx = FRAME_TO_WINDOW_PIXEL_X (w, XINT (x));
5520 wy = FRAME_TO_WINDOW_PIXEL_Y (w, XINT (y));
5521 XSETINT (x, wx);
5522 XSETINT (y, wy);
5523
5524 if (area == 1)
5525 posn = Qmode_line;
5526 else if (area == 2)
5527 posn = Qvertical_line;
5528 else if (area == 3)
5529 posn = Qheader_line;
5530 else
5531 {
5532 Lisp_Object object;
5533 struct display_pos p;
5534 buffer_posn_from_coords (w, &wx, &wy, &object, &p);
5535 posn = make_number (CHARPOS (p.pos));
5536 }
5537 }
5538 else if (frame != 0)
5539 {
5540 XSETFRAME (window, frame);
5541 posn = Qnil;
5542 }
5543 else
5544 {
5545 window = Qnil;
5546 posn = Qnil;
5547 XSETFASTINT (x, 0);
5548 XSETFASTINT (y, 0);
5549 }
5550
5551 return Fcons (Qmouse_movement,
5552 Fcons (Fcons (window,
5553 Fcons (posn,
5554 Fcons (Fcons (x, y),
5555 Fcons (make_number (time),
5556 Qnil)))),
5557 Qnil));
5558 }
5559}
5560
5561#endif /* HAVE_MOUSE */
5562
5563/* Construct a switch frame event. */
5564static Lisp_Object
5565make_lispy_switch_frame (frame)
5566 Lisp_Object frame;
5567{
5568 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5569}
5570\f
5571/* Manipulating modifiers. */
5572
5573/* Parse the name of SYMBOL, and return the set of modifiers it contains.
5574
5575 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5576 SYMBOL's name of the end of the modifiers; the string from this
5577 position is the unmodified symbol name.
5578
5579 This doesn't use any caches. */
5580
5581static int
5582parse_modifiers_uncached (symbol, modifier_end)
5583 Lisp_Object symbol;
5584 int *modifier_end;
5585{
5586 struct Lisp_String *name;
5587 int i;
5588 int modifiers;
5589
5590 CHECK_SYMBOL (symbol);
5591
5592 modifiers = 0;
5593 name = XSTRING (SYMBOL_NAME (symbol));
5594
5595 for (i = 0; i+2 <= STRING_BYTES (name); )
5596 {
5597 int this_mod_end = 0;
5598 int this_mod = 0;
5599
5600 /* See if the name continues with a modifier word.
5601 Check that the word appears, but don't check what follows it.
5602 Set this_mod and this_mod_end to record what we find. */
5603
5604 switch (name->data[i])
5605 {
5606#define SINGLE_LETTER_MOD(BIT) \
5607 (this_mod_end = i + 1, this_mod = BIT)
5608
5609 case 'A':
5610 SINGLE_LETTER_MOD (alt_modifier);
5611 break;
5612
5613 case 'C':
5614 SINGLE_LETTER_MOD (ctrl_modifier);
5615 break;
5616
5617 case 'H':
5618 SINGLE_LETTER_MOD (hyper_modifier);
5619 break;
5620
5621 case 'M':
5622 SINGLE_LETTER_MOD (meta_modifier);
5623 break;
5624
5625 case 'S':
5626 SINGLE_LETTER_MOD (shift_modifier);
5627 break;
5628
5629 case 's':
5630 SINGLE_LETTER_MOD (super_modifier);
5631 break;
5632
5633#undef SINGLE_LETTER_MOD
5634 }
5635
5636 /* If we found no modifier, stop looking for them. */
5637 if (this_mod_end == 0)
5638 break;
5639
5640 /* Check there is a dash after the modifier, so that it
5641 really is a modifier. */
5642 if (this_mod_end >= STRING_BYTES (name)
5643 || name->data[this_mod_end] != '-')
5644 break;
5645
5646 /* This modifier is real; look for another. */
5647 modifiers |= this_mod;
5648 i = this_mod_end + 1;
5649 }
5650
5651 /* Should we include the `click' modifier? */
5652 if (! (modifiers & (down_modifier | drag_modifier
5653 | double_modifier | triple_modifier))
5654 && i + 7 == STRING_BYTES (name)
5655 && strncmp (name->data + i, "mouse-", 6) == 0
5656 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
5657 modifiers |= click_modifier;
5658
5659 if (modifier_end)
5660 *modifier_end = i;
5661
5662 return modifiers;
5663}
5664
5665/* Return a symbol whose name is the modifier prefixes for MODIFIERS
5666 prepended to the string BASE[0..BASE_LEN-1].
5667 This doesn't use any caches. */
5668static Lisp_Object
5669apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
5670 int modifiers;
5671 char *base;
5672 int base_len, base_len_byte;
5673{
5674 /* Since BASE could contain nulls, we can't use intern here; we have
5675 to use Fintern, which expects a genuine Lisp_String, and keeps a
5676 reference to it. */
5677 char *new_mods
5678 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
5679 int mod_len;
5680
5681 {
5682 char *p = new_mods;
5683
5684 /* Only the event queue may use the `up' modifier; it should always
5685 be turned into a click or drag event before presented to lisp code. */
5686 if (modifiers & up_modifier)
5687 abort ();
5688
5689 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
5690 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
5691 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
5692 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
5693 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
5694 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
5695 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
5696 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
5697 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
5698 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
5699 /* The click modifier is denoted by the absence of other modifiers. */
5700
5701 *p = '\0';
5702
5703 mod_len = p - new_mods;
5704 }
5705
5706 {
5707 Lisp_Object new_name;
5708
5709 new_name = make_uninit_multibyte_string (mod_len + base_len,
5710 mod_len + base_len_byte);
5711 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
5712 bcopy (base, XSTRING (new_name)->data + mod_len, base_len_byte);
5713
5714 return Fintern (new_name, Qnil);
5715 }
5716}
5717
5718
5719static char *modifier_names[] =
5720{
5721 "up", "down", "drag", "click", "double", "triple", 0, 0,
5722 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5723 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
5724};
5725#define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
5726
5727static Lisp_Object modifier_symbols;
5728
5729/* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
5730static Lisp_Object
5731lispy_modifier_list (modifiers)
5732 int modifiers;
5733{
5734 Lisp_Object modifier_list;
5735 int i;
5736
5737 modifier_list = Qnil;
5738 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
5739 if (modifiers & (1<<i))
5740 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
5741 modifier_list);
5742
5743 return modifier_list;
5744}
5745
5746
5747/* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
5748 where UNMODIFIED is the unmodified form of SYMBOL,
5749 MASK is the set of modifiers present in SYMBOL's name.
5750 This is similar to parse_modifiers_uncached, but uses the cache in
5751 SYMBOL's Qevent_symbol_element_mask property, and maintains the
5752 Qevent_symbol_elements property. */
5753
5754Lisp_Object
5755parse_modifiers (symbol)
5756 Lisp_Object symbol;
5757{
5758 Lisp_Object elements;
5759
5760 elements = Fget (symbol, Qevent_symbol_element_mask);
5761 if (CONSP (elements))
5762 return elements;
5763 else
5764 {
5765 int end;
5766 int modifiers = parse_modifiers_uncached (symbol, &end);
5767 Lisp_Object unmodified;
5768 Lisp_Object mask;
5769
5770 unmodified = Fintern (make_string (XSTRING (SYMBOL_NAME (symbol))->data + end,
5771 STRING_BYTES (XSTRING (SYMBOL_NAME (symbol))) - end),
5772 Qnil);
5773
5774 if (modifiers & ~VALMASK)
5775 abort ();
5776 XSETFASTINT (mask, modifiers);
5777 elements = Fcons (unmodified, Fcons (mask, Qnil));
5778
5779 /* Cache the parsing results on SYMBOL. */
5780 Fput (symbol, Qevent_symbol_element_mask,
5781 elements);
5782 Fput (symbol, Qevent_symbol_elements,
5783 Fcons (unmodified, lispy_modifier_list (modifiers)));
5784
5785 /* Since we know that SYMBOL is modifiers applied to unmodified,
5786 it would be nice to put that in unmodified's cache.
5787 But we can't, since we're not sure that parse_modifiers is
5788 canonical. */
5789
5790 return elements;
5791 }
5792}
5793
5794/* Apply the modifiers MODIFIERS to the symbol BASE.
5795 BASE must be unmodified.
5796
5797 This is like apply_modifiers_uncached, but uses BASE's
5798 Qmodifier_cache property, if present. It also builds
5799 Qevent_symbol_elements properties, since it has that info anyway.
5800
5801 apply_modifiers copies the value of BASE's Qevent_kind property to
5802 the modified symbol. */
5803static Lisp_Object
5804apply_modifiers (modifiers, base)
5805 int modifiers;
5806 Lisp_Object base;
5807{
5808 Lisp_Object cache, index, entry, new_symbol;
5809
5810 /* Mask out upper bits. We don't know where this value's been. */
5811 modifiers &= VALMASK;
5812
5813 /* The click modifier never figures into cache indices. */
5814 cache = Fget (base, Qmodifier_cache);
5815 XSETFASTINT (index, (modifiers & ~click_modifier));
5816 entry = assq_no_quit (index, cache);
5817
5818 if (CONSP (entry))
5819 new_symbol = XCDR (entry);
5820 else
5821 {
5822 /* We have to create the symbol ourselves. */
5823 new_symbol = apply_modifiers_uncached (modifiers,
5824 XSTRING (SYMBOL_NAME (base))->data,
5825 XSTRING (SYMBOL_NAME (base))->size,
5826 STRING_BYTES (XSTRING (SYMBOL_NAME (base))));
5827
5828 /* Add the new symbol to the base's cache. */
5829 entry = Fcons (index, new_symbol);
5830 Fput (base, Qmodifier_cache, Fcons (entry, cache));
5831
5832 /* We have the parsing info now for free, so add it to the caches. */
5833 XSETFASTINT (index, modifiers);
5834 Fput (new_symbol, Qevent_symbol_element_mask,
5835 Fcons (base, Fcons (index, Qnil)));
5836 Fput (new_symbol, Qevent_symbol_elements,
5837 Fcons (base, lispy_modifier_list (modifiers)));
5838 }
5839
5840 /* Make sure this symbol is of the same kind as BASE.
5841
5842 You'd think we could just set this once and for all when we
5843 intern the symbol above, but reorder_modifiers may call us when
5844 BASE's property isn't set right; we can't assume that just
5845 because it has a Qmodifier_cache property it must have its
5846 Qevent_kind set right as well. */
5847 if (NILP (Fget (new_symbol, Qevent_kind)))
5848 {
5849 Lisp_Object kind;
5850
5851 kind = Fget (base, Qevent_kind);
5852 if (! NILP (kind))
5853 Fput (new_symbol, Qevent_kind, kind);
5854 }
5855
5856 return new_symbol;
5857}
5858
5859
5860/* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
5861 return a symbol with the modifiers placed in the canonical order.
5862 Canonical order is alphabetical, except for down and drag, which
5863 always come last. The 'click' modifier is never written out.
5864
5865 Fdefine_key calls this to make sure that (for example) C-M-foo
5866 and M-C-foo end up being equivalent in the keymap. */
5867
5868Lisp_Object
5869reorder_modifiers (symbol)
5870 Lisp_Object symbol;
5871{
5872 /* It's hopefully okay to write the code this way, since everything
5873 will soon be in caches, and no consing will be done at all. */
5874 Lisp_Object parsed;
5875
5876 parsed = parse_modifiers (symbol);
5877 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
5878 XCAR (parsed));
5879}
5880
5881
5882/* For handling events, we often want to produce a symbol whose name
5883 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
5884 to some base, like the name of a function key or mouse button.
5885 modify_event_symbol produces symbols of this sort.
5886
5887 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
5888 is the name of the i'th symbol. TABLE_SIZE is the number of elements
5889 in the table.
5890
5891 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
5892 into symbol names, or a string specifying a name stem used to
5893 construct a symbol name or the form `STEM-N', where N is the decimal
5894 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
5895 non-nil; otherwise NAME_TABLE is used.
5896
5897 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
5898 persist between calls to modify_event_symbol that it can use to
5899 store a cache of the symbols it's generated for this NAME_TABLE
5900 before. The object stored there may be a vector or an alist.
5901
5902 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
5903
5904 MODIFIERS is a set of modifier bits (as given in struct input_events)
5905 whose prefixes should be applied to the symbol name.
5906
5907 SYMBOL_KIND is the value to be placed in the event_kind property of
5908 the returned symbol.
5909
5910 The symbols we create are supposed to have an
5911 `event-symbol-elements' property, which lists the modifiers present
5912 in the symbol's name. */
5913
5914static Lisp_Object
5915modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
5916 name_table, symbol_table, table_size)
5917 int symbol_num;
5918 unsigned modifiers;
5919 Lisp_Object symbol_kind;
5920 Lisp_Object name_alist_or_stem;
5921 char **name_table;
5922 Lisp_Object *symbol_table;
5923 unsigned int table_size;
5924{
5925 Lisp_Object value;
5926 Lisp_Object symbol_int;
5927
5928 /* Get rid of the "vendor-specific" bit here. */
5929 XSETINT (symbol_int, symbol_num & 0xffffff);
5930
5931 /* Is this a request for a valid symbol? */
5932 if (symbol_num < 0 || symbol_num >= table_size)
5933 return Qnil;
5934
5935 if (CONSP (*symbol_table))
5936 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
5937
5938 /* If *symbol_table doesn't seem to be initialized properly, fix that.
5939 *symbol_table should be a lisp vector TABLE_SIZE elements long,
5940 where the Nth element is the symbol for NAME_TABLE[N], or nil if
5941 we've never used that symbol before. */
5942 else
5943 {
5944 if (! VECTORP (*symbol_table)
5945 || XVECTOR (*symbol_table)->size != table_size)
5946 {
5947 Lisp_Object size;
5948
5949 XSETFASTINT (size, table_size);
5950 *symbol_table = Fmake_vector (size, Qnil);
5951 }
5952
5953 value = XVECTOR (*symbol_table)->contents[symbol_num];
5954 }
5955
5956 /* Have we already used this symbol before? */
5957 if (NILP (value))
5958 {
5959 /* No; let's create it. */
5960 if (CONSP (name_alist_or_stem))
5961 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
5962 else if (STRINGP (name_alist_or_stem))
5963 {
5964 int len = STRING_BYTES (XSTRING (name_alist_or_stem));
5965 char *buf = (char *) alloca (len + 50);
5966 sprintf (buf, "%s-%d", XSTRING (name_alist_or_stem)->data,
5967 XINT (symbol_int) + 1);
5968 value = intern (buf);
5969 }
5970 else if (name_table != 0 && name_table[symbol_num])
5971 value = intern (name_table[symbol_num]);
5972
5973#ifdef HAVE_WINDOW_SYSTEM
5974 if (NILP (value))
5975 {
5976 char *name = x_get_keysym_name (symbol_num);
5977 if (name)
5978 value = intern (name);
5979 }
5980#endif
5981
5982 if (NILP (value))
5983 {
5984 char buf[20];
5985 sprintf (buf, "key-%d", symbol_num);
5986 value = intern (buf);
5987 }
5988
5989 if (CONSP (*symbol_table))
5990 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
5991 else
5992 XVECTOR (*symbol_table)->contents[symbol_num] = value;
5993
5994 /* Fill in the cache entries for this symbol; this also
5995 builds the Qevent_symbol_elements property, which the user
5996 cares about. */
5997 apply_modifiers (modifiers & click_modifier, value);
5998 Fput (value, Qevent_kind, symbol_kind);
5999 }
6000
6001 /* Apply modifiers to that symbol. */
6002 return apply_modifiers (modifiers, value);
6003}
6004\f
6005/* Convert a list that represents an event type,
6006 such as (ctrl meta backspace), into the usual representation of that
6007 event type as a number or a symbol. */
6008
6009DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6010 doc: /* Convert the event description list EVENT-DESC to an event type.
6011EVENT-DESC should contain one base event type (a character or symbol)
6012and zero or more modifier names (control, meta, hyper, super, shift, alt,
6013drag, down, double or triple). The base must be last.
6014The return value is an event type (a character or symbol) which
6015has the same base event type and all the specified modifiers. */)
6016 (event_desc)
6017 Lisp_Object event_desc;
6018{
6019 Lisp_Object base;
6020 int modifiers = 0;
6021 Lisp_Object rest;
6022
6023 base = Qnil;
6024 rest = event_desc;
6025 while (CONSP (rest))
6026 {
6027 Lisp_Object elt;
6028 int this = 0;
6029
6030 elt = XCAR (rest);
6031 rest = XCDR (rest);
6032
6033 /* Given a symbol, see if it is a modifier name. */
6034 if (SYMBOLP (elt) && CONSP (rest))
6035 this = parse_solitary_modifier (elt);
6036
6037 if (this != 0)
6038 modifiers |= this;
6039 else if (!NILP (base))
6040 error ("Two bases given in one event");
6041 else
6042 base = elt;
6043
6044 }
6045
6046 /* Let the symbol A refer to the character A. */
6047 if (SYMBOLP (base) && XSTRING (SYMBOL_NAME (base))->size == 1)
6048 XSETINT (base, XSTRING (SYMBOL_NAME (base))->data[0]);
6049
6050 if (INTEGERP (base))
6051 {
6052 /* Turn (shift a) into A. */
6053 if ((modifiers & shift_modifier) != 0
6054 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6055 {
6056 XSETINT (base, XINT (base) - ('a' - 'A'));
6057 modifiers &= ~shift_modifier;
6058 }
6059
6060 /* Turn (control a) into C-a. */
6061 if (modifiers & ctrl_modifier)
6062 return make_number ((modifiers & ~ctrl_modifier)
6063 | make_ctrl_char (XINT (base)));
6064 else
6065 return make_number (modifiers | XINT (base));
6066 }
6067 else if (SYMBOLP (base))
6068 return apply_modifiers (modifiers, base);
6069 else
6070 {
6071 error ("Invalid base event");
6072 return Qnil;
6073 }
6074}
6075
6076/* Try to recognize SYMBOL as a modifier name.
6077 Return the modifier flag bit, or 0 if not recognized. */
6078
6079static int
6080parse_solitary_modifier (symbol)
6081 Lisp_Object symbol;
6082{
6083 struct Lisp_String *name = XSTRING (SYMBOL_NAME (symbol));
6084
6085 switch (name->data[0])
6086 {
6087#define SINGLE_LETTER_MOD(BIT) \
6088 if (STRING_BYTES (name) == 1) \
6089 return BIT;
6090
6091#define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6092 if (LEN == STRING_BYTES (name) \
6093 && ! strncmp (name->data, NAME, LEN)) \
6094 return BIT;
6095
6096 case 'A':
6097 SINGLE_LETTER_MOD (alt_modifier);
6098 break;
6099
6100 case 'a':
6101 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6102 break;
6103
6104 case 'C':
6105 SINGLE_LETTER_MOD (ctrl_modifier);
6106 break;
6107
6108 case 'c':
6109 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6110 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6111 break;
6112
6113 case 'H':
6114 SINGLE_LETTER_MOD (hyper_modifier);
6115 break;
6116
6117 case 'h':
6118 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6119 break;
6120
6121 case 'M':
6122 SINGLE_LETTER_MOD (meta_modifier);
6123 break;
6124
6125 case 'm':
6126 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6127 break;
6128
6129 case 'S':
6130 SINGLE_LETTER_MOD (shift_modifier);
6131 break;
6132
6133 case 's':
6134 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6135 MULTI_LETTER_MOD (super_modifier, "super", 5);
6136 SINGLE_LETTER_MOD (super_modifier);
6137 break;
6138
6139 case 'd':
6140 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6141 MULTI_LETTER_MOD (down_modifier, "down", 4);
6142 MULTI_LETTER_MOD (double_modifier, "double", 6);
6143 break;
6144
6145 case 't':
6146 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6147 break;
6148
6149#undef SINGLE_LETTER_MOD
6150#undef MULTI_LETTER_MOD
6151 }
6152
6153 return 0;
6154}
6155
6156/* Return 1 if EVENT is a list whose elements are all integers or symbols.
6157 Such a list is not valid as an event,
6158 but it can be a Lucid-style event type list. */
6159
6160int
6161lucid_event_type_list_p (object)
6162 Lisp_Object object;
6163{
6164 Lisp_Object tail;
6165
6166 if (! CONSP (object))
6167 return 0;
6168
6169 if (EQ (XCAR (object), Qhelp_echo)
6170 || EQ (XCAR (object), Qvertical_line)
6171 || EQ (XCAR (object), Qmode_line)
6172 || EQ (XCAR (object), Qheader_line))
6173 return 0;
6174
6175 for (tail = object; CONSP (tail); tail = XCDR (tail))
6176 {
6177 Lisp_Object elt;
6178 elt = XCAR (tail);
6179 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6180 return 0;
6181 }
6182
6183 return NILP (tail);
6184}
6185\f
6186/* Store into *addr a value nonzero if terminal input chars are available.
6187 Serves the purpose of ioctl (0, FIONREAD, addr)
6188 but works even if FIONREAD does not exist.
6189 (In fact, this may actually read some input.)
6190
6191 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe.
6192 If FILTER_EVENTS is nonzero, ignore internal events (FOCUS_IN_EVENT). */
6193
6194static void
6195get_filtered_input_pending (addr, do_timers_now, filter_events)
6196 int *addr;
6197 int do_timers_now;
6198 int filter_events;
6199{
6200 /* First of all, have we already counted some input? */
6201 *addr = (!NILP (Vquit_flag)
6202 || readable_filtered_events (do_timers_now, filter_events));
6203
6204 /* If input is being read as it arrives, and we have none, there is none. */
6205 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6206 return;
6207
6208 /* Try to read some input and see how much we get. */
6209 gobble_input (0);
6210 *addr = (!NILP (Vquit_flag)
6211 || readable_filtered_events (do_timers_now, filter_events));
6212}
6213
6214/* Store into *addr a value nonzero if terminal input chars are available.
6215 Serves the purpose of ioctl (0, FIONREAD, addr)
6216 but works even if FIONREAD does not exist.
6217 (In fact, this may actually read some input.)
6218
6219 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
6220
6221static void
6222get_input_pending (addr, do_timers_now)
6223 int *addr;
6224 int do_timers_now;
6225{
6226 get_filtered_input_pending (addr, do_timers_now, 0);
6227}
6228
6229/* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6230
6231void
6232gobble_input (expected)
6233 int expected;
6234{
6235#ifndef VMS
6236#ifdef SIGIO
6237 if (interrupt_input)
6238 {
6239 SIGMASKTYPE mask;
6240 mask = sigblock (sigmask (SIGIO));
6241 read_avail_input (expected);
6242 sigsetmask (mask);
6243 }
6244 else
6245#ifdef POLL_FOR_INPUT
6246 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
6247 {
6248 SIGMASKTYPE mask;
6249 mask = sigblock (sigmask (SIGALRM));
6250 read_avail_input (expected);
6251 sigsetmask (mask);
6252 }
6253 else
6254#endif
6255#endif
6256 read_avail_input (expected);
6257#endif
6258}
6259
6260/* Put a BUFFER_SWITCH_EVENT in the buffer
6261 so that read_key_sequence will notice the new current buffer. */
6262
6263void
6264record_asynch_buffer_change ()
6265{
6266 struct input_event event;
6267 Lisp_Object tem;
6268
6269 event.kind = BUFFER_SWITCH_EVENT;
6270 event.frame_or_window = Qnil;
6271 event.arg = Qnil;
6272
6273#ifdef subprocesses
6274 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6275 The purpose of the event is to make read_key_sequence look up the
6276 keymaps again. If we aren't in read_key_sequence, we don't need one,
6277 and the event could cause trouble by messing up (input-pending-p). */
6278 tem = Fwaiting_for_user_input_p ();
6279 if (NILP (tem))
6280 return;
6281#else
6282 /* We never need these events if we have no asynchronous subprocesses. */
6283 return;
6284#endif
6285
6286 /* Make sure no interrupt happens while storing the event. */
6287#ifdef SIGIO
6288 if (interrupt_input)
6289 {
6290 SIGMASKTYPE mask;
6291 mask = sigblock (sigmask (SIGIO));
6292 kbd_buffer_store_event (&event);
6293 sigsetmask (mask);
6294 }
6295 else
6296#endif
6297 {
6298 stop_polling ();
6299 kbd_buffer_store_event (&event);
6300 start_polling ();
6301 }
6302}
6303\f
6304#ifndef VMS
6305
6306/* Read any terminal input already buffered up by the system
6307 into the kbd_buffer, but do not wait.
6308
6309 EXPECTED should be nonzero if the caller knows there is some input.
6310
6311 Except on VMS, all input is read by this function.
6312 If interrupt_input is nonzero, this function MUST be called
6313 only when SIGIO is blocked.
6314
6315 Returns the number of keyboard chars read, or -1 meaning
6316 this is a bad time to try to read input. */
6317
6318static int
6319read_avail_input (expected)
6320 int expected;
6321{
6322 struct input_event buf[KBD_BUFFER_SIZE];
6323 register int i;
6324 int nread;
6325
6326 if (read_socket_hook)
6327 /* No need for FIONREAD or fcntl; just say don't wait. */
6328 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE, expected);
6329 else
6330 {
6331 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6332 the kbd_buffer can really hold. That may prevent loss
6333 of characters on some systems when input is stuffed at us. */
6334 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6335 int n_to_read;
6336
6337 /* Determine how many characters we should *try* to read. */
6338#ifdef WINDOWSNT
6339 return 0;
6340#else /* not WINDOWSNT */
6341#ifdef MSDOS
6342 n_to_read = dos_keysns ();
6343 if (n_to_read == 0)
6344 return 0;
6345#else /* not MSDOS */
6346#ifdef FIONREAD
6347 /* Find out how much input is available. */
6348 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
6349 /* Formerly simply reported no input, but that sometimes led to
6350 a failure of Emacs to terminate.
6351 SIGHUP seems appropriate if we can't reach the terminal. */
6352 /* ??? Is it really right to send the signal just to this process
6353 rather than to the whole process group?
6354 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6355 kill (getpid (), SIGHUP);
6356 if (n_to_read == 0)
6357 return 0;
6358 if (n_to_read > sizeof cbuf)
6359 n_to_read = sizeof cbuf;
6360#else /* no FIONREAD */
6361#if defined (USG) || defined (DGUX)
6362 /* Read some input if available, but don't wait. */
6363 n_to_read = sizeof cbuf;
6364 fcntl (input_fd, F_SETFL, O_NDELAY);
6365#else
6366 you lose;
6367#endif
6368#endif
6369#endif /* not MSDOS */
6370#endif /* not WINDOWSNT */
6371
6372 /* Now read; for one reason or another, this will not block.
6373 NREAD is set to the number of chars read. */
6374 do
6375 {
6376#ifdef MSDOS
6377 cbuf[0] = dos_keyread ();
6378 nread = 1;
6379#else
6380 nread = emacs_read (input_fd, cbuf, n_to_read);
6381#endif
6382 /* POSIX infers that processes which are not in the session leader's
6383 process group won't get SIGHUP's at logout time. BSDI adheres to
6384 this part standard and returns -1 from read (0) with errno==EIO
6385 when the control tty is taken away.
6386 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6387 if (nread == -1 && errno == EIO)
6388 kill (0, SIGHUP);
6389#if defined (AIX) && (! defined (aix386) && defined (_BSD))
6390 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6391 This looks incorrect, but it isn't, because _BSD causes
6392 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6393 and that causes a value other than 0 when there is no input. */
6394 if (nread == 0)
6395 kill (0, SIGHUP);
6396#endif
6397 }
6398 while (
6399 /* We used to retry the read if it was interrupted.
6400 But this does the wrong thing when O_NDELAY causes
6401 an EAGAIN error. Does anybody know of a situation
6402 where a retry is actually needed? */
6403#if 0
6404 nread < 0 && (errno == EAGAIN
6405#ifdef EFAULT
6406 || errno == EFAULT
6407#endif
6408#ifdef EBADSLT
6409 || errno == EBADSLT
6410#endif
6411 )
6412#else
6413 0
6414#endif
6415 );
6416
6417#ifndef FIONREAD
6418#if defined (USG) || defined (DGUX)
6419 fcntl (input_fd, F_SETFL, 0);
6420#endif /* USG or DGUX */
6421#endif /* no FIONREAD */
6422 for (i = 0; i < nread; i++)
6423 {
6424 buf[i].kind = ASCII_KEYSTROKE_EVENT;
6425 buf[i].modifiers = 0;
6426 if (meta_key == 1 && (cbuf[i] & 0x80))
6427 buf[i].modifiers = meta_modifier;
6428 if (meta_key != 2)
6429 cbuf[i] &= ~0x80;
6430
6431 buf[i].code = cbuf[i];
6432 buf[i].frame_or_window = selected_frame;
6433 buf[i].arg = Qnil;
6434 }
6435 }
6436
6437 /* Scan the chars for C-g and store them in kbd_buffer. */
6438 for (i = 0; i < nread; i++)
6439 {
6440 kbd_buffer_store_event (&buf[i]);
6441 /* Don't look at input that follows a C-g too closely.
6442 This reduces lossage due to autorepeat on C-g. */
6443 if (buf[i].kind == ASCII_KEYSTROKE_EVENT
6444 && buf[i].code == quit_char)
6445 break;
6446 }
6447
6448 return nread;
6449}
6450#endif /* not VMS */
6451\f
6452#ifdef SIGIO /* for entire page */
6453/* Note SIGIO has been undef'd if FIONREAD is missing. */
6454
6455SIGTYPE
6456input_available_signal (signo)
6457 int signo;
6458{
6459 /* Must preserve main program's value of errno. */
6460 int old_errno = errno;
6461#ifdef BSD4_1
6462 extern int select_alarmed;
6463#endif
6464
6465#if defined (USG) && !defined (POSIX_SIGNALS)
6466 /* USG systems forget handlers when they are used;
6467 must reestablish each time */
6468 signal (signo, input_available_signal);
6469#endif /* USG */
6470
6471#ifdef BSD4_1
6472 sigisheld (SIGIO);
6473#endif
6474
6475 if (input_available_clear_time)
6476 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6477
6478 while (1)
6479 {
6480 int nread;
6481 nread = read_avail_input (1);
6482 /* -1 means it's not ok to read the input now.
6483 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6484 0 means there was no keyboard input available. */
6485 if (nread <= 0)
6486 break;
6487
6488#ifdef BSD4_1
6489 select_alarmed = 1; /* Force the select emulator back to life */
6490#endif
6491 }
6492
6493#ifdef BSD4_1
6494 sigfree ();
6495#endif
6496 errno = old_errno;
6497}
6498#endif /* SIGIO */
6499
6500/* Send ourselves a SIGIO.
6501
6502 This function exists so that the UNBLOCK_INPUT macro in
6503 blockinput.h can have some way to take care of input we put off
6504 dealing with, without assuming that every file which uses
6505 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6506void
6507reinvoke_input_signal ()
6508{
6509#ifdef SIGIO
6510 kill (getpid (), SIGIO);
6511#endif
6512}
6513
6514
6515\f
6516static void menu_bar_item P_ ((Lisp_Object, Lisp_Object));
6517static void menu_bar_one_keymap P_ ((Lisp_Object));
6518
6519/* These variables hold the vector under construction within
6520 menu_bar_items and its subroutines, and the current index
6521 for storing into that vector. */
6522static Lisp_Object menu_bar_items_vector;
6523static int menu_bar_items_index;
6524
6525/* Return a vector of menu items for a menu bar, appropriate
6526 to the current buffer. Each item has three elements in the vector:
6527 KEY STRING MAPLIST.
6528
6529 OLD is an old vector we can optionally reuse, or nil. */
6530
6531Lisp_Object
6532menu_bar_items (old)
6533 Lisp_Object old;
6534{
6535 /* The number of keymaps we're scanning right now, and the number of
6536 keymaps we have allocated space for. */
6537 int nmaps;
6538
6539 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6540 in the current keymaps, or nil where it is not a prefix. */
6541 Lisp_Object *maps;
6542
6543 Lisp_Object def, tail;
6544
6545 Lisp_Object result;
6546
6547 int mapno;
6548 Lisp_Object oquit;
6549
6550 int i;
6551
6552 struct gcpro gcpro1;
6553
6554 /* In order to build the menus, we need to call the keymap
6555 accessors. They all call QUIT. But this function is called
6556 during redisplay, during which a quit is fatal. So inhibit
6557 quitting while building the menus.
6558 We do this instead of specbind because (1) errors will clear it anyway
6559 and (2) this avoids risk of specpdl overflow. */
6560 oquit = Vinhibit_quit;
6561 Vinhibit_quit = Qt;
6562
6563 if (!NILP (old))
6564 menu_bar_items_vector = old;
6565 else
6566 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6567 menu_bar_items_index = 0;
6568
6569 GCPRO1 (menu_bar_items_vector);
6570
6571 /* Build our list of keymaps.
6572 If we recognize a function key and replace its escape sequence in
6573 keybuf with its symbol, or if the sequence starts with a mouse
6574 click and we need to switch buffers, we jump back here to rebuild
6575 the initial keymaps from the current buffer. */
6576 {
6577 Lisp_Object *tmaps;
6578
6579 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6580 if (!NILP (Voverriding_local_map_menu_flag))
6581 {
6582 /* Yes, use them (if non-nil) as well as the global map. */
6583 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
6584 nmaps = 0;
6585 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6586 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6587 if (!NILP (Voverriding_local_map))
6588 maps[nmaps++] = Voverriding_local_map;
6589 }
6590 else
6591 {
6592 /* No, so use major and minor mode keymaps and keymap property.
6593 Note that menu-bar bindings in the local-map and keymap
6594 properties may not work reliable, as they are only
6595 recognized when the menu-bar (or mode-line) is updated,
6596 which does not normally happen after every command. */
6597 Lisp_Object tem;
6598 int nminor;
6599 nminor = current_minor_maps (NULL, &tmaps);
6600 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
6601 nmaps = 0;
6602 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
6603 maps[nmaps++] = tem;
6604 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
6605 nmaps += nminor;
6606 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
6607 }
6608 maps[nmaps++] = current_global_map;
6609 }
6610
6611 /* Look up in each map the dummy prefix key `menu-bar'. */
6612
6613 result = Qnil;
6614
6615 for (mapno = nmaps - 1; mapno >= 0; mapno--)
6616 if (!NILP (maps[mapno]))
6617 {
6618 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
6619 0, 1);
6620 if (CONSP (def))
6621 menu_bar_one_keymap (def);
6622 }
6623
6624 /* Move to the end those items that should be at the end. */
6625
6626 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
6627 {
6628 int i;
6629 int end = menu_bar_items_index;
6630
6631 for (i = 0; i < end; i += 4)
6632 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
6633 {
6634 Lisp_Object tem0, tem1, tem2, tem3;
6635 /* Move the item at index I to the end,
6636 shifting all the others forward. */
6637 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
6638 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
6639 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6640 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
6641 if (end > i + 4)
6642 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6643 &XVECTOR (menu_bar_items_vector)->contents[i],
6644 (end - i - 4) * sizeof (Lisp_Object));
6645 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
6646 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
6647 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
6648 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
6649 break;
6650 }
6651 }
6652
6653 /* Add nil, nil, nil, nil at the end. */
6654 i = menu_bar_items_index;
6655 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6656 {
6657 Lisp_Object tem;
6658 tem = Fmake_vector (make_number (2 * i), Qnil);
6659 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6660 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6661 menu_bar_items_vector = tem;
6662 }
6663 /* Add this item. */
6664 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6665 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6666 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6667 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
6668 menu_bar_items_index = i;
6669
6670 Vinhibit_quit = oquit;
6671 UNGCPRO;
6672 return menu_bar_items_vector;
6673}
6674\f
6675/* Scan one map KEYMAP, accumulating any menu items it defines
6676 in menu_bar_items_vector. */
6677
6678static Lisp_Object menu_bar_one_keymap_changed_items;
6679
6680static void
6681menu_bar_one_keymap (keymap)
6682 Lisp_Object keymap;
6683{
6684 Lisp_Object tail, item;
6685
6686 menu_bar_one_keymap_changed_items = Qnil;
6687
6688 /* Loop over all keymap entries that have menu strings. */
6689 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
6690 {
6691 item = XCAR (tail);
6692 if (CONSP (item))
6693 menu_bar_item (XCAR (item), XCDR (item));
6694 else if (VECTORP (item))
6695 {
6696 /* Loop over the char values represented in the vector. */
6697 int len = XVECTOR (item)->size;
6698 int c;
6699 for (c = 0; c < len; c++)
6700 {
6701 Lisp_Object character;
6702 XSETFASTINT (character, c);
6703 menu_bar_item (character, XVECTOR (item)->contents[c]);
6704 }
6705 }
6706 }
6707}
6708
6709/* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
6710 If there's already an item for KEY, add this DEF to it. */
6711
6712Lisp_Object item_properties;
6713
6714static void
6715menu_bar_item (key, item)
6716 Lisp_Object key, item;
6717{
6718 struct gcpro gcpro1;
6719 int i;
6720 Lisp_Object tem;
6721
6722 if (EQ (item, Qundefined))
6723 {
6724 /* If a map has an explicit `undefined' as definition,
6725 discard any previously made menu bar item. */
6726
6727 for (i = 0; i < menu_bar_items_index; i += 4)
6728 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6729 {
6730 if (menu_bar_items_index > i + 4)
6731 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
6732 &XVECTOR (menu_bar_items_vector)->contents[i],
6733 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
6734 menu_bar_items_index -= 4;
6735 }
6736 }
6737
6738 /* If this keymap has already contributed to this KEY,
6739 don't contribute to it a second time. */
6740 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
6741 if (!NILP (tem) || NILP (item))
6742 return;
6743
6744 menu_bar_one_keymap_changed_items
6745 = Fcons (key, menu_bar_one_keymap_changed_items);
6746
6747 /* We add to menu_bar_one_keymap_changed_items before doing the
6748 parse_menu_item, so that if it turns out it wasn't a menu item,
6749 it still correctly hides any further menu item. */
6750 GCPRO1 (key);
6751 i = parse_menu_item (item, 0, 1);
6752 UNGCPRO;
6753 if (!i)
6754 return;
6755
6756 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
6757
6758 /* Find any existing item for this KEY. */
6759 for (i = 0; i < menu_bar_items_index; i += 4)
6760 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
6761 break;
6762
6763 /* If we did not find this KEY, add it at the end. */
6764 if (i == menu_bar_items_index)
6765 {
6766 /* If vector is too small, get a bigger one. */
6767 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
6768 {
6769 Lisp_Object tem;
6770 tem = Fmake_vector (make_number (2 * i), Qnil);
6771 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6772 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6773 menu_bar_items_vector = tem;
6774 }
6775
6776 /* Add this item. */
6777 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
6778 XVECTOR (menu_bar_items_vector)->contents[i++]
6779 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
6780 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
6781 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
6782 menu_bar_items_index = i;
6783 }
6784 /* We did find an item for this KEY. Add ITEM to its list of maps. */
6785 else
6786 {
6787 Lisp_Object old;
6788 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
6789 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (item, old);
6790 }
6791}
6792\f
6793 /* This is used as the handler when calling menu_item_eval_property. */
6794static Lisp_Object
6795menu_item_eval_property_1 (arg)
6796 Lisp_Object arg;
6797{
6798 /* If we got a quit from within the menu computation,
6799 quit all the way out of it. This takes care of C-] in the debugger. */
6800 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
6801 Fsignal (Qquit, Qnil);
6802
6803 return Qnil;
6804}
6805
6806/* Evaluate an expression and return the result (or nil if something
6807 went wrong). Used to evaluate dynamic parts of menu items. */
6808Lisp_Object
6809menu_item_eval_property (sexpr)
6810 Lisp_Object sexpr;
6811{
6812 int count = SPECPDL_INDEX ();
6813 Lisp_Object val;
6814 specbind (Qinhibit_redisplay, Qt);
6815 val = internal_condition_case_1 (Feval, sexpr, Qerror,
6816 menu_item_eval_property_1);
6817 return unbind_to (count, val);
6818}
6819
6820/* This function parses a menu item and leaves the result in the
6821 vector item_properties.
6822 ITEM is a key binding, a possible menu item.
6823 If NOTREAL is nonzero, only check for equivalent key bindings, don't
6824 evaluate dynamic expressions in the menu item.
6825 INMENUBAR is > 0 when this is considered for an entry in a menu bar
6826 top level.
6827 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
6828 parse_menu_item returns true if the item is a menu item and false
6829 otherwise. */
6830
6831int
6832parse_menu_item (item, notreal, inmenubar)
6833 Lisp_Object item;
6834 int notreal, inmenubar;
6835{
6836 Lisp_Object def, tem, item_string, start;
6837 Lisp_Object cachelist;
6838 Lisp_Object filter;
6839 Lisp_Object keyhint;
6840 int i;
6841 int newcache = 0;
6842
6843 cachelist = Qnil;
6844 filter = Qnil;
6845 keyhint = Qnil;
6846
6847 if (!CONSP (item))
6848 return 0;
6849
6850 /* Create item_properties vector if necessary. */
6851 if (NILP (item_properties))
6852 item_properties
6853 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
6854
6855 /* Initialize optional entries. */
6856 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
6857 AREF (item_properties, i) = Qnil;
6858 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
6859
6860 /* Save the item here to protect it from GC. */
6861 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
6862
6863 item_string = XCAR (item);
6864
6865 start = item;
6866 item = XCDR (item);
6867 if (STRINGP (item_string))
6868 {
6869 /* Old format menu item. */
6870 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
6871
6872 /* Maybe help string. */
6873 if (CONSP (item) && STRINGP (XCAR (item)))
6874 {
6875 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
6876 start = item;
6877 item = XCDR (item);
6878 }
6879
6880 /* Maybe key binding cache. */
6881 if (CONSP (item) && CONSP (XCAR (item))
6882 && (NILP (XCAR (XCAR (item)))
6883 || VECTORP (XCAR (XCAR (item)))))
6884 {
6885 cachelist = XCAR (item);
6886 item = XCDR (item);
6887 }
6888
6889 /* This is the real definition--the function to run. */
6890 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
6891
6892 /* Get enable property, if any. */
6893 if (SYMBOLP (item))
6894 {
6895 tem = Fget (item, Qmenu_enable);
6896 if (!NILP (tem))
6897 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
6898 }
6899 }
6900 else if (EQ (item_string, Qmenu_item) && CONSP (item))
6901 {
6902 /* New format menu item. */
6903 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
6904 start = XCDR (item);
6905 if (CONSP (start))
6906 {
6907 /* We have a real binding. */
6908 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
6909
6910 item = XCDR (start);
6911 /* Is there a cache list with key equivalences. */
6912 if (CONSP (item) && CONSP (XCAR (item)))
6913 {
6914 cachelist = XCAR (item);
6915 item = XCDR (item);
6916 }
6917
6918 /* Parse properties. */
6919 while (CONSP (item) && CONSP (XCDR (item)))
6920 {
6921 tem = XCAR (item);
6922 item = XCDR (item);
6923
6924 if (EQ (tem, QCenable))
6925 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
6926 else if (EQ (tem, QCvisible) && !notreal)
6927 {
6928 /* If got a visible property and that evaluates to nil
6929 then ignore this item. */
6930 tem = menu_item_eval_property (XCAR (item));
6931 if (NILP (tem))
6932 return 0;
6933 }
6934 else if (EQ (tem, QChelp))
6935 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
6936 else if (EQ (tem, QCfilter))
6937 filter = item;
6938 else if (EQ (tem, QCkey_sequence))
6939 {
6940 tem = XCAR (item);
6941 if (NILP (cachelist)
6942 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
6943 /* Be GC protected. Set keyhint to item instead of tem. */
6944 keyhint = item;
6945 }
6946 else if (EQ (tem, QCkeys))
6947 {
6948 tem = XCAR (item);
6949 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
6950 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
6951 }
6952 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
6953 {
6954 Lisp_Object type;
6955 tem = XCAR (item);
6956 type = XCAR (tem);
6957 if (EQ (type, QCtoggle) || EQ (type, QCradio))
6958 {
6959 AREF (item_properties, ITEM_PROPERTY_SELECTED)
6960 = XCDR (tem);
6961 AREF (item_properties, ITEM_PROPERTY_TYPE)
6962 = type;
6963 }
6964 }
6965 item = XCDR (item);
6966 }
6967 }
6968 else if (inmenubar || !NILP (start))
6969 return 0;
6970 }
6971 else
6972 return 0; /* not a menu item */
6973
6974 /* If item string is not a string, evaluate it to get string.
6975 If we don't get a string, skip this item. */
6976 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
6977 if (!(STRINGP (item_string) || notreal))
6978 {
6979 item_string = menu_item_eval_property (item_string);
6980 if (!STRINGP (item_string))
6981 return 0;
6982 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
6983 }
6984
6985 /* If got a filter apply it on definition. */
6986 def = AREF (item_properties, ITEM_PROPERTY_DEF);
6987 if (!NILP (filter))
6988 {
6989 def = menu_item_eval_property (list2 (XCAR (filter),
6990 list2 (Qquote, def)));
6991
6992 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
6993 }
6994
6995 /* Enable or disable selection of item. */
6996 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
6997 if (!EQ (tem, Qt))
6998 {
6999 if (notreal)
7000 tem = Qt;
7001 else
7002 tem = menu_item_eval_property (tem);
7003 if (inmenubar && NILP (tem))
7004 return 0; /* Ignore disabled items in menu bar. */
7005 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7006 }
7007
7008 /* If we got no definition, this item is just unselectable text which
7009 is OK in a submenu but not in the menubar. */
7010 if (NILP (def))
7011 return (inmenubar ? 0 : 1);
7012
7013 /* See if this is a separate pane or a submenu. */
7014 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7015 tem = get_keymap (def, 0, 1);
7016 /* For a subkeymap, just record its details and exit. */
7017 if (CONSP (tem))
7018 {
7019 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7020 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7021 return 1;
7022 }
7023
7024 /* At the top level in the menu bar, do likewise for commands also.
7025 The menu bar does not display equivalent key bindings anyway.
7026 ITEM_PROPERTY_DEF is already set up properly. */
7027 if (inmenubar > 0)
7028 return 1;
7029
7030 /* This is a command. See if there is an equivalent key binding. */
7031 if (NILP (cachelist))
7032 {
7033 /* We have to create a cachelist. */
7034 CHECK_IMPURE (start);
7035 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7036 cachelist = XCAR (XCDR (start));
7037 newcache = 1;
7038 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7039 if (!NILP (keyhint))
7040 {
7041 XSETCAR (cachelist, XCAR (keyhint));
7042 newcache = 0;
7043 }
7044 else if (STRINGP (tem))
7045 {
7046 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7047 XSETCAR (cachelist, Qt);
7048 }
7049 }
7050
7051 tem = XCAR (cachelist);
7052 if (!EQ (tem, Qt))
7053 {
7054 int chkcache = 0;
7055 Lisp_Object prefix;
7056
7057 if (!NILP (tem))
7058 tem = Fkey_binding (tem, Qnil, Qnil);
7059
7060 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7061 if (CONSP (prefix))
7062 {
7063 def = XCAR (prefix);
7064 prefix = XCDR (prefix);
7065 }
7066 else
7067 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7068
7069 if (!update_menu_bindings)
7070 chkcache = 0;
7071 else if (NILP (XCAR (cachelist))) /* Have no saved key. */
7072 {
7073 if (newcache /* Always check first time. */
7074 /* Should we check everything when precomputing key
7075 bindings? */
7076 /* If something had no key binding before, don't recheck it
7077 because that is too slow--except if we have a list of
7078 rebound commands in Vdefine_key_rebound_commands, do
7079 recheck any command that appears in that list. */
7080 || (CONSP (Vdefine_key_rebound_commands)
7081 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7082 chkcache = 1;
7083 }
7084 /* We had a saved key. Is it still bound to the command? */
7085 else if (NILP (tem)
7086 || (!EQ (tem, def)
7087 /* If the command is an alias for another
7088 (such as lmenu.el set it up), check if the
7089 original command matches the cached command. */
7090 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7091 chkcache = 1; /* Need to recompute key binding. */
7092
7093 if (chkcache)
7094 {
7095 /* Recompute equivalent key binding. If the command is an alias
7096 for another (such as lmenu.el set it up), see if the original
7097 command name has equivalent keys. Otherwise look up the
7098 specified command itself. We don't try both, because that
7099 makes lmenu menus slow. */
7100 if (SYMBOLP (def)
7101 && SYMBOLP (XSYMBOL (def)->function)
7102 && ! NILP (Fget (def, Qmenu_alias)))
7103 def = XSYMBOL (def)->function;
7104 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7105 XSETCAR (cachelist, tem);
7106 if (NILP (tem))
7107 {
7108 XSETCDR (cachelist, Qnil);
7109 chkcache = 0;
7110 }
7111 }
7112 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7113 {
7114 tem = XCAR (cachelist);
7115 chkcache = 1;
7116 }
7117
7118 newcache = chkcache;
7119 if (chkcache)
7120 {
7121 tem = Fkey_description (tem);
7122 if (CONSP (prefix))
7123 {
7124 if (STRINGP (XCAR (prefix)))
7125 tem = concat2 (XCAR (prefix), tem);
7126 if (STRINGP (XCDR (prefix)))
7127 tem = concat2 (tem, XCDR (prefix));
7128 }
7129 XSETCDR (cachelist, tem);
7130 }
7131 }
7132
7133 tem = XCDR (cachelist);
7134 if (newcache && !NILP (tem))
7135 {
7136 tem = concat3 (build_string (" ("), tem, build_string (")"));
7137 XSETCDR (cachelist, tem);
7138 }
7139
7140 /* If we only want to precompute equivalent key bindings, stop here. */
7141 if (notreal)
7142 return 1;
7143
7144 /* If we have an equivalent key binding, use that. */
7145 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7146
7147 /* Include this when menu help is implemented.
7148 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7149 if (!(NILP (tem) || STRINGP (tem)))
7150 {
7151 tem = menu_item_eval_property (tem);
7152 if (!STRINGP (tem))
7153 tem = Qnil;
7154 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7155 }
7156 */
7157
7158 /* Handle radio buttons or toggle boxes. */
7159 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7160 if (!NILP (tem))
7161 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7162 = menu_item_eval_property (tem);
7163
7164 return 1;
7165}
7166
7167
7168\f
7169/***********************************************************************
7170 Tool-bars
7171 ***********************************************************************/
7172
7173/* A vector holding tool bar items while they are parsed in function
7174 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7175 in the vector. */
7176
7177static Lisp_Object tool_bar_items_vector;
7178
7179/* A vector holding the result of parse_tool_bar_item. Layout is like
7180 the one for a single item in tool_bar_items_vector. */
7181
7182static Lisp_Object tool_bar_item_properties;
7183
7184/* Next free index in tool_bar_items_vector. */
7185
7186static int ntool_bar_items;
7187
7188/* The symbols `tool-bar', and `:image'. */
7189
7190extern Lisp_Object Qtool_bar;
7191Lisp_Object QCimage;
7192
7193/* Function prototypes. */
7194
7195static void init_tool_bar_items P_ ((Lisp_Object));
7196static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7197static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7198static void append_tool_bar_item P_ ((void));
7199
7200
7201/* Return a vector of tool bar items for keymaps currently in effect.
7202 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7203 tool bar items found. */
7204
7205Lisp_Object
7206tool_bar_items (reuse, nitems)
7207 Lisp_Object reuse;
7208 int *nitems;
7209{
7210 Lisp_Object *maps;
7211 int nmaps, i;
7212 Lisp_Object oquit;
7213 Lisp_Object *tmaps;
7214
7215 *nitems = 0;
7216
7217 /* In order to build the menus, we need to call the keymap
7218 accessors. They all call QUIT. But this function is called
7219 during redisplay, during which a quit is fatal. So inhibit
7220 quitting while building the menus. We do this instead of
7221 specbind because (1) errors will clear it anyway and (2) this
7222 avoids risk of specpdl overflow. */
7223 oquit = Vinhibit_quit;
7224 Vinhibit_quit = Qt;
7225
7226 /* Initialize tool_bar_items_vector and protect it from GC. */
7227 init_tool_bar_items (reuse);
7228
7229 /* Build list of keymaps in maps. Set nmaps to the number of maps
7230 to process. */
7231
7232 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7233 if (!NILP (Voverriding_local_map_menu_flag))
7234 {
7235 /* Yes, use them (if non-nil) as well as the global map. */
7236 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7237 nmaps = 0;
7238 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7239 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7240 if (!NILP (Voverriding_local_map))
7241 maps[nmaps++] = Voverriding_local_map;
7242 }
7243 else
7244 {
7245 /* No, so use major and minor mode keymaps and keymap property.
7246 Note that tool-bar bindings in the local-map and keymap
7247 properties may not work reliable, as they are only
7248 recognized when the tool-bar (or mode-line) is updated,
7249 which does not normally happen after every command. */
7250 Lisp_Object tem;
7251 int nminor;
7252 nminor = current_minor_maps (NULL, &tmaps);
7253 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7254 nmaps = 0;
7255 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7256 maps[nmaps++] = tem;
7257 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7258 nmaps += nminor;
7259 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7260 }
7261
7262 /* Add global keymap at the end. */
7263 maps[nmaps++] = current_global_map;
7264
7265 /* Process maps in reverse order and look up in each map the prefix
7266 key `tool-bar'. */
7267 for (i = nmaps - 1; i >= 0; --i)
7268 if (!NILP (maps[i]))
7269 {
7270 Lisp_Object keymap;
7271
7272 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7273 if (CONSP (keymap))
7274 {
7275 Lisp_Object tail;
7276
7277 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7278 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7279 {
7280 Lisp_Object keydef = XCAR (tail);
7281 if (CONSP (keydef))
7282 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7283 }
7284 }
7285 }
7286
7287 Vinhibit_quit = oquit;
7288 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7289 return tool_bar_items_vector;
7290}
7291
7292
7293/* Process the definition of KEY which is DEF. */
7294
7295static void
7296process_tool_bar_item (key, def)
7297 Lisp_Object key, def;
7298{
7299 int i;
7300 extern Lisp_Object Qundefined;
7301 struct gcpro gcpro1, gcpro2;
7302
7303 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7304 eval. */
7305 GCPRO2 (key, def);
7306
7307 if (EQ (def, Qundefined))
7308 {
7309 /* If a map has an explicit `undefined' as definition,
7310 discard any previously made item. */
7311 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7312 {
7313 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7314
7315 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7316 {
7317 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7318 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7319 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7320 * sizeof (Lisp_Object)));
7321 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7322 break;
7323 }
7324 }
7325 }
7326 else if (parse_tool_bar_item (key, def))
7327 /* Append a new tool bar item to tool_bar_items_vector. Accept
7328 more than one definition for the same key. */
7329 append_tool_bar_item ();
7330
7331 UNGCPRO;
7332}
7333
7334
7335/* Parse a tool bar item specification ITEM for key KEY and return the
7336 result in tool_bar_item_properties. Value is zero if ITEM is
7337 invalid.
7338
7339 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7340
7341 CAPTION is the caption of the item, If it's not a string, it is
7342 evaluated to get a string.
7343
7344 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7345 as binding are currently ignored.
7346
7347 The following properties are recognized:
7348
7349 - `:enable FORM'.
7350
7351 FORM is evaluated and specifies whether the tool bar item is
7352 enabled or disabled.
7353
7354 - `:visible FORM'
7355
7356 FORM is evaluated and specifies whether the tool bar item is visible.
7357
7358 - `:filter FUNCTION'
7359
7360 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7361 result is stored as the new binding.
7362
7363 - `:button (TYPE SELECTED)'
7364
7365 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7366 and specifies whether the button is selected (pressed) or not.
7367
7368 - `:image IMAGES'
7369
7370 IMAGES is either a single image specification or a vector of four
7371 image specifications. See enum tool_bar_item_images.
7372
7373 - `:help HELP-STRING'.
7374
7375 Gives a help string to display for the tool bar item. */
7376
7377static int
7378parse_tool_bar_item (key, item)
7379 Lisp_Object key, item;
7380{
7381 /* Access slot with index IDX of vector tool_bar_item_properties. */
7382#define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7383
7384 Lisp_Object filter = Qnil;
7385 Lisp_Object caption;
7386 int i;
7387
7388 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7389 Rule out items that aren't lists, don't start with
7390 `menu-item' or whose rest following `tool-bar-item' is not a
7391 list. */
7392 if (!CONSP (item)
7393 || !EQ (XCAR (item), Qmenu_item)
7394 || (item = XCDR (item),
7395 !CONSP (item)))
7396 return 0;
7397
7398 /* Create tool_bar_item_properties vector if necessary. Reset it to
7399 defaults. */
7400 if (VECTORP (tool_bar_item_properties))
7401 {
7402 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7403 PROP (i) = Qnil;
7404 }
7405 else
7406 tool_bar_item_properties
7407 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7408
7409 /* Set defaults. */
7410 PROP (TOOL_BAR_ITEM_KEY) = key;
7411 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7412
7413 /* Get the caption of the item. If the caption is not a string,
7414 evaluate it to get a string. If we don't get a string, skip this
7415 item. */
7416 caption = XCAR (item);
7417 if (!STRINGP (caption))
7418 {
7419 caption = menu_item_eval_property (caption);
7420 if (!STRINGP (caption))
7421 return 0;
7422 }
7423 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7424
7425 /* Give up if rest following the caption is not a list. */
7426 item = XCDR (item);
7427 if (!CONSP (item))
7428 return 0;
7429
7430 /* Store the binding. */
7431 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7432 item = XCDR (item);
7433
7434 /* Ignore cached key binding, if any. */
7435 if (CONSP (item) && CONSP (XCAR (item)))
7436 item = XCDR (item);
7437
7438 /* Process the rest of the properties. */
7439 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7440 {
7441 Lisp_Object key, value;
7442
7443 key = XCAR (item);
7444 value = XCAR (XCDR (item));
7445
7446 if (EQ (key, QCenable))
7447 /* `:enable FORM'. */
7448 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7449 else if (EQ (key, QCvisible))
7450 {
7451 /* `:visible FORM'. If got a visible property and that
7452 evaluates to nil then ignore this item. */
7453 if (NILP (menu_item_eval_property (value)))
7454 return 0;
7455 }
7456 else if (EQ (key, QChelp))
7457 /* `:help HELP-STRING'. */
7458 PROP (TOOL_BAR_ITEM_HELP) = value;
7459 else if (EQ (key, QCfilter))
7460 /* ':filter FORM'. */
7461 filter = value;
7462 else if (EQ (key, QCbutton) && CONSP (value))
7463 {
7464 /* `:button (TYPE . SELECTED)'. */
7465 Lisp_Object type, selected;
7466
7467 type = XCAR (value);
7468 selected = XCDR (value);
7469 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7470 {
7471 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7472 PROP (TOOL_BAR_ITEM_TYPE) = type;
7473 }
7474 }
7475 else if (EQ (key, QCimage)
7476 && (CONSP (value)
7477 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7478 /* Value is either a single image specification or a vector
7479 of 4 such specifications for the different button states. */
7480 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7481 }
7482
7483 /* If got a filter apply it on binding. */
7484 if (!NILP (filter))
7485 PROP (TOOL_BAR_ITEM_BINDING)
7486 = menu_item_eval_property (list2 (filter,
7487 list2 (Qquote,
7488 PROP (TOOL_BAR_ITEM_BINDING))));
7489
7490 /* See if the binding is a keymap. Give up if it is. */
7491 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7492 return 0;
7493
7494 /* Enable or disable selection of item. */
7495 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7496 PROP (TOOL_BAR_ITEM_ENABLED_P)
7497 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7498
7499 /* Handle radio buttons or toggle boxes. */
7500 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7501 PROP (TOOL_BAR_ITEM_SELECTED_P)
7502 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7503
7504 return 1;
7505
7506#undef PROP
7507}
7508
7509
7510/* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7511 that can be reused. */
7512
7513static void
7514init_tool_bar_items (reuse)
7515 Lisp_Object reuse;
7516{
7517 if (VECTORP (reuse))
7518 tool_bar_items_vector = reuse;
7519 else
7520 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7521 ntool_bar_items = 0;
7522}
7523
7524
7525/* Append parsed tool bar item properties from
7526 tool_bar_item_properties */
7527
7528static void
7529append_tool_bar_item ()
7530{
7531 Lisp_Object *to, *from;
7532
7533 /* Enlarge tool_bar_items_vector if necessary. */
7534 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7535 >= XVECTOR (tool_bar_items_vector)->size)
7536 {
7537 Lisp_Object new_vector;
7538 int old_size = XVECTOR (tool_bar_items_vector)->size;
7539
7540 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
7541 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7542 XVECTOR (new_vector)->contents,
7543 old_size * sizeof (Lisp_Object));
7544 tool_bar_items_vector = new_vector;
7545 }
7546
7547 /* Append entries from tool_bar_item_properties to the end of
7548 tool_bar_items_vector. */
7549 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7550 from = XVECTOR (tool_bar_item_properties)->contents;
7551 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7552 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7553}
7554
7555
7556
7557
7558\f
7559/* Read a character using menus based on maps in the array MAPS.
7560 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7561 Return t if we displayed a menu but the user rejected it.
7562
7563 PREV_EVENT is the previous input event, or nil if we are reading
7564 the first event of a key sequence.
7565
7566 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7567 if we used a mouse menu to read the input, or zero otherwise. If
7568 USED_MOUSE_MENU is null, we don't dereference it.
7569
7570 The prompting is done based on the prompt-string of the map
7571 and the strings associated with various map elements.
7572
7573 This can be done with X menus or with menus put in the minibuf.
7574 These are done in different ways, depending on how the input will be read.
7575 Menus using X are done after auto-saving in read-char, getting the input
7576 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7577 and do auto-saving in the inner call of read_char. */
7578
7579static Lisp_Object
7580read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7581 int nmaps;
7582 Lisp_Object *maps;
7583 Lisp_Object prev_event;
7584 int *used_mouse_menu;
7585{
7586 int mapno;
7587 register Lisp_Object name;
7588
7589 if (used_mouse_menu)
7590 *used_mouse_menu = 0;
7591
7592 /* Use local over global Menu maps */
7593
7594 if (! menu_prompting)
7595 return Qnil;
7596
7597 /* Optionally disregard all but the global map. */
7598 if (inhibit_local_menu_bar_menus)
7599 {
7600 maps += (nmaps - 1);
7601 nmaps = 1;
7602 }
7603
7604 /* Get the menu name from the first map that has one (a prompt string). */
7605 for (mapno = 0; mapno < nmaps; mapno++)
7606 {
7607 name = Fkeymap_prompt (maps[mapno]);
7608 if (!NILP (name))
7609 break;
7610 }
7611
7612 /* If we don't have any menus, just read a character normally. */
7613 if (!STRINGP (name))
7614 return Qnil;
7615
7616#ifdef HAVE_MENUS
7617 /* If we got to this point via a mouse click,
7618 use a real menu for mouse selection. */
7619 if (EVENT_HAS_PARAMETERS (prev_event)
7620 && !EQ (XCAR (prev_event), Qmenu_bar)
7621 && !EQ (XCAR (prev_event), Qtool_bar))
7622 {
7623 /* Display the menu and get the selection. */
7624 Lisp_Object *realmaps
7625 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
7626 Lisp_Object value;
7627 int nmaps1 = 0;
7628
7629 /* Use the maps that are not nil. */
7630 for (mapno = 0; mapno < nmaps; mapno++)
7631 if (!NILP (maps[mapno]))
7632 realmaps[nmaps1++] = maps[mapno];
7633
7634 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
7635 if (CONSP (value))
7636 {
7637 Lisp_Object tem;
7638
7639 record_menu_key (XCAR (value));
7640
7641 /* If we got multiple events, unread all but
7642 the first.
7643 There is no way to prevent those unread events
7644 from showing up later in last_nonmenu_event.
7645 So turn symbol and integer events into lists,
7646 to indicate that they came from a mouse menu,
7647 so that when present in last_nonmenu_event
7648 they won't confuse things. */
7649 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
7650 {
7651 record_menu_key (XCAR (tem));
7652 if (SYMBOLP (XCAR (tem))
7653 || INTEGERP (XCAR (tem)))
7654 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
7655 }
7656
7657 /* If we got more than one event, put all but the first
7658 onto this list to be read later.
7659 Return just the first event now. */
7660 Vunread_command_events
7661 = nconc2 (XCDR (value), Vunread_command_events);
7662 value = XCAR (value);
7663 }
7664 else if (NILP (value))
7665 value = Qt;
7666 if (used_mouse_menu)
7667 *used_mouse_menu = 1;
7668 return value;
7669 }
7670#endif /* HAVE_MENUS */
7671 return Qnil ;
7672}
7673
7674static Lisp_Object
7675read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
7676 int commandflag ;
7677 int nmaps;
7678 Lisp_Object *maps;
7679{
7680 int mapno;
7681 register Lisp_Object name;
7682 int idx = -1;
7683 Lisp_Object rest, vector;
7684 /* This is a list of the prompt and individual menu entries passed to
7685 lisp for formatting and display. The format is:
7686 MENU_LIST : (MENU_PROMPT ENTRY...)
7687 ENTRY : (EVENT PROMPT [BINDING [TOGGLE_TYPE TOGGLE_STATE]]) */
7688 Lisp_Object menu_list = Qnil;
7689
7690 vector = Qnil;
7691 name = Qnil;
7692
7693 if (! menu_prompting)
7694 return Qnil;
7695
7696 /* Get the menu name from the first map that has one (a prompt string). */
7697 for (mapno = 0; mapno < nmaps; mapno++)
7698 {
7699 name = Fkeymap_prompt (maps[mapno]);
7700 if (!NILP (name))
7701 break;
7702 }
7703
7704 /* If we don't have any menus, just read a character normally. */
7705 if (!STRINGP (name))
7706 return Qnil;
7707
7708 /* Start prompting at start of first map. */
7709 mapno = 0;
7710 rest = maps[mapno];
7711
7712 /* Loop over elements of map. */
7713 for (;;)
7714 {
7715 Lisp_Object elt;
7716
7717 /* If reached end of map, start at beginning of next map. */
7718 if (NILP (rest))
7719 {
7720 mapno++;
7721 if (mapno == nmaps)
7722 /* Done with all maps. */
7723 break;
7724 rest = maps[mapno];
7725 }
7726
7727 /* Look at the next element of the map. */
7728 if (idx >= 0)
7729 elt = AREF (vector, idx);
7730 else
7731 elt = Fcar_safe (rest);
7732
7733 if (idx < 0 && VECTORP (elt))
7734 {
7735 /* If we found a dense table in the keymap,
7736 advanced past it, but start scanning its contents. */
7737 rest = Fcdr_safe (rest);
7738 vector = elt;
7739 idx = 0;
7740 }
7741 else
7742 {
7743 /* An ordinary element. */
7744 Lisp_Object event, tem;
7745
7746 if (idx < 0)
7747 {
7748 event = Fcar_safe (elt); /* alist */
7749 elt = Fcdr_safe (elt);
7750 }
7751 else
7752 {
7753 XSETINT (event, idx); /* vector */
7754 }
7755
7756 /* Ignore the element if it has no prompt string. */
7757 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
7758 {
7759 /* The list describing this entry. */
7760 Lisp_Object entry = Qnil;
7761 Lisp_Object prop_val;
7762
7763 prop_val = AREF (item_properties, ITEM_PROPERTY_TYPE);
7764 if (EQ (prop_val, QCradio) || EQ (prop_val, QCtoggle))
7765 /* This is a `toggle-able' menu-entry, make the
7766 tail of the list describe it. */
7767 entry
7768 = Fcons (prop_val,
7769 Fcons (AREF (item_properties,
7770 ITEM_PROPERTY_SELECTED),
7771 entry));
7772
7773 /* Equivalent keybinding. */
7774 prop_val = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7775 if (!NILP (entry) || !NILP (prop_val))
7776 entry = Fcons (prop_val, entry);
7777
7778 /* The string prompt. */
7779 prop_val = AREF (item_properties, ITEM_PROPERTY_NAME);
7780 entry = Fcons (prop_val, entry);
7781
7782 /* Finally, the car of the list is the event. */
7783 entry = Fcons (event, entry);
7784
7785 /* Push this entry on the the list of entries. */
7786 menu_list = Fcons (entry, menu_list);
7787 }
7788
7789 /* Move past this element. */
7790 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
7791 /* Handle reaching end of dense table. */
7792 idx = -1;
7793 if (idx >= 0)
7794 idx++;
7795 else
7796 rest = Fcdr_safe (rest);
7797 }
7798 }
7799
7800 /* Put the entries in the proper order for the display function. */
7801 menu_list = Fnreverse (menu_list);
7802
7803 /* The car of the entries list is the prompt for the whole menu. */
7804 menu_list = Fcons (name, menu_list);
7805
7806 /* Display the menu, and prompt for a key. */
7807 if (NILP (Vkey_menu_prompt_function))
7808 return Qnil;
7809 else
7810 return call1 (Vkey_menu_prompt_function, menu_list);
7811}
7812\f
7813/* Reading key sequences. */
7814
7815/* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
7816 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
7817 keymap, or nil otherwise. Return the index of the first keymap in
7818 which KEY has any binding, or NMAPS if no map has a binding.
7819
7820 If KEY is a meta ASCII character, treat it like meta-prefix-char
7821 followed by the corresponding non-meta character. Keymaps in
7822 CURRENT with non-prefix bindings for meta-prefix-char become nil in
7823 NEXT.
7824
7825 If KEY has no bindings in any of the CURRENT maps, NEXT is left
7826 unmodified.
7827
7828 NEXT may be the same array as CURRENT. */
7829
7830static int
7831follow_key (key, nmaps, current, defs, next)
7832 Lisp_Object key;
7833 Lisp_Object *current, *defs, *next;
7834 int nmaps;
7835{
7836 int i, first_binding;
7837 int did_meta = 0;
7838
7839 first_binding = nmaps;
7840 for (i = nmaps - 1; i >= 0; i--)
7841 {
7842 if (! NILP (current[i]))
7843 {
7844 Lisp_Object map;
7845 if (did_meta)
7846 map = defs[i];
7847 else
7848 map = current[i];
7849
7850 defs[i] = access_keymap (map, key, 1, 0, 1);
7851 if (! NILP (defs[i]))
7852 first_binding = i;
7853 }
7854 else
7855 defs[i] = Qnil;
7856 }
7857
7858 /* Given the set of bindings we've found, produce the next set of maps. */
7859 if (first_binding < nmaps)
7860 for (i = 0; i < nmaps; i++)
7861 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
7862
7863 return first_binding;
7864}
7865
7866/* Read a sequence of keys that ends with a non prefix character,
7867 storing it in KEYBUF, a buffer of size BUFSIZE.
7868 Prompt with PROMPT.
7869 Return the length of the key sequence stored.
7870 Return -1 if the user rejected a command menu.
7871
7872 Echo starting immediately unless `prompt' is 0.
7873
7874 Where a key sequence ends depends on the currently active keymaps.
7875 These include any minor mode keymaps active in the current buffer,
7876 the current buffer's local map, and the global map.
7877
7878 If a key sequence has no other bindings, we check Vfunction_key_map
7879 to see if some trailing subsequence might be the beginning of a
7880 function key's sequence. If so, we try to read the whole function
7881 key, and substitute its symbolic name into the key sequence.
7882
7883 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
7884 `double-' events into similar click events, if that would make them
7885 bound. We try to turn `triple-' events first into `double-' events,
7886 then into clicks.
7887
7888 If we get a mouse click in a mode line, vertical divider, or other
7889 non-text area, we treat the click as if it were prefixed by the
7890 symbol denoting that area - `mode-line', `vertical-line', or
7891 whatever.
7892
7893 If the sequence starts with a mouse click, we read the key sequence
7894 with respect to the buffer clicked on, not the current buffer.
7895
7896 If the user switches frames in the midst of a key sequence, we put
7897 off the switch-frame event until later; the next call to
7898 read_char will return it.
7899
7900 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
7901 from the selected window's buffer. */
7902
7903static int
7904read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
7905 can_return_switch_frame, fix_current_buffer)
7906 Lisp_Object *keybuf;
7907 int bufsize;
7908 Lisp_Object prompt;
7909 int dont_downcase_last;
7910 int can_return_switch_frame;
7911 int fix_current_buffer;
7912{
7913 volatile Lisp_Object from_string;
7914 volatile int count = SPECPDL_INDEX ();
7915
7916 /* How many keys there are in the current key sequence. */
7917 volatile int t;
7918
7919 /* The length of the echo buffer when we started reading, and
7920 the length of this_command_keys when we started reading. */
7921 volatile int echo_start;
7922 volatile int keys_start;
7923
7924 /* The number of keymaps we're scanning right now, and the number of
7925 keymaps we have allocated space for. */
7926 volatile int nmaps;
7927 volatile int nmaps_allocated = 0;
7928
7929 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
7930 the current keymaps. */
7931 Lisp_Object *volatile defs = NULL;
7932
7933 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7934 in the current keymaps, or nil where it is not a prefix. */
7935 Lisp_Object *volatile submaps = NULL;
7936
7937 /* The local map to start out with at start of key sequence. */
7938 volatile Lisp_Object orig_local_map;
7939
7940 /* The map from the `keymap' property to start out with at start of
7941 key sequence. */
7942 volatile Lisp_Object orig_keymap;
7943
7944 /* 1 if we have already considered switching to the local-map property
7945 of the place where a mouse click occurred. */
7946 volatile int localized_local_map = 0;
7947
7948 /* The index in defs[] of the first keymap that has a binding for
7949 this key sequence. In other words, the lowest i such that
7950 defs[i] is non-nil. */
7951 volatile int first_binding;
7952 /* Index of the first key that has no binding.
7953 It is useless to try fkey_start larger than that. */
7954 volatile int first_unbound;
7955
7956 /* If t < mock_input, then KEYBUF[t] should be read as the next
7957 input key.
7958
7959 We use this to recover after recognizing a function key. Once we
7960 realize that a suffix of the current key sequence is actually a
7961 function key's escape sequence, we replace the suffix with the
7962 function key's binding from Vfunction_key_map. Now keybuf
7963 contains a new and different key sequence, so the echo area,
7964 this_command_keys, and the submaps and defs arrays are wrong. In
7965 this situation, we set mock_input to t, set t to 0, and jump to
7966 restart_sequence; the loop will read keys from keybuf up until
7967 mock_input, thus rebuilding the state; and then it will resume
7968 reading characters from the keyboard. */
7969 volatile int mock_input = 0;
7970
7971 /* If the sequence is unbound in submaps[], then
7972 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
7973 and fkey_map is its binding.
7974
7975 These might be > t, indicating that all function key scanning
7976 should hold off until t reaches them. We do this when we've just
7977 recognized a function key, to avoid searching for the function
7978 key's again in Vfunction_key_map. */
7979 volatile int fkey_start = 0, fkey_end = 0;
7980 volatile Lisp_Object fkey_map;
7981
7982 /* Likewise, for key_translation_map. */
7983 volatile int keytran_start = 0, keytran_end = 0;
7984 volatile Lisp_Object keytran_map;
7985
7986 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
7987 we put it off for later. While we're reading, we keep the event here. */
7988 volatile Lisp_Object delayed_switch_frame;
7989
7990 /* See the comment below... */
7991#if defined (GOBBLE_FIRST_EVENT)
7992 Lisp_Object first_event;
7993#endif
7994
7995 volatile Lisp_Object original_uppercase;
7996 volatile int original_uppercase_position = -1;
7997
7998 /* Gets around Microsoft compiler limitations. */
7999 int dummyflag = 0;
8000
8001 struct buffer *starting_buffer;
8002
8003 /* List of events for which a fake prefix key has been generated. */
8004 volatile Lisp_Object fake_prefixed_keys = Qnil;
8005
8006#if defined (GOBBLE_FIRST_EVENT)
8007 int junk;
8008#endif
8009
8010 struct gcpro gcpro1;
8011
8012 GCPRO1 (fake_prefixed_keys);
8013 raw_keybuf_count = 0;
8014
8015 last_nonmenu_event = Qnil;
8016
8017 delayed_switch_frame = Qnil;
8018 fkey_map = Vfunction_key_map;
8019 keytran_map = Vkey_translation_map;
8020
8021 /* If there is no function-key-map, turn off function key scanning. */
8022 if (!KEYMAPP (Vfunction_key_map))
8023 fkey_start = fkey_end = bufsize + 1;
8024
8025 /* If there is no key-translation-map, turn off scanning. */
8026 if (!KEYMAPP (Vkey_translation_map))
8027 keytran_start = keytran_end = bufsize + 1;
8028
8029 if (INTERACTIVE)
8030 {
8031 if (!NILP (prompt))
8032 echo_prompt (prompt);
8033 else if (cursor_in_echo_area
8034 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8035 && NILP (Fzerop (Vecho_keystrokes)))
8036 /* This doesn't put in a dash if the echo buffer is empty, so
8037 you don't always see a dash hanging out in the minibuffer. */
8038 echo_dash ();
8039 }
8040
8041 /* Record the initial state of the echo area and this_command_keys;
8042 we will need to restore them if we replay a key sequence. */
8043 if (INTERACTIVE)
8044 echo_start = echo_length ();
8045 keys_start = this_command_key_count;
8046 this_single_command_key_start = keys_start;
8047
8048#if defined (GOBBLE_FIRST_EVENT)
8049 /* This doesn't quite work, because some of the things that read_char
8050 does cannot safely be bypassed. It seems too risky to try to make
8051 this work right. */
8052
8053 /* Read the first char of the sequence specially, before setting
8054 up any keymaps, in case a filter runs and switches buffers on us. */
8055 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8056 &junk);
8057#endif /* GOBBLE_FIRST_EVENT */
8058
8059 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8060 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8061 from_string = Qnil;
8062
8063 /* We jump here when the key sequence has been thoroughly changed, and
8064 we need to rescan it starting from the beginning. When we jump here,
8065 keybuf[0..mock_input] holds the sequence we should reread. */
8066 replay_sequence:
8067
8068 starting_buffer = current_buffer;
8069 first_unbound = bufsize + 1;
8070
8071 /* Build our list of keymaps.
8072 If we recognize a function key and replace its escape sequence in
8073 keybuf with its symbol, or if the sequence starts with a mouse
8074 click and we need to switch buffers, we jump back here to rebuild
8075 the initial keymaps from the current buffer. */
8076 nmaps = 0;
8077
8078 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8079 || !NILP (Voverriding_local_map))
8080 {
8081 if (3 > nmaps_allocated)
8082 {
8083 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8084 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8085 nmaps_allocated = 3;
8086 }
8087 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8088 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8089 if (!NILP (Voverriding_local_map))
8090 submaps[nmaps++] = Voverriding_local_map;
8091 }
8092 else
8093 {
8094 int nminor;
8095 int total;
8096 Lisp_Object *maps;
8097
8098 nminor = current_minor_maps (0, &maps);
8099 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8100
8101 if (total > nmaps_allocated)
8102 {
8103 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8104 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8105 nmaps_allocated = total;
8106 }
8107
8108 if (!NILP (orig_keymap))
8109 submaps[nmaps++] = orig_keymap;
8110
8111 bcopy (maps, (void *) (submaps + nmaps),
8112 nminor * sizeof (submaps[0]));
8113
8114 nmaps += nminor;
8115
8116 submaps[nmaps++] = orig_local_map;
8117 }
8118 submaps[nmaps++] = current_global_map;
8119
8120 /* Find an accurate initial value for first_binding. */
8121 for (first_binding = 0; first_binding < nmaps; first_binding++)
8122 if (! NILP (submaps[first_binding]))
8123 break;
8124
8125 /* Start from the beginning in keybuf. */
8126 t = 0;
8127
8128 /* These are no-ops the first time through, but if we restart, they
8129 revert the echo area and this_command_keys to their original state. */
8130 this_command_key_count = keys_start;
8131 if (INTERACTIVE && t < mock_input)
8132 echo_truncate (echo_start);
8133
8134 /* If the best binding for the current key sequence is a keymap, or
8135 we may be looking at a function key's escape sequence, keep on
8136 reading. */
8137 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
8138 || (first_binding >= nmaps && fkey_start < t)
8139 || (first_binding >= nmaps && keytran_start < t)
8140 /* Don't return in the middle of a possible function key sequence,
8141 if the only bindings we found were via case conversion.
8142 Thus, if ESC O a has a function-key-map translation
8143 and ESC o has a binding, don't return after ESC O,
8144 so that we can translate ESC O plus the next character. */
8145 )
8146 {
8147 Lisp_Object key;
8148 int used_mouse_menu = 0;
8149
8150 /* Where the last real key started. If we need to throw away a
8151 key that has expanded into more than one element of keybuf
8152 (say, a mouse click on the mode line which is being treated
8153 as [mode-line (mouse-...)], then we backtrack to this point
8154 of keybuf. */
8155 volatile int last_real_key_start;
8156
8157 /* These variables are analogous to echo_start and keys_start;
8158 while those allow us to restart the entire key sequence,
8159 echo_local_start and keys_local_start allow us to throw away
8160 just one key. */
8161 volatile int echo_local_start, keys_local_start, local_first_binding;
8162
8163 /* key-translation-map is applied *after* function-key-map. */
8164 eassert (keytran_end <= fkey_start);
8165
8166 if (first_unbound < fkey_start && first_unbound < keytran_start)
8167 { /* The prefix upto first_unbound has no binding and has
8168 no translation left to do either, so we know it's unbound.
8169 If we don't stop now, we risk staying here indefinitely
8170 (if the user keeps entering fkey or keytran prefixes
8171 like C-c ESC ESC ESC ESC ...) */
8172 int i;
8173 for (i = first_unbound + 1; i < t; i++)
8174 keybuf[i - first_unbound - 1] = keybuf[i];
8175 mock_input = t - first_unbound - 1;
8176 fkey_end = fkey_start -= first_unbound + 1;
8177 fkey_map = Vfunction_key_map;
8178 keytran_end = keytran_start -= first_unbound + 1;
8179 keytran_map = Vkey_translation_map;
8180 goto replay_sequence;
8181 }
8182
8183 if (t >= bufsize)
8184 error ("Key sequence too long");
8185
8186 if (INTERACTIVE)
8187 echo_local_start = echo_length ();
8188 keys_local_start = this_command_key_count;
8189 local_first_binding = first_binding;
8190
8191 replay_key:
8192 /* These are no-ops, unless we throw away a keystroke below and
8193 jumped back up to replay_key; in that case, these restore the
8194 variables to their original state, allowing us to replay the
8195 loop. */
8196 if (INTERACTIVE && t < mock_input)
8197 echo_truncate (echo_local_start);
8198 this_command_key_count = keys_local_start;
8199 first_binding = local_first_binding;
8200
8201 /* By default, assume each event is "real". */
8202 last_real_key_start = t;
8203
8204 /* Does mock_input indicate that we are re-reading a key sequence? */
8205 if (t < mock_input)
8206 {
8207 key = keybuf[t];
8208 add_command_key (key);
8209 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8210 && NILP (Fzerop (Vecho_keystrokes)))
8211 echo_char (key);
8212 }
8213
8214 /* If not, we should actually read a character. */
8215 else
8216 {
8217 {
8218#ifdef MULTI_KBOARD
8219 KBOARD *interrupted_kboard = current_kboard;
8220 struct frame *interrupted_frame = SELECTED_FRAME ();
8221 if (setjmp (wrong_kboard_jmpbuf))
8222 {
8223 if (!NILP (delayed_switch_frame))
8224 {
8225 interrupted_kboard->kbd_queue
8226 = Fcons (delayed_switch_frame,
8227 interrupted_kboard->kbd_queue);
8228 delayed_switch_frame = Qnil;
8229 }
8230 while (t > 0)
8231 interrupted_kboard->kbd_queue
8232 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8233
8234 /* If the side queue is non-empty, ensure it begins with a
8235 switch-frame, so we'll replay it in the right context. */
8236 if (CONSP (interrupted_kboard->kbd_queue)
8237 && (key = XCAR (interrupted_kboard->kbd_queue),
8238 !(EVENT_HAS_PARAMETERS (key)
8239 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8240 Qswitch_frame))))
8241 {
8242 Lisp_Object frame;
8243 XSETFRAME (frame, interrupted_frame);
8244 interrupted_kboard->kbd_queue
8245 = Fcons (make_lispy_switch_frame (frame),
8246 interrupted_kboard->kbd_queue);
8247 }
8248 mock_input = 0;
8249 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8250 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8251 goto replay_sequence;
8252 }
8253#endif
8254 key = read_char (NILP (prompt), nmaps,
8255 (Lisp_Object *) submaps, last_nonmenu_event,
8256 &used_mouse_menu);
8257 }
8258
8259 /* read_char returns t when it shows a menu and the user rejects it.
8260 Just return -1. */
8261 if (EQ (key, Qt))
8262 {
8263 unbind_to (count, Qnil);
8264 UNGCPRO;
8265 return -1;
8266 }
8267
8268 /* read_char returns -1 at the end of a macro.
8269 Emacs 18 handles this by returning immediately with a
8270 zero, so that's what we'll do. */
8271 if (INTEGERP (key) && XINT (key) == -1)
8272 {
8273 t = 0;
8274 /* The Microsoft C compiler can't handle the goto that
8275 would go here. */
8276 dummyflag = 1;
8277 break;
8278 }
8279
8280 /* If the current buffer has been changed from under us, the
8281 keymap may have changed, so replay the sequence. */
8282 if (BUFFERP (key))
8283 {
8284 EMACS_TIME initial_idleness_start_time;
8285 EMACS_SET_SECS_USECS (initial_idleness_start_time,
8286 EMACS_SECS (timer_last_idleness_start_time),
8287 EMACS_USECS (timer_last_idleness_start_time));
8288
8289 /* Resume idle state, using the same start-time as before. */
8290 timer_start_idle ();
8291 timer_idleness_start_time = initial_idleness_start_time;
8292
8293 mock_input = t;
8294 /* Reset the current buffer from the selected window
8295 in case something changed the former and not the latter.
8296 This is to be more consistent with the behavior
8297 of the command_loop_1. */
8298 if (fix_current_buffer)
8299 {
8300 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8301 Fkill_emacs (Qnil);
8302 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8303 Fset_buffer (XWINDOW (selected_window)->buffer);
8304 }
8305
8306 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8307 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8308 goto replay_sequence;
8309 }
8310
8311 /* If we have a quit that was typed in another frame, and
8312 quit_throw_to_read_char switched buffers,
8313 replay to get the right keymap. */
8314 if (INTEGERP (key)
8315 && XINT (key) == quit_char
8316 && current_buffer != starting_buffer)
8317 {
8318 GROW_RAW_KEYBUF;
8319 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8320 keybuf[t++] = key;
8321 mock_input = t;
8322 Vquit_flag = Qnil;
8323 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8324 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8325 goto replay_sequence;
8326 }
8327
8328 Vquit_flag = Qnil;
8329
8330 if (EVENT_HAS_PARAMETERS (key)
8331 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8332 {
8333 /* If we're at the beginning of a key sequence, and the caller
8334 says it's okay, go ahead and return this event. If we're
8335 in the midst of a key sequence, delay it until the end. */
8336 if (t > 0 || !can_return_switch_frame)
8337 {
8338 delayed_switch_frame = key;
8339 goto replay_key;
8340 }
8341 }
8342
8343 GROW_RAW_KEYBUF;
8344 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8345 }
8346
8347 /* Clicks in non-text areas get prefixed by the symbol
8348 in their CHAR-ADDRESS field. For example, a click on
8349 the mode line is prefixed by the symbol `mode-line'.
8350
8351 Furthermore, key sequences beginning with mouse clicks
8352 are read using the keymaps of the buffer clicked on, not
8353 the current buffer. So we may have to switch the buffer
8354 here.
8355
8356 When we turn one event into two events, we must make sure
8357 that neither of the two looks like the original--so that,
8358 if we replay the events, they won't be expanded again.
8359 If not for this, such reexpansion could happen either here
8360 or when user programs play with this-command-keys. */
8361 if (EVENT_HAS_PARAMETERS (key))
8362 {
8363 Lisp_Object kind;
8364
8365 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
8366 if (EQ (kind, Qmouse_click))
8367 {
8368 Lisp_Object window, posn;
8369
8370 window = POSN_WINDOW (EVENT_START (key));
8371 posn = POSN_BUFFER_POSN (EVENT_START (key));
8372
8373 if (CONSP (posn)
8374 || (!NILP (fake_prefixed_keys)
8375 && !NILP (Fmemq (key, fake_prefixed_keys))))
8376 {
8377 /* We're looking a second time at an event for which
8378 we generated a fake prefix key. Set
8379 last_real_key_start appropriately. */
8380 if (t > 0)
8381 last_real_key_start = t - 1;
8382 }
8383
8384 /* Key sequences beginning with mouse clicks are
8385 read using the keymaps in the buffer clicked on,
8386 not the current buffer. If we're at the
8387 beginning of a key sequence, switch buffers. */
8388 if (last_real_key_start == 0
8389 && WINDOWP (window)
8390 && BUFFERP (XWINDOW (window)->buffer)
8391 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
8392 {
8393 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8394 keybuf[t] = key;
8395 mock_input = t + 1;
8396
8397 /* Arrange to go back to the original buffer once we're
8398 done reading the key sequence. Note that we can't
8399 use save_excursion_{save,restore} here, because they
8400 save point as well as the current buffer; we don't
8401 want to save point, because redisplay may change it,
8402 to accommodate a Fset_window_start or something. We
8403 don't want to do this at the top of the function,
8404 because we may get input from a subprocess which
8405 wants to change the selected window and stuff (say,
8406 emacsclient). */
8407 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
8408
8409 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8410 Fkill_emacs (Qnil);
8411 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
8412 orig_local_map = get_local_map (PT, current_buffer,
8413 Qlocal_map);
8414 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8415 goto replay_sequence;
8416 }
8417
8418 /* For a mouse click, get the local text-property keymap
8419 of the place clicked on, rather than point. */
8420 if (last_real_key_start == 0
8421 && CONSP (XCDR (key))
8422 && ! localized_local_map)
8423 {
8424 Lisp_Object map_here, start, pos;
8425
8426 localized_local_map = 1;
8427 start = EVENT_START (key);
8428
8429 if (CONSP (start) && CONSP (XCDR (start)))
8430 {
8431 pos = POSN_BUFFER_POSN (start);
8432 if (INTEGERP (pos)
8433 && XINT (pos) >= BEG && XINT (pos) <= Z)
8434 {
8435 map_here = get_local_map (XINT (pos),
8436 current_buffer, Qlocal_map);
8437 if (!EQ (map_here, orig_local_map))
8438 {
8439 orig_local_map = map_here;
8440 keybuf[t] = key;
8441 mock_input = t + 1;
8442
8443 goto replay_sequence;
8444 }
8445 map_here = get_local_map (XINT (pos),
8446 current_buffer, Qkeymap);
8447 if (!EQ (map_here, orig_keymap))
8448 {
8449 orig_keymap = map_here;
8450 keybuf[t] = key;
8451 mock_input = t + 1;
8452
8453 goto replay_sequence;
8454 }
8455 }
8456 }
8457 }
8458
8459 /* Expand mode-line and scroll-bar events into two events:
8460 use posn as a fake prefix key. */
8461 if (SYMBOLP (posn)
8462 && (NILP (fake_prefixed_keys)
8463 || NILP (Fmemq (key, fake_prefixed_keys))))
8464 {
8465 if (t + 1 >= bufsize)
8466 error ("Key sequence too long");
8467
8468 keybuf[t] = posn;
8469 keybuf[t + 1] = key;
8470 mock_input = t + 2;
8471
8472 /* Record that a fake prefix key has been generated
8473 for KEY. Don't modify the event; this would
8474 prevent proper action when the event is pushed
8475 back tino unread-command-events. */
8476 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
8477
8478 /* If on a mode line string with a local keymap,
8479 reconsider the key sequence with that keymap. */
8480 if (CONSP (POSN_STRING (EVENT_START (key))))
8481 {
8482 Lisp_Object string, pos, map, map2;
8483
8484 string = POSN_STRING (EVENT_START (key));
8485 pos = XCDR (string);
8486 string = XCAR (string);
8487 if (XINT (pos) >= 0
8488 && XINT (pos) < XSTRING (string)->size)
8489 {
8490 map = Fget_text_property (pos, Qlocal_map, string);
8491 if (!NILP (map))
8492 orig_local_map = map;
8493 map2 = Fget_text_property (pos, Qkeymap, string);
8494 if (!NILP (map2))
8495 orig_keymap = map2;
8496 if (!NILP (map) || !NILP (map2))
8497 goto replay_sequence;
8498 }
8499 }
8500
8501 goto replay_key;
8502 }
8503 else if (CONSP (POSN_STRING (EVENT_START (key)))
8504 && NILP (from_string))
8505 {
8506 /* For a click on a string, i.e. overlay string or a
8507 string displayed via the `display' property,
8508 consider `local-map' and `keymap' properties of
8509 that string. */
8510 Lisp_Object string, pos, map, map2;
8511
8512 string = POSN_STRING (EVENT_START (key));
8513 pos = XCDR (string);
8514 string = XCAR (string);
8515 if (XINT (pos) >= 0
8516 && XINT (pos) < XSTRING (string)->size)
8517 {
8518 map = Fget_text_property (pos, Qlocal_map, string);
8519 if (!NILP (map))
8520 orig_local_map = map;
8521 map2 = Fget_text_property (pos, Qkeymap, string);
8522 if (!NILP (map2))
8523 orig_keymap = map2;
8524
8525 if (!NILP (map) || !NILP (map2))
8526 {
8527 from_string = string;
8528 goto replay_sequence;
8529 }
8530 }
8531 }
8532 }
8533 else if (CONSP (XCDR (key))
8534 && CONSP (EVENT_START (key))
8535 && CONSP (XCDR (EVENT_START (key))))
8536 {
8537 Lisp_Object posn;
8538
8539 posn = POSN_BUFFER_POSN (EVENT_START (key));
8540 /* Handle menu-bar events:
8541 insert the dummy prefix event `menu-bar'. */
8542 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
8543 {
8544 if (t + 1 >= bufsize)
8545 error ("Key sequence too long");
8546 keybuf[t] = posn;
8547 keybuf[t+1] = key;
8548
8549 /* Zap the position in key, so we know that we've
8550 expanded it, and don't try to do so again. */
8551 POSN_BUFFER_SET_POSN (EVENT_START (key),
8552 Fcons (posn, Qnil));
8553
8554 mock_input = t + 2;
8555 goto replay_sequence;
8556 }
8557 else if (CONSP (posn))
8558 {
8559 /* We're looking at the second event of a
8560 sequence which we expanded before. Set
8561 last_real_key_start appropriately. */
8562 if (last_real_key_start == t && t > 0)
8563 last_real_key_start = t - 1;
8564 }
8565 }
8566 }
8567
8568 /* We have finally decided that KEY is something we might want
8569 to look up. */
8570 first_binding = (follow_key (key,
8571 nmaps - first_binding,
8572 submaps + first_binding,
8573 defs + first_binding,
8574 submaps + first_binding)
8575 + first_binding);
8576
8577 /* If KEY wasn't bound, we'll try some fallbacks. */
8578 if (first_binding < nmaps)
8579 /* This is needed for the following scenario:
8580 event 0: a down-event that gets dropped by calling replay_key.
8581 event 1: some normal prefix like C-h.
8582 After event 0, first_unbound is 0, after event 1 fkey_start
8583 and keytran_start are both 1, so when we see that C-h is bound,
8584 we need to update first_unbound. */
8585 first_unbound = max (t + 1, first_unbound);
8586 else
8587 {
8588 Lisp_Object head;
8589
8590 /* Remember the position to put an upper bound on fkey_start. */
8591 first_unbound = min (t, first_unbound);
8592
8593 head = EVENT_HEAD (key);
8594 if (help_char_p (head) && t > 0)
8595 {
8596 read_key_sequence_cmd = Vprefix_help_command;
8597 keybuf[t++] = key;
8598 last_nonmenu_event = key;
8599 /* The Microsoft C compiler can't handle the goto that
8600 would go here. */
8601 dummyflag = 1;
8602 break;
8603 }
8604
8605 if (SYMBOLP (head))
8606 {
8607 Lisp_Object breakdown;
8608 int modifiers;
8609
8610 breakdown = parse_modifiers (head);
8611 modifiers = XINT (XCAR (XCDR (breakdown)));
8612 /* Attempt to reduce an unbound mouse event to a simpler
8613 event that is bound:
8614 Drags reduce to clicks.
8615 Double-clicks reduce to clicks.
8616 Triple-clicks reduce to double-clicks, then to clicks.
8617 Down-clicks are eliminated.
8618 Double-downs reduce to downs, then are eliminated.
8619 Triple-downs reduce to double-downs, then to downs,
8620 then are eliminated. */
8621 if (modifiers & (down_modifier | drag_modifier
8622 | double_modifier | triple_modifier))
8623 {
8624 while (modifiers & (down_modifier | drag_modifier
8625 | double_modifier | triple_modifier))
8626 {
8627 Lisp_Object new_head, new_click;
8628 if (modifiers & triple_modifier)
8629 modifiers ^= (double_modifier | triple_modifier);
8630 else if (modifiers & double_modifier)
8631 modifiers &= ~double_modifier;
8632 else if (modifiers & drag_modifier)
8633 modifiers &= ~drag_modifier;
8634 else
8635 {
8636 /* Dispose of this `down' event by simply jumping
8637 back to replay_key, to get another event.
8638
8639 Note that if this event came from mock input,
8640 then just jumping back to replay_key will just
8641 hand it to us again. So we have to wipe out any
8642 mock input.
8643
8644 We could delete keybuf[t] and shift everything
8645 after that to the left by one spot, but we'd also
8646 have to fix up any variable that points into
8647 keybuf, and shifting isn't really necessary
8648 anyway.
8649
8650 Adding prefixes for non-textual mouse clicks
8651 creates two characters of mock input, and both
8652 must be thrown away. If we're only looking at
8653 the prefix now, we can just jump back to
8654 replay_key. On the other hand, if we've already
8655 processed the prefix, and now the actual click
8656 itself is giving us trouble, then we've lost the
8657 state of the keymaps we want to backtrack to, and
8658 we need to replay the whole sequence to rebuild
8659 it.
8660
8661 Beyond that, only function key expansion could
8662 create more than two keys, but that should never
8663 generate mouse events, so it's okay to zero
8664 mock_input in that case too.
8665
8666 FIXME: The above paragraph seems just plain
8667 wrong, if you consider things like
8668 xterm-mouse-mode. -stef
8669
8670 Isn't this just the most wonderful code ever? */
8671 if (t == last_real_key_start)
8672 {
8673 mock_input = 0;
8674 goto replay_key;
8675 }
8676 else
8677 {
8678 mock_input = last_real_key_start;
8679 goto replay_sequence;
8680 }
8681 }
8682
8683 new_head
8684 = apply_modifiers (modifiers, XCAR (breakdown));
8685 new_click
8686 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
8687
8688 /* Look for a binding for this new key. follow_key
8689 promises that it didn't munge submaps the
8690 last time we called it, since key was unbound. */
8691 first_binding
8692 = (follow_key (new_click,
8693 nmaps - local_first_binding,
8694 submaps + local_first_binding,
8695 defs + local_first_binding,
8696 submaps + local_first_binding)
8697 + local_first_binding);
8698
8699 /* If that click is bound, go for it. */
8700 if (first_binding < nmaps)
8701 {
8702 key = new_click;
8703 break;
8704 }
8705 /* Otherwise, we'll leave key set to the drag event. */
8706 }
8707 }
8708 }
8709 }
8710
8711 keybuf[t++] = key;
8712 /* Normally, last_nonmenu_event gets the previous key we read.
8713 But when a mouse popup menu is being used,
8714 we don't update last_nonmenu_event; it continues to hold the mouse
8715 event that preceded the first level of menu. */
8716 if (!used_mouse_menu)
8717 last_nonmenu_event = key;
8718
8719 /* Record what part of this_command_keys is the current key sequence. */
8720 this_single_command_key_start = this_command_key_count - t;
8721
8722 if (first_binding < nmaps && NILP (submaps[first_binding]))
8723 /* There is a binding and it's not a prefix.
8724 There is thus no function-key in this sequence.
8725 Moving fkey.start is important in this case to allow keytran.start
8726 to go over the sequence before we return (since we keep the
8727 invariant that keytran.end <= fkey.start). */
8728 {
8729 if (fkey_start < t)
8730 (fkey_start = fkey_end = t, fkey_map = Vfunction_key_map);
8731 }
8732 else
8733 /* If the sequence is unbound, see if we can hang a function key
8734 off the end of it. */
8735 {
8736 Lisp_Object fkey_next;
8737
8738 /* Continue scan from fkey_end until we find a bound suffix.
8739 If we fail, increment fkey_start and start over from there. */
8740 while (fkey_end < t)
8741 {
8742 Lisp_Object key;
8743
8744 key = keybuf[fkey_end++];
8745 fkey_next = access_keymap (fkey_map, key, 1, 0, 1);
8746
8747 /* Handle symbol with autoload definition. */
8748 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8749 && CONSP (XSYMBOL (fkey_next)->function)
8750 && EQ (XCAR (XSYMBOL (fkey_next)->function), Qautoload))
8751 do_autoload (XSYMBOL (fkey_next)->function,
8752 fkey_next);
8753
8754 /* Handle a symbol whose function definition is a keymap
8755 or an array. */
8756 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8757 && (!NILP (Farrayp (XSYMBOL (fkey_next)->function))
8758 || KEYMAPP (XSYMBOL (fkey_next)->function)))
8759 fkey_next = XSYMBOL (fkey_next)->function;
8760
8761#if 0 /* I didn't turn this on, because it might cause trouble
8762 for the mapping of return into C-m and tab into C-i. */
8763 /* Optionally don't map function keys into other things.
8764 This enables the user to redefine kp- keys easily. */
8765 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
8766 fkey_next = Qnil;
8767#endif
8768
8769 /* If the function key map gives a function, not an
8770 array, then call the function with no args and use
8771 its value instead. */
8772 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
8773 /* If there's a binding (i.e. first_binding >= nmaps)
8774 we don't want to apply this function-key-mapping. */
8775 && fkey_end == t && first_binding >= nmaps)
8776 {
8777 struct gcpro gcpro1, gcpro2, gcpro3;
8778 Lisp_Object tem;
8779 tem = fkey_next;
8780
8781 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
8782 fkey_next = call1 (fkey_next, prompt);
8783 UNGCPRO;
8784 /* If the function returned something invalid,
8785 barf--don't ignore it.
8786 (To ignore it safely, we would need to gcpro a bunch of
8787 other variables.) */
8788 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
8789 error ("Function in key-translation-map returns invalid key sequence");
8790 }
8791
8792 /* If keybuf[fkey_start..fkey_end] is bound in the
8793 function key map and it's a suffix of the current
8794 sequence (i.e. fkey_end == t), replace it with
8795 the binding and restart with fkey_start at the end. */
8796 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
8797 /* If there's a binding (i.e. first_binding >= nmaps)
8798 we don't want to apply this function-key-mapping. */
8799 && fkey_end == t && first_binding >= nmaps)
8800 {
8801 int len = XFASTINT (Flength (fkey_next));
8802
8803 t = fkey_start + len;
8804 if (t >= bufsize)
8805 error ("Key sequence too long");
8806
8807 if (VECTORP (fkey_next))
8808 bcopy (XVECTOR (fkey_next)->contents,
8809 keybuf + fkey_start,
8810 (t - fkey_start) * sizeof (keybuf[0]));
8811 else if (STRINGP (fkey_next))
8812 {
8813 int i;
8814
8815 for (i = 0; i < len; i++)
8816 XSETFASTINT (keybuf[fkey_start + i],
8817 XSTRING (fkey_next)->data[i]);
8818 }
8819
8820 mock_input = t;
8821 fkey_start = fkey_end = t;
8822 fkey_map = Vfunction_key_map;
8823
8824 /* Do pass the results through key-translation-map.
8825 But don't retranslate what key-translation-map
8826 has already translated. */
8827 keytran_end = keytran_start;
8828 keytran_map = Vkey_translation_map;
8829
8830 goto replay_sequence;
8831 }
8832
8833 fkey_map = get_keymap (fkey_next, 0, 1);
8834
8835 /* If we no longer have a bound suffix, try a new positions for
8836 fkey_start. */
8837 if (!CONSP (fkey_map))
8838 {
8839 fkey_end = ++fkey_start;
8840 fkey_map = Vfunction_key_map;
8841 }
8842 }
8843 }
8844
8845 /* Look for this sequence in key-translation-map. */
8846 {
8847 Lisp_Object keytran_next;
8848
8849 /* Scan from keytran_end until we find a bound suffix. */
8850 while (keytran_end < fkey_start)
8851 {
8852 Lisp_Object key;
8853
8854 key = keybuf[keytran_end++];
8855 keytran_next
8856 = access_keymap (keytran_map, key, 1, 0, 1);
8857
8858 /* Handle symbol with autoload definition. */
8859 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
8860 && CONSP (XSYMBOL (keytran_next)->function)
8861 && EQ (XCAR (XSYMBOL (keytran_next)->function), Qautoload))
8862 do_autoload (XSYMBOL (keytran_next)->function,
8863 keytran_next);
8864
8865 /* Handle a symbol whose function definition is a keymap
8866 or an array. */
8867 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
8868 && (!NILP (Farrayp (XSYMBOL (keytran_next)->function))
8869 || KEYMAPP (XSYMBOL (keytran_next)->function)))
8870 keytran_next = XSYMBOL (keytran_next)->function;
8871
8872 /* If the key translation map gives a function, not an
8873 array, then call the function with one arg and use
8874 its value instead. */
8875 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next)))
8876 {
8877 struct gcpro gcpro1, gcpro2, gcpro3;
8878 Lisp_Object tem;
8879 tem = keytran_next;
8880
8881 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
8882 keytran_next = call1 (keytran_next, prompt);
8883 UNGCPRO;
8884 /* If the function returned something invalid,
8885 barf--don't ignore it.
8886 (To ignore it safely, we would need to gcpro a bunch of
8887 other variables.) */
8888 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
8889 error ("Function in key-translation-map returns invalid key sequence");
8890 }
8891
8892 /* If keybuf[keytran_start..keytran_end] is bound in the
8893 key translation map and it's a suffix of the current
8894 sequence (i.e. keytran_end == t), replace it with
8895 the binding and restart with keytran_start at the end. */
8896 if ((VECTORP (keytran_next) || STRINGP (keytran_next)))
8897 {
8898 int len = XFASTINT (Flength (keytran_next));
8899 int i, diff = len - (keytran_end - keytran_start);
8900
8901 mock_input = max (t, mock_input);
8902 if (mock_input + diff >= bufsize)
8903 error ("Key sequence too long");
8904
8905 /* Shift the keys that are after keytran_end. */
8906 if (diff < 0)
8907 for (i = keytran_end; i < mock_input; i++)
8908 keybuf[i + diff] = keybuf[i];
8909 else if (diff > 0)
8910 for (i = mock_input - 1; i >= keytran_end; i--)
8911 keybuf[i + diff] = keybuf[i];
8912 /* Replace the keys between keytran_start and keytran_end
8913 with those from keytran_next. */
8914 for (i = 0; i < len; i++)
8915 keybuf[keytran_start + i]
8916 = Faref (keytran_next, make_number (i));
8917
8918 mock_input += diff;
8919 keytran_start = keytran_end += diff;
8920 keytran_map = Vkey_translation_map;
8921
8922 /* Adjust the function-key-map counters. */
8923 fkey_start += diff;
8924 fkey_end += diff;
8925
8926 goto replay_sequence;
8927 }
8928
8929 keytran_map = get_keymap (keytran_next, 0, 1);
8930
8931 /* If we no longer have a bound suffix, try a new positions for
8932 keytran_start. */
8933 if (!CONSP (keytran_map))
8934 {
8935 keytran_end = ++keytran_start;
8936 keytran_map = Vkey_translation_map;
8937 }
8938 }
8939 }
8940
8941 /* If KEY is not defined in any of the keymaps,
8942 and cannot be part of a function key or translation,
8943 and is an upper case letter
8944 use the corresponding lower-case letter instead. */
8945 if (first_binding >= nmaps
8946 && fkey_start >= t && keytran_start >= t
8947 && INTEGERP (key)
8948 && ((((XINT (key) & 0x3ffff)
8949 < XCHAR_TABLE (current_buffer->downcase_table)->size)
8950 && UPPERCASEP (XINT (key) & 0x3ffff))
8951 || (XINT (key) & shift_modifier)))
8952 {
8953 Lisp_Object new_key;
8954
8955 original_uppercase = key;
8956 original_uppercase_position = t - 1;
8957
8958 if (XINT (key) & shift_modifier)
8959 XSETINT (new_key, XINT (key) & ~shift_modifier);
8960 else
8961 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
8962 | (XINT (key) & ~0x3ffff)));
8963
8964 /* We have to do this unconditionally, regardless of whether
8965 the lower-case char is defined in the keymaps, because they
8966 might get translated through function-key-map. */
8967 keybuf[t - 1] = new_key;
8968 mock_input = max (t, mock_input);
8969
8970 goto replay_sequence;
8971 }
8972 /* If KEY is not defined in any of the keymaps,
8973 and cannot be part of a function key or translation,
8974 and is a shifted function key,
8975 use the corresponding unshifted function key instead. */
8976 if (first_binding >= nmaps
8977 && fkey_start >= t && keytran_start >= t
8978 && SYMBOLP (key))
8979 {
8980 Lisp_Object breakdown;
8981 int modifiers;
8982
8983 breakdown = parse_modifiers (key);
8984 modifiers = XINT (XCAR (XCDR (breakdown)));
8985 if (modifiers & shift_modifier)
8986 {
8987 Lisp_Object new_key;
8988
8989 original_uppercase = key;
8990 original_uppercase_position = t - 1;
8991
8992 modifiers &= ~shift_modifier;
8993 new_key = apply_modifiers (modifiers,
8994 XCAR (breakdown));
8995
8996 keybuf[t - 1] = new_key;
8997 mock_input = max (t, mock_input);
8998
8999 goto replay_sequence;
9000 }
9001 }
9002 }
9003
9004 if (!dummyflag)
9005 read_key_sequence_cmd = (first_binding < nmaps
9006 ? defs[first_binding]
9007 : Qnil);
9008
9009 unread_switch_frame = delayed_switch_frame;
9010 unbind_to (count, Qnil);
9011
9012 /* Don't downcase the last character if the caller says don't.
9013 Don't downcase it if the result is undefined, either. */
9014 if ((dont_downcase_last || first_binding >= nmaps)
9015 && t - 1 == original_uppercase_position)
9016 keybuf[t - 1] = original_uppercase;
9017
9018 /* Occasionally we fabricate events, perhaps by expanding something
9019 according to function-key-map, or by adding a prefix symbol to a
9020 mouse click in the scroll bar or modeline. In this cases, return
9021 the entire generated key sequence, even if we hit an unbound
9022 prefix or a definition before the end. This means that you will
9023 be able to push back the event properly, and also means that
9024 read-key-sequence will always return a logical unit.
9025
9026 Better ideas? */
9027 for (; t < mock_input; t++)
9028 {
9029 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9030 && NILP (Fzerop (Vecho_keystrokes)))
9031 echo_char (keybuf[t]);
9032 add_command_key (keybuf[t]);
9033 }
9034
9035
9036
9037 UNGCPRO;
9038 return t;
9039}
9040
9041DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9042 doc: /* Read a sequence of keystrokes and return as a string or vector.
9043The sequence is sufficient to specify a non-prefix command in the
9044current local and global maps.
9045
9046First arg PROMPT is a prompt string. If nil, do not prompt specially.
9047Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9048as a continuation of the previous key.
9049
9050The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9051convert the last event to lower case. (Normally any upper case event
9052is converted to lower case if the original event is undefined and the lower
9053case equivalent is defined.) A non-nil value is appropriate for reading
9054a key sequence to be defined.
9055
9056A C-g typed while in this function is treated like any other character,
9057and `quit-flag' is not set.
9058
9059If the key sequence starts with a mouse click, then the sequence is read
9060using the keymaps of the buffer of the window clicked in, not the buffer
9061of the selected window as normal.
9062
9063`read-key-sequence' drops unbound button-down events, since you normally
9064only care about the click or drag events which follow them. If a drag
9065or multi-click event is unbound, but the corresponding click event would
9066be bound, `read-key-sequence' turns the event into a click event at the
9067drag's starting position. This means that you don't have to distinguish
9068between click and drag, double, or triple events unless you want to.
9069
9070`read-key-sequence' prefixes mouse events on mode lines, the vertical
9071lines separating windows, and scroll bars with imaginary keys
9072`mode-line', `vertical-line', and `vertical-scroll-bar'.
9073
9074Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9075function will process a switch-frame event if the user switches frames
9076before typing anything. If the user switches frames in the middle of a
9077key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9078is nil, then the event will be put off until after the current key sequence.
9079
9080`read-key-sequence' checks `function-key-map' for function key
9081sequences, where they wouldn't conflict with ordinary bindings. See
9082`function-key-map' for more details.
9083
9084The optional fifth argument COMMAND-LOOP, if non-nil, means
9085that this key sequence is being read by something that will
9086read commands one after another. It should be nil if the caller
9087will read just one key sequence. */)
9088 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9089 command_loop)
9090 Lisp_Object prompt, continue_echo, dont_downcase_last;
9091 Lisp_Object can_return_switch_frame, command_loop;
9092{
9093 Lisp_Object keybuf[30];
9094 register int i;
9095 struct gcpro gcpro1;
9096 int count = SPECPDL_INDEX ();
9097
9098 if (!NILP (prompt))
9099 CHECK_STRING (prompt);
9100 QUIT;
9101
9102 specbind (Qinput_method_exit_on_first_char,
9103 (NILP (command_loop) ? Qt : Qnil));
9104 specbind (Qinput_method_use_echo_area,
9105 (NILP (command_loop) ? Qt : Qnil));
9106
9107 bzero (keybuf, sizeof keybuf);
9108 GCPRO1 (keybuf[0]);
9109 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9110
9111 if (NILP (continue_echo))
9112 {
9113 this_command_key_count = 0;
9114 this_single_command_key_start = 0;
9115 }
9116
9117#ifdef HAVE_X_WINDOWS
9118 if (display_hourglass_p)
9119 cancel_hourglass ();
9120#endif
9121
9122 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9123 prompt, ! NILP (dont_downcase_last),
9124 ! NILP (can_return_switch_frame), 0);
9125
9126#if 0 /* The following is fine for code reading a key sequence and
9127 then proceeding with a lenghty computation, but it's not good
9128 for code reading keys in a loop, like an input method. */
9129#ifdef HAVE_X_WINDOWS
9130 if (display_hourglass_p)
9131 start_hourglass ();
9132#endif
9133#endif
9134
9135 if (i == -1)
9136 {
9137 Vquit_flag = Qt;
9138 QUIT;
9139 }
9140 UNGCPRO;
9141 return unbind_to (count, make_event_array (i, keybuf));
9142}
9143
9144DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9145 Sread_key_sequence_vector, 1, 5, 0,
9146 doc: /* Like `read-key-sequence' but always return a vector. */)
9147 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9148 command_loop)
9149 Lisp_Object prompt, continue_echo, dont_downcase_last;
9150 Lisp_Object can_return_switch_frame, command_loop;
9151{
9152 Lisp_Object keybuf[30];
9153 register int i;
9154 struct gcpro gcpro1;
9155 int count = SPECPDL_INDEX ();
9156
9157 if (!NILP (prompt))
9158 CHECK_STRING (prompt);
9159 QUIT;
9160
9161 specbind (Qinput_method_exit_on_first_char,
9162 (NILP (command_loop) ? Qt : Qnil));
9163 specbind (Qinput_method_use_echo_area,
9164 (NILP (command_loop) ? Qt : Qnil));
9165
9166 bzero (keybuf, sizeof keybuf);
9167 GCPRO1 (keybuf[0]);
9168 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9169
9170 if (NILP (continue_echo))
9171 {
9172 this_command_key_count = 0;
9173 this_single_command_key_start = 0;
9174 }
9175
9176#ifdef HAVE_X_WINDOWS
9177 if (display_hourglass_p)
9178 cancel_hourglass ();
9179#endif
9180
9181 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9182 prompt, ! NILP (dont_downcase_last),
9183 ! NILP (can_return_switch_frame), 0);
9184
9185#ifdef HAVE_X_WINDOWS
9186 if (display_hourglass_p)
9187 start_hourglass ();
9188#endif
9189
9190 if (i == -1)
9191 {
9192 Vquit_flag = Qt;
9193 QUIT;
9194 }
9195 UNGCPRO;
9196 return unbind_to (count, Fvector (i, keybuf));
9197}
9198\f
9199DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9200 doc: /* Execute CMD as an editor command.
9201CMD must be a symbol that satisfies the `commandp' predicate.
9202Optional second arg RECORD-FLAG non-nil
9203means unconditionally put this command in `command-history'.
9204Otherwise, that is done only if an arg is read using the minibuffer.
9205The argument KEYS specifies the value to use instead of (this-command-keys)
9206when reading the arguments; if it is nil, (this-command-keys) is used.
9207The argument SPECIAL, if non-nil, means that this command is executing
9208a special event, so ignore the prefix argument and don't clear it. */)
9209 (cmd, record_flag, keys, special)
9210 Lisp_Object cmd, record_flag, keys, special;
9211{
9212 register Lisp_Object final;
9213 register Lisp_Object tem;
9214 Lisp_Object prefixarg;
9215 struct backtrace backtrace;
9216 extern int debug_on_next_call;
9217
9218 debug_on_next_call = 0;
9219
9220 if (NILP (special))
9221 {
9222 prefixarg = current_kboard->Vprefix_arg;
9223 Vcurrent_prefix_arg = prefixarg;
9224 current_kboard->Vprefix_arg = Qnil;
9225 }
9226 else
9227 prefixarg = Qnil;
9228
9229 if (SYMBOLP (cmd))
9230 {
9231 tem = Fget (cmd, Qdisabled);
9232 if (!NILP (tem) && !NILP (Vrun_hooks))
9233 {
9234 tem = Fsymbol_value (Qdisabled_command_hook);
9235 if (!NILP (tem))
9236 return call1 (Vrun_hooks, Qdisabled_command_hook);
9237 }
9238 }
9239
9240 while (1)
9241 {
9242 final = Findirect_function (cmd);
9243
9244 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9245 {
9246 struct gcpro gcpro1, gcpro2;
9247
9248 GCPRO2 (cmd, prefixarg);
9249 do_autoload (final, cmd);
9250 UNGCPRO;
9251 }
9252 else
9253 break;
9254 }
9255
9256 if (STRINGP (final) || VECTORP (final))
9257 {
9258 /* If requested, place the macro in the command history. For
9259 other sorts of commands, call-interactively takes care of
9260 this. */
9261 if (!NILP (record_flag))
9262 {
9263 Vcommand_history
9264 = Fcons (Fcons (Qexecute_kbd_macro,
9265 Fcons (final, Fcons (prefixarg, Qnil))),
9266 Vcommand_history);
9267
9268 /* Don't keep command history around forever. */
9269 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9270 {
9271 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9272 if (CONSP (tem))
9273 XSETCDR (tem, Qnil);
9274 }
9275 }
9276
9277 return Fexecute_kbd_macro (final, prefixarg);
9278 }
9279
9280 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9281 {
9282 backtrace.next = backtrace_list;
9283 backtrace_list = &backtrace;
9284 backtrace.function = &Qcall_interactively;
9285 backtrace.args = &cmd;
9286 backtrace.nargs = 1;
9287 backtrace.evalargs = 0;
9288
9289 tem = Fcall_interactively (cmd, record_flag, keys);
9290
9291 backtrace_list = backtrace.next;
9292 return tem;
9293 }
9294 return Qnil;
9295}
9296
9297
9298\f
9299DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9300 1, 1, "P",
9301 doc: /* Read function name, then read its arguments and call it. */)
9302 (prefixarg)
9303 Lisp_Object prefixarg;
9304{
9305 Lisp_Object function;
9306 char buf[40];
9307 int saved_last_point_position;
9308 Lisp_Object saved_keys, saved_last_point_position_buffer;
9309 Lisp_Object bindings, value;
9310 struct gcpro gcpro1, gcpro2, gcpro3;
9311
9312 saved_keys = Fvector (this_command_key_count,
9313 XVECTOR (this_command_keys)->contents);
9314 saved_last_point_position_buffer = last_point_position_buffer;
9315 saved_last_point_position = last_point_position;
9316 buf[0] = 0;
9317 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
9318
9319 if (EQ (prefixarg, Qminus))
9320 strcpy (buf, "- ");
9321 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9322 strcpy (buf, "C-u ");
9323 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9324 {
9325 if (sizeof (int) == sizeof (EMACS_INT))
9326 sprintf (buf, "%d ", XINT (XCAR (prefixarg)));
9327 else if (sizeof (long) == sizeof (EMACS_INT))
9328 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9329 else
9330 abort ();
9331 }
9332 else if (INTEGERP (prefixarg))
9333 {
9334 if (sizeof (int) == sizeof (EMACS_INT))
9335 sprintf (buf, "%d ", XINT (prefixarg));
9336 else if (sizeof (long) == sizeof (EMACS_INT))
9337 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9338 else
9339 abort ();
9340 }
9341
9342 /* This isn't strictly correct if execute-extended-command
9343 is bound to anything else. Perhaps it should use
9344 this_command_keys? */
9345 strcat (buf, "M-x ");
9346
9347 /* Prompt with buf, and then read a string, completing from and
9348 restricting to the set of all defined commands. Don't provide
9349 any initial input. Save the command read on the extended-command
9350 history list. */
9351 function = Fcompleting_read (build_string (buf),
9352 Vobarray, Qcommandp,
9353 Qt, Qnil, Qextended_command_history, Qnil,
9354 Qnil);
9355
9356 if (STRINGP (function) && XSTRING (function)->size == 0)
9357 error ("No command name given");
9358
9359 /* Set this_command_keys to the concatenation of saved_keys and
9360 function, followed by a RET. */
9361 {
9362 struct Lisp_String *str;
9363 Lisp_Object *keys;
9364 int i;
9365
9366 this_command_key_count = 0;
9367 this_single_command_key_start = 0;
9368
9369 keys = XVECTOR (saved_keys)->contents;
9370 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9371 add_command_key (keys[i]);
9372
9373 str = XSTRING (function);
9374 for (i = 0; i < str->size; i++)
9375 add_command_key (Faref (function, make_number (i)));
9376
9377 add_command_key (make_number ('\015'));
9378 }
9379
9380 last_point_position = saved_last_point_position;
9381 last_point_position_buffer = saved_last_point_position_buffer;
9382
9383 UNGCPRO;
9384
9385 function = Fintern (function, Qnil);
9386 current_kboard->Vprefix_arg = prefixarg;
9387 Vthis_command = function;
9388 real_this_command = function;
9389
9390 /* If enabled, show which key runs this command. */
9391 if (!NILP (Vsuggest_key_bindings)
9392 && NILP (Vexecuting_macro)
9393 && SYMBOLP (function))
9394 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9395 Qt, Qnil, Qnil);
9396 else
9397 bindings = Qnil;
9398
9399 value = Qnil;
9400 GCPRO2 (bindings, value);
9401 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9402
9403 /* If the command has a key binding, print it now. */
9404 if (!NILP (bindings)
9405 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9406 Qmouse_movement)))
9407 {
9408 /* But first wait, and skip the message if there is input. */
9409 int delay_time;
9410 if (!NILP (echo_area_buffer[0]))
9411 /* This command displayed something in the echo area;
9412 so wait a few seconds, then display our suggestion message. */
9413 delay_time = (NUMBERP (Vsuggest_key_bindings)
9414 ? XINT (Vsuggest_key_bindings) : 2);
9415 else
9416 /* This command left the echo area empty,
9417 so display our message immediately. */
9418 delay_time = 0;
9419
9420 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
9421 && ! CONSP (Vunread_command_events))
9422 {
9423 Lisp_Object binding;
9424 char *newmessage;
9425 int message_p = push_message ();
9426 int count = SPECPDL_INDEX ();
9427
9428 record_unwind_protect (push_message_unwind, Qnil);
9429 binding = Fkey_description (bindings);
9430
9431 newmessage
9432 = (char *) alloca (XSTRING (SYMBOL_NAME (function))->size
9433 + STRING_BYTES (XSTRING (binding))
9434 + 100);
9435 sprintf (newmessage, "You can run the command `%s' with %s",
9436 XSTRING (SYMBOL_NAME (function))->data,
9437 XSTRING (binding)->data);
9438 message2_nolog (newmessage,
9439 strlen (newmessage),
9440 STRING_MULTIBYTE (binding));
9441 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9442 ? Vsuggest_key_bindings : make_number (2)),
9443 Qnil, Qnil))
9444 && message_p)
9445 restore_message ();
9446
9447 unbind_to (count, Qnil);
9448 }
9449 }
9450
9451 RETURN_UNGCPRO (value);
9452}
9453
9454\f
9455/* Return nonzero if input events are pending. */
9456
9457int
9458detect_input_pending ()
9459{
9460 if (!input_pending)
9461 get_input_pending (&input_pending, 0);
9462
9463 return input_pending;
9464}
9465
9466/* Return nonzero if input events are pending, and run any pending timers. */
9467
9468int
9469detect_input_pending_run_timers (do_display)
9470 int do_display;
9471{
9472 int old_timers_run = timers_run;
9473
9474 if (!input_pending)
9475 get_input_pending (&input_pending, 1);
9476
9477 if (old_timers_run != timers_run && do_display)
9478 {
9479 redisplay_preserve_echo_area (8);
9480 /* The following fixes a bug when using lazy-lock with
9481 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9482 from an idle timer function. The symptom of the bug is that
9483 the cursor sometimes doesn't become visible until the next X
9484 event is processed. --gerd. */
9485 if (rif)
9486 rif->flush_display (NULL);
9487 }
9488
9489 return input_pending;
9490}
9491
9492/* This is called in some cases before a possible quit.
9493 It cases the next call to detect_input_pending to recompute input_pending.
9494 So calling this function unnecessarily can't do any harm. */
9495
9496void
9497clear_input_pending ()
9498{
9499 input_pending = 0;
9500}
9501
9502/* Return nonzero if there are pending requeued events.
9503 This isn't used yet. The hope is to make wait_reading_process_input
9504 call it, and return if it runs Lisp code that unreads something.
9505 The problem is, kbd_buffer_get_event needs to be fixed to know what
9506 to do in that case. It isn't trivial. */
9507
9508int
9509requeued_events_pending_p ()
9510{
9511 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9512}
9513
9514
9515DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9516 doc: /* Return t if command input is currently available with no wait.
9517Actually, the value is nil only if we can be sure that no input is available;
9518if there is a doubt, the value is t. */)
9519 ()
9520{
9521 if (!NILP (Vunread_command_events) || unread_command_char != -1)
9522 return (Qt);
9523
9524 get_filtered_input_pending (&input_pending, 1, 1);
9525 return input_pending > 0 ? Qt : Qnil;
9526}
9527
9528DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
9529 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
9530 ()
9531{
9532 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
9533 Lisp_Object val;
9534
9535 if (total_keys < NUM_RECENT_KEYS)
9536 return Fvector (total_keys, keys);
9537 else
9538 {
9539 val = Fvector (NUM_RECENT_KEYS, keys);
9540 bcopy (keys + recent_keys_index,
9541 XVECTOR (val)->contents,
9542 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
9543 bcopy (keys,
9544 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
9545 recent_keys_index * sizeof (Lisp_Object));
9546 return val;
9547 }
9548}
9549
9550DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
9551 doc: /* Return the key sequence that invoked this command.
9552However, if the command has called `read-key-sequence', it returns
9553the last key sequence that has been read.
9554The value is a string or a vector. */)
9555 ()
9556{
9557 return make_event_array (this_command_key_count,
9558 XVECTOR (this_command_keys)->contents);
9559}
9560
9561DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
9562 doc: /* Return the key sequence that invoked this command, as a vector.
9563However, if the command has called `read-key-sequence', it returns
9564the last key sequence that has been read. */)
9565 ()
9566{
9567 return Fvector (this_command_key_count,
9568 XVECTOR (this_command_keys)->contents);
9569}
9570
9571DEFUN ("this-single-command-keys", Fthis_single_command_keys,
9572 Sthis_single_command_keys, 0, 0, 0,
9573 doc: /* Return the key sequence that invoked this command.
9574More generally, it returns the last key sequence read, either by
9575the command loop or by `read-key-sequence'.
9576Unlike `this-command-keys', this function's value
9577does not include prefix arguments.
9578The value is always a vector. */)
9579 ()
9580{
9581 return Fvector (this_command_key_count
9582 - this_single_command_key_start,
9583 (XVECTOR (this_command_keys)->contents
9584 + this_single_command_key_start));
9585}
9586
9587DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
9588 Sthis_single_command_raw_keys, 0, 0, 0,
9589 doc: /* Return the raw events that were read for this command.
9590More generally, it returns the last key sequence read, either by
9591the command loop or by `read-key-sequence'.
9592Unlike `this-single-command-keys', this function's value
9593shows the events before all translations (except for input methods).
9594The value is always a vector. */)
9595 ()
9596{
9597 return Fvector (raw_keybuf_count,
9598 (XVECTOR (raw_keybuf)->contents));
9599}
9600
9601DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
9602 Sreset_this_command_lengths, 0, 0, 0,
9603 doc: /* Used for complicated reasons in `universal-argument-other-key'.
9604
9605`universal-argument-other-key' rereads the event just typed.
9606It then gets translated through `function-key-map'.
9607The translated event gets included in the echo area and in
9608the value of `this-command-keys' in addition to the raw original event.
9609That is not right.
9610
9611Calling this function directs the translated event to replace
9612the original event, so that only one version of the event actually
9613appears in the echo area and in the value of `this-command-keys'. */)
9614 ()
9615{
9616 before_command_restore_flag = 1;
9617 before_command_key_count_1 = before_command_key_count;
9618 before_command_echo_length_1 = before_command_echo_length;
9619 return Qnil;
9620}
9621
9622DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
9623 Sclear_this_command_keys, 0, 0, 0,
9624 doc: /* Clear out the vector that `this-command-keys' returns.
9625Also clear the record of the last 100 events. */)
9626 ()
9627{
9628 int i;
9629
9630 this_command_key_count = 0;
9631
9632 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
9633 XVECTOR (recent_keys)->contents[i] = Qnil;
9634 total_keys = 0;
9635 recent_keys_index = 0;
9636 return Qnil;
9637}
9638
9639DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
9640 doc: /* Return the current depth in recursive edits. */)
9641 ()
9642{
9643 Lisp_Object temp;
9644 XSETFASTINT (temp, command_loop_level + minibuf_level);
9645 return temp;
9646}
9647
9648DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
9649 "FOpen dribble file: ",
9650 doc: /* Start writing all keyboard characters to a dribble file called FILE.
9651If FILE is nil, close any open dribble file. */)
9652 (file)
9653 Lisp_Object file;
9654{
9655 if (dribble)
9656 {
9657 fclose (dribble);
9658 dribble = 0;
9659 }
9660 if (!NILP (file))
9661 {
9662 file = Fexpand_file_name (file, Qnil);
9663 dribble = fopen (XSTRING (file)->data, "w");
9664 if (dribble == 0)
9665 report_file_error ("Opening dribble", Fcons (file, Qnil));
9666 }
9667 return Qnil;
9668}
9669
9670DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
9671 doc: /* Discard the contents of the terminal input buffer.
9672Also cancel any kbd macro being defined. */)
9673 ()
9674{
9675 current_kboard->defining_kbd_macro = Qnil;
9676 update_mode_lines++;
9677
9678 Vunread_command_events = Qnil;
9679 unread_command_char = -1;
9680
9681 discard_tty_input ();
9682
9683 kbd_fetch_ptr = kbd_store_ptr;
9684 Ffillarray (kbd_buffer_gcpro, Qnil);
9685 input_pending = 0;
9686
9687 return Qnil;
9688}
9689\f
9690DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
9691 doc: /* Stop Emacs and return to superior process. You can resume later.
9692If `cannot-suspend' is non-nil, or if the system doesn't support job
9693control, run a subshell instead.
9694
9695If optional arg STUFFSTRING is non-nil, its characters are stuffed
9696to be read as terminal input by Emacs's parent, after suspension.
9697
9698Before suspending, run the normal hook `suspend-hook'.
9699After resumption run the normal hook `suspend-resume-hook'.
9700
9701Some operating systems cannot stop the Emacs process and resume it later.
9702On such systems, Emacs starts a subshell instead of suspending. */)
9703 (stuffstring)
9704 Lisp_Object stuffstring;
9705{
9706 int count = SPECPDL_INDEX ();
9707 int old_height, old_width;
9708 int width, height;
9709 struct gcpro gcpro1;
9710
9711 if (!NILP (stuffstring))
9712 CHECK_STRING (stuffstring);
9713
9714 /* Run the functions in suspend-hook. */
9715 if (!NILP (Vrun_hooks))
9716 call1 (Vrun_hooks, intern ("suspend-hook"));
9717
9718 GCPRO1 (stuffstring);
9719 get_frame_size (&old_width, &old_height);
9720 reset_sys_modes ();
9721 /* sys_suspend can get an error if it tries to fork a subshell
9722 and the system resources aren't available for that. */
9723 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
9724 Qnil);
9725 stuff_buffered_input (stuffstring);
9726 if (cannot_suspend)
9727 sys_subshell ();
9728 else
9729 sys_suspend ();
9730 unbind_to (count, Qnil);
9731
9732 /* Check if terminal/window size has changed.
9733 Note that this is not useful when we are running directly
9734 with a window system; but suspend should be disabled in that case. */
9735 get_frame_size (&width, &height);
9736 if (width != old_width || height != old_height)
9737 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
9738
9739 /* Run suspend-resume-hook. */
9740 if (!NILP (Vrun_hooks))
9741 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
9742
9743 UNGCPRO;
9744 return Qnil;
9745}
9746
9747/* If STUFFSTRING is a string, stuff its contents as pending terminal input.
9748 Then in any case stuff anything Emacs has read ahead and not used. */
9749
9750void
9751stuff_buffered_input (stuffstring)
9752 Lisp_Object stuffstring;
9753{
9754/* stuff_char works only in BSD, versions 4.2 and up. */
9755#ifdef BSD_SYSTEM
9756#ifndef BSD4_1
9757 register unsigned char *p;
9758
9759 if (STRINGP (stuffstring))
9760 {
9761 register int count;
9762
9763 p = XSTRING (stuffstring)->data;
9764 count = STRING_BYTES (XSTRING (stuffstring));
9765 while (count-- > 0)
9766 stuff_char (*p++);
9767 stuff_char ('\n');
9768 }
9769
9770 /* Anything we have read ahead, put back for the shell to read. */
9771 /* ?? What should this do when we have multiple keyboards??
9772 Should we ignore anything that was typed in at the "wrong" kboard? */
9773 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
9774 {
9775 int idx;
9776
9777 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
9778 kbd_fetch_ptr = kbd_buffer;
9779 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
9780 stuff_char (kbd_fetch_ptr->code);
9781
9782 kbd_fetch_ptr->kind = NO_EVENT;
9783 idx = 2 * (kbd_fetch_ptr - kbd_buffer);
9784 ASET (kbd_buffer_gcpro, idx, Qnil);
9785 ASET (kbd_buffer_gcpro, idx + 1, Qnil);
9786 }
9787
9788 input_pending = 0;
9789#endif
9790#endif /* BSD_SYSTEM and not BSD4_1 */
9791}
9792\f
9793void
9794set_waiting_for_input (time_to_clear)
9795 EMACS_TIME *time_to_clear;
9796{
9797 input_available_clear_time = time_to_clear;
9798
9799 /* Tell interrupt_signal to throw back to read_char, */
9800 waiting_for_input = 1;
9801
9802 /* If interrupt_signal was called before and buffered a C-g,
9803 make it run again now, to avoid timing error. */
9804 if (!NILP (Vquit_flag))
9805 quit_throw_to_read_char ();
9806}
9807
9808void
9809clear_waiting_for_input ()
9810{
9811 /* Tell interrupt_signal not to throw back to read_char, */
9812 waiting_for_input = 0;
9813 input_available_clear_time = 0;
9814}
9815
9816/* This routine is called at interrupt level in response to C-g.
9817
9818 If interrupt_input, this is the handler for SIGINT. Otherwise, it
9819 is called from kbd_buffer_store_event, in handling SIGIO or
9820 SIGTINT.
9821
9822 If `waiting_for_input' is non zero, then unless `echoing' is
9823 nonzero, immediately throw back to read_char.
9824
9825 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
9826 eval to throw, when it gets a chance. If quit-flag is already
9827 non-nil, it stops the job right away. */
9828
9829SIGTYPE
9830interrupt_signal (signalnum) /* If we don't have an argument, */
9831 int signalnum; /* some compilers complain in signal calls. */
9832{
9833 char c;
9834 /* Must preserve main program's value of errno. */
9835 int old_errno = errno;
9836 struct frame *sf = SELECTED_FRAME ();
9837
9838#if defined (USG) && !defined (POSIX_SIGNALS)
9839 if (!read_socket_hook && NILP (Vwindow_system))
9840 {
9841 /* USG systems forget handlers when they are used;
9842 must reestablish each time */
9843 signal (SIGINT, interrupt_signal);
9844 signal (SIGQUIT, interrupt_signal);
9845 }
9846#endif /* USG */
9847
9848 cancel_echoing ();
9849
9850 if (!NILP (Vquit_flag)
9851 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
9852 {
9853 /* If SIGINT isn't blocked, don't let us be interrupted by
9854 another SIGINT, it might be harmful due to non-reentrancy
9855 in I/O functions. */
9856 sigblock (sigmask (SIGINT));
9857
9858 fflush (stdout);
9859 reset_sys_modes ();
9860
9861#ifdef SIGTSTP /* Support possible in later USG versions */
9862/*
9863 * On systems which can suspend the current process and return to the original
9864 * shell, this command causes the user to end up back at the shell.
9865 * The "Auto-save" and "Abort" questions are not asked until
9866 * the user elects to return to emacs, at which point he can save the current
9867 * job and either dump core or continue.
9868 */
9869 sys_suspend ();
9870#else
9871#ifdef VMS
9872 if (sys_suspend () == -1)
9873 {
9874 printf ("Not running as a subprocess;\n");
9875 printf ("you can continue or abort.\n");
9876 }
9877#else /* not VMS */
9878 /* Perhaps should really fork an inferior shell?
9879 But that would not provide any way to get back
9880 to the original shell, ever. */
9881 printf ("No support for stopping a process on this operating system;\n");
9882 printf ("you can continue or abort.\n");
9883#endif /* not VMS */
9884#endif /* not SIGTSTP */
9885#ifdef MSDOS
9886 /* We must remain inside the screen area when the internal terminal
9887 is used. Note that [Enter] is not echoed by dos. */
9888 cursor_to (0, 0);
9889#endif
9890 /* It doesn't work to autosave while GC is in progress;
9891 the code used for auto-saving doesn't cope with the mark bit. */
9892 if (!gc_in_progress)
9893 {
9894 printf ("Auto-save? (y or n) ");
9895 fflush (stdout);
9896 if (((c = getchar ()) & ~040) == 'Y')
9897 {
9898 Fdo_auto_save (Qt, Qnil);
9899#ifdef MSDOS
9900 printf ("\r\nAuto-save done");
9901#else /* not MSDOS */
9902 printf ("Auto-save done\n");
9903#endif /* not MSDOS */
9904 }
9905 while (c != '\n') c = getchar ();
9906 }
9907 else
9908 {
9909 /* During GC, it must be safe to reenable quitting again. */
9910 Vinhibit_quit = Qnil;
9911#ifdef MSDOS
9912 printf ("\r\n");
9913#endif /* not MSDOS */
9914 printf ("Garbage collection in progress; cannot auto-save now\r\n");
9915 printf ("but will instead do a real quit after garbage collection ends\r\n");
9916 fflush (stdout);
9917 }
9918
9919#ifdef MSDOS
9920 printf ("\r\nAbort? (y or n) ");
9921#else /* not MSDOS */
9922#ifdef VMS
9923 printf ("Abort (and enter debugger)? (y or n) ");
9924#else /* not VMS */
9925 printf ("Abort (and dump core)? (y or n) ");
9926#endif /* not VMS */
9927#endif /* not MSDOS */
9928 fflush (stdout);
9929 if (((c = getchar ()) & ~040) == 'Y')
9930 abort ();
9931 while (c != '\n') c = getchar ();
9932#ifdef MSDOS
9933 printf ("\r\nContinuing...\r\n");
9934#else /* not MSDOS */
9935 printf ("Continuing...\n");
9936#endif /* not MSDOS */
9937 fflush (stdout);
9938 init_sys_modes ();
9939 sigfree ();
9940 }
9941 else
9942 {
9943 /* If executing a function that wants to be interrupted out of
9944 and the user has not deferred quitting by binding `inhibit-quit'
9945 then quit right away. */
9946 if (immediate_quit && NILP (Vinhibit_quit))
9947 {
9948 struct gl_state_s saved;
9949 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9950
9951 immediate_quit = 0;
9952 sigfree ();
9953 saved = gl_state;
9954 GCPRO4 (saved.object, saved.global_code,
9955 saved.current_syntax_table, saved.old_prop);
9956 Fsignal (Qquit, Qnil);
9957 gl_state = saved;
9958 UNGCPRO;
9959 }
9960 else
9961 /* Else request quit when it's safe */
9962 Vquit_flag = Qt;
9963 }
9964
9965 if (waiting_for_input && !echoing)
9966 quit_throw_to_read_char ();
9967
9968 errno = old_errno;
9969}
9970
9971/* Handle a C-g by making read_char return C-g. */
9972
9973void
9974quit_throw_to_read_char ()
9975{
9976 sigfree ();
9977 /* Prevent another signal from doing this before we finish. */
9978 clear_waiting_for_input ();
9979 input_pending = 0;
9980
9981 Vunread_command_events = Qnil;
9982 unread_command_char = -1;
9983
9984#if 0 /* Currently, sit_for is called from read_char without turning
9985 off polling. And that can call set_waiting_for_input.
9986 It seems to be harmless. */
9987#ifdef POLL_FOR_INPUT
9988 /* May be > 1 if in recursive minibuffer. */
9989 if (poll_suppress_count == 0)
9990 abort ();
9991#endif
9992#endif
9993 if (FRAMEP (internal_last_event_frame)
9994 && !EQ (internal_last_event_frame, selected_frame))
9995 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
9996 0, 0);
9997
9998 _longjmp (getcjmp, 1);
9999}
10000\f
10001DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10002 doc: /* Set mode of reading keyboard input.
10003First arg INTERRUPT non-nil means use input interrupts;
10004 nil means use CBREAK mode.
10005Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10006 (no effect except in CBREAK mode).
10007Third arg META t means accept 8-bit input (for a Meta key).
10008 META nil means ignore the top bit, on the assumption it is parity.
10009 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10010Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10011See also `current-input-mode'. */)
10012 (interrupt, flow, meta, quit)
10013 Lisp_Object interrupt, flow, meta, quit;
10014{
10015 if (!NILP (quit)
10016 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10017 error ("set-input-mode: QUIT must be an ASCII character");
10018
10019#ifdef POLL_FOR_INPUT
10020 stop_polling ();
10021#endif
10022
10023#ifndef DOS_NT
10024 /* this causes startup screen to be restored and messes with the mouse */
10025 reset_sys_modes ();
10026#endif
10027
10028#ifdef SIGIO
10029/* Note SIGIO has been undef'd if FIONREAD is missing. */
10030 if (read_socket_hook)
10031 {
10032 /* When using X, don't give the user a real choice,
10033 because we haven't implemented the mechanisms to support it. */
10034#ifdef NO_SOCK_SIGIO
10035 interrupt_input = 0;
10036#else /* not NO_SOCK_SIGIO */
10037 interrupt_input = 1;
10038#endif /* NO_SOCK_SIGIO */
10039 }
10040 else
10041 interrupt_input = !NILP (interrupt);
10042#else /* not SIGIO */
10043 interrupt_input = 0;
10044#endif /* not SIGIO */
10045
10046/* Our VMS input only works by interrupts, as of now. */
10047#ifdef VMS
10048 interrupt_input = 1;
10049#endif
10050
10051 flow_control = !NILP (flow);
10052 if (NILP (meta))
10053 meta_key = 0;
10054 else if (EQ (meta, Qt))
10055 meta_key = 1;
10056 else
10057 meta_key = 2;
10058 if (!NILP (quit))
10059 /* Don't let this value be out of range. */
10060 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
10061
10062#ifndef DOS_NT
10063 init_sys_modes ();
10064#endif
10065
10066#ifdef POLL_FOR_INPUT
10067 poll_suppress_count = 1;
10068 start_polling ();
10069#endif
10070 return Qnil;
10071}
10072
10073DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10074 doc: /* Return information about the way Emacs currently reads keyboard input.
10075The value is a list of the form (INTERRUPT FLOW META QUIT), where
10076 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10077 nil, Emacs is using CBREAK mode.
10078 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10079 terminal; this does not apply if Emacs uses interrupt-driven input.
10080 META is t if accepting 8-bit input with 8th bit as Meta flag.
10081 META nil means ignoring the top bit, on the assumption it is parity.
10082 META is neither t nor nil if accepting 8-bit input and using
10083 all 8 bits as the character code.
10084 QUIT is the character Emacs currently uses to quit.
10085The elements of this list correspond to the arguments of
10086`set-input-mode'. */)
10087 ()
10088{
10089 Lisp_Object val[4];
10090
10091 val[0] = interrupt_input ? Qt : Qnil;
10092 val[1] = flow_control ? Qt : Qnil;
10093 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
10094 XSETFASTINT (val[3], quit_char);
10095
10096 return Flist (sizeof (val) / sizeof (val[0]), val);
10097}
10098
10099\f
10100/*
10101 * Set up a new kboard object with reasonable initial values.
10102 */
10103void
10104init_kboard (kb)
10105 KBOARD *kb;
10106{
10107 kb->Voverriding_terminal_local_map = Qnil;
10108 kb->Vlast_command = Qnil;
10109 kb->Vreal_last_command = Qnil;
10110 kb->Vprefix_arg = Qnil;
10111 kb->Vlast_prefix_arg = Qnil;
10112 kb->kbd_queue = Qnil;
10113 kb->kbd_queue_has_data = 0;
10114 kb->immediate_echo = 0;
10115 kb->echo_string = Qnil;
10116 kb->echo_after_prompt = -1;
10117 kb->kbd_macro_buffer = 0;
10118 kb->kbd_macro_bufsize = 0;
10119 kb->defining_kbd_macro = Qnil;
10120 kb->Vlast_kbd_macro = Qnil;
10121 kb->reference_count = 0;
10122 kb->Vsystem_key_alist = Qnil;
10123 kb->system_key_syms = Qnil;
10124 kb->Vdefault_minibuffer_frame = Qnil;
10125}
10126
10127/*
10128 * Destroy the contents of a kboard object, but not the object itself.
10129 * We use this just before deleting it, or if we're going to initialize
10130 * it a second time.
10131 */
10132static void
10133wipe_kboard (kb)
10134 KBOARD *kb;
10135{
10136 if (kb->kbd_macro_buffer)
10137 xfree (kb->kbd_macro_buffer);
10138}
10139
10140#ifdef MULTI_KBOARD
10141
10142/* Free KB and memory referenced from it. */
10143
10144void
10145delete_kboard (kb)
10146 KBOARD *kb;
10147{
10148 KBOARD **kbp;
10149
10150 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10151 if (*kbp == NULL)
10152 abort ();
10153 *kbp = kb->next_kboard;
10154
10155 /* Prevent a dangling reference to KB. */
10156 if (kb == current_kboard
10157 && FRAMEP (selected_frame)
10158 && FRAME_LIVE_P (XFRAME (selected_frame)))
10159 {
10160 current_kboard = XFRAME (selected_frame)->kboard;
10161 if (current_kboard == kb)
10162 abort ();
10163 }
10164
10165 wipe_kboard (kb);
10166 xfree (kb);
10167}
10168
10169#endif /* MULTI_KBOARD */
10170
10171void
10172init_keyboard ()
10173{
10174 /* This is correct before outermost invocation of the editor loop */
10175 command_loop_level = -1;
10176 immediate_quit = 0;
10177 quit_char = Ctl ('g');
10178 Vunread_command_events = Qnil;
10179 unread_command_char = -1;
10180 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10181 total_keys = 0;
10182 recent_keys_index = 0;
10183 kbd_fetch_ptr = kbd_buffer;
10184 kbd_store_ptr = kbd_buffer;
10185 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10186#ifdef HAVE_MOUSE
10187 do_mouse_tracking = Qnil;
10188#endif
10189 input_pending = 0;
10190
10191 /* This means that command_loop_1 won't try to select anything the first
10192 time through. */
10193 internal_last_event_frame = Qnil;
10194 Vlast_event_frame = internal_last_event_frame;
10195
10196#ifdef MULTI_KBOARD
10197 current_kboard = initial_kboard;
10198#endif
10199 wipe_kboard (current_kboard);
10200 init_kboard (current_kboard);
10201
10202 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
10203 {
10204 signal (SIGINT, interrupt_signal);
10205#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10206 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10207 SIGQUIT and we can't tell which one it will give us. */
10208 signal (SIGQUIT, interrupt_signal);
10209#endif /* HAVE_TERMIO */
10210 }
10211/* Note SIGIO has been undef'd if FIONREAD is missing. */
10212#ifdef SIGIO
10213 if (!noninteractive)
10214 signal (SIGIO, input_available_signal);
10215#endif /* SIGIO */
10216
10217/* Use interrupt input by default, if it works and noninterrupt input
10218 has deficiencies. */
10219
10220#ifdef INTERRUPT_INPUT
10221 interrupt_input = 1;
10222#else
10223 interrupt_input = 0;
10224#endif
10225
10226/* Our VMS input only works by interrupts, as of now. */
10227#ifdef VMS
10228 interrupt_input = 1;
10229#endif
10230
10231 sigfree ();
10232 dribble = 0;
10233
10234 if (keyboard_init_hook)
10235 (*keyboard_init_hook) ();
10236
10237#ifdef POLL_FOR_INPUT
10238 poll_suppress_count = 1;
10239 start_polling ();
10240#endif
10241}
10242
10243/* This type's only use is in syms_of_keyboard, to initialize the
10244 event header symbols and put properties on them. */
10245struct event_head {
10246 Lisp_Object *var;
10247 char *name;
10248 Lisp_Object *kind;
10249};
10250
10251struct event_head head_table[] = {
10252 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10253 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10254 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10255 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10256 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10257 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
10258 {&Qselect_window, "select-window", &Qselect_window}
10259};
10260
10261void
10262syms_of_keyboard ()
10263{
10264 Vpre_help_message = Qnil;
10265 staticpro (&Vpre_help_message);
10266
10267 Vlispy_mouse_stem = build_string ("mouse");
10268 staticpro (&Vlispy_mouse_stem);
10269
10270 /* Tool-bars. */
10271 QCimage = intern (":image");
10272 staticpro (&QCimage);
10273
10274 staticpro (&Qhelp_echo);
10275 Qhelp_echo = intern ("help-echo");
10276
10277 staticpro (&item_properties);
10278 item_properties = Qnil;
10279
10280 staticpro (&tool_bar_item_properties);
10281 tool_bar_item_properties = Qnil;
10282 staticpro (&tool_bar_items_vector);
10283 tool_bar_items_vector = Qnil;
10284
10285 staticpro (&real_this_command);
10286 real_this_command = Qnil;
10287
10288 Qtimer_event_handler = intern ("timer-event-handler");
10289 staticpro (&Qtimer_event_handler);
10290
10291 Qdisabled_command_hook = intern ("disabled-command-hook");
10292 staticpro (&Qdisabled_command_hook);
10293
10294 Qself_insert_command = intern ("self-insert-command");
10295 staticpro (&Qself_insert_command);
10296
10297 Qforward_char = intern ("forward-char");
10298 staticpro (&Qforward_char);
10299
10300 Qbackward_char = intern ("backward-char");
10301 staticpro (&Qbackward_char);
10302
10303 Qdisabled = intern ("disabled");
10304 staticpro (&Qdisabled);
10305
10306 Qundefined = intern ("undefined");
10307 staticpro (&Qundefined);
10308
10309 Qpre_command_hook = intern ("pre-command-hook");
10310 staticpro (&Qpre_command_hook);
10311
10312 Qpost_command_hook = intern ("post-command-hook");
10313 staticpro (&Qpost_command_hook);
10314
10315 Qpost_command_idle_hook = intern ("post-command-idle-hook");
10316 staticpro (&Qpost_command_idle_hook);
10317
10318 Qdeferred_action_function = intern ("deferred-action-function");
10319 staticpro (&Qdeferred_action_function);
10320
10321 Qcommand_hook_internal = intern ("command-hook-internal");
10322 staticpro (&Qcommand_hook_internal);
10323
10324 Qfunction_key = intern ("function-key");
10325 staticpro (&Qfunction_key);
10326 Qmouse_click = intern ("mouse-click");
10327 staticpro (&Qmouse_click);
10328#ifdef WINDOWSNT
10329 Qmouse_wheel = intern ("mouse-wheel");
10330 staticpro (&Qmouse_wheel);
10331 Qlanguage_change = intern ("language-change");
10332 staticpro (&Qlanguage_change);
10333#endif
10334 Qdrag_n_drop = intern ("drag-n-drop");
10335 staticpro (&Qdrag_n_drop);
10336
10337 Qsave_session = intern ("save-session");
10338 staticpro(&Qsave_session);
10339
10340 Qusr1_signal = intern ("usr1-signal");
10341 staticpro (&Qusr1_signal);
10342 Qusr2_signal = intern ("usr2-signal");
10343 staticpro (&Qusr2_signal);
10344
10345 Qmenu_enable = intern ("menu-enable");
10346 staticpro (&Qmenu_enable);
10347 Qmenu_alias = intern ("menu-alias");
10348 staticpro (&Qmenu_alias);
10349 QCenable = intern (":enable");
10350 staticpro (&QCenable);
10351 QCvisible = intern (":visible");
10352 staticpro (&QCvisible);
10353 QChelp = intern (":help");
10354 staticpro (&QChelp);
10355 QCfilter = intern (":filter");
10356 staticpro (&QCfilter);
10357 QCbutton = intern (":button");
10358 staticpro (&QCbutton);
10359 QCkeys = intern (":keys");
10360 staticpro (&QCkeys);
10361 QCkey_sequence = intern (":key-sequence");
10362 staticpro (&QCkey_sequence);
10363 QCtoggle = intern (":toggle");
10364 staticpro (&QCtoggle);
10365 QCradio = intern (":radio");
10366 staticpro (&QCradio);
10367
10368 Qmode_line = intern ("mode-line");
10369 staticpro (&Qmode_line);
10370 Qvertical_line = intern ("vertical-line");
10371 staticpro (&Qvertical_line);
10372 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10373 staticpro (&Qvertical_scroll_bar);
10374 Qmenu_bar = intern ("menu-bar");
10375 staticpro (&Qmenu_bar);
10376
10377 Qabove_handle = intern ("above-handle");
10378 staticpro (&Qabove_handle);
10379 Qhandle = intern ("handle");
10380 staticpro (&Qhandle);
10381 Qbelow_handle = intern ("below-handle");
10382 staticpro (&Qbelow_handle);
10383 Qup = intern ("up");
10384 staticpro (&Qup);
10385 Qdown = intern ("down");
10386 staticpro (&Qdown);
10387 Qtop = intern ("top");
10388 staticpro (&Qtop);
10389 Qbottom = intern ("bottom");
10390 staticpro (&Qbottom);
10391 Qend_scroll = intern ("end-scroll");
10392 staticpro (&Qend_scroll);
10393 Qratio = intern ("ratio");
10394 staticpro (&Qratio);
10395
10396 Qevent_kind = intern ("event-kind");
10397 staticpro (&Qevent_kind);
10398 Qevent_symbol_elements = intern ("event-symbol-elements");
10399 staticpro (&Qevent_symbol_elements);
10400 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
10401 staticpro (&Qevent_symbol_element_mask);
10402 Qmodifier_cache = intern ("modifier-cache");
10403 staticpro (&Qmodifier_cache);
10404
10405 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
10406 staticpro (&Qrecompute_lucid_menubar);
10407 Qactivate_menubar_hook = intern ("activate-menubar-hook");
10408 staticpro (&Qactivate_menubar_hook);
10409
10410 Qpolling_period = intern ("polling-period");
10411 staticpro (&Qpolling_period);
10412
10413 Qinput_method_function = intern ("input-method-function");
10414 staticpro (&Qinput_method_function);
10415
10416 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
10417 staticpro (&Qinput_method_exit_on_first_char);
10418 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
10419 staticpro (&Qinput_method_use_echo_area);
10420
10421 Fset (Qinput_method_exit_on_first_char, Qnil);
10422 Fset (Qinput_method_use_echo_area, Qnil);
10423
10424 last_point_position_buffer = Qnil;
10425
10426 {
10427 struct event_head *p;
10428
10429 for (p = head_table;
10430 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
10431 p++)
10432 {
10433 *p->var = intern (p->name);
10434 staticpro (p->var);
10435 Fput (*p->var, Qevent_kind, *p->kind);
10436 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
10437 }
10438 }
10439
10440 button_down_location = Fmake_vector (make_number (1), Qnil);
10441 staticpro (&button_down_location);
10442 mouse_syms = Fmake_vector (make_number (1), Qnil);
10443 staticpro (&mouse_syms);
10444
10445 {
10446 int i;
10447 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
10448
10449 modifier_symbols = Fmake_vector (make_number (len), Qnil);
10450 for (i = 0; i < len; i++)
10451 if (modifier_names[i])
10452 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
10453 staticpro (&modifier_symbols);
10454 }
10455
10456 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
10457 staticpro (&recent_keys);
10458
10459 this_command_keys = Fmake_vector (make_number (40), Qnil);
10460 staticpro (&this_command_keys);
10461
10462 raw_keybuf = Fmake_vector (make_number (30), Qnil);
10463 staticpro (&raw_keybuf);
10464
10465 Qextended_command_history = intern ("extended-command-history");
10466 Fset (Qextended_command_history, Qnil);
10467 staticpro (&Qextended_command_history);
10468
10469 kbd_buffer_gcpro = Fmake_vector (make_number (2 * KBD_BUFFER_SIZE), Qnil);
10470 staticpro (&kbd_buffer_gcpro);
10471
10472 accent_key_syms = Qnil;
10473 staticpro (&accent_key_syms);
10474
10475 func_key_syms = Qnil;
10476 staticpro (&func_key_syms);
10477
10478#ifdef WINDOWSNT
10479 mouse_wheel_syms = Qnil;
10480 staticpro (&mouse_wheel_syms);
10481
10482 drag_n_drop_syms = Qnil;
10483 staticpro (&drag_n_drop_syms);
10484#endif
10485
10486 unread_switch_frame = Qnil;
10487 staticpro (&unread_switch_frame);
10488
10489 internal_last_event_frame = Qnil;
10490 staticpro (&internal_last_event_frame);
10491
10492 read_key_sequence_cmd = Qnil;
10493 staticpro (&read_key_sequence_cmd);
10494
10495 menu_bar_one_keymap_changed_items = Qnil;
10496 staticpro (&menu_bar_one_keymap_changed_items);
10497
10498 defsubr (&Sevent_convert_list);
10499 defsubr (&Sread_key_sequence);
10500 defsubr (&Sread_key_sequence_vector);
10501 defsubr (&Srecursive_edit);
10502#ifdef HAVE_MOUSE
10503 defsubr (&Strack_mouse);
10504#endif
10505 defsubr (&Sinput_pending_p);
10506 defsubr (&Scommand_execute);
10507 defsubr (&Srecent_keys);
10508 defsubr (&Sthis_command_keys);
10509 defsubr (&Sthis_command_keys_vector);
10510 defsubr (&Sthis_single_command_keys);
10511 defsubr (&Sthis_single_command_raw_keys);
10512 defsubr (&Sreset_this_command_lengths);
10513 defsubr (&Sclear_this_command_keys);
10514 defsubr (&Ssuspend_emacs);
10515 defsubr (&Sabort_recursive_edit);
10516 defsubr (&Sexit_recursive_edit);
10517 defsubr (&Srecursion_depth);
10518 defsubr (&Stop_level);
10519 defsubr (&Sdiscard_input);
10520 defsubr (&Sopen_dribble_file);
10521 defsubr (&Sset_input_mode);
10522 defsubr (&Scurrent_input_mode);
10523 defsubr (&Sexecute_extended_command);
10524
10525 DEFVAR_LISP ("last-command-char", &last_command_char,
10526 doc: /* Last input event that was part of a command. */);
10527
10528 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
10529 doc: /* Last input event that was part of a command. */);
10530
10531 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
10532 doc: /* Last input event in a command, except for mouse menu events.
10533Mouse menus give back keys that don't look like mouse events;
10534this variable holds the actual mouse event that led to the menu,
10535so that you can determine whether the command was run by mouse or not. */);
10536
10537 DEFVAR_LISP ("last-input-char", &last_input_char,
10538 doc: /* Last input event. */);
10539
10540 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
10541 doc: /* Last input event. */);
10542
10543 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
10544 doc: /* List of events to be read as the command input.
10545These events are processed first, before actual keyboard input. */);
10546 Vunread_command_events = Qnil;
10547
10548 DEFVAR_INT ("unread-command-char", &unread_command_char,
10549 doc: /* If not -1, an object to be read as next command input event. */);
10550
10551 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
10552 doc: /* List of events to be processed as input by input methods.
10553These events are processed after `unread-command-events', but
10554before actual keyboard input. */);
10555 Vunread_post_input_method_events = Qnil;
10556
10557 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
10558 doc: /* List of events to be processed as input by input methods.
10559These events are processed after `unread-command-events', but
10560before actual keyboard input. */);
10561 Vunread_input_method_events = Qnil;
10562
10563 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
10564 doc: /* Meta-prefix character code.
10565Meta-foo as command input turns into this character followed by foo. */);
10566 XSETINT (meta_prefix_char, 033);
10567
10568 DEFVAR_KBOARD ("last-command", Vlast_command,
10569 doc: /* The last command executed.
10570Normally a symbol with a function definition, but can be whatever was found
10571in the keymap, or whatever the variable `this-command' was set to by that
10572command.
10573
10574The value `mode-exit' is special; it means that the previous command
10575read an event that told it to exit, and it did so and unread that event.
10576In other words, the present command is the event that made the previous
10577command exit.
10578
10579The value `kill-region' is special; it means that the previous command
10580was a kill command. */);
10581
10582 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
10583 doc: /* Same as `last-command', but never altered by Lisp code. */);
10584
10585 DEFVAR_LISP ("this-command", &Vthis_command,
10586 doc: /* The command now being executed.
10587The command can set this variable; whatever is put here
10588will be in `last-command' during the following command. */);
10589 Vthis_command = Qnil;
10590
10591 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
10592 doc: /* If non-nil, the original command bound to the current key sequence.
10593The value of `this-command' is the result of looking up the original
10594command in the active keymaps. */);
10595 Vthis_original_command = Qnil;
10596
10597 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
10598 doc: /* *Number of input events between auto-saves.
10599Zero means disable autosaving due to number of characters typed. */);
10600 auto_save_interval = 300;
10601
10602 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
10603 doc: /* *Number of seconds idle time before auto-save.
10604Zero or nil means disable auto-saving due to idleness.
10605After auto-saving due to this many seconds of idle time,
10606Emacs also does a garbage collection if that seems to be warranted. */);
10607 XSETFASTINT (Vauto_save_timeout, 30);
10608
10609 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
10610 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
10611The value may be integer or floating point. */);
10612 Vecho_keystrokes = make_number (1);
10613
10614 DEFVAR_INT ("polling-period", &polling_period,
10615 doc: /* *Interval between polling for input during Lisp execution.
10616The reason for polling is to make C-g work to stop a running program.
10617Polling is needed only when using X windows and SIGIO does not work.
10618Polling is automatically disabled in all other cases. */);
10619 polling_period = 2;
10620
10621 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
10622 doc: /* *Maximum time between mouse clicks to make a double-click.
10623Measured in milliseconds. nil means disable double-click recognition;
10624t means double-clicks have no time limit and are detected
10625by position only. */);
10626 Vdouble_click_time = make_number (500);
10627
10628 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
10629 doc: /* *Maximum mouse movement between clicks to make a double-click.
10630On window-system frames, value is the number of pixels the mouse may have
10631moved horizontally or vertically between two clicks to make a double-click.
10632On non window-system frames, value is interpreted in units of 1/8 characters
10633instead of pixels.
10634
10635This variable is also the threshold for motion of the mouse
10636to count as a drag. */);
10637 double_click_fuzz = 3;
10638
10639 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
10640 doc: /* *Non-nil means inhibit local map menu bar menus. */);
10641 inhibit_local_menu_bar_menus = 0;
10642
10643 DEFVAR_INT ("num-input-keys", &num_input_keys,
10644 doc: /* Number of complete key sequences read as input so far.
10645This includes key sequences read from keyboard macros.
10646The number is effectively the number of interactive command invocations. */);
10647 num_input_keys = 0;
10648
10649 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
10650 doc: /* Number of input events read from the keyboard so far.
10651This does not include events generated by keyboard macros. */);
10652 num_nonmacro_input_events = 0;
10653
10654 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
10655 doc: /* The frame in which the most recently read event occurred.
10656If the last event came from a keyboard macro, this is set to `macro'. */);
10657 Vlast_event_frame = Qnil;
10658
10659 /* This variable is set up in sysdep.c. */
10660 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
10661 doc: /* The ERASE character as set by the user with stty. */);
10662
10663 DEFVAR_LISP ("help-char", &Vhelp_char,
10664 doc: /* Character to recognize as meaning Help.
10665When it is read, do `(eval help-form)', and display result if it's a string.
10666If the value of `help-form' is nil, this char can be read normally. */);
10667 XSETINT (Vhelp_char, Ctl ('H'));
10668
10669 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
10670 doc: /* List of input events to recognize as meaning Help.
10671These work just like the value of `help-char' (see that). */);
10672 Vhelp_event_list = Qnil;
10673
10674 DEFVAR_LISP ("help-form", &Vhelp_form,
10675 doc: /* Form to execute when character `help-char' is read.
10676If the form returns a string, that string is displayed.
10677If `help-form' is nil, the help char is not recognized. */);
10678 Vhelp_form = Qnil;
10679
10680 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
10681 doc: /* Command to run when `help-char' character follows a prefix key.
10682This command is used only when there is no actual binding
10683for that character after that prefix key. */);
10684 Vprefix_help_command = Qnil;
10685
10686 DEFVAR_LISP ("top-level", &Vtop_level,
10687 doc: /* Form to evaluate when Emacs starts up.
10688Useful to set before you dump a modified Emacs. */);
10689 Vtop_level = Qnil;
10690
10691 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
10692 doc: /* Translate table for keyboard input, or nil.
10693Each character is looked up in this string and the contents used instead.
10694The value may be a string, a vector, or a char-table.
10695If it is a string or vector of length N,
10696character codes N and up are untranslated.
10697In a vector or a char-table, an element which is nil means "no translation". */);
10698 Vkeyboard_translate_table = Qnil;
10699
10700 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
10701 doc: /* Non-nil means to always spawn a subshell instead of suspending.
10702\(Even if the operating system has support for stopping a process.\) */);
10703 cannot_suspend = 0;
10704
10705 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
10706 doc: /* Non-nil means prompt with menus when appropriate.
10707This is done when reading from a keymap that has a prompt string,
10708for elements that have prompt strings.
10709The menu is displayed on the screen
10710if X menus were enabled at configuration
10711time and the previous event was a mouse click prefix key.
10712Otherwise, menu prompting uses the echo area. */);
10713 menu_prompting = 1;
10714
10715 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
10716 doc: /* Character to see next line of menu prompt.
10717Type this character while in a menu prompt to rotate around the lines of it. */);
10718 XSETINT (menu_prompt_more_char, ' ');
10719
10720 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
10721 doc: /* A mask of additional modifier keys to use with every keyboard character.
10722Emacs applies the modifiers of the character stored here to each keyboard
10723character it reads. For example, after evaluating the expression
10724 (setq extra-keyboard-modifiers ?\\C-x)
10725all input characters will have the control modifier applied to them.
10726
10727Note that the character ?\\C-@, equivalent to the integer zero, does
10728not count as a control character; rather, it counts as a character
10729with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
10730cancels any modification. */);
10731 extra_keyboard_modifiers = 0;
10732
10733 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
10734 doc: /* If an editing command sets this to t, deactivate the mark afterward.
10735The command loop sets this to nil before each command,
10736and tests the value when the command returns.
10737Buffer modification stores t in this variable. */);
10738 Vdeactivate_mark = Qnil;
10739
10740 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
10741 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
10742 Vcommand_hook_internal = Qnil;
10743
10744 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
10745 doc: /* Normal hook run before each command is executed.
10746If an unhandled error happens in running this hook,
10747the hook value is set to nil, since otherwise the error
10748might happen repeatedly and make Emacs nonfunctional. */);
10749 Vpre_command_hook = Qnil;
10750
10751 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
10752 doc: /* Normal hook run after each command is executed.
10753If an unhandled error happens in running this hook,
10754the hook value is set to nil, since otherwise the error
10755might happen repeatedly and make Emacs nonfunctional. */);
10756 Vpost_command_hook = Qnil;
10757
10758 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
10759 doc: /* Normal hook run after each command is executed, if idle.
10760Errors running the hook are caught and ignored. */);
10761 Vpost_command_idle_hook = Qnil;
10762
10763 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
10764 doc: /* Delay time before running `post-command-idle-hook'.
10765This is measured in microseconds. */);
10766 post_command_idle_delay = 100000;
10767
10768#if 0
10769 DEFVAR_LISP ("echo-area-clear-hook", ...,
10770 doc: /* Normal hook run when clearing the echo area. */);
10771#endif
10772 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
10773 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
10774
10775 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
10776 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
10777 Vlucid_menu_bar_dirty_flag = Qnil;
10778
10779 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
10780 doc: /* List of menu bar items to move to the end of the menu bar.
10781The elements of the list are event types that may have menu bar bindings. */);
10782 Vmenu_bar_final_items = Qnil;
10783
10784 DEFVAR_KBOARD ("overriding-terminal-local-map",
10785 Voverriding_terminal_local_map,
10786 doc: /* Per-terminal keymap that overrides all other local keymaps.
10787If this variable is non-nil, it is used as a keymap instead of the
10788buffer's local map, and the minor mode keymaps and text property keymaps.
10789This variable is intended to let commands such as `universal-argument'
10790set up a different keymap for reading the next command. */);
10791
10792 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
10793 doc: /* Keymap that overrides all other local keymaps.
10794If this variable is non-nil, it is used as a keymap instead of the
10795buffer's local map, and the minor mode keymaps and text property keymaps. */);
10796 Voverriding_local_map = Qnil;
10797
10798 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
10799 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
10800Otherwise, the menu bar continues to reflect the buffer's local map
10801and the minor mode maps regardless of `overriding-local-map'. */);
10802 Voverriding_local_map_menu_flag = Qnil;
10803
10804 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
10805 doc: /* Keymap defining bindings for special events to execute at low level. */);
10806 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
10807
10808 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
10809 doc: /* *Non-nil means generate motion events for mouse motion. */);
10810
10811 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
10812 doc: /* Alist of system-specific X windows key symbols.
10813Each element should have the form (N . SYMBOL) where N is the
10814numeric keysym code (sans the \"system-specific\" bit 1<<28)
10815and SYMBOL is its name. */);
10816
10817 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
10818 doc: /* List of deferred actions to be performed at a later time.
10819The precise format isn't relevant here; we just check whether it is nil. */);
10820 Vdeferred_action_list = Qnil;
10821
10822 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
10823 doc: /* Function to call to handle deferred actions, after each command.
10824This function is called with no arguments after each command
10825whenever `deferred-action-list' is non-nil. */);
10826 Vdeferred_action_function = Qnil;
10827
10828 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
10829 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
10830The value can be a length of time to show the message for.
10831If the value is non-nil and not a number, we wait 2 seconds. */);
10832 Vsuggest_key_bindings = Qt;
10833
10834 DEFVAR_LISP ("timer-list", &Vtimer_list,
10835 doc: /* List of active absolute time timers in order of increasing time. */);
10836 Vtimer_list = Qnil;
10837
10838 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
10839 doc: /* List of active idle-time timers in order of increasing time. */);
10840 Vtimer_idle_list = Qnil;
10841
10842 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
10843 doc: /* If non-nil, the function that implements the current input method.
10844It's called with one argument, a printing character that was just read.
10845\(That means a character with code 040...0176.)
10846Typically this function uses `read-event' to read additional events.
10847When it does so, it should first bind `input-method-function' to nil
10848so it will not be called recursively.
10849
10850The function should return a list of zero or more events
10851to be used as input. If it wants to put back some events
10852to be reconsidered, separately, by the input method,
10853it can add them to the beginning of `unread-command-events'.
10854
10855The input method function can find in `input-method-previous-method'
10856the previous echo area message.
10857
10858The input method function should refer to the variables
10859`input-method-use-echo-area' and `input-method-exit-on-first-char'
10860for guidance on what to do. */);
10861 Vinput_method_function = Qnil;
10862
10863 DEFVAR_LISP ("input-method-previous-message",
10864 &Vinput_method_previous_message,
10865 doc: /* When `input-method-function' is called, hold the previous echo area message.
10866This variable exists because `read-event' clears the echo area
10867before running the input method. It is nil if there was no message. */);
10868 Vinput_method_previous_message = Qnil;
10869
10870 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
10871 doc: /* If non-nil, the function that implements the display of help.
10872It's called with one argument, the help string to display. */);
10873 Vshow_help_function = Qnil;
10874
10875 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
10876 doc: /* If non-nil, suppress point adjustment after executing a command.
10877
10878After a command is executed, if point is moved into a region that has
10879special properties (e.g. composition, display), we adjust point to
10880the boundary of the region. But, several special commands sets this
10881variable to non-nil, then we suppress the point adjustment.
10882
10883This variable is set to nil before reading a command, and is checked
10884just after executing the command. */);
10885 Vdisable_point_adjustment = Qnil;
10886
10887 DEFVAR_LISP ("global-disable-point-adjustment",
10888 &Vglobal_disable_point_adjustment,
10889 doc: /* *If non-nil, always suppress point adjustment.
10890
10891The default value is nil, in which case, point adjustment are
10892suppressed only after special commands that set
10893`disable-point-adjustment' (which see) to non-nil. */);
10894 Vglobal_disable_point_adjustment = Qnil;
10895
10896 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings,
10897 doc: /* Non-nil means updating menu bindings is allowed.
10898A value of nil means menu bindings should not be updated.
10899Used during Emacs' startup. */);
10900 update_menu_bindings = 1;
10901
10902 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
10903 doc: /* *How long to display an echo-area message when the minibuffer is active.
10904If the value is not a number, such messages don't time out. */);
10905 Vminibuffer_message_timeout = make_number (2);
10906
10907 DEFVAR_LISP ("key-menu-prompt-function", &Vkey_menu_prompt_function,
10908 doc: /* A function to display keyboard-menus, and read the user's response.
10909If nil, keyboard menus are disabled.
10910
10911It is called with single argument, which is a list describing the keyboard menu
10912and should return the key the user types.
10913
10914The argument is a list of the prompt and individual menu entries.
10915The format is as follows:
10916
10917 MENU : (PROMPT ENTRY...)
10918 ENTRY : (EVENT PROMPT [BINDING [TOGGLE_TYPE TOGGLE_STATE]])
10919
10920Note that there is a prompt for the whole menu, and one for each
10921individual entry. */);
10922 Vkey_menu_prompt_function = Qnil;
10923}
10924
10925void
10926keys_of_keyboard ()
10927{
10928 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
10929 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
10930 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
10931 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
10932 initial_define_key (meta_map, 'x', "execute-extended-command");
10933
10934 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
10935 "handle-delete-frame");
10936 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
10937 "ignore-event");
10938 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
10939 "ignore-event");
10940 initial_define_lispy_key (Vspecial_event_map, "select-window",
10941 "handle-select-window");
10942 initial_define_lispy_key (Vspecial_event_map, "save-session",
10943 "handle-save-session");
10944}