entered into RCS
[emacs.git] / src / keyboard.c
blob96a1e0620b8d38c3b0c56a5a63c1050aee1ceb65
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* Allow config.h to undefine symbols found here. */
21 #include <signal.h>
23 #include "config.h"
24 #include <stdio.h>
25 #undef NULL
26 #include "termchar.h"
27 #include "termopts.h"
28 #include "lisp.h"
29 #include "termhooks.h"
30 #include "macros.h"
31 #include "frame.h"
32 #include "window.h"
33 #include "commands.h"
34 #include "buffer.h"
35 #include "disptab.h"
36 #include "keyboard.h"
37 #include <setjmp.h>
38 #include <errno.h>
40 #ifndef VMS
41 #include <sys/ioctl.h>
42 #endif
44 #include "syssignal.h"
45 #include "systerm.h"
46 #include "systime.h"
48 extern int errno;
50 #ifdef HAVE_X_WINDOWS
51 extern Lisp_Object Vmouse_grabbed;
53 /* Make all keyboard buffers much bigger when using X windows. */
54 #define KBD_BUFFER_SIZE 4096
55 #else /* No X-windows, character input */
56 #define KBD_BUFFER_SIZE 256
57 #endif /* No X-windows */
59 /* Following definition copied from eval.c */
61 struct backtrace
63 struct backtrace *next;
64 Lisp_Object *function;
65 Lisp_Object *args; /* Points to vector of args. */
66 int nargs; /* length of vector. If nargs is UNEVALLED,
67 args points to slot holding list of
68 unevalled args */
69 char evalargs;
72 /* Non-nil disable property on a command means
73 do not execute it; call disabled-command-hook's value instead. */
74 Lisp_Object Qdisabled, Vdisabled_command_hook;
76 #define NUM_RECENT_KEYS (100)
77 int recent_keys_index; /* Index for storing next element into recent_keys */
78 int total_keys; /* Total number of elements stored into recent_keys */
79 Lisp_Object recent_keys[NUM_RECENT_KEYS]; /* Holds last 100 keystrokes */
81 /* Buffer holding the key that invoked the current command. */
82 Lisp_Object *this_command_keys;
83 int this_command_key_count; /* Size in use. */
84 int this_command_keys_size; /* Size allocated. */
86 extern int minbuf_level;
88 extern struct backtrace *backtrace_list;
90 /* Nonzero means do menu prompting. */
91 static int menu_prompting;
93 /* Character to see next line of menu prompt. */
94 static Lisp_Object menu_prompt_more_char;
96 /* For longjmp to where kbd input is being done. */
97 static jmp_buf getcjmp;
99 /* True while doing kbd input. */
100 int waiting_for_input;
102 /* True while displaying for echoing. Delays C-g throwing. */
103 static int echoing;
105 /* Nonzero means C-G should cause immediate error-signal. */
106 int immediate_quit;
108 /* Character to recognize as the help char. */
109 Lisp_Object help_char;
111 /* Form to execute when help char is typed. */
112 Lisp_Object Vhelp_form;
114 /* Character that causes a quit. Normally C-g.
116 If we are running on an ordinary terminal, this must be an ordinary
117 ASCII char, since we want to make it our interrupt character.
119 If we are not running on an ordinary terminal, it still needs to be
120 an ordinary ASCII char. This character needs to be recognized in
121 the input interrupt handler. At this point, the keystroke is
122 represented as a struct input_event, while the desired quit
123 character is specified as a lispy event. The mapping from struct
124 input_events to lispy events cannot run in an interrupt handler,
125 and the reverse mapping is difficult for anything but ASCII
126 keystrokes.
128 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
129 ASCII character. */
130 int quit_char;
132 extern Lisp_Object current_global_map;
133 extern int minibuf_level;
135 /* Current depth in recursive edits. */
136 int command_loop_level;
138 /* Total number of times command_loop has read a key sequence. */
139 int num_input_keys;
141 /* Last input character read as a command. */
142 Lisp_Object last_command_char;
144 /* Last input character read for any purpose. */
145 Lisp_Object last_input_char;
147 /* If not Qnil, an object to be read as the next command input. */
148 Lisp_Object unread_command_char;
150 /* Char to use as prefix when a meta character is typed in.
151 This is bound on entry to minibuffer in case ESC is changed there. */
153 Lisp_Object meta_prefix_char;
155 /* Last size recorded for a current buffer which is not a minibuffer. */
156 static int last_non_minibuf_size;
158 /* Number of idle seconds before an auto-save and garbage collection. */
159 static Lisp_Object Vauto_save_timeout;
161 /* Total number of times read_char has returned. */
162 int num_input_chars;
164 /* Auto-save automatically when this many characters have been typed
165 since the last time. */
167 static int auto_save_interval;
169 /* Value of num_input_chars as of last auto save. */
171 int last_auto_save;
173 /* Last command executed by the editor command loop, not counting
174 commands that set the prefix argument. */
176 Lisp_Object last_command;
178 /* The command being executed by the command loop.
179 Commands may set this, and the value set will be copied into last_command
180 instead of the actual command. */
181 Lisp_Object this_command;
183 #ifndef HAVE_X11
184 /* Window of last mouse click. */
185 extern Lisp_Object Vmouse_window;
187 /* List containing details of last mouse click. */
188 extern Lisp_Object Vmouse_event;
189 #endif /* defined HAVE_X11 */
191 /* Hook to call on each mouse event after running its definition. */
192 Lisp_Object Vmouse_event_function;
194 /* Hook to call when mouse leaves frame. */
195 Lisp_Object Vmouse_left_hook;
197 /* Hook to call when a frame is mapped. */
198 Lisp_Object Vmap_frame_hook;
200 /* Hook to call when a frame is unmapped. */
201 Lisp_Object Vunmap_frame_hook;
203 /* Handler for non-grabbed (no keys depressed) mouse motion. */
204 Lisp_Object Vmouse_motion_handler;
206 /* The frame in which the last input event occurred.
207 command_loop_1 will select this frame before running the
208 command bound to an event sequence, and read_key_sequence will
209 toss the existing prefix if the user starts typing at a
210 new frame. */
211 Lisp_Object Vlast_event_frame;
213 /* The timestamp of the last input event we received from the X server.
214 X Windows wants this for selection ownership. */
215 unsigned long last_event_timestamp;
217 Lisp_Object Qself_insert_command;
218 Lisp_Object Qforward_char;
219 Lisp_Object Qbackward_char;
221 /* read_key_sequence stores here the command definition of the
222 key sequence that it reads. */
223 Lisp_Object read_key_sequence_cmd;
225 /* Form to evaluate (if non-nil) when Emacs is started. */
226 Lisp_Object Vtop_level;
228 /* User-supplied string to translate input characters through. */
229 Lisp_Object Vkeyboard_translate_table;
231 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
232 extern Lisp_Object Vfunction_key_map;
234 /* File in which we write all commands we read. */
235 FILE *dribble;
237 /* Nonzero if input is available. */
238 int input_pending;
240 /* Nonzero if should obey 0200 bit in input chars as "Meta". */
241 int meta_key;
243 extern char *pending_malloc_warning;
245 /* Circular buffer for pre-read keyboard input. */
246 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
248 /* Pointer to next available character in kbd_buffer.
249 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
250 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
251 next available char is in kbd_buffer[0]. */
252 static struct input_event *kbd_fetch_ptr;
254 /* Pointer to next place to store character in kbd_buffer. This
255 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
256 character should go in kbd_buffer[0]. */
257 static struct input_event *kbd_store_ptr;
259 /* The above pair of variables forms a "queue empty" flag. When we
260 enqueue a non-hook event, we increment kbd_write_count. When we
261 dequeue a non-hook event, we increment kbd_read_count. We say that
262 there is input available iff the two counters are equal.
264 Why not just have a flag set and cleared by the enqueuing and
265 dequeuing functions? Such a flag could be screwed up by interrupts
266 at inopportune times. */
268 /* If this flag is non-zero, mouse movement events will appear in the
269 input stream. If is zero, mouse movement will be ignored. */
270 int do_mouse_tracking;
272 /* The window system handling code should set this if the mouse has
273 moved since the last call to the mouse_position_hook. Calling that
274 hook should clear this. Code assumes that if this is set, it can
275 call mouse_position_hook to get the promised position, so don't set
276 it unless you're prepared to substantiate the claim! */
277 int mouse_moved;
279 /* True iff there is an event in kbd_buffer, or if mouse tracking is
280 enabled and there is a new mouse position in the mouse movement
281 buffer. Note that if this is false, that doesn't mean that there
282 is readable input; all the events in the queue might be button-up
283 events, and do_mouse_tracking might be off. */
284 #define EVENT_QUEUES_EMPTY \
285 ((kbd_fetch_ptr == kbd_store_ptr) && (!do_mouse_tracking || !mouse_moved))
288 /* Symbols to head events. */
289 Lisp_Object Qmouse_movement;
291 Lisp_Object Qvscrollbar_part;
292 Lisp_Object Qvslider_part;
293 Lisp_Object Qvthumbup_part;
294 Lisp_Object Qvthumbdown_part;
296 Lisp_Object Qhscrollbar_part;
297 Lisp_Object Qhslider_part;
298 Lisp_Object Qhthumbleft_part;
299 Lisp_Object Qhthumbright_part;
301 /* Symbols to denote kinds of events. */
302 Lisp_Object Qfunction_key;
303 Lisp_Object Qmouse_click;
304 /* Lisp_Object Qmouse_movement; - also an event header */
305 Lisp_Object Qscrollbar_click;
307 /* Properties of event headers. */
308 Lisp_Object Qevent_kind;
309 Lisp_Object Qevent_unmodified;
311 /* Symbols to use for non-text mouse positions. */
312 Lisp_Object Qmode_line;
313 Lisp_Object Qvertical_line;
316 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
317 happens. */
318 EMACS_TIME *input_available_clear_time;
320 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
321 Default is 1 if INTERRUPT_INPUT is defined. */
322 int interrupt_input;
324 /* Nonzero while interrupts are temporarily deferred during redisplay. */
325 int interrupts_deferred;
327 /* nonzero means use ^S/^Q for flow control. */
328 int flow_control;
330 /* Allow m- file to inhibit use of FIONREAD. */
331 #ifdef BROKEN_FIONREAD
332 #undef FIONREAD
333 #endif
335 /* We are unable to use interrupts if FIONREAD is not available,
336 so flush SIGIO so we won't try. */
337 #ifndef FIONREAD
338 #ifdef SIGIO
339 #undef SIGIO
340 #endif
341 #endif
343 /* If we support X Windows, and won't get an interrupt when input
344 arrives from the server, poll periodically so we can detect C-g. */
345 #ifdef HAVE_X_WINDOWS
346 #ifndef SIGIO
347 #define POLL_FOR_INPUT
348 #endif
349 #endif
351 /* Global variable declarations. */
353 /* Function for init_keyboard to call with no args (if nonzero). */
354 void (*keyboard_init_hook) ();
356 static int read_avail_input ();
357 static void get_input_pending ();
359 /* > 0 if we are to echo keystrokes. */
360 static int echo_keystrokes;
362 /* Nonzero means echo each character as typed. */
363 static int immediate_echo;
365 /* The text we're echoing in the modeline - partial key sequences,
366 usually. '\0'-terminated. */
367 static char echobuf[100];
369 /* Where to append more text to echobuf if we want to. */
370 static char *echoptr;
372 #define min(a,b) ((a)<(b)?(a):(b))
373 #define max(a,b) ((a)>(b)?(a):(b))
375 /* Install the string STR as the beginning of the string of echoing,
376 so that it serves as a prompt for the next character.
377 Also start echoing. */
379 echo_prompt (str)
380 char *str;
382 int len = strlen (str);
383 if (len > sizeof echobuf - 4)
384 len = sizeof echobuf - 4;
385 bcopy (str, echobuf, len + 1);
386 echoptr = echobuf + len;
388 echo ();
391 /* Add C to the echo string, if echoing is going on.
392 C can be a character, which is printed prettily ("M-C-x" and all that
393 jazz), or a symbol, whose name is printed. */
395 echo_char (c)
396 Lisp_Object c;
398 extern char *push_key_description ();
400 if (immediate_echo)
402 char *ptr = echoptr;
404 if (ptr != echobuf)
405 *ptr++ = ' ';
407 /* If someone has passed us a composite event, use its head symbol. */
408 if (EVENT_HAS_PARAMETERS (c))
409 c = EVENT_HEAD (c);
411 if (XTYPE (c) == Lisp_Int)
413 if (ptr - echobuf > sizeof echobuf - 6)
414 return;
416 ptr = push_key_description (c, ptr);
418 else if (XTYPE (c) == Lisp_Symbol)
420 struct Lisp_String *name = XSYMBOL (c)->name;
421 if (((ptr - echobuf) + name->size + 4) > sizeof echobuf)
422 return;
423 bcopy (name->data, ptr, name->size);
424 ptr += name->size;
427 if (echoptr == echobuf && c == help_char)
429 strcpy (ptr, " (Type ? for further options)");
430 ptr += strlen (ptr);
433 *ptr = 0;
434 echoptr = ptr;
436 echo ();
440 /* Temporarily add a dash to the end of the echo string if it's not
441 empty, so that it serves as a mini-prompt for the very next character. */
443 echo_dash ()
445 if (!immediate_echo && echoptr == echobuf)
446 return;
448 /* Put a dash at the end of the buffer temporarily,
449 but make it go away when the next character is added. */
450 echoptr[0] = '-';
451 echoptr[1] = 0;
453 echo ();
456 /* Display the current echo string, and begin echoing if not already
457 doing so. */
459 echo ()
461 if (!immediate_echo)
463 int i;
464 immediate_echo = 1;
466 for (i = 0; i < this_command_key_count; i++)
467 echo_char (this_command_keys[i]);
468 echo_dash ();
471 echoing = 1;
472 message1 (echobuf);
473 echoing = 0;
475 if (waiting_for_input && !NILP (Vquit_flag))
476 quit_throw_to_read_char ();
479 /* Turn off echoing, for the start of a new command. */
481 cancel_echoing ()
483 immediate_echo = 0;
484 echoptr = echobuf;
487 /* Return the length of the current echo string. */
489 static int
490 echo_length ()
492 return echoptr - echobuf;
495 /* Truncate the current echo message to its first LEN chars.
496 This and echo_char get used by read_key_sequence when the user
497 switches frames while entering a key sequence. */
499 static void
500 echo_truncate (len)
501 int len;
503 echobuf[len] = '\0';
504 echoptr = echobuf + strlen (echobuf);
508 /* Functions for manipulating this_command_keys. */
509 static void
510 add_command_key (key)
511 Lisp_Object key;
513 if (this_command_key_count == this_command_keys_size)
515 this_command_keys_size *= 2;
516 this_command_keys
517 = (Lisp_Object *) xrealloc (this_command_keys,
518 (this_command_keys_size
519 * sizeof (Lisp_Object)));
521 this_command_keys[this_command_key_count++] = key;
524 Lisp_Object
525 recursive_edit_1 ()
527 int count = specpdl_ptr - specpdl;
528 Lisp_Object val;
530 if (command_loop_level > 0)
532 specbind (Qstandard_output, Qt);
533 specbind (Qstandard_input, Qt);
536 val = command_loop ();
537 if (EQ (val, Qt))
538 Fsignal (Qquit, Qnil);
540 unbind_to (count);
541 return Qnil;
544 /* When an auto-save happens, record the "time", and don't do again soon. */
545 record_auto_save ()
547 last_auto_save = num_input_chars;
550 Lisp_Object recursive_edit_unwind (), command_loop ();
552 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
553 "Invoke the editor command loop recursively.\n\
554 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
555 that tells this function to return.\n\
556 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
557 This function is called by the editor initialization to begin editing.")
560 int count = specpdl_ptr - specpdl;
561 Lisp_Object val;
563 command_loop_level++;
564 update_mode_lines = 1;
566 record_unwind_protect (recursive_edit_unwind,
567 (command_loop_level
568 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
569 ? Fcurrent_buffer ()
570 : Qnil);
571 recursive_edit_1 ();
572 return unbind_to (count, Qnil);
575 Lisp_Object
576 recursive_edit_unwind (buffer)
577 Lisp_Object buffer;
579 if (!NILP (buffer))
580 Fset_buffer (buffer);
582 command_loop_level--;
583 update_mode_lines = 1;
584 return Qnil;
587 Lisp_Object
588 cmd_error (data)
589 Lisp_Object data;
591 Lisp_Object errmsg, tail, errname, file_error;
592 Lisp_Object stream;
593 struct gcpro gcpro1;
594 int i;
596 Vquit_flag = Qnil;
597 Vinhibit_quit = Qt;
598 Vstandard_output = Qt;
599 Vstandard_input = Qt;
600 Vexecuting_macro = Qnil;
601 echo_area_glyphs = 0;
603 /* If the window system or terminal frame hasn't been initialized
604 yet, or we're not interactive, it's best to dump this message out
605 to stderr and exit. */
606 if (! FRAME_MESSAGE_BUF (selected_frame)
607 || noninteractive)
608 stream = Qexternal_debugging_output;
609 else
611 Fdiscard_input ();
612 bitch_at_user ();
613 stream = Qt;
616 errname = Fcar (data);
618 if (EQ (errname, Qerror))
620 data = Fcdr (data);
621 if (!CONSP (data)) data = Qnil;
622 errmsg = Fcar (data);
623 file_error = Qnil;
625 else
627 errmsg = Fget (errname, Qerror_message);
628 file_error = Fmemq (Qfile_error,
629 Fget (errname, Qerror_conditions));
632 /* Print an error message including the data items.
633 This is done by printing it into a scratch buffer
634 and then making a copy of the text in the buffer. */
636 if (!CONSP (data)) data = Qnil;
637 tail = Fcdr (data);
638 GCPRO1 (tail);
640 /* For file-error, make error message by concatenating
641 all the data items. They are all strings. */
642 if (!NILP (file_error) && !NILP (tail))
643 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr;
645 if (XTYPE (errmsg) == Lisp_String)
646 Fprinc (errmsg, stream);
647 else
648 write_string_1 ("peculiar error", -1, stream);
650 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
652 write_string_1 (i ? ", " : ": ", 2, stream);
653 if (!NILP (file_error))
654 Fprinc (Fcar (tail), stream);
655 else
656 Fprin1 (Fcar (tail), stream);
658 UNGCPRO;
660 /* If the window system or terminal frame hasn't been initialized
661 yet, or we're in -batch mode, this error should cause Emacs to exit. */
662 if (! FRAME_MESSAGE_BUF (selected_frame)
663 || noninteractive)
665 Fterpri (stream);
666 Fkill_emacs (make_number (-1));
669 Vquit_flag = Qnil;
671 Vinhibit_quit = Qnil;
672 return make_number (0);
675 Lisp_Object command_loop_1 ();
676 Lisp_Object command_loop_2 ();
677 Lisp_Object top_level_1 ();
679 /* Entry to editor-command-loop.
680 This level has the catches for exiting/returning to editor command loop.
681 It returns nil to exit recursive edit, t to abort it. */
683 Lisp_Object
684 command_loop ()
686 if (command_loop_level > 0 || minibuf_level > 0)
688 return internal_catch (Qexit, command_loop_2, Qnil);
690 else
691 while (1)
693 internal_catch (Qtop_level, top_level_1, Qnil);
694 internal_catch (Qtop_level, command_loop_2, Qnil);
696 /* End of file in -batch run causes exit here. */
697 if (noninteractive)
698 Fkill_emacs (Qt);
702 /* Here we catch errors in execution of commands within the
703 editing loop, and reenter the editing loop.
704 When there is an error, cmd_error runs and returns a non-nil
705 value to us. A value of nil means that cmd_loop_1 itself
706 returned due to end of file (or end of kbd macro). */
708 Lisp_Object
709 command_loop_2 ()
711 register Lisp_Object val;
714 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
715 while (!NILP (val));
717 return Qnil;
720 Lisp_Object
721 top_level_2 ()
723 return Feval (Vtop_level);
726 Lisp_Object
727 top_level_1 ()
729 /* On entry to the outer level, run the startup file */
730 if (!NILP (Vtop_level))
731 internal_condition_case (top_level_2, Qerror, cmd_error);
732 else if (!NILP (Vpurify_flag))
733 message ("Bare impure Emacs (standard Lisp code not loaded)");
734 else
735 message ("Bare Emacs (standard Lisp code not loaded)");
736 return Qnil;
739 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
740 "Exit all recursive editing levels.")
743 Fthrow (Qtop_level, Qnil);
746 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
747 "Exit from the innermost recursive edit or minibuffer.")
750 if (command_loop_level > 0 || minibuf_level > 0)
751 Fthrow (Qexit, Qnil);
753 error ("No recursive edit is in progress");
756 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
757 "Abort the command that requested this recursive edit or minibuffer input.")
760 if (command_loop_level > 0 || minibuf_level > 0)
761 Fthrow (Qexit, Qt);
763 error ("No recursive edit is in progress");
766 /* This is the actual command reading loop,
767 sans error-handling encapsulation. */
769 Lisp_Object Fcommand_execute ();
770 static int read_key_sequence ();
772 Lisp_Object
773 command_loop_1 ()
775 Lisp_Object cmd;
776 int lose;
777 int nonundocount;
778 Lisp_Object keybuf[30];
779 int i;
780 int no_redisplay;
781 int no_direct;
783 Vprefix_arg = Qnil;
784 waiting_for_input = 0;
785 cancel_echoing ();
787 /* Don't clear out last_command at the beginning of a macro. */
788 if (XTYPE (Vexecuting_macro) != Lisp_String)
789 last_command = Qt;
791 nonundocount = 0;
792 no_redisplay = 0;
793 this_command_key_count = 0;
795 while (1)
797 /* Install chars successfully executed in kbd macro. */
799 if (defining_kbd_macro && NILP (Vprefix_arg))
800 finalize_kbd_macro_chars ();
802 /* Make sure the current window's buffer is selected. */
803 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
804 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
806 /* Display any malloc warning that just came out. Use while because
807 displaying one warning can cause another. */
809 while (pending_malloc_warning)
810 display_malloc_warning ();
812 no_direct = 0;
814 /* If minibuffer on and echo area in use,
815 wait 2 sec and redraw minibufer. */
817 if (minibuf_level && echo_area_glyphs)
819 Fsit_for (make_number (2), Qnil, Qnil);
820 echo_area_glyphs = 0;
821 no_direct = 1;
822 if (!NILP (Vquit_flag))
824 Vquit_flag = Qnil;
825 unread_command_char = make_number (quit_char);
829 #ifdef C_ALLOCA
830 alloca (0); /* Cause a garbage collection now */
831 /* Since we can free the most stuff here. */
832 #endif /* C_ALLOCA */
834 /* Read next key sequence; i gets its length. */
835 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])), 0);
837 ++num_input_keys;
839 #ifdef MULTI_FRAME
840 /* Select the frame that the key sequence came from. */
841 if (XTYPE (Vlast_event_frame) == Lisp_Frame
842 && XFRAME (Vlast_event_frame) != selected_frame)
843 Fselect_frame (Vlast_event_frame, Qnil);
844 #endif
846 /* Now we have read a key sequence of length I,
847 or else I is 0 and we found end of file. */
849 if (i == 0) /* End of file -- happens only in */
850 return Qnil; /* a kbd macro, at the end. */
852 #if 0
853 #ifdef HAVE_X_WINDOWS
854 if (FRAME_IS_X (selected_frame))
856 if (i == -1) /* Mouse event */
858 nonundocount = 0;
859 if (NILP (Vprefix_arg) && NILP (Vexecuting_macro) &&
860 !EQ (minibuf_window, selected_window))
861 Fundo_boundary ();
863 if (defining_kbd_macro)
865 /* Be nice if this worked... */
867 Fexecute_mouse_event (read_key_sequence_cmd);
868 no_redisplay = 0;
869 goto directly_done;
872 if (i == -2) /* Lisp Symbol */
874 nonundocount = 0;
875 if (NILP (Vprefix_arg) && NILP (Vexecuting_macro) &&
876 !EQ (minibuf_window, selected_window))
877 Fundo_boundary ();
879 goto directly_done;
882 #endif /* HAVE_X_WINDOWS */
883 #endif
885 last_command_char = keybuf[i - 1];
887 cmd = read_key_sequence_cmd;
888 if (!NILP (Vexecuting_macro))
890 if (!NILP (Vquit_flag))
892 Vexecuting_macro = Qt;
893 QUIT; /* Make some noise. */
894 /* Will return since macro now empty. */
898 /* Do redisplay processing after this command except in special
899 cases identified below that set no_redisplay to 1. */
900 no_redisplay = 0;
902 /* Execute the command. */
904 if (NILP (cmd))
906 /* nil means key is undefined. */
907 bitch_at_user ();
908 defining_kbd_macro = 0;
909 update_mode_lines = 1;
910 Vprefix_arg = Qnil;
912 else
914 this_command = cmd;
915 if (NILP (Vprefix_arg) && ! no_direct)
917 /* Recognize some common commands in common situations and
918 do them directly. */
919 if (EQ (cmd, Qforward_char) && point < ZV)
921 struct Lisp_Vector *dp
922 = window_display_table (XWINDOW (selected_window));
923 lose = FETCH_CHAR (point);
924 SET_PT (point + 1);
925 if (((dp == 0 && lose >= 040 && lose < 0177)
927 (dp && (XTYPE (dp->contents[lose]) != Lisp_String
928 || XSTRING (dp->contents[lose])->size == sizeof (GLYPH))))
929 && (XFASTINT (XWINDOW (selected_window)->last_modified)
930 >= MODIFF)
931 && (XFASTINT (XWINDOW (selected_window)->last_point)
932 == point - 1)
933 && !windows_or_buffers_changed
934 && EQ (current_buffer->selective_display, Qnil)
935 && !detect_input_pending ()
936 && NILP (Vexecuting_macro))
937 no_redisplay = direct_output_forward_char (1);
938 goto directly_done;
940 else if (EQ (cmd, Qbackward_char) && point > BEGV)
942 struct Lisp_Vector *dp
943 = window_display_table (XWINDOW (selected_window));
944 SET_PT (point - 1);
945 lose = FETCH_CHAR (point);
946 if (((dp == 0 && lose >= 040 && lose < 0177)
948 (dp && (XTYPE (dp->contents[lose]) != Lisp_String
949 || XSTRING (dp->contents[lose])->size == sizeof (GLYPH))))
950 && (XFASTINT (XWINDOW (selected_window)->last_modified)
951 >= MODIFF)
952 && (XFASTINT (XWINDOW (selected_window)->last_point)
953 == point + 1)
954 && !windows_or_buffers_changed
955 && EQ (current_buffer->selective_display, Qnil)
956 && !detect_input_pending ()
957 && NILP (Vexecuting_macro))
958 no_redisplay = direct_output_forward_char (-1);
959 goto directly_done;
961 else if (EQ (cmd, Qself_insert_command)
962 /* Try this optimization only on ascii keystrokes. */
963 && XTYPE (last_command_char) == Lisp_Int)
965 unsigned char c = XINT (last_command_char);
967 if (NILP (Vexecuting_macro) &&
968 !EQ (minibuf_window, selected_window))
970 if (!nonundocount || nonundocount >= 20)
972 Fundo_boundary ();
973 nonundocount = 0;
975 nonundocount++;
977 lose = (XFASTINT (XWINDOW (selected_window)->last_modified)
978 < MODIFF)
979 || (XFASTINT (XWINDOW (selected_window)->last_point)
980 != point)
981 || MODIFF <= current_buffer->save_modified
982 || windows_or_buffers_changed
983 || !EQ (current_buffer->selective_display, Qnil)
984 || detect_input_pending ()
985 || !NILP (Vexecuting_macro);
986 if (internal_self_insert (c, 0))
988 lose = 1;
989 nonundocount = 0;
991 if (!lose &&
992 (point == ZV || FETCH_CHAR (point) == '\n'))
994 struct Lisp_Vector *dp
995 = window_display_table (XWINDOW (selected_window));
997 if (dp == 0 || XTYPE (dp->contents[c]) != Lisp_String)
998 no_redisplay = direct_output_for_insert (c);
999 else if (XSTRING (dp->contents[c])->size
1000 == sizeof (GLYPH))
1001 no_redisplay =
1002 direct_output_for_insert (*(GLYPH *)XSTRING (dp->contents[c])->data);
1004 goto directly_done;
1008 /* Here for a command that isn't executed directly */
1010 nonundocount = 0;
1011 if (NILP (Vprefix_arg))
1012 Fundo_boundary ();
1013 Fcommand_execute (cmd, Qnil);
1016 directly_done: ;
1018 /* If there is a prefix argument,
1019 1) We don't want last_command to be ``universal-argument''
1020 (that would be dumb), so don't set last_command,
1021 2) we want to leave echoing on so that the prefix will be
1022 echoed as part of this key sequence, so don't call
1023 cancel_echoing, and
1024 3) we want to leave this_command_key_count non-zero, so that
1025 read_char will realize that it is re-reading a character, and
1026 not echo it a second time. */
1027 if (NILP (Vprefix_arg))
1029 last_command = this_command;
1030 cancel_echoing ();
1031 this_command_key_count = 0;
1036 /* Number of seconds between polling for input. */
1037 int polling_period;
1039 /* Nonzero means polling for input is temporarily suppresed. */
1040 int poll_suppress_count;
1042 #ifdef POLL_FOR_INPUT
1043 int polling_for_input;
1045 /* Handle an alarm once each second and read pending input
1046 so as to handle a C-g if it comces in. */
1048 SIGTYPE
1049 input_poll_signal ()
1051 #ifdef HAVE_X_WINDOWS
1052 extern int x_input_blocked;
1053 if (x_input_blocked == 0)
1054 #endif
1055 if (!waiting_for_input)
1056 read_avail_input (0);
1057 signal (SIGALRM, input_poll_signal);
1058 alarm (polling_period);
1061 #endif
1063 /* Begin signals to poll for input, if they are appropriate.
1064 This function is called unconditionally from various places. */
1066 start_polling ()
1068 #ifdef POLL_FOR_INPUT
1069 if (read_socket_hook)
1071 poll_suppress_count--;
1072 if (poll_suppress_count == 0)
1074 signal (SIGALRM, input_poll_signal);
1075 polling_for_input = 1;
1076 alarm (polling_period);
1079 #endif
1082 /* Turn off polling. */
1084 stop_polling ()
1086 #ifdef POLL_FOR_INPUT
1087 if (read_socket_hook)
1089 if (poll_suppress_count == 0)
1091 polling_for_input = 0;
1092 alarm (0);
1094 poll_suppress_count++;
1096 #endif
1099 /* Input of single characters from keyboard */
1101 Lisp_Object print_help ();
1102 static Lisp_Object kbd_buffer_get_event ();
1104 /* read a character from the keyboard; call the redisplay if needed */
1105 /* commandflag 0 means do not do auto-saving, but do do redisplay.
1106 -1 means do not do redisplay, but do do autosaving.
1107 1 means do both. */
1109 Lisp_Object
1110 read_char (commandflag)
1111 int commandflag;
1113 register Lisp_Object c;
1114 int count;
1115 jmp_buf save_jump;
1117 if (!NILP (unread_command_char))
1119 c = unread_command_char;
1120 unread_command_char = Qnil;
1122 #if 0 /* We're not handling mouse keys specially anymore. */
1123 if (!EQ (XTYPE (obj), Lisp_Int)) /* Mouse thing */
1125 num_input_chars++;
1126 last_input_char = 0;
1127 return obj;
1129 #endif
1131 if (this_command_key_count == 0)
1132 goto reread_first;
1133 else
1134 goto reread;
1137 if (!NILP (Vexecuting_macro))
1139 if (executing_macro_index >= Flength (Vexecuting_macro))
1141 XSET (c, Lisp_Int, -1);
1142 return c;
1145 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
1146 executing_macro_index++;
1148 goto from_macro;
1151 /* Save outer setjmp data, in case called recursively. */
1152 save_getcjmp (save_jump);
1154 stop_polling ();
1156 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1157 redisplay ();
1159 if (_setjmp (getcjmp))
1161 XSET (c, Lisp_Int, quit_char);
1162 #ifdef MULTI_FRAME
1163 XSET (Vlast_event_frame, Lisp_Frame, selected_frame);
1164 #endif
1166 goto non_reread;
1169 /* Message turns off echoing unless more keystrokes turn it on again. */
1170 if (echo_area_glyphs && *echo_area_glyphs && echo_area_glyphs != echobuf)
1171 cancel_echoing ();
1172 else
1173 /* If already echoing, continue. */
1174 echo_dash ();
1176 /* If in middle of key sequence and minibuffer not active,
1177 start echoing if enough time elapses. */
1178 if (minibuf_level == 0 && !immediate_echo && this_command_key_count > 0
1179 && echo_keystrokes > 0
1180 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0))
1182 Lisp_Object tem0;
1184 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
1185 if (EQ (tem0, Qt))
1186 echo ();
1189 /* Maybe auto save due to number of keystrokes or idle time. */
1191 if (commandflag != 0
1192 && auto_save_interval > 0
1193 && num_input_chars - last_auto_save > max (auto_save_interval, 20)
1194 && !detect_input_pending ())
1196 jmp_buf temp;
1197 save_getcjmp (temp);
1198 Fdo_auto_save (Qnil, Qnil);
1199 restore_getcjmp (temp);
1202 /* Slow down auto saves logarithmically in size of current buffer,
1203 and garbage collect while we're at it. */
1205 int delay_level, buffer_size;
1207 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
1208 last_non_minibuf_size = Z - BEG;
1209 buffer_size = (last_non_minibuf_size >> 8) + 1;
1210 delay_level = 0;
1211 while (buffer_size > 64)
1212 delay_level++, buffer_size -= buffer_size >> 2;
1213 if (delay_level < 4) delay_level = 4;
1214 /* delay_level is 4 for files under around 50k, 7 at 100k,
1215 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1217 /* Auto save if enough time goes by without input. */
1218 if (commandflag != 0
1219 && num_input_chars > last_auto_save
1220 && XTYPE (Vauto_save_timeout) == Lisp_Int
1221 && XINT (Vauto_save_timeout) > 0)
1223 Lisp_Object tem0;
1224 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4;
1225 tem0 = sit_for (delay, 0, 1, 1);
1226 if (EQ (tem0, Qt))
1228 jmp_buf temp;
1229 save_getcjmp (temp);
1230 Fdo_auto_save (Qnil, Qnil);
1231 restore_getcjmp (temp);
1233 /* If we have auto-saved and there is still no input
1234 available, garbage collect if there has been enough
1235 consing going on to make it worthwhile. */
1236 if (!detect_input_pending ()
1237 && consing_since_gc > gc_cons_threshold / 2)
1238 Fgarbage_collect ();
1243 /* Actually read a character, waiting if necessary. */
1244 c = kbd_buffer_get_event ();
1246 if (NILP (c))
1247 abort (); /* Don't think this can happen. */
1249 #if 0 /* I think that all the different kinds of events should be
1250 handled together now... */
1251 if (XTYPE (c) != Lisp_Int)
1253 start_polling ();
1254 return c;
1256 c = XINT (obj);
1257 #endif
1259 /* Terminate Emacs in batch mode if at eof. */
1260 if (noninteractive && c < 0)
1261 Fkill_emacs (make_number (1));
1263 non_reread:
1265 restore_getcjmp (save_jump);
1267 start_polling ();
1269 echo_area_glyphs = 0;
1271 /* Handle things that only apply to characters. */
1272 if (XTYPE (c) == Lisp_Int)
1274 /* If kbd_buffer_get_event gave us an EOF, return that. */
1275 if (XINT (c) < 0)
1276 return c;
1278 /* Strip the high bits, and maybe the meta bit too. */
1279 XSETINT (c, c & (meta_key ? 0377 : 0177));
1281 if (XTYPE (Vkeyboard_translate_table) == Lisp_String
1282 && XSTRING (Vkeyboard_translate_table)->size > XINT (c))
1283 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[c]);
1286 total_keys++;
1287 recent_keys[recent_keys_index] = c;
1288 if (++recent_keys_index >= (sizeof (recent_keys)/sizeof(recent_keys[0])))
1289 recent_keys_index = 0;
1291 /* Write c to the dribble file. If c is a lispy event, write
1292 the event's symbol to the dribble file, in <brackets>. Bleaugh.
1293 If you, dear reader, have a better idea, you've got the source. :-) */
1294 if (dribble)
1296 if (XTYPE (c) == Lisp_Int)
1297 putc (c, dribble);
1298 else
1300 Lisp_Object dribblee = c;
1302 /* If it's a structured event, take the event header. */
1303 if (EVENT_HAS_PARAMETERS (dribblee))
1304 dribblee = EVENT_HEAD (dribblee);
1306 if (XTYPE (c) == Lisp_Symbol)
1308 putc ('<', dribble);
1309 fwrite (XSYMBOL (c)->name->data, sizeof (char),
1310 XSYMBOL (c)->name->size,
1311 dribble);
1312 putc ('>', dribble);
1316 fflush (dribble);
1319 store_kbd_macro_char (c);
1321 from_macro:
1322 reread_first:
1323 echo_char (c);
1325 /* Record this character as part of the current key. */
1326 add_command_key (c);
1328 /* Re-reading in the middle of a command */
1329 reread:
1330 last_input_char = c;
1331 num_input_chars++;
1333 /* Process the help character specially if enabled */
1334 if (EQ (c, help_char) && !NILP (Vhelp_form))
1336 Lisp_Object tem0;
1337 count = specpdl_ptr - specpdl;
1339 record_unwind_protect (Fset_window_configuration,
1340 Fcurrent_window_configuration (Qnil));
1342 tem0 = Feval (Vhelp_form);
1343 if (XTYPE (tem0) == Lisp_String)
1344 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
1346 cancel_echoing ();
1347 c = read_char (0);
1348 /* Remove the help from the frame */
1349 unbind_to (count, Qnil);
1350 redisplay ();
1351 if (EQ (c, make_number (040)))
1353 cancel_echoing ();
1354 c = read_char (0);
1358 return c;
1361 Lisp_Object
1362 print_help (object)
1363 Lisp_Object object;
1365 Fprinc (object, Qnil);
1366 return Qnil;
1369 /* Copy out or in the info on where C-g should throw to.
1370 This is used when running Lisp code from within get_char,
1371 in case get_char is called recursively.
1372 See read_process_output. */
1374 save_getcjmp (temp)
1375 jmp_buf temp;
1377 bcopy (getcjmp, temp, sizeof getcjmp);
1380 restore_getcjmp (temp)
1381 jmp_buf temp;
1383 bcopy (temp, getcjmp, sizeof getcjmp);
1387 /* Low level keyboard/mouse input.
1388 kbd_buffer_store_event places events in kbd_buffer, and
1389 kbd_buffer_get_event retrieves them.
1390 mouse_moved indicates when the mouse has moved again, and
1391 *mouse_position_hook provides the mouse position. */
1393 /* Set this for debugging, to have a way to get out */
1394 int stop_character;
1396 extern int frame_garbaged;
1398 /* Return true iff there are any events in the queue that read-char
1399 would return. If this returns false, a read-char would block. */
1400 static int
1401 readable_events ()
1403 struct input_event *ep;
1405 if (EVENT_QUEUES_EMPTY)
1406 return 0;
1408 if (do_mouse_tracking)
1409 return 1;
1411 /* Mouse tracking is disabled, so we need to actually scan the
1412 input queue to see if any events are currently readable. */
1413 for (ep = kbd_fetch_ptr; ep != kbd_store_ptr; ep++)
1415 if (ep == kbd_buffer + KBD_BUFFER_SIZE)
1416 ep = kbd_buffer;
1418 /* Skip button-up events. */
1419 if ((ep->kind == mouse_click || ep->kind == scrollbar_click)
1420 && (ep->modifiers & up_modifier))
1421 continue;
1423 return 1;
1426 return 0;
1430 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1431 of this function. */
1432 static Lisp_Object
1433 tracking_off (old_value)
1434 Lisp_Object old_value;
1436 if (! XFASTINT (old_value))
1438 do_mouse_tracking = 0;
1440 /* Redisplay may have been preempted because there was input
1441 available, and it assumes it will be called again after the
1442 input has been processed. If the only input available was
1443 the sort that we have just disabled, then we need to call
1444 redisplay. */
1445 if (!readable_events ())
1447 redisplay_preserve_echo_area ();
1448 get_input_pending (&input_pending);
1453 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1454 "Evaluate BODY with mouse movement and button release events enabled.\n\
1455 Within a `track-mouse', mouse motion and button releases generate input\n\
1456 events that you can read with `read-event'.\n\
1457 Normally, these occurrences don't generate events.")
1458 (args)
1459 Lisp_Object args;
1461 int count = specpdl_ptr - specpdl;
1462 Lisp_Object val;
1464 XSET (val, Lisp_Int, do_mouse_tracking);
1465 record_unwind_protect (tracking_off, val);
1467 do_mouse_tracking = 1;
1469 val = Fprogn (args);
1470 return unbind_to (count, val);
1473 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
1475 void
1476 kbd_buffer_store_event (event)
1477 register struct input_event *event;
1479 if (event->kind == no_event)
1480 abort ();
1482 if (event->kind == ascii_keystroke)
1484 register int c = XFASTINT (event->code) & 0377;
1486 if (c == quit_char
1487 || ((c == (0200 | quit_char)) && !meta_key))
1489 /* If this results in a quit_char being returned to Emacs as
1490 input, set last-event-frame properly. If this doesn't
1491 get returned to Emacs as an event, the next event read
1492 will set Vlast_event_frame again, so this is safe to do. */
1493 extern SIGTYPE interrupt_signal ();
1494 Vlast_event_frame = FRAME_FOCUS_FRAME (event->frame);
1495 last_event_timestamp = event->timestamp;
1496 interrupt_signal ();
1497 return;
1500 if (c && c == stop_character)
1502 sys_suspend ();
1503 return;
1506 XSET (event->code, Lisp_Int, c);
1509 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
1510 kbd_store_ptr = kbd_buffer;
1512 /* Don't let the very last slot in the buffer become full,
1513 since that would make the two pointers equal,
1514 and that is indistinguishable from an empty buffer.
1515 Discard the event if it would fill the last slot. */
1516 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
1518 kbd_store_ptr->kind = event->kind;
1519 kbd_store_ptr->code = event->code;
1520 kbd_store_ptr->part = event->part;
1521 kbd_store_ptr->frame = event->frame;
1522 kbd_store_ptr->modifiers = event->modifiers;
1523 kbd_store_ptr->x = event->x;
1524 kbd_store_ptr->y = event->y;
1525 kbd_store_ptr->timestamp = event->timestamp;
1527 kbd_store_ptr++;
1531 static Lisp_Object make_lispy_event ();
1532 static Lisp_Object make_lispy_movement ();
1533 static Lisp_Object modify_event_symbol ();
1535 static Lisp_Object
1536 kbd_buffer_get_event ()
1538 register int c;
1539 Lisp_Object obj;
1541 if (noninteractive)
1543 c = getchar ();
1544 XSET (obj, Lisp_Int, c);
1545 return obj;
1548 /* Wait until there is input available. */
1549 for (;;)
1552 /* Process or toss any events that we don't want to return as
1553 input. The fact that we remove undesirable events here
1554 allows us to use EVENT_QUEUES_EMPTY in the rest of this loop. */
1555 if (! do_mouse_tracking)
1556 while (kbd_fetch_ptr != kbd_store_ptr)
1558 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
1559 kbd_fetch_ptr = kbd_buffer;
1561 if (kbd_fetch_ptr->kind == mouse_click
1562 || kbd_fetch_ptr->kind == scrollbar_click)
1564 if ((kbd_fetch_ptr->modifiers & up_modifier) == 0)
1565 break;
1567 else
1568 break;
1570 kbd_fetch_ptr++;
1573 if (!EVENT_QUEUES_EMPTY)
1574 break;
1576 /* If the quit flag is set, then read_char will return
1577 quit_char, so that counts as "available input." */
1578 if (!NILP (Vquit_flag))
1579 quit_throw_to_read_char ();
1581 /* One way or another, wait until input is available; then, if
1582 interrupt handlers have not read it, read it now. */
1584 #ifdef OLDVMS
1585 wait_for_kbd_input ();
1586 #else
1587 /* Note SIGIO has been undef'd if FIONREAD is missing. */
1588 #ifdef SIGIO
1589 gobble_input (0);
1590 #endif /* SIGIO */
1591 if (EVENT_QUEUES_EMPTY)
1593 Lisp_Object minus_one;
1595 XSET (minus_one, Lisp_Int, -1);
1596 wait_reading_process_input (0, 0, minus_one, 1);
1598 if (!interrupt_input && EVENT_QUEUES_EMPTY)
1600 read_avail_input (0);
1603 #endif /* not VMS */
1606 /* At this point, we know that there is a readable event available
1607 somewhere. If the event queue is empty, then there must be a
1608 mouse movement enabled and available. */
1609 if (kbd_fetch_ptr != kbd_store_ptr)
1611 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
1612 kbd_fetch_ptr = kbd_buffer;
1613 /* Do the redirection specified by the focus_frame
1614 member now, before we return this event. */
1615 kbd_fetch_ptr->frame =
1616 XFRAME (FRAME_FOCUS_FRAME (kbd_fetch_ptr->frame));
1617 XSET (Vlast_event_frame, Lisp_Frame, kbd_fetch_ptr->frame);
1618 last_event_timestamp = kbd_fetch_ptr->timestamp;
1619 obj = make_lispy_event (kbd_fetch_ptr);
1620 kbd_fetch_ptr->kind = no_event;
1621 kbd_fetch_ptr++;
1622 if (XTYPE (obj) == Lisp_Int)
1623 XSET (obj, Lisp_Int, XINT (obj) & (meta_key ? 0377 : 0177));
1625 else if (do_mouse_tracking && mouse_moved)
1627 FRAME_PTR frame;
1628 Lisp_Object x, y;
1629 unsigned long time;
1631 (*mouse_position_hook) (&frame, &x, &y, &time);
1632 XSET (Vlast_event_frame, Lisp_Frame, frame);
1634 obj = make_lispy_movement (frame, x, y, time);
1636 else
1637 /* We were promised by the above while loop that there was
1638 something for us to read! */
1639 abort ();
1641 input_pending = readable_events ();
1643 return (obj);
1646 /* Caches for modify_event_symbol. */
1647 static Lisp_Object func_key_syms;
1648 static Lisp_Object mouse_syms;
1650 /* You'll notice that this table is arranged to be conveniently
1651 indexed by X Windows keysym values. */
1652 static char *lispy_function_keys[] =
1654 /* X Keysym value */
1656 "home", /* 0xff50 */ /* IsCursorKey */
1657 "left",
1658 "up",
1659 "right",
1660 "down",
1661 "prior",
1662 "next",
1663 "end",
1664 "begin",
1665 0, /* 0xff59 */
1666 0, 0, 0, 0, 0, 0,
1667 "select", /* 0xff60 */ /* IsMiscFunctionKey */
1668 "print",
1669 "execute",
1670 "insert",
1671 0, /* 0xff64 */
1672 "undo",
1673 "redo",
1674 "menu",
1675 "find",
1676 "cancel",
1677 "help",
1678 "break", /* 0xff6b */
1680 /* Here are some keys found mostly on HP keyboards. The X event
1681 handling code will strip bit 29, which flags vendor-specific
1682 keysyms. */
1683 "reset", /* 0x1000ff6c */
1684 "system",
1685 "user",
1686 "clearline",
1687 "insertline",
1688 "deleteline",
1689 "insertchar",
1690 "deletechar",
1691 "backtab",
1692 "kp_backtab", /* 0x1000ff75 */
1693 0, /* 0xff76 */
1694 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff7f */
1695 "kp-space", /* 0xff80 */ /* IsKeypadKey */
1696 0, 0, 0, 0, 0, 0, 0, 0,
1697 "kp-tab", /* 0xff89 */
1698 0, 0, 0,
1699 "kp-enter", /* 0xff8d */
1700 0, 0, 0,
1701 "kp-f1", /* 0xff91 */
1702 "kp-f2",
1703 "kp-f3",
1704 "kp-f4",
1705 0, /* 0xff95 */
1706 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1707 "kp-multiply", /* 0xffaa */
1708 "kp-add",
1709 "kp-separator",
1710 "kp-subtract",
1711 "kp-decimal",
1712 "kp-divide", /* 0xffaf */
1713 "kp-0", /* 0xffb0 */
1714 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
1715 0, /* 0xffba */
1716 0, 0,
1717 "kp-equal", /* 0xffbd */
1718 "f1", /* 0xffbe */ /* IsFunctionKey */
1719 "f2", "f3", "f4",
1720 "f5", "f6", "f7", "f8", "f9", "f10", "f11", "f12",
1721 "f13", "f14", "f15", "f16", "f17", "f18", "f19", "f20",
1722 "f21", "f22", "f23", "f24", "f25", "f26", "f27", "f28",
1723 "f29", "f30", "f31", "f32", "f33", "f34", "f35" /* 0xffe0 */
1726 static char *lispy_mouse_names[] =
1728 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
1731 /* Given a struct input_event, build the lisp event which represents
1732 it. If EVENT is 0, build a mouse movement event from the mouse
1733 movement buffer, which should have a movement event in it. */
1735 static Lisp_Object
1736 make_lispy_event (event)
1737 struct input_event *event;
1739 #ifdef SWITCH_ENUM_BUG
1740 switch ((int) event->kind)
1741 #else
1742 switch (event->kind)
1743 #endif
1746 /* A simple keystroke. */
1747 case ascii_keystroke:
1748 return event->code;
1749 break;
1751 /* A function key. The symbol may need to have modifier prefixes
1752 tacked onto it. */
1753 case non_ascii_keystroke:
1754 return modify_event_symbol (XFASTINT (event->code), event->modifiers,
1755 Qfunction_key,
1756 lispy_function_keys, &func_key_syms,
1757 (sizeof (lispy_function_keys)
1758 / sizeof (lispy_function_keys[0])));
1759 break;
1761 /* A mouse click - build a list of the relevant information. */
1762 case mouse_click:
1764 int part;
1765 Lisp_Object window =
1766 window_from_coordinates (event->frame,
1767 XINT (event->x), XINT (event->y),
1768 &part);
1769 Lisp_Object posn;
1771 if (XTYPE (window) != Lisp_Window)
1772 posn = Qnil;
1773 else
1775 XSETINT (event->x, (XINT (event->x)
1776 - XINT (XWINDOW (window)->left)));
1777 XSETINT (event->y, (XINT (event->y)
1778 - XINT (XWINDOW (window)->top)));
1780 if (part == 1)
1781 posn = Qmode_line;
1782 else if (part == 2)
1783 posn = Qvertical_line;
1784 else
1785 XSET (posn, Lisp_Int,
1786 buffer_posn_from_coords (XWINDOW (window),
1787 XINT (event->x),
1788 XINT (event->y)));
1791 return Fcons (modify_event_symbol (XFASTINT (event->code) - 1,
1792 event->modifiers,
1793 Qmouse_click,
1794 lispy_mouse_names, &mouse_syms,
1795 (sizeof (lispy_mouse_names)
1796 / sizeof (lispy_mouse_names[0]))),
1797 Fcons (window,
1798 Fcons (posn,
1799 Fcons (Fcons (event->x, event->y),
1800 Fcons (make_number
1801 (event->timestamp),
1802 Qnil)))));
1805 /* A scrollbar click. Build a list containing the relevant
1806 information. */
1807 case scrollbar_click:
1809 Lisp_Object button
1810 = modify_event_symbol (XFASTINT (event->code) - 1,
1811 event->modifiers,
1812 Qmouse_click,
1813 lispy_mouse_names, &mouse_syms,
1814 (sizeof (lispy_mouse_names)
1815 / sizeof (lispy_mouse_names[0])));
1816 return Fcons (event->part,
1817 Fcons (FRAME_SELECTED_WINDOW (event->frame),
1818 Fcons (button,
1819 Fcons (Fcons (event->x, event->y),
1820 Fcons (make_number
1821 (event->timestamp),
1822 Qnil)))));
1825 /* The 'kind' field of the event is something we don't recognize. */
1826 default:
1827 abort();
1831 static Lisp_Object
1832 make_lispy_movement (frame, x, y, time)
1833 FRAME_PTR frame;
1834 Lisp_Object x, y;
1835 unsigned long time;
1837 Lisp_Object window;
1838 int ix, iy;
1839 Lisp_Object posn;
1840 int part;
1842 ix = XINT (x);
1843 iy = XINT (y);
1844 window = (frame
1845 ? window_from_coordinates (frame, ix, iy, &part)
1846 : Qnil);
1847 if (XTYPE (window) != Lisp_Window)
1848 posn = Qnil;
1849 else
1851 ix -= XINT (XWINDOW (window)->left);
1852 iy -= XINT (XWINDOW (window)->top);
1853 if (part == 1)
1854 posn = Qmode_line;
1855 else if (part == 2)
1856 posn = Qvertical_line;
1857 else
1858 XSET (posn, Lisp_Int, buffer_posn_from_coords (XWINDOW (window),
1859 ix, iy));
1862 XSETINT (x, ix);
1863 XSETINT (y, iy);
1864 return Fcons (Qmouse_movement,
1865 Fcons (window,
1866 Fcons (posn,
1867 Fcons (Fcons (x, y),
1868 Fcons (make_number (time), Qnil)))));
1873 /* Place the written representation of MODIFIERS in BUF, '\0'-terminated,
1874 and return its length. */
1876 static int
1877 format_modifiers (modifiers, buf)
1878 int modifiers;
1879 char *buf;
1881 char *p = buf;
1883 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
1884 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
1885 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
1886 if (modifiers & up_modifier) { *p++ = 'U'; *p++ = '-'; }
1887 *p = '\0';
1889 return p - buf;
1893 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
1894 return a symbol with the modifiers placed in the canonical order.
1896 Fdefine_key calls this to make sure that (for example) C-M-foo
1897 and M-C-foo end up being equivalent in the keymap. */
1899 Lisp_Object
1900 reorder_modifiers (symbol)
1901 Lisp_Object symbol;
1903 struct Lisp_String *name;
1904 int i;
1905 int modifiers;
1906 int not_canonical;
1908 CHECK_SYMBOL (symbol, 1);
1910 modifiers = 0;
1911 name = XSYMBOL (symbol)->name;
1913 /* Special case for things with only one modifier, which is
1914 (hopefully) the vast majority of cases. */
1915 if (! (name->size >= 4 && name->data[1] == '-' && name->data[3] == '-'))
1916 return symbol;
1918 for (i = 0; i + 1 < name->size && name->data[i + 1] == '-'; i += 2)
1919 switch (name->data[i])
1921 case 'M':
1922 not_canonical |= (modifiers & (meta_modifier|ctrl_modifier
1923 |shift_modifier|up_modifier));
1924 modifiers |= meta_modifier;
1925 break;
1927 case 'C':
1928 not_canonical |= (modifiers &
1929 (ctrl_modifier|shift_modifier|up_modifier));
1930 modifiers |= ctrl_modifier;
1931 break;
1933 case 'S':
1934 not_canonical |= (modifiers & (shift_modifier|up_modifier));
1935 modifiers |= shift_modifier;
1936 break;
1938 case 'U':
1939 not_canonical |= (modifiers & (up_modifier));
1940 modifiers |= up_modifier;
1941 break;
1943 default:
1944 goto no_more_modifiers;
1946 no_more_modifiers:
1948 if (!not_canonical)
1949 return symbol;
1951 /* The modifiers were out of order, so find a new symbol with the
1952 mods in order. Since the symbol name could contain nulls, we can't
1953 use intern here; we have to use Fintern, which expects a genuine
1954 Lisp_String, and keeps a reference to it. */
1956 char *new_mods = (char *) alloca (sizeof ("C-M-S-U-"));
1957 int len = format_modifiers (modifiers, new_mods);
1958 Lisp_Object new_name = make_uninit_string (len + name->size - i);
1960 bcopy (new_mods, XSTRING (new_name)->data, len);
1961 bcopy (name->data + i, XSTRING (new_name)->data + len, name->size - i);
1963 return Fintern (new_name, Qnil);
1968 /* For handling events, we often want to produce a symbol whose name
1969 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
1970 to some base, like the name of a function key or mouse button.
1971 modify_event_symbol produces symbols of this sort.
1973 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
1974 is the name of the i'th symbol. TABLE_SIZE is the number of elements
1975 in the table.
1977 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
1978 persist between calls to modify_event_symbol that it can use to
1979 store a cache of the symbols it's generated for this NAME_TABLE
1980 before.
1982 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
1984 MODIFIERS is a set of modifier bits (as given in struct input_events)
1985 whose prefixes should be applied to the symbol name.
1987 SYMBOL_KIND is the value to be placed in the event_kind property of
1988 the returned symbol. */
1990 static Lisp_Object
1991 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_table,
1992 symbol_table, table_size)
1993 int symbol_num;
1994 unsigned modifiers;
1995 Lisp_Object symbol_kind;
1996 char **name_table;
1997 Lisp_Object *symbol_table;
1998 int table_size;
2000 Lisp_Object *slot, *unmodified_slot;
2002 /* Is this a request for a valid symbol? */
2003 if (symbol_num < 0 || symbol_num >= table_size
2004 || modifiers >= NUM_MODIFIER_COMBOS)
2005 abort ();
2007 /* If *symbol_table is not a vector of the appropriate size,
2008 set it to one. */
2009 if (XTYPE (*symbol_table) != Lisp_Vector
2010 || XVECTOR (*symbol_table)->size != table_size)
2011 *symbol_table = Fmake_vector (make_number (table_size), Qnil);
2013 unmodified_slot = slot = & XVECTOR (*symbol_table)->contents[symbol_num];
2015 /* If there are modifier keys, there had better be a vector in
2016 this symbol's position of the symbol_table. */
2017 if (modifiers != 0)
2019 Lisp_Object slot_contents = *slot;
2021 /* If there isn't the right sort of vector there, put one in. */
2022 if (XTYPE (slot_contents) != Lisp_Vector
2023 || XVECTOR (slot_contents)->size != NUM_MODIFIER_COMBOS)
2025 *slot = Fmake_vector (make_number (NUM_MODIFIER_COMBOS), Qnil);
2027 /* Make sure that the vector has an entry for the unmodified
2028 symbol, so we can put it on the event_unmodified property. */
2029 if (! NILP (slot_contents))
2030 XVECTOR (*slot)->contents[0] = slot_contents;
2031 else
2032 XVECTOR (*slot)->contents[0] = intern (name_table [symbol_num]);
2036 /* If this entry has been filled in with a modified symbol vector,
2037 point to the appropriate slot within that. */
2038 if (XTYPE (*slot) == Lisp_Vector)
2040 unmodified_slot = & XVECTOR (*slot)->contents[0];
2041 slot = & XVECTOR (*slot)->contents[modifiers];
2044 /* Make sure we have an unmodified version of the symbol in its
2045 proper place? */
2046 if (NILP (*unmodified_slot))
2048 *unmodified_slot = intern (name_table [symbol_num]);
2049 Fput (*unmodified_slot, Qevent_kind, symbol_kind);
2050 Fput (*unmodified_slot, Qevent_unmodified, *unmodified_slot);
2053 /* Have we already created a symbol for this combination of modifiers? */
2054 if (NILP (*slot))
2056 /* No, let's create one. */
2057 char *modified_name
2058 = (char *) alloca (sizeof ("C-M-S-U-")
2059 + strlen (name_table [symbol_num]));
2061 strcpy (modified_name + format_modifiers (modifiers, modified_name),
2062 name_table [symbol_num]);
2064 *slot = intern (modified_name);
2065 Fput (*slot, Qevent_kind, symbol_kind);
2066 Fput (*slot, Qevent_unmodified, *unmodified_slot);
2069 return *slot;
2072 DEFUN ("mouse-click-p", Fmouse_click_p, Smouse_click_p, 1, 1, 0,
2073 "Return non-nil iff OBJECT is a representation of a mouse event.\n\
2074 A mouse event is a list of five elements whose car is a symbol of the\n\
2075 form <MODIFIERS>mouse-<DIGIT>. I hope this is a temporary hack.")
2076 (object)
2077 Lisp_Object object;
2079 if (EVENT_HAS_PARAMETERS (object)
2080 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (object)),
2081 Qmouse_click))
2082 return Qt;
2083 else
2084 return Qnil;
2087 /* Store into *addr a value nonzero if terminal input chars are available.
2088 Serves the purpose of ioctl (0, FIONREAD, addr)
2089 but works even if FIONREAD does not exist.
2090 (In fact, this may actually read some input.) */
2092 static void
2093 get_input_pending (addr)
2094 int *addr;
2096 /* First of all, have we already counted some input? */
2097 *addr = !NILP (Vquit_flag) || readable_events ();
2099 /* If input is being read as it arrives, and we have none, there is none. */
2100 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
2101 return;
2103 /* Try to read some input and see how much we get. */
2104 gobble_input (0);
2105 *addr = !NILP (Vquit_flag) || readable_events ();
2108 /* Interface to read_avail_input, blocking SIGIO if necessary. */
2111 gobble_input (expected)
2112 int expected;
2114 #ifndef VMS
2115 #ifdef SIGIO
2116 if (interrupt_input)
2118 SIGMASKTYPE mask;
2119 mask = sigblockx (SIGIO);
2120 read_avail_input (expected);
2121 sigsetmask (mask);
2123 else
2124 #endif
2125 read_avail_input (expected);
2126 #endif
2129 #ifndef VMS
2131 /* Read any terminal input already buffered up by the system
2132 into the kbd_buffer, but do not wait.
2134 EXPECTED should be nonzero if the caller knows there is some input.
2136 Except on VMS, all input is read by this function.
2137 If interrupt_input is nonzero, this function MUST be called
2138 only when SIGIO is blocked.
2140 Returns the number of keyboard chars read, or -1 meaning
2141 this is a bad time to try to read input. */
2143 static int
2144 read_avail_input (expected)
2145 int expected;
2147 struct input_event buf[KBD_BUFFER_SIZE];
2148 register int i;
2149 int nread;
2151 if (read_socket_hook)
2152 /* No need for FIONREAD or fcntl; just say don't wait. */
2153 nread = (*read_socket_hook) (0, buf, KBD_BUFFER_SIZE, expected, expected);
2154 else
2156 unsigned char cbuf[KBD_BUFFER_SIZE];
2158 #ifdef FIONREAD
2159 /* Find out how much input is available. */
2160 if (ioctl (0, FIONREAD, &nread) < 0)
2161 /* Formerly simply reported no input, but that sometimes led to
2162 a failure of Emacs to terminate.
2163 SIGHUP seems appropriate if we can't reach the terminal. */
2164 kill (getpid (), SIGHUP);
2165 if (nread == 0)
2166 return 0;
2167 if (nread > sizeof cbuf)
2168 nread = sizeof cbuf;
2169 #else /* no FIONREAD */
2170 #ifdef USG
2171 /* Read some input if available, but don't wait. */
2172 nread = sizeof cbuf;
2173 fcntl (fileno (stdin), F_SETFL, O_NDELAY);
2174 #else
2175 you lose;
2176 #endif
2177 #endif
2179 /* Now read; for one reason or another, this will not block. */
2180 while (1)
2182 nread = read (fileno (stdin), cbuf, nread);
2183 #ifdef AIX
2184 /* The kernel sometimes fails to deliver SIGHUP for ptys.
2185 This looks incorrect, but it isn't, because _BSD causes
2186 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
2187 and that causes a value other than 0 when there is no input. */
2188 if (nread == 0)
2189 kill (SIGHUP, 0);
2190 #endif
2191 /* Retry the read if it is interrupted. */
2192 if (nread >= 0
2193 || ! (errno == EAGAIN || errno == EFAULT
2194 #ifdef EBADSLT
2195 || errno == EBADSLT
2196 #endif
2198 break;
2201 #ifndef FIONREAD
2202 #ifdef USG
2203 fcntl (fileno (stdin), F_SETFL, 0);
2204 #endif /* USG */
2205 #endif /* no FIONREAD */
2206 for (i = 0; i < nread; i++)
2208 buf[i].kind = ascii_keystroke;
2209 XSET (buf[i].code, Lisp_Int, cbuf[i]);
2210 buf[i].frame = selected_frame;
2214 /* Scan the chars for C-g and store them in kbd_buffer. */
2215 for (i = 0; i < nread; i++)
2217 kbd_buffer_store_event (&buf[i]);
2218 /* Don't look at input that follows a C-g too closely.
2219 This reduces lossage due to autorepeat on C-g. */
2220 if (buf[i].kind == ascii_keystroke
2221 && XINT(buf[i].code) == quit_char)
2222 break;
2225 return nread;
2227 #endif /* not VMS */
2229 #ifdef SIGIO /* for entire page */
2230 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2232 input_available_signal (signo)
2233 int signo;
2235 /* Must preserve main program's value of errno. */
2236 int old_errno = errno;
2237 #ifdef BSD4_1
2238 extern int select_alarmed;
2239 #endif
2241 #ifdef USG
2242 /* USG systems forget handlers when they are used;
2243 must reestablish each time */
2244 signal (signo, input_available_signal);
2245 #endif /* USG */
2247 #ifdef BSD4_1
2248 sigisheld (SIGIO);
2249 #endif
2251 if (input_available_clear_time)
2252 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
2254 while (1)
2256 int nread;
2257 nread = read_avail_input (1);
2258 /* -1 means it's not ok to read the input now.
2259 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
2260 0 means there was no keyboard input available. */
2261 if (nread <= 0)
2262 break;
2264 #ifdef BSD4_1
2265 select_alarmed = 1; /* Force the select emulator back to life */
2266 #endif
2269 #ifdef BSD4_1
2270 sigfree ();
2271 #endif
2272 errno = old_errno;
2274 #endif /* SIGIO */
2276 /* Return the prompt-string of a sparse keymap.
2277 This is the first element which is a string.
2278 Return nil if there is none. */
2280 Lisp_Object
2281 map_prompt (map)
2282 Lisp_Object map;
2284 while (CONSP (map))
2286 register Lisp_Object tem;
2287 tem = Fcar (map);
2288 if (XTYPE (tem) == Lisp_String)
2289 return tem;
2290 map = Fcdr (map);
2292 return Qnil;
2295 static int echo_flag;
2296 static int echo_now;
2298 /* Read a character like read_char but optionally prompt based on maps
2299 LOCAL and GLOBAL.
2301 The prompting is done based on the prompt-string of the map
2302 and the strings associated with various map elements. */
2304 Lisp_Object
2305 read_char_menu_prompt (prompt, local, global)
2306 int prompt;
2307 Lisp_Object local, global;
2309 register Lisp_Object rest, name;
2310 Lisp_Object hmap;
2311 int nlength;
2312 int width = FRAME_WIDTH (selected_frame) - 4;
2313 char *menu = (char *) alloca (width);
2315 /* Use local over global Menu maps */
2317 if (menu_prompting)
2318 return read_char (!prompt);
2320 /* We can't get prompt strings from dense keymaps. */
2321 if (CONSP (local)
2322 && EQ (Fcar (local), Qkeymap)
2323 && !(CONSP (XCONS (local)->cdr)
2324 && XTYPE (XCONS (XCONS (local)->cdr)->car) == Lisp_Vector))
2325 hmap = local;
2326 else if (CONSP (global)
2327 && EQ (Fcar (global), Qkeymap)
2328 && !(CONSP (XCONS (global)->cdr)
2329 && XTYPE (XCONS (XCONS (global)->cdr)->car) == Lisp_Vector))
2330 hmap = global;
2331 else
2332 return read_char (!prompt);
2334 /* Get the map's prompt string. */
2335 name = map_prompt (hmap);
2336 if (NILP (name))
2337 return read_char (!prompt);
2339 /* Prompt string always starts with map's prompt, and a space. */
2340 strcpy (menu, XSTRING (name)->data);
2341 nlength = XSTRING (name)->size;
2342 menu[nlength++] = ' ';
2343 menu[nlength] = 0;
2345 /* Start prompting at start of map. */
2346 rest = hmap; /* Current menu item */
2348 /* Present the documented bindings, a line at a time. */
2349 while (1)
2351 int notfirst = 0;
2352 int i = nlength;
2353 Lisp_Object obj;
2354 int ch;
2356 /* If reached end of map, start at beginning. */
2357 if (NILP (Fcdr (rest))) rest = hmap;
2359 /* Loop over elements of map. */
2360 while (!NILP (rest) && i < width)
2362 Lisp_Object s;
2364 /* Look for conses whose cadrs are strings. */
2365 s = Fcar_safe (Fcdr_safe (Fcar_safe (rest)));
2366 if (XTYPE (s) != Lisp_String)
2367 /* Ignore all other elements. */
2369 /* If first such element, or enough room, add string to prompt. */
2370 else if (XSTRING (s)->size + i < width
2371 || !notfirst)
2373 int thiswidth;
2375 /* Punctuate between strings. */
2376 if (notfirst)
2378 strcpy (menu + i, ", ");
2379 i += 2;
2381 notfirst = 1;
2383 /* Add as much of string as fits. */
2384 thiswidth = XSTRING (s)->size;
2385 if (thiswidth + i > width)
2386 thiswidth = width - i;
2387 bcopy (XSTRING (s)->data, menu + i, thiswidth);
2388 i += thiswidth;
2390 else
2392 /* If some elts don't fit, show there are more. */
2393 strcpy (menu + i, "...");
2394 break;
2397 /* Move past this element. */
2398 rest = Fcdr_safe (rest);
2401 /* Prompt with that and read response. */
2402 message1 (menu);
2403 obj = read_char (1);
2405 if (XTYPE (obj) != Lisp_Int)
2406 return obj;
2407 else
2408 ch = XINT (obj);
2410 if (obj != menu_prompt_more_char
2411 && (XTYPE (menu_prompt_more_char) != Lisp_Int
2412 || obj != make_number (Ctl (XINT (menu_prompt_more_char)))))
2413 return obj;
2418 /* Reading key sequences. */
2420 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
2421 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
2422 keymap, or nil otherwise. Return the index of the first keymap in
2423 which KEY has any binding, or NMAPS if no map has a binding.
2425 If KEY is a meta ASCII character, treat it like meta-prefix-char
2426 followed by the corresponding non-meta character. Keymaps in
2427 CURRENT with non-prefix bindings for meta-prefix-char become nil in
2428 NEXT.
2430 When KEY is not defined in any of the keymaps, if it is an upper
2431 case letter and there are bindings for the corresponding lower-case
2432 letter, return the bindings for the lower-case letter.
2434 NEXT may == CURRENT. */
2436 static int
2437 follow_key (key, nmaps, current, defs, next)
2438 Lisp_Object key;
2439 Lisp_Object *current, *defs, *next;
2440 int nmaps;
2442 int i, first_binding;
2444 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
2445 followed by the corresponding non-meta character. */
2446 if (XTYPE (key) == Lisp_Int
2447 && XINT (key) >= 0200)
2449 for (i = 0; i < nmaps; i++)
2450 if (! NILP (current[i]))
2452 next[i] = get_keyelt (access_keymap (current[i],
2453 meta_prefix_char));
2455 /* Note that since we pass the resulting bindings through
2456 get_keymap_1, non-prefix bindings for meta-prefix-char
2457 disappear. */
2458 next[i] = get_keymap_1 (next[i], 0);
2460 else
2461 next[i] = Qnil;
2463 current = next;
2464 XSET (key, Lisp_Int, XFASTINT (key) & 0177);
2467 first_binding = nmaps;
2468 for (i = nmaps - 1; i >= 0; i--)
2470 if (! NILP (current[i]))
2472 defs[i] = get_keyelt (access_keymap (current[i], key));
2473 if (! NILP (defs[i]))
2474 first_binding = i;
2476 else
2477 defs[i] = Qnil;
2480 /* When KEY is not defined in any of the keymaps, if it is an upper
2481 case letter and there are bindings for the corresponding
2482 lower-case letter, return the bindings for the lower-case letter. */
2483 if (first_binding == nmaps
2484 && XTYPE (key) == Lisp_Int
2485 && UPPERCASEP (XINT (key)))
2487 XSETINT (key, DOWNCASE (XINT (key)));
2489 first_binding = nmaps;
2490 for (i = nmaps - 1; i >= 0; i--)
2492 if (! NILP (current[i]))
2494 defs[i] = get_keyelt (access_keymap (current[i], key));
2495 if (! NILP (defs[i]))
2496 first_binding = i;
2498 else
2499 defs[i] = Qnil;
2503 /* Given the set of bindings we've found, produce the next set of maps. */
2504 for (i = 0; i < nmaps; i++)
2505 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0);
2507 return first_binding;
2510 /* Read a sequence of keys that ends with a non prefix character
2511 according to the keymaps in KEYMAPS[0..nmaps-1]. Keymaps appearing
2512 earlier in KEYMAPS take precidence over those appearing later.
2514 Store the sequence in KEYBUF, a buffer of size BUFSIZE. Prompt
2515 with PROMPT. Echo starting immediately unless `prompt' is 0.
2516 Return the length of the key sequence stored.
2518 If the user switches frames in the midst of a key sequence, we
2519 throw away any prefix we have read so far, and start afresh. For
2520 mouse clicks, we look up the click in the keymap of the buffer
2521 clicked on, throwing away any prefix if it is not the same buffer
2522 we used to be reading from. */
2524 static int
2525 read_key_sequence (keybuf, bufsize, prompt)
2526 Lisp_Object *keybuf;
2527 int bufsize;
2528 Lisp_Object prompt;
2530 /* How many keys there are in the current key sequence. */
2531 int t;
2533 /* The buffer that the most recently read event was typed at. This
2534 helps us read mouse clicks according to the buffer clicked in,
2535 and notice when the mouse has moved from one frame to another. */
2536 struct buffer *last_event_buffer = current_buffer;
2538 /* The length of the echo buffer when we started reading, and
2539 the length of this_command_keys when we started reading. */
2540 int echo_start;
2541 int keys_start = this_command_key_count;
2543 /* The number of keymaps we're scanning right now, and the number of
2544 keymaps we have allocated space for. */
2545 int nmaps;
2546 int nmaps_allocated = 0;
2548 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
2549 in the current keymaps, or nil where it is not a prefix. */
2550 Lisp_Object *submaps;
2552 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
2553 the current keymaps. */
2554 Lisp_Object *defs;
2556 /* The index of the first keymap that has a binding for this key
2557 sequence. In other words, the lowest i such that defs[i] is
2558 non-nil.*/
2559 int first_binding;
2561 /* If mock_input > t, then KEYBUF[t] should be read as the next
2562 input key.
2564 We use this to recover after recognizing a function key. Once we
2565 realize that a suffix of the current key sequence is actually a
2566 function key's escape sequence, we replace the suffix with the
2567 function key's binding from Vfunction_key_map. Now keybuf
2568 contains a new and different key sequence, so the echo area and
2569 the submaps and defs arrays are wrong. In this situation, we set
2570 mock_input to t, set t to 0, and jump to restart; the loop will
2571 read keys from keybuf up until mock_input, which rebuilds the
2572 state, and then it will resume reading characters from the keyboard. */
2573 int mock_input = 0;
2575 /* If the sequence is unbound in submaps[], then
2576 keymap[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
2577 and fkey_map is its binding. If mock_input is in use, these
2578 might be > t, indicating that all function key scanning should
2579 hold off until t reaches them. */
2581 int fkey_start = 0, fkey_end = 0;
2582 Lisp_Object fkey_map = Vfunction_key_map;
2584 if (INTERACTIVE)
2586 if (prompt)
2587 echo_prompt (prompt);
2588 else if (cursor_in_echo_area)
2589 /* This doesn't put in a dash if the echo buffer is empty, so
2590 you don't always see a dash hanging out in the minibuffer. */
2591 echo_dash ();
2592 echo_start = echo_length ();
2595 /* If there is no function key map, turn off function key scanning. */
2596 if (NILP (Fkeymapp (Vfunction_key_map)))
2597 fkey_start = fkey_end = bufsize + 1;
2599 restart:
2600 t = 0;
2601 this_command_key_count = keys_start;
2604 Lisp_Object *maps;
2606 nmaps = current_minor_maps (0, &maps) + 2;
2607 if (nmaps > nmaps_allocated)
2609 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
2610 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
2611 nmaps_allocated = nmaps;
2613 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0]));
2614 submaps[nmaps-2] = last_event_buffer->keymap;
2615 submaps[nmaps-1] = global_map;
2618 /* Find an accurate initial value for first_binding. */
2619 for (first_binding = 0; first_binding < nmaps; first_binding++)
2620 if (! NILP (submaps[first_binding]))
2621 break;
2623 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
2624 || (first_binding >= nmaps && fkey_start < t))
2626 Lisp_Object key;
2628 if (t >= bufsize)
2629 error ("key sequence too long");
2631 /* Are we re-reading a key sequence, as indicated by mock_input? */
2632 if (t < mock_input)
2634 key = keybuf[t];
2635 add_command_key (key);
2636 echo_char (key);
2639 /* If not, we should actually read a character. */
2640 else
2642 struct buffer *buf;
2644 if (!prompt && INTERACTIVE)
2645 key = read_char_menu_prompt (prompt, Qnil, Qnil);
2646 else
2647 key = read_char (!prompt);
2649 /* The above routines return -1 at the end of a macro.
2650 Emacs 18 handles this by returning immediately with a
2651 zero, so that's what we'll do. */
2652 if (XTYPE (key) == Lisp_Int && XINT (key) < 0)
2653 return 0;
2655 Vquit_flag = Qnil;
2657 #ifdef MULTI_FRAME
2658 /* What buffer was this event typed/moused at? */
2659 if (XTYPE (key) == Lisp_Int || XTYPE (key) == Lisp_Symbol)
2660 buf = (XBUFFER
2661 (XWINDOW
2662 (FRAME_SELECTED_WINDOW
2663 (XFRAME (Vlast_event_frame)))->buffer));
2664 else if (EVENT_HAS_PARAMETERS (key))
2666 Lisp_Object window = EVENT_WINDOW (key);
2668 if (NILP (window))
2669 abort ();
2671 buf = XBUFFER (XWINDOW (window)->buffer);
2673 else
2674 abort ();
2676 /* If this event came to a different buffer than the one
2677 we're currently in, switch buffers and start a new key
2678 sequence, starting with key. */
2679 if (buf != last_event_buffer)
2681 last_event_buffer = buf;
2682 Fselect_frame (Vlast_event_frame, Qnil);
2684 /* Arrange to read key as the next event. */
2685 keybuf[0] = key;
2686 mock_input = 1;
2688 /* Truncate the key sequence in the echo area. */
2689 if (INTERACTIVE)
2690 echo_truncate (echo_start);
2692 goto restart;
2694 #endif
2697 first_binding = (follow_key (key,
2698 nmaps - first_binding,
2699 submaps + first_binding,
2700 defs + first_binding,
2701 submaps + first_binding)
2702 + first_binding);
2703 keybuf[t++] = key;
2705 /* If the sequence is unbound, see if we can hang a function key
2706 off the end of it. We only want to scan real keyboard input
2707 for function key sequences, so if mock_input says that we're
2708 re-scanning after expanding a function key, don't examine it. */
2709 if (first_binding >= nmaps
2710 && t >= mock_input)
2712 Lisp_Object fkey_next;
2714 /* Scan from fkey_end until we find a bound suffix. */
2715 while (fkey_end < t)
2717 /* Look up meta-characters by prefixing them
2718 with meta_prefix_char. I hate this. */
2719 if (keybuf[fkey_end] & 0x80)
2720 fkey_next =
2721 get_keymap_1 (get_keyelt
2722 (access_keymap (fkey_map, meta_prefix_char)),
2724 else
2725 fkey_next = fkey_map;
2727 fkey_next =
2728 get_keyelt (access_keymap
2729 (fkey_next, keybuf[(fkey_end++) & 0x7f]));
2731 /* If keybuf[fkey_start..fkey_next] is bound in the
2732 function key map and it's a suffix of the current
2733 sequence (i.e. fkey_next == t), replace it with
2734 the binding and restart with fkey_start at the end. */
2735 if (XTYPE (fkey_next) == Lisp_Vector
2736 && fkey_end == t)
2738 t = fkey_start + XVECTOR (fkey_next)->size;
2739 if (t >= bufsize)
2740 error ("key sequence too long");
2742 bcopy (XVECTOR (fkey_next)->contents,
2743 keybuf + fkey_start,
2744 (t - fkey_start) * sizeof (keybuf[0]));
2746 mock_input = t;
2747 fkey_start = fkey_end = t;
2749 /* Truncate the key sequence in the echo area. */
2750 if (INTERACTIVE)
2751 echo_truncate (echo_start);
2753 goto restart;
2756 fkey_map = get_keymap_1 (fkey_next, 0);
2758 /* If we no longer have a bound suffix, try a new positions for
2759 fkey_start. */
2760 if (NILP (fkey_map))
2762 fkey_end = ++fkey_start;
2763 fkey_map = Vfunction_key_map;
2769 read_key_sequence_cmd = (first_binding < nmaps
2770 ? defs[first_binding]
2771 : Qnil);
2773 return t;
2776 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
2777 "Read a sequence of keystrokes and return as a string or vector.\n\
2778 The sequence is sufficient to specify a non-prefix command in the\n\
2779 current local and global maps.\n\
2781 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
2782 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
2783 as a continuation of the previous key.\n\
2785 If Emacs is running on multiple frames, switching between frames in\n\
2786 the midst of a keystroke will toss any prefix typed so far. A C-g\n\
2787 typed while in this function is treated like any other character, and\n\
2788 `quit-flag' is not set.")
2789 (prompt, continue_echo)
2790 Lisp_Object prompt, continue_echo;
2792 Lisp_Object keybuf[30];
2793 register int i;
2794 struct gcpro gcpro1, gcpro2;
2796 if (!NILP (prompt))
2797 CHECK_STRING (prompt, 0);
2798 QUIT;
2800 bzero (keybuf, sizeof keybuf);
2801 GCPRO1 (keybuf[0]);
2802 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
2804 if (NILP (continue_echo))
2805 this_command_key_count = 0;
2807 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
2808 NILP (prompt) ? 0 : XSTRING (prompt)->data);
2810 UNGCPRO;
2811 return make_array (i, keybuf);
2814 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0,
2815 "Execute CMD as an editor command.\n\
2816 CMD must be a symbol that satisfies the `commandp' predicate.\n\
2817 Optional second arg RECORD-FLAG non-nil\n\
2818 means unconditionally put this command in `command-history'.\n\
2819 Otherwise, that is done only if an arg is read using the minibuffer.")
2820 (cmd, record)
2821 Lisp_Object cmd, record;
2823 register Lisp_Object final;
2824 register Lisp_Object tem;
2825 Lisp_Object prefixarg;
2826 struct backtrace backtrace;
2827 extern int debug_on_next_call;
2829 prefixarg = Vprefix_arg, Vprefix_arg = Qnil;
2830 Vcurrent_prefix_arg = prefixarg;
2831 debug_on_next_call = 0;
2833 if (XTYPE (cmd) == Lisp_Symbol)
2835 tem = Fget (cmd, Qdisabled);
2836 if (!NILP (tem))
2837 return call1 (Vrun_hooks, Vdisabled_command_hook);
2840 while (1)
2842 final = Findirect_function (cmd);
2844 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
2845 do_autoload (final, cmd);
2846 else
2847 break;
2850 if (XTYPE (final) == Lisp_String
2851 || XTYPE (final) == Lisp_Vector)
2853 /* If requested, place the macro in the command history. For
2854 other sorts of commands, call-interactively takes care of
2855 this. */
2856 if (!NILP (record))
2857 Vcommand_history
2858 = Fcons (Fcons (Qexecute_kbd_macro,
2859 Fcons (final, Fcons (prefixarg, Qnil))),
2860 Vcommand_history);
2862 return Fexecute_kbd_macro (final, prefixarg);
2864 if (CONSP (final) || XTYPE (final) == Lisp_Subr
2865 || XTYPE (final) == Lisp_Compiled)
2867 backtrace.next = backtrace_list;
2868 backtrace_list = &backtrace;
2869 backtrace.function = &Qcall_interactively;
2870 backtrace.args = &cmd;
2871 backtrace.nargs = 1;
2872 backtrace.evalargs = 0;
2874 tem = Fcall_interactively (cmd, record);
2876 backtrace_list = backtrace.next;
2877 return tem;
2879 return Qnil;
2882 #if 0
2883 DEFUN ("execute-mouse-event", Fexecute_mouse_event, Sexecute_mouse_event,
2884 1, 1, 0,
2885 "Execute the definition of the mouse-click event EVENT.\n\
2886 The handler function is found by looking the event's key sequence up\n\
2887 in the buffer's local mouse map and in `global-mouse-map'.\n\
2889 After running the handler, call the value of `mouse-event-function'\n\
2890 with EVENT as arg.")
2891 (event)
2892 Lisp_Object event;
2894 Lisp_Object tem;
2895 Lisp_Object mouse_cmd;
2896 Lisp_Object keyseq, window, frame_part, pos, time;
2898 #ifndef HAVE_X11
2899 Vmouse_event = event;
2900 #endif
2902 if (EQ (event, Qnil))
2904 bitch_at_user ();
2905 return Qnil;
2908 CHECK_CONS (event, 0);
2909 pos = Fcar (event);
2910 window = Fcar (Fcdr (event));
2911 frame_part = Fcar (Fcdr (Fcdr (event)));
2912 keyseq = Fcar (Fcdr (Fcdr (Fcdr (event))));
2913 time = Fcar (Fcdr (Fcdr (Fcdr (Fcdr (event)))));
2914 CHECK_STRING (keyseq, 0);
2915 CHECK_WINDOW (window, 0);
2917 /* Look up KEYSEQ in the buffer's local mouse map, then in global one. */
2919 mouse_cmd = Qnil;
2921 if (!NILP (XWINDOW (window)->buffer))
2923 Lisp_Object local_map;
2925 local_map = XBUFFER (XWINDOW (window)->buffer)->mouse_map;
2926 tem = Fkeymapp (local_map);
2927 if (!NILP (tem))
2928 mouse_cmd = Flookup_key (local_map, keyseq);
2929 /* A number as value means the key is too long; treat as undefined. */
2930 if (XTYPE (mouse_cmd) == Lisp_Int)
2931 mouse_cmd = Qnil;
2934 tem = Fkeymapp (Vglobal_mouse_map);
2935 if (NILP (mouse_cmd) && !NILP (tem))
2936 mouse_cmd = Flookup_key (Vglobal_mouse_map, keyseq);
2937 if (XTYPE (mouse_cmd) == Lisp_Int)
2938 mouse_cmd = Qnil;
2940 if (NILP (mouse_cmd))
2942 /* This button/shift combination is not defined.
2943 If it is a button-down event, ring the bell. */
2944 #ifdef HAVE_X11
2945 if (XSTRING (keyseq)->data[XSTRING (keyseq)->size - 1] & 0x18 == 0)
2946 #else
2947 if (XSTRING (keyseq)->data[XSTRING (keyseq)->size - 1] & 4 == 0)
2948 #endif
2949 bitch_at_user ();
2951 else
2953 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
2955 #ifndef HAVE_X11
2956 Vmouse_window = f->selected_window;
2957 #endif /* HAVE_X11 */
2958 /* It's defined; call the definition. */
2959 Vprefix_arg = Qnil;
2960 if (!NILP (frame_part))
2962 /* For a scroll-bar click, set the prefix arg
2963 to the number of lines down from the top the click was.
2964 Many scroll commands want to scroll by this many lines. */
2965 Lisp_Object position;
2966 Lisp_Object length;
2967 Lisp_Object offset;
2969 position = Fcar (pos);
2970 length = Fcar (Fcdr (pos));
2971 offset = Fcar (Fcdr (Fcdr (pos)));
2973 if (XINT (length) != 0)
2974 XSET (Vprefix_arg, Lisp_Int,
2975 (FRAME_HEIGHT (f) * (XINT (position) + XINT (offset))
2976 / (XINT (length) + 2 * XINT (offset))));
2978 Fcommand_execute (mouse_cmd, Qnil);
2981 if (!NILP (Vmouse_event_function)) /* Not `event' so no need for GCPRO */
2982 call1 (Vmouse_event_function, Vmouse_event);
2983 return Qnil;
2985 #endif
2987 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
2988 1, 1, "P",
2989 "Read function name, then read its arguments and call it.")
2990 (prefixarg)
2991 Lisp_Object prefixarg;
2993 Lisp_Object function;
2994 char buf[40];
2995 Lisp_Object saved_keys;
2996 struct gcpro gcpro1;
2998 saved_keys = Fthis_command_keys ();
2999 buf[0] = 0;
3000 GCPRO1 (saved_keys);
3002 if (EQ (prefixarg, Qminus))
3003 strcpy (buf, "- ");
3004 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
3005 strcpy (buf, "C-u ");
3006 else if (CONSP (prefixarg) && XTYPE (XCONS (prefixarg)->car) == Lisp_Int)
3007 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
3008 else if (XTYPE (prefixarg) == Lisp_Int)
3009 sprintf (buf, "%d ", XINT (prefixarg));
3011 /* This isn't strictly correct if execute-extended-command
3012 is bound to anything else. Perhaps it should use
3013 this_command_keys? */
3014 strcat (buf, "M-x ");
3016 /* Prompt with buf, and then read a string, completing from and
3017 restricting to the set of all defined commands. Don't provide
3018 any initial input. The last Qnil says not to perform a
3019 peculiar hack on the initial input. */
3020 function = Fcompleting_read (build_string (buf),
3021 Vobarray, Qcommandp,
3022 Qt, Qnil, Qnil);
3024 /* Set this_command_keys to the concatenation of saved_keys and
3025 function, followed by a RET. */
3027 struct Lisp_String *str;
3028 int i;
3029 Lisp_Object tem;
3031 this_command_key_count = 0;
3033 str = XSTRING (saved_keys);
3034 for (i = 0; i < str->size; i++)
3036 XFASTINT (tem) = str->data[i];
3037 add_command_key (tem);
3040 str = XSTRING (function);
3041 for (i = 0; i < str->size; i++)
3043 XFASTINT (tem) = str->data[i];
3044 add_command_key (tem);
3047 XFASTINT (tem) = '\015';
3048 add_command_key (tem);
3051 UNGCPRO;
3053 function = Fintern (function, Vobarray);
3054 Vprefix_arg = prefixarg;
3055 this_command = function;
3057 return Fcommand_execute (function, Qt);
3061 detect_input_pending ()
3063 if (!input_pending)
3064 get_input_pending (&input_pending);
3066 return input_pending;
3069 /* This is called in some cases before a possible quit.
3070 It cases the next call to detect_input_pending to recompute input_pending.
3071 So calling this function unnecessarily can't do any harm. */
3072 clear_input_pending ()
3074 input_pending = 0;
3077 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
3078 "T if command input is currently available with no waiting.\n\
3079 Actually, the value is nil only if we can be sure that no input is available.")
3082 if (!NILP (unread_command_char))
3083 return (Qt);
3085 return detect_input_pending () ? Qt : Qnil;
3088 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
3089 "Return vector of last 100 chars read from terminal.")
3092 Lisp_Object val;
3094 if (total_keys < NUM_RECENT_KEYS)
3095 return Fvector (total_keys, recent_keys);
3096 else
3098 val = Fvector (NUM_RECENT_KEYS, recent_keys);
3099 bcopy (recent_keys + recent_keys_index,
3100 XVECTOR (val)->contents,
3101 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
3102 bcopy (recent_keys,
3103 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
3104 recent_keys_index * sizeof (Lisp_Object));
3105 return val;
3109 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
3110 "Return string of the keystrokes that invoked this command.")
3113 return make_array (this_command_key_count, this_command_keys);
3116 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
3117 "Return the current depth in recursive edits.")
3120 Lisp_Object temp;
3121 XFASTINT (temp) = command_loop_level + minibuf_level;
3122 return temp;
3125 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
3126 "FOpen dribble file: ",
3127 "Start writing all keyboard characters to FILE.")
3128 (file)
3129 Lisp_Object file;
3131 if (NILP (file))
3133 fclose (dribble);
3134 dribble = 0;
3136 else
3138 file = Fexpand_file_name (file, Qnil);
3139 dribble = fopen (XSTRING (file)->data, "w");
3141 return Qnil;
3144 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
3145 "Discard the contents of the terminal input buffer.\n\
3146 Also cancel any kbd macro being defined.")
3149 defining_kbd_macro = 0;
3150 update_mode_lines++;
3152 #if 0
3153 unread_command_char = make_number (-1);
3154 #endif
3155 unread_command_char = Qnil;
3157 discard_tty_input ();
3159 kbd_fetch_ptr = kbd_store_ptr;
3160 input_pending = 0;
3162 return Qnil;
3165 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
3166 "Stop Emacs and return to superior process. You can resume later.\n\
3167 On systems that don't have job control, run a subshell instead.\n\n\
3168 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
3169 to be read as terminal input by Emacs's superior shell.\n\
3170 Before suspending, if `suspend-hook' is bound and value is non-nil\n\
3171 call the value as a function of no args. Don't suspend if it returns non-nil.\n\
3172 Otherwise, suspend normally and after resumption call\n\
3173 `suspend-resume-hook' if that is bound and non-nil.\n\
3175 Some operating systems cannot stop the Emacs process and resume it later.\n\
3176 On such systems, Emacs will start a subshell and wait for it to exit.")
3177 (stuffstring)
3178 Lisp_Object stuffstring;
3180 register Lisp_Object tem;
3181 int count = specpdl_ptr - specpdl;
3182 int old_height, old_width;
3183 int width, height;
3184 struct gcpro gcpro1;
3185 extern init_sys_modes ();
3187 if (!NILP (stuffstring))
3188 CHECK_STRING (stuffstring, 0);
3189 GCPRO1 (stuffstring);
3191 /* Call value of suspend-hook
3192 if it is bound and value is non-nil. */
3193 if (!NILP (Vrun_hooks))
3195 tem = call1 (Vrun_hooks, intern ("suspend-hook"));
3196 if (!EQ (tem, Qnil)) return Qnil;
3199 get_frame_size (&old_width, &old_height);
3200 reset_sys_modes ();
3201 /* sys_suspend can get an error if it tries to fork a subshell
3202 and the system resources aren't available for that. */
3203 record_unwind_protect (init_sys_modes, 0);
3204 stuff_buffered_input (stuffstring);
3205 sys_suspend ();
3206 unbind_to (count, Qnil);
3208 /* Check if terminal/window size has changed.
3209 Note that this is not useful when we are running directly
3210 with a window system; but suspend should be disabled in that case. */
3211 get_frame_size (&width, &height);
3212 if (width != old_width || height != old_height)
3213 change_frame_size (height, width, 0);
3215 /* Call value of suspend-resume-hook
3216 if it is bound and value is non-nil. */
3217 if (!NILP (Vrun_hooks))
3218 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
3220 UNGCPRO;
3221 return Qnil;
3224 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
3225 Then in any case stuff anthing Emacs has read ahead and not used. */
3227 stuff_buffered_input (stuffstring)
3228 Lisp_Object stuffstring;
3230 register unsigned char *p;
3232 /* stuff_char works only in BSD, versions 4.2 and up. */
3233 #ifdef BSD
3234 #ifndef BSD4_1
3235 if (XTYPE (stuffstring) == Lisp_String)
3237 register int count;
3239 p = XSTRING (stuffstring)->data;
3240 count = XSTRING (stuffstring)->size;
3241 while (count-- > 0)
3242 stuff_char (*p++);
3243 stuff_char ('\n');
3245 /* Anything we have read ahead, put back for the shell to read. */
3246 while (kbd_fetch_ptr != kbd_store_ptr)
3248 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
3249 kbd_fetch_ptr = kbd_buffer;
3250 if (kbd_fetch_ptr->kind == ascii_keystroke)
3251 stuff_char (XINT (kbd_fetch_ptr->code));
3252 kbd_fetch_ptr++;
3254 input_pending = 0;
3255 #endif
3256 #endif /* BSD and not BSD4_1 */
3259 set_waiting_for_input (time_to_clear)
3260 EMACS_TIME *time_to_clear;
3262 input_available_clear_time = time_to_clear;
3264 /* Tell interrupt_signal to throw back to read_char, */
3265 waiting_for_input = 1;
3267 /* If interrupt_signal was called before and buffered a C-g,
3268 make it run again now, to avoid timing error. */
3269 if (!NILP (Vquit_flag))
3270 quit_throw_to_read_char ();
3272 /* If alarm has gone off already, echo now. */
3273 if (echo_flag)
3275 echo ();
3276 echo_flag = 0;
3280 clear_waiting_for_input ()
3282 /* Tell interrupt_signal not to throw back to read_char, */
3283 waiting_for_input = 0;
3284 input_available_clear_time = 0;
3287 /* This routine is called at interrupt level in response to C-G.
3288 If interrupt_input, this is the handler for SIGINT.
3289 Otherwise, it is called from kbd_buffer_store_event,
3290 in handling SIGIO or SIGTINT.
3292 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
3293 immediately throw back to read_char.
3295 Otherwise it sets the Lisp variable quit-flag not-nil.
3296 This causes eval to throw, when it gets a chance.
3297 If quit-flag is already non-nil, it stops the job right away. */
3299 SIGTYPE
3300 interrupt_signal ()
3302 char c;
3303 /* Must preserve main program's value of errno. */
3304 int old_errno = errno;
3305 extern Lisp_Object Vwindow_system;
3307 #ifdef USG
3308 /* USG systems forget handlers when they are used;
3309 must reestablish each time */
3310 signal (SIGINT, interrupt_signal);
3311 signal (SIGQUIT, interrupt_signal);
3312 #endif /* USG */
3314 cancel_echoing ();
3316 if (!NILP (Vquit_flag) && FRAME_IS_TERMCAP (selected_frame))
3318 fflush (stdout);
3319 reset_sys_modes ();
3320 sigfree ();
3321 #ifdef SIGTSTP /* Support possible in later USG versions */
3323 * On systems which can suspend the current process and return to the original
3324 * shell, this command causes the user to end up back at the shell.
3325 * The "Auto-save" and "Abort" questions are not asked until
3326 * the user elects to return to emacs, at which point he can save the current
3327 * job and either dump core or continue.
3329 sys_suspend ();
3330 #else
3331 #ifdef VMS
3332 if (sys_suspend () == -1)
3334 printf ("Not running as a subprocess;\n");
3335 printf ("you can continue or abort.\n");
3337 #else /* not VMS */
3338 /* Perhaps should really fork an inferior shell?
3339 But that would not provide any way to get back
3340 to the original shell, ever. */
3341 printf ("No support for stopping a process on this operating system;\n");
3342 printf ("you can continue or abort.\n");
3343 #endif /* not VMS */
3344 #endif /* not SIGTSTP */
3345 printf ("Auto-save? (y or n) ");
3346 fflush (stdout);
3347 if (((c = getchar ()) & ~040) == 'Y')
3348 Fdo_auto_save (Qnil, Qnil);
3349 while (c != '\n') c = getchar ();
3350 #ifdef VMS
3351 printf ("Abort (and enter debugger)? (y or n) ");
3352 #else /* not VMS */
3353 printf ("Abort (and dump core)? (y or n) ");
3354 #endif /* not VMS */
3355 fflush (stdout);
3356 if (((c = getchar ()) & ~040) == 'Y')
3357 abort ();
3358 while (c != '\n') c = getchar ();
3359 printf ("Continuing...\n");
3360 fflush (stdout);
3361 init_sys_modes ();
3363 else
3365 /* If executing a function that wants to be interrupted out of
3366 and the user has not deferred quitting by binding `inhibit-quit'
3367 then quit right away. */
3368 if (immediate_quit && NILP (Vinhibit_quit))
3370 immediate_quit = 0;
3371 sigfree ();
3372 Fsignal (Qquit, Qnil);
3374 else
3375 /* Else request quit when it's safe */
3376 Vquit_flag = Qt;
3379 if (waiting_for_input && !echoing)
3380 quit_throw_to_read_char ();
3382 errno = old_errno;
3385 /* Handle a C-g by making read_char return C-g. */
3387 quit_throw_to_read_char ()
3389 quit_error_check ();
3390 sigfree ();
3391 /* Prevent another signal from doing this before we finish. */
3392 clear_waiting_for_input ();
3393 input_pending = 0;
3395 #if 0
3396 unread_command_char = make_number (-1);
3397 #endif
3398 unread_command_char = Qnil;
3400 _longjmp (getcjmp, 1);
3403 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
3404 "Set mode of reading keyboard input.\n\
3405 First arg INTERRUPT non-nil means use input interrupts;\n\
3406 nil means use CBREAK mode.\n\
3407 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
3408 (no effect except in CBREAK mode).\n\
3409 Third arg META non-nil means accept 8-bit input (for a Meta key).\n\
3410 Otherwise, the top bit is ignored, on the assumption it is parity.\n\
3411 Optional fourth arg QUIT if non-nil specifies character to use for quitting.")
3412 (interrupt, flow, meta, quit)
3413 Lisp_Object interrupt, flow, meta, quit;
3415 if (!NILP (quit)
3416 && (XTYPE (quit) != Lisp_Int
3417 || XINT (quit) < 0 || XINT (quit) > 0400))
3418 error ("set-input-mode: QUIT must be an ASCII character.");
3420 reset_sys_modes ();
3421 #ifdef SIGIO
3422 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3423 #ifdef NO_SOCK_SIGIO
3424 if (read_socket_hook)
3425 interrupt_input = 0; /* No interrupts if reading from a socket. */
3426 else
3427 #endif /* NO_SOCK_SIGIO */
3428 interrupt_input = !NILP (interrupt);
3429 #else /* not SIGIO */
3430 interrupt_input = 0;
3431 #endif /* not SIGIO */
3432 /* Our VMS input only works by interrupts, as of now. */
3433 #ifdef VMS
3434 interrupt_input = 1;
3435 #endif
3436 flow_control = !NILP (flow);
3437 meta_key = !NILP (meta);
3438 if (!NILP (quit))
3439 /* Don't let this value be out of range. */
3440 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
3442 init_sys_modes ();
3443 return Qnil;
3446 init_keyboard ()
3448 this_command_keys_size = 40;
3449 this_command_keys =
3450 (Lisp_Object *) xmalloc (this_command_keys_size * sizeof (Lisp_Object));
3452 /* This is correct before outermost invocation of the editor loop */
3453 command_loop_level = -1;
3454 immediate_quit = 0;
3455 quit_char = Ctl ('g');
3456 unread_command_char = Qnil;
3457 recent_keys_index = 0;
3458 total_keys = 0;
3459 kbd_fetch_ptr = kbd_buffer;
3460 kbd_store_ptr = kbd_buffer;
3461 do_mouse_tracking = 0;
3462 input_pending = 0;
3464 if (!noninteractive)
3466 signal (SIGINT, interrupt_signal);
3467 #ifdef HAVE_TERMIO
3468 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
3469 SIGQUIT and we can't tell which one it will give us. */
3470 signal (SIGQUIT, interrupt_signal);
3471 #endif /* HAVE_TERMIO */
3472 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3473 #ifdef SIGIO
3474 signal (SIGIO, input_available_signal);
3475 #endif SIGIO
3478 /* Use interrupt input by default, if it works and noninterrupt input
3479 has deficiencies. */
3481 #ifdef INTERRUPT_INPUT
3482 interrupt_input = 1;
3483 #else
3484 interrupt_input = 0;
3485 #endif
3487 /* Our VMS input only works by interrupts, as of now. */
3488 #ifdef VMS
3489 interrupt_input = 1;
3490 #endif
3492 sigfree ();
3493 dribble = 0;
3495 if (keyboard_init_hook)
3496 (*keyboard_init_hook) ();
3498 #ifdef POLL_FOR_INPUT
3499 poll_suppress_count = 1;
3500 start_polling ();
3501 #endif
3504 /* This type's only use is in syms_of_keyboard, to initialize the
3505 event header symbols and put properties on them. */
3506 struct event_head {
3507 Lisp_Object *var;
3508 char *name;
3509 Lisp_Object *kind;
3512 struct event_head head_table[] = {
3513 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
3514 &Qvscrollbar_part, "vscrollbar-part", &Qscrollbar_click,
3515 &Qvslider_part, "vslider-part", &Qscrollbar_click,
3516 &Qvthumbup_part, "vthumbup-part", &Qscrollbar_click,
3517 &Qvthumbdown_part, "vthumbdown-part", &Qscrollbar_click,
3518 &Qhscrollbar_part, "hscrollbar-part", &Qscrollbar_click,
3519 &Qhslider_part, "hslider-part", &Qscrollbar_click,
3520 &Qhthumbleft_part, "hthumbleft-part", &Qscrollbar_click,
3521 &Qhthumbright_part,"hthumbright-part", &Qscrollbar_click
3524 syms_of_keyboard ()
3526 Qself_insert_command = intern ("self-insert-command");
3527 staticpro (&Qself_insert_command);
3529 Qforward_char = intern ("forward-char");
3530 staticpro (&Qforward_char);
3532 Qbackward_char = intern ("backward-char");
3533 staticpro (&Qbackward_char);
3535 Qdisabled = intern ("disabled");
3536 staticpro (&Qdisabled);
3538 Qfunction_key = intern ("function-key");
3539 staticpro (&Qfunction_key);
3540 Qmouse_movement = intern ("mouse-click");
3541 staticpro (&Qmouse_click);
3542 Qmouse_movement = intern ("scrollbar-click");
3543 staticpro (&Qmouse_movement);
3545 Qmode_line = intern ("mode-line");
3546 staticpro (&Qmode_line);
3547 Qvertical_line = intern ("vertical-line");
3548 staticpro (&Qvertical_line);
3550 Qevent_kind = intern ("event-type");
3551 staticpro (&Qevent_kind);
3552 Qevent_unmodified = intern ("event-unmodified");
3553 staticpro (&Qevent_unmodified);
3556 struct event_head *p;
3558 for (p = head_table;
3559 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
3560 p++)
3562 *p->var = intern (p->name);
3563 staticpro (p->var);
3564 Fput (*p->var, Qevent_kind, *p->kind);
3565 Fput (*p->var, Qevent_unmodified, *p->var);
3569 func_key_syms = Qnil;
3570 staticpro (&func_key_syms);
3572 mouse_syms = Qnil;
3573 staticpro (&mouse_syms);
3575 defsubr (&Sread_key_sequence);
3576 defsubr (&Srecursive_edit);
3577 defsubr (&Strack_mouse);
3578 defsubr (&Smouse_click_p);
3579 defsubr (&Sinput_pending_p);
3580 defsubr (&Scommand_execute);
3581 defsubr (&Srecent_keys);
3582 defsubr (&Sthis_command_keys);
3583 defsubr (&Ssuspend_emacs);
3584 defsubr (&Sabort_recursive_edit);
3585 defsubr (&Sexit_recursive_edit);
3586 defsubr (&Srecursion_depth);
3587 defsubr (&Stop_level);
3588 defsubr (&Sdiscard_input);
3589 defsubr (&Sopen_dribble_file);
3590 defsubr (&Sset_input_mode);
3591 defsubr (&Sexecute_extended_command);
3593 DEFVAR_LISP ("disabled-command-hook", &Vdisabled_command_hook,
3594 "Value is called instead of any command that is disabled\n\
3595 (has a non-nil `disabled' property).");
3597 DEFVAR_LISP ("last-command-char", &last_command_char,
3598 "Last terminal input key that was part of a command.");
3600 DEFVAR_LISP ("last-input-char", &last_input_char,
3601 "Last terminal input key.");
3603 DEFVAR_LISP ("unread-command-char", &unread_command_char,
3604 "Object to be read as next input from input stream, or nil if none.");
3606 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
3607 "Meta-prefix character code. Meta-foo as command input\n\
3608 turns into this character followed by foo.");
3609 XSET (meta_prefix_char, Lisp_Int, 033);
3611 DEFVAR_LISP ("last-command", &last_command,
3612 "The last command executed. Normally a symbol with a function definition,\n\
3613 but can be whatever was found in the keymap, or whatever the variable\n\
3614 `this-command' was set to by that command.");
3615 last_command = Qnil;
3617 DEFVAR_LISP ("this-command", &this_command,
3618 "The command now being executed.\n\
3619 The command can set this variable; whatever is put here\n\
3620 will be in `last-command' during the following command.");
3621 this_command = Qnil;
3623 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
3624 "*Number of keyboard input characters between auto-saves.\n\
3625 Zero means disable autosaving due to number of characters typed.");
3626 auto_save_interval = 300;
3628 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
3629 "*Number of seconds idle time before auto-save.\n\
3630 Zero or nil means disable auto-saving due to idleness.\n\
3631 After auto-saving due to this many seconds of idle time,\n\
3632 Emacs also does a garbage collection if that seems to be warranted.");
3633 XFASTINT (Vauto_save_timeout) = 30;
3635 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
3636 "*Nonzero means echo unfinished commands after this many seconds of pause.");
3637 echo_keystrokes = 1;
3639 DEFVAR_INT ("polling-period", &polling_period,
3640 "*Interval between polling for input during Lisp execution.\n\
3641 The reason for polling is to make C-g work to stop a running program.\n\
3642 Polling is needed only when using X windows and SIGIO does not work.\n\
3643 Polling is automatically disabled in all other cases.");
3644 polling_period = 2;
3646 DEFVAR_INT ("num-input-keys", &num_input_keys,
3647 "*Number of complete keys read from the keyboard so far.");
3648 num_input_keys = 0;
3650 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
3651 "*The frame in which the most recently read event occurred.");
3652 Vlast_event_frame = Qnil;
3654 DEFVAR_LISP ("help-char", &help_char,
3655 "Character to recognize as meaning Help.\n\
3656 When it is read, do `(eval help-form)', and display result if it's a string.\n\
3657 If the value of `help-form' is nil, this char can be read normally.");
3658 XSET (help_char, Lisp_Int, Ctl ('H'));
3660 DEFVAR_LISP ("help-form", &Vhelp_form,
3661 "Form to execute when character help-char is read.\n\
3662 If the form returns a string, that string is displayed.\n\
3663 If `help-form' is nil, the help char is not recognized.");
3664 Vhelp_form = Qnil;
3666 DEFVAR_LISP ("top-level", &Vtop_level,
3667 "Form to evaluate when Emacs starts up.\n\
3668 Useful to set before you dump a modified Emacs.");
3669 Vtop_level = Qnil;
3671 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
3672 "String used as translate table for keyboard input, or nil.\n\
3673 Each character is looked up in this string and the contents used instead.\n\
3674 If string is of length N, character codes N and up are untranslated.");
3675 Vkeyboard_translate_table = Qnil;
3677 #ifdef HAVE_X_WINDOWS
3678 DEFVAR_LISP ("mouse-event-function", &Vmouse_event_function,
3679 "Function to call for each mouse event, after the event's definition.\n\
3680 Called, if non-nil, with one argument, which is the event-list.\n\
3681 See the variable `mouse-event' for the format of this list.");
3682 Vmouse_event_function = Qnil;
3684 DEFVAR_LISP ("mouse-left-hook", &Vmouse_left_hook,
3685 "Function to call when mouse leaves window. No arguments.");
3686 Vmouse_left_hook = Qnil;
3688 DEFVAR_LISP ("map-frame-hook", &Vmap_frame_hook,
3689 "Function to call when frame is mapped. No arguments.");
3690 Vmap_frame_hook = Qnil;
3692 DEFVAR_LISP ("unmap-frame-hook", &Vunmap_frame_hook,
3693 "Function to call when frame is unmapped. No arguments.");
3694 Vunmap_frame_hook = Qnil;
3696 DEFVAR_LISP ("mouse-motion-handler", &Vmouse_motion_handler,
3697 "Handler for motion events. No arguments.");
3698 Vmouse_motion_handler = Qnil;
3699 #endif
3701 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
3702 "Non-nil means prompt with menus in echo area when appropriate.\n\
3703 This is done when reading from a keymap that has a prompt string,\n\
3704 for elements that have prompt strings.");
3705 menu_prompting = 1;
3707 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
3708 "Character to see next line of menu prompt.\n\
3709 Type this character while in a menu prompt to rotate around the lines of it.");
3710 XSET (menu_prompt_more_char, Lisp_Int, ' ');
3713 keys_of_keyboard ()
3715 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
3716 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
3717 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
3718 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
3719 initial_define_key (meta_map, 'x', "execute-extended-command");