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