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