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