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