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