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