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