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