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