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