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