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