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