annotate src/keyboard.c @ 14219:22324381ef74

(safe_run_hooks): Use Qt, not Qerror, to avoid running the debugger.
author Richard M. Stallman <rms@gnu.org>
date Thu, 18 Jan 1996 08:41:14 +0000
parents ee40177f6c68
children 7d998103f266
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Keyboard and mouse input; editor command loop.
10533
52b954844444 (read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents: 10457
diff changeset
2 Copyright (C) 1985,86,87,88,89,93,94,95 Free Software Foundation, Inc.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4 This file is part of GNU Emacs.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 any later version.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 GNU General Public License for more details.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 14079
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 14079
diff changeset
19 Boston, MA 02111-1307, USA. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 /* Allow config.h to undefine symbols found here. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22 #include <signal.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23
4696
1fc792473491 Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents: 4600
diff changeset
24 #include <config.h>
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 #include <stdio.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26 #include "termchar.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
27 #include "termopts.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
28 #include "lisp.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
29 #include "termhooks.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30 #include "macros.h"
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
31 #include "frame.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
32 #include "window.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
33 #include "commands.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34 #include "buffer.h"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
35 #include "disptab.h"
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
36 #include "dispextern.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37 #include "keyboard.h"
2061
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
38 #include "intervals.h"
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
39 #include "blockinput.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40 #include <setjmp.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 #include <errno.h>
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
42
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
43 #ifdef MSDOS
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
44 #include "msdos.h"
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
45 #include <time.h>
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
46 #else /* not MSDOS */
562
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
47 #ifndef VMS
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
48 #include <sys/ioctl.h>
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
49 #endif
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
50 #endif /* not MSDOS */
562
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
51
0d73d7b5fff0 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 547
diff changeset
52 #include "syssignal.h"
1046
d4b1e5db2b2a * keyboard.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents: 1008
diff changeset
53 #include "systty.h"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
54
7727
741ba17eeb20 [HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents: 7650
diff changeset
55 /* This is to get the definitions of the XK_ symbols. */
741ba17eeb20 [HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents: 7650
diff changeset
56 #ifdef HAVE_X_WINDOWS
741ba17eeb20 [HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents: 7650
diff changeset
57 #include "xterm.h"
741ba17eeb20 [HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents: 7650
diff changeset
58 #endif
741ba17eeb20 [HAVE_X_WINDOWS]: Include xterm.h.
Richard M. Stallman <rms@gnu.org>
parents: 7650
diff changeset
59
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
60 #ifdef HAVE_NTGUI
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
61 #include "w32term.h"
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
62 #endif /* HAVE_NTGUI */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
63
7807
cd93cee36101 (modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents: 7787
diff changeset
64 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
cd93cee36101 (modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents: 7787
diff changeset
65 #include "systime.h"
cd93cee36101 (modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents: 7787
diff changeset
66
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
67 extern int errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
68
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
69 /* Variables for blockinput.h: */
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
70
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
71 /* Non-zero if interrupt input is blocked right now. */
2481
a7a0f89c1f64 * keyboard.c (interrupt_input_blocked, interrupt_input_pending):
Jim Blandy <jimb@redhat.com>
parents: 2439
diff changeset
72 int interrupt_input_blocked;
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
73
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
74 /* Nonzero means an input interrupt has arrived
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
75 during the current critical section. */
2481
a7a0f89c1f64 * keyboard.c (interrupt_input_blocked, interrupt_input_pending):
Jim Blandy <jimb@redhat.com>
parents: 2439
diff changeset
76 int interrupt_input_pending;
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
77
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
78
9652
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
79 /* File descriptor to use for input. */
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
80 extern int input_fd;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
81
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
82 #ifdef HAVE_WINDOW_SYSTEM
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
83 /* Make all keyboard buffers much bigger when using X windows. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
84 #define KBD_BUFFER_SIZE 4096
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
85 #else /* No X-windows, character input */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86 #define KBD_BUFFER_SIZE 256
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 #endif /* No X-windows */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
88
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89 /* Following definition copied from eval.c */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
91 struct backtrace
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
92 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93 struct backtrace *next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94 Lisp_Object *function;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
95 Lisp_Object *args; /* Points to vector of args. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
96 int nargs; /* length of vector. If nargs is UNEVALLED,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
97 args points to slot holding list of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
98 unevalled args */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
99 char evalargs;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
100 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
101
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
102 #ifdef MULTI_KBOARD
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
103 KBOARD *initial_kboard;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
104 KBOARD *current_kboard;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
105 KBOARD *all_kboards;
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
106 int single_kboard;
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
107 #else
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
108 KBOARD the_only_kboard;
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
109 #endif
10551
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
110
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
111 /* Non-nil disable property on a command means
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
112 do not execute it; call disabled-command-hook's value instead. */
4094
1dae74fd93d2 (Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4088
diff changeset
113 Lisp_Object Qdisabled, Qdisabled_command_hook;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115 #define NUM_RECENT_KEYS (100)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
116 int recent_keys_index; /* Index for storing next element into recent_keys */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 int total_keys; /* Total number of elements stored into recent_keys */
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
118 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
120 /* Vector holding the key sequence that invoked the current command.
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
121 It is reused for each command, and it may be longer than the current
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
122 sequence; this_command_key_count indicates how many elements
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
123 actually mean something.
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
124 It's easier to staticpro a single Lisp_Object than an array. */
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
125 Lisp_Object this_command_keys;
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
126 int this_command_key_count;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
127
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
128 /* Record values of this_command_key_count and echo_length ()
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
129 before this command was read. */
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
130 static int before_command_key_count;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
131 static int before_command_echo_length;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
132 /* Values of before_command_key_count and before_command_echo_length
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
133 saved by reset-this-command-lengths. */
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
134 static int before_command_key_count_1;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
135 static int before_command_echo_length_1;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
136 /* Flag set by reset-this-command-lengths,
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
137 saying to reset the lengths when add_command_key is called. */
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
138 static int before_command_restore_flag;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
139
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
140 extern int minbuf_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
142 extern struct backtrace *backtrace_list;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
143
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
144 /* Nonzero means do menu prompting. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
145 static int menu_prompting;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
146
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
147 /* Character to see next line of menu prompt. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
148 static Lisp_Object menu_prompt_more_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
149
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
150 /* For longjmp to where kbd input is being done. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
151 static jmp_buf getcjmp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
152
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
153 /* True while doing kbd input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
154 int waiting_for_input;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
155
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
156 /* True while displaying for echoing. Delays C-g throwing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
157 static int echoing;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
158
13267
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
159 /* True means we can start echoing at the next input pause
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
160 even though there is something in the echo area. */
13290
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
161 static char *ok_to_echo_at_next_pause;
13267
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
162
9396
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
163 /* Nonzero means disregard local maps for the menu bar. */
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
164 static int inhibit_local_menu_bar_menus;
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
165
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
166 /* Nonzero means C-g should cause immediate error-signal. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
167 int immediate_quit;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
168
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
169 /* Character to recognize as the help char. */
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
170 Lisp_Object Vhelp_char;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
171
12144
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
172 /* List of other event types to recognize as meaning "help". */
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
173 Lisp_Object Vhelp_event_list;
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
174
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
175 /* Form to execute when help char is typed. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
176 Lisp_Object Vhelp_form;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
177
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
178 /* Command to run when the help character follows a prefix key. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
179 Lisp_Object Vprefix_help_command;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
180
4115
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
181 /* List of items that should move to the end of the menu bar. */
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
182 Lisp_Object Vmenu_bar_final_items;
4088
bea0be5ab35e (Vhelp_menu_bar_map): New var.
Richard M. Stallman <rms@gnu.org>
parents: 4065
diff changeset
183
13108
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
184 /* Non-nil means show the equivalent key-binding for
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
185 any M-x command that has one.
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
186 The value can be a length of time to show the message for.
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
187 If the value is non-nil and not a number, we wait 2 seconds. */
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
188 Lisp_Object Vsuggest_key_bindings;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
189
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
190 /* Character that causes a quit. Normally C-g.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
192 If we are running on an ordinary terminal, this must be an ordinary
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
193 ASCII char, since we want to make it our interrupt character.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
195 If we are not running on an ordinary terminal, it still needs to be
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
196 an ordinary ASCII char. This character needs to be recognized in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
197 the input interrupt handler. At this point, the keystroke is
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
198 represented as a struct input_event, while the desired quit
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
199 character is specified as a lispy event. The mapping from struct
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
200 input_events to lispy events cannot run in an interrupt handler,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
201 and the reverse mapping is difficult for anything but ASCII
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
202 keystrokes.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
203
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
204 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
205 ASCII character. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
206 int quit_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
207
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
208 extern Lisp_Object current_global_map;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
209 extern int minibuf_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
210
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
211 /* If non-nil, this is a map that overrides all other local maps. */
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
212 Lisp_Object Voverriding_local_map;
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
213
9607
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
214 /* If non-nil, Voverriding_local_map applies to the menu bar. */
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
215 Lisp_Object Voverriding_local_map_menu_flag;
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
216
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
217 /* Keymap that defines special misc events that should
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
218 be processed immediately at a low level. */
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
219 Lisp_Object Vspecial_event_map;
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
220
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221 /* Current depth in recursive edits. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
222 int command_loop_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
223
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224 /* Total number of times command_loop has read a key sequence. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 int num_input_keys;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
226
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
227 /* Last input character read as a command. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
228 Lisp_Object last_command_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
229
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
230 /* Last input character read as a command, not counting menus
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
231 reached by the mouse. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
232 Lisp_Object last_nonmenu_event;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
233
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234 /* Last input character read for any purpose. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
235 Lisp_Object last_input_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
236
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
237 /* If not Qnil, a list of objects to be read as subsequent command input. */
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
238 Lisp_Object Vunread_command_events;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
239
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
240 /* If not -1, an event to be read as subsequent command input. */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
241 int unread_command_char;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
242
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
243 /* If not Qnil, this is a switch-frame event which we decided to put
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
244 off until the end of a key sequence. This should be read as the
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
245 next command input, after any unread_command_events.
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
246
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
247 read_key_sequence uses this to delay switch-frame events until the
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
248 end of the key sequence; Fread_char uses it to put off switch-frame
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
249 events until a non-ASCII event is acceptable as input. */
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
250 Lisp_Object unread_switch_frame;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
251
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
252 /* A mask of extra modifier bits to put into every keyboard char. */
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
253 int extra_keyboard_modifiers;
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
254
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
255 /* Char to use as prefix when a meta character is typed in.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
256 This is bound on entry to minibuffer in case ESC is changed there. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
257
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
258 Lisp_Object meta_prefix_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
259
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
260 /* Last size recorded for a current buffer which is not a minibuffer. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
261 static int last_non_minibuf_size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
262
687
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 682
diff changeset
263 /* Number of idle seconds before an auto-save and garbage collection. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
264 static Lisp_Object Vauto_save_timeout;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
265
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
266 /* Total number of times read_char has returned. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
267 int num_input_chars;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
268
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
269 /* Total number of times read_char has returned, outside of macros. */
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
270 int num_nonmacro_input_chars;
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
271
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
272 /* Auto-save automatically when this many characters have been typed
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
273 since the last time. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
274
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
275 static int auto_save_interval;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
276
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
277 /* Value of num_nonmacro_input_chars as of last auto save. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
278
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
279 int last_auto_save;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
280
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
281 /* The command being executed by the command loop.
12160
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
282 Commands may set this, and the value set will be copied into
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
283 current_kboard->Vlast_command instead of the actual command. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
284 Lisp_Object this_command;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
285
6178
ad3864a4e0bc (command_loop_1): Set last_point_position to the value of point.
Karl Heuer <kwzh@gnu.org>
parents: 6159
diff changeset
286 /* The value of point when the last command was executed. */
ad3864a4e0bc (command_loop_1): Set last_point_position to the value of point.
Karl Heuer <kwzh@gnu.org>
parents: 6159
diff changeset
287 int last_point_position;
ad3864a4e0bc (command_loop_1): Set last_point_position to the value of point.
Karl Heuer <kwzh@gnu.org>
parents: 6159
diff changeset
288
7345
c107ec7641ec (last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
289 /* The buffer that was current when the last command was started. */
c107ec7641ec (last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
290 Lisp_Object last_point_position_buffer;
c107ec7641ec (last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
291
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
292 #ifdef MULTI_FRAME
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
293 /* The frame in which the last input event occurred, or Qmacro if the
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
294 last event came from a macro. We use this to determine when to
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
295 generate switch-frame events. This may be cleared by functions
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
296 like Fselect_frame, to make sure that a switch-frame event is
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
297 generated by the next character. */
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
298 Lisp_Object internal_last_event_frame;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
299 #endif
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
300
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
301 /* A user-visible version of the above, intended to allow users to
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
302 figure out where the last event came from, if the event doesn't
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
303 carry that information itself (i.e. if it was a character). */
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
304 Lisp_Object Vlast_event_frame;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
305
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
306 /* The timestamp of the last input event we received from the X server.
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
307 X Windows wants this for selection ownership. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
308 unsigned long last_event_timestamp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
309
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
310 Lisp_Object Qself_insert_command;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
311 Lisp_Object Qforward_char;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
312 Lisp_Object Qbackward_char;
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
313 Lisp_Object Qundefined;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
314
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
315 /* read_key_sequence stores here the command definition of the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
316 key sequence that it reads. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
317 Lisp_Object read_key_sequence_cmd;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
318
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319 /* Form to evaluate (if non-nil) when Emacs is started. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
320 Lisp_Object Vtop_level;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
321
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
322 /* User-supplied string to translate input characters through. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
323 Lisp_Object Vkeyboard_translate_table;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
325 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
326 extern Lisp_Object Vfunction_key_map;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
327
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
328 /* Another keymap that maps key sequences into key sequences.
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
329 This one takes precedence over ordinary definitions. */
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
330 extern Lisp_Object Vkey_translation_map;
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
331
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
332 /* Non-nil means deactivate the mark at end of this command. */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
333 Lisp_Object Vdeactivate_mark;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
334
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
335 /* Menu bar specified in Lucid Emacs fashion. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
336
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
337 Lisp_Object Vlucid_menu_bar_dirty_flag;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
338 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
339
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
340 /* Hooks to run before and after each command. */
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
341 Lisp_Object Qpre_command_hook, Vpre_command_hook;
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
342 Lisp_Object Qpost_command_hook, Vpost_command_hook;
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
343 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
344 /* Hook run after a command if there's no more input soon. */
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
345 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
346
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
347 /* Delay time in microseconds before running post-command-idle-hook. */
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
348 int post_command_idle_delay;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
349
8302
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
350 /* List of deferred actions to be performed at a later time.
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
351 The precise format isn't relevant here; we just check whether it is nil. */
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
352 Lisp_Object Vdeferred_action_list;
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
353
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
354 /* Function to call to handle deferred actions, when there are any. */
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
355 Lisp_Object Vdeferred_action_function;
10070
def41008c136 (command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents: 10060
diff changeset
356 Lisp_Object Qdeferred_action_function;
8302
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
357
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 /* File in which we write all commands we read. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
359 FILE *dribble;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
360
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361 /* Nonzero if input is available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362 int input_pending;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363
2690
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
364 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
365 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
366
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
367 int meta_key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
368
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
369 extern char *pending_malloc_warning;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
370
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
371 /* Circular buffer for pre-read keyboard input. */
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
372 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
373
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
374 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
375
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
376 The interrupt-level event handlers will never enqueue an event on a
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
377 frame which is not in Vframe_list, and once an event is dequeued,
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
378 internal_last_event_frame or the event itself points to the frame.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
379 So that's all fine.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
380
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
381 But while the event is sitting in the queue, it's completely
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
382 unprotected. Suppose the user types one command which will run for
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
383 a while and then delete a frame, and then types another event at
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
384 the frame that will be deleted, before the command gets around to
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
385 it. Suppose there are no references to this frame elsewhere in
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
386 Emacs, and a GC occurs before the second event is dequeued. Now we
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
387 have an event referring to a freed frame, which will crash Emacs
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
388 when it is dequeued.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
389
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
390 Similar things happen when an event on a scroll bar is enqueued; the
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
391 window may be deleted while the event is in the queue.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
392
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
393 So, we use this vector to protect the frame_or_window field in the
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
394 event queue. That way, they'll be dequeued as dead frames or
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
395 windows, but still valid lisp objects.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
396
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
397 If kbd_buffer[i].kind != no_event, then
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
398 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
399 == kbd_buffer[i].frame_or_window. */
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
400 static Lisp_Object kbd_buffer_frame_or_window;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
401
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
402 /* Pointer to next available character in kbd_buffer.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
403 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
404 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
405 next available char is in kbd_buffer[0]. */
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
406 static struct input_event *kbd_fetch_ptr;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
407
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
408 /* Pointer to next place to store character in kbd_buffer. This
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
409 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
410 character should go in kbd_buffer[0]. */
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
411 static volatile struct input_event *kbd_store_ptr;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
412
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
413 /* The above pair of variables forms a "queue empty" flag. When we
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
414 enqueue a non-hook event, we increment kbd_store_ptr. When we
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
415 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
416 there is input available iff the two pointers are not equal.
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
417
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
418 Why not just have a flag set and cleared by the enqueuing and
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
419 dequeuing functions? Such a flag could be screwed up by interrupts
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
420 at inopportune times. */
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
421
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
422 /* If this flag is non-nil, we check mouse_moved to see when the
9618
9fe4987e4896 (do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents: 9607
diff changeset
423 mouse moves, and motion events will appear in the input stream.
9fe4987e4896 (do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents: 9607
diff changeset
424 Otherwise, mouse motion is ignored. */
9fe4987e4896 (do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents: 9607
diff changeset
425 static Lisp_Object do_mouse_tracking;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
426
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
427 /* Symbols to head events. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
428 Lisp_Object Qmouse_movement;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
429 Lisp_Object Qscroll_bar_movement;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
430 Lisp_Object Qswitch_frame;
9215
fa3883c219ea (head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents: 9124
diff changeset
431 Lisp_Object Qdelete_frame;
9729
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
432 Lisp_Object Qiconify_frame;
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
433 Lisp_Object Qmake_frame_visible;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
434
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435 /* Symbols to denote kinds of events. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436 Lisp_Object Qfunction_key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437 Lisp_Object Qmouse_click;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438 /* Lisp_Object Qmouse_movement; - also an event header */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440 /* Properties of event headers. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 Lisp_Object Qevent_kind;
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
442 Lisp_Object Qevent_symbol_elements;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
444 Lisp_Object Qmenu_enable;
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
445
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
446 /* An event header symbol HEAD may have a property named
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
447 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
448 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
449 mask of modifiers applied to it. If present, this is used to help
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
450 speed up parse_modifiers. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
451 Lisp_Object Qevent_symbol_element_mask;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
452
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
453 /* An unmodified event header BASE may have a property named
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
454 Qmodifier_cache, which is an alist mapping modifier masks onto
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
455 modified versions of BASE. If present, this helps speed up
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
456 apply_modifiers. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
457 Lisp_Object Qmodifier_cache;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
458
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
459 /* Symbols to use for parts of windows. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
460 Lisp_Object Qmode_line;
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
461 Lisp_Object Qvertical_line;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
462 Lisp_Object Qvertical_scroll_bar;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
463 Lisp_Object Qmenu_bar;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
464
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
465 extern Lisp_Object Qmenu_enable;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
466
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
467 Lisp_Object recursive_edit_unwind (), command_loop ();
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
468 Lisp_Object Fthis_command_keys ();
4773
ae7c67879859 (Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents: 4696
diff changeset
469 Lisp_Object Qextended_command_history;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470
12173
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
471 extern char *x_get_keysym_name ();
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
472
7487
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
473 Lisp_Object Qpolling_period;
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
474
10932
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
475 extern Lisp_Object Vprint_level, Vprint_length;
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
476
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
477 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
478 happens. */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
479 EMACS_TIME *input_available_clear_time;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
482 Default is 1 if INTERRUPT_INPUT is defined. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
483 int interrupt_input;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
484
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
485 /* Nonzero while interrupts are temporarily deferred during redisplay. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
486 int interrupts_deferred;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488 /* nonzero means use ^S/^Q for flow control. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
489 int flow_control;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
490
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
491 /* Allow m- file to inhibit use of FIONREAD. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
492 #ifdef BROKEN_FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
493 #undef FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
494 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
495
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
496 /* We are unable to use interrupts if FIONREAD is not available,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
497 so flush SIGIO so we won't try. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 #ifndef FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
500 #undef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
501 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
502 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
503
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
504 /* If we support a window system, turn on the code to poll periodically
4471
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
505 to detect C-g. It isn't actually used when doing interrupt input. */
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
506 #ifdef HAVE_WINDOW_SYSTEM
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507 #define POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
508 #endif
13329
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
509
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
510 /* Non-nil enables Column Number mode. */
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
511 Lisp_Object Vcolumn_number_mode;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
512
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513 /* Global variable declarations. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
514
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
515 /* Function for init_keyboard to call with no args (if nonzero). */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516 void (*keyboard_init_hook) ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518 static int read_avail_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
519 static void get_input_pending ();
4282
af81ea5c816e (kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents: 4255
diff changeset
520 static int readable_events ();
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
521 static Lisp_Object read_char_x_menu_prompt ();
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
522 static Lisp_Object read_char_minibuf_menu_prompt ();
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
523 static Lisp_Object make_lispy_event ();
11026
682ae4a3d465 (make_lispy_event): Do mouse code only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11016
diff changeset
524 #ifdef HAVE_MOUSE
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
525 static Lisp_Object make_lispy_movement ();
11026
682ae4a3d465 (make_lispy_event): Do mouse code only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11016
diff changeset
526 #endif
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
527 static Lisp_Object modify_event_symbol ();
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
528 static Lisp_Object make_lispy_switch_frame ();
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
529 static int parse_solitary_modifier ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
530
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
531 /* > 0 if we are to echo keystrokes. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
532 static int echo_keystrokes;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
533
6101
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
534 /* Nonzero means don't try to suspend even if the operating system seems
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
535 to support it. */
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
536 static int cannot_suspend;
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
537
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
538 #define min(a,b) ((a)<(b)?(a):(b))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
539 #define max(a,b) ((a)>(b)?(a):(b))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
540
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
541 /* Install the string STR as the beginning of the string of echoing,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
542 so that it serves as a prompt for the next character.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 Also start echoing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545 echo_prompt (str)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 char *str;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
548 int len = strlen (str);
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
549
10579
a7796a68f001 * keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents: 10551
diff changeset
550 if (len > ECHOBUFSIZE - 4)
a7796a68f001 * keyboard.c (kbd_buffer_frame_or_window): Delete; now in perdisplay.
Karl Heuer <kwzh@gnu.org>
parents: 10551
diff changeset
551 len = ECHOBUFSIZE - 4;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
552 bcopy (str, current_kboard->echobuf, len);
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
553 current_kboard->echoptr = current_kboard->echobuf + len;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
554 *current_kboard->echoptr = '\0';
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
555
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
556 current_kboard->echo_after_prompt = len;
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
557
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
558 echo ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
559 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
560
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
561 /* Add C to the echo string, if echoing is going on.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562 C can be a character, which is printed prettily ("M-C-x" and all that
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
563 jazz), or a symbol, whose name is printed. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
564
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
565 echo_char (c)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
566 Lisp_Object c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
567 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
568 extern char *push_key_description ();
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
569
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
570 if (current_kboard->immediate_echo)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
571 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
572 char *ptr = current_kboard->echoptr;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
573
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
574 if (ptr != current_kboard->echobuf)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
575 *ptr++ = ' ';
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
576
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
577 /* If someone has passed us a composite event, use its head symbol. */
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
578 c = EVENT_HEAD (c);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
579
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
580 if (INTEGERP (c))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
581 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
582 if (ptr - current_kboard->echobuf > ECHOBUFSIZE - 6)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
583 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
584
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
585 ptr = push_key_description (XINT (c), ptr);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
586 }
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
587 else if (SYMBOLP (c))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
588 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
589 struct Lisp_String *name = XSYMBOL (c)->name;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
590 if ((ptr - current_kboard->echobuf) + name->size + 4 > ECHOBUFSIZE)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
591 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
592 bcopy (name->data, ptr, name->size);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
593 ptr += name->size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
594 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
595
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
596 if (current_kboard->echoptr == current_kboard->echobuf
12144
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
597 && help_char_p (c))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
598 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
599 strcpy (ptr, " (Type ? for further options)");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
600 ptr += strlen (ptr);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
601 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
602
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
603 *ptr = 0;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
604 current_kboard->echoptr = ptr;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
605
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606 echo ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
607 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
608 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
609
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
610 /* Temporarily add a dash to the end of the echo string if it's not
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
611 empty, so that it serves as a mini-prompt for the very next character. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
612
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
613 echo_dash ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
614 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
615 if (!current_kboard->immediate_echo
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
616 && current_kboard->echoptr == current_kboard->echobuf)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
617 return;
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
618 /* Do nothing if we just printed a prompt. */
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
619 if (current_kboard->echo_after_prompt
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
620 == current_kboard->echoptr - current_kboard->echobuf)
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
621 return;
2505
c0a13d078f68 * keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents: 2482
diff changeset
622 /* Do nothing if not echoing at all. */
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
623 if (current_kboard->echoptr == 0)
2505
c0a13d078f68 * keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents: 2482
diff changeset
624 return;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
625
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
626 /* Put a dash at the end of the buffer temporarily,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
627 but make it go away when the next character is added. */
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
628 current_kboard->echoptr[0] = '-';
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
629 current_kboard->echoptr[1] = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
630
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
631 echo ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
632 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
633
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
634 /* Display the current echo string, and begin echoing if not already
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
635 doing so. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
636
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
637 echo ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
638 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
639 if (!current_kboard->immediate_echo)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
640 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
641 int i;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
642 current_kboard->immediate_echo = 1;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
643
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
644 for (i = 0; i < this_command_key_count; i++)
7502
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
645 {
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
646 Lisp_Object c;
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
647 c = XVECTOR (this_command_keys)->contents[i];
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
648 if (! (EVENT_HAS_PARAMETERS (c)
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
649 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
650 echo_char (c);
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
651 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
652 echo_dash ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
653 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
654
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
655 echoing = 1;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
656 message1_nolog (current_kboard->echobuf);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
657 echoing = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
658
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
659 if (waiting_for_input && !NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
660 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
661 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
663 /* Turn off echoing, for the start of a new command. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 cancel_echoing ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
666 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
667 current_kboard->immediate_echo = 0;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
668 current_kboard->echoptr = current_kboard->echobuf;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
669 current_kboard->echo_after_prompt = -1;
13267
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
670 ok_to_echo_at_next_pause = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
671 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
672
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
673 /* Return the length of the current echo string. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
674
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
675 static int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
676 echo_length ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
677 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
678 return current_kboard->echoptr - current_kboard->echobuf;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
679 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
680
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
681 /* Truncate the current echo message to its first LEN chars.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
682 This and echo_char get used by read_key_sequence when the user
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
683 switches frames while entering a key sequence. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
684
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
685 static void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
686 echo_truncate (len)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
687 int len;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
688 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
689 current_kboard->echobuf[len] = '\0';
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
690 current_kboard->echoptr = current_kboard->echobuf + len;
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
691 truncate_echo_area (len);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
692 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
693
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
694
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
695 /* Functions for manipulating this_command_keys. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
696 static void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
697 add_command_key (key)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
698 Lisp_Object key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
699 {
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
700 int size = XVECTOR (this_command_keys)->size;
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
701
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
702 /* If reset-this-command-length was called recently, obey it now.
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
703 See the doc string of that function for an explanation of why. */
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
704 if (before_command_restore_flag)
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
705 {
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
706 this_command_key_count = before_command_key_count_1;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
707 echo_truncate (before_command_echo_length_1);
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
708 before_command_restore_flag = 0;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
709 }
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
710
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
711 if (this_command_key_count >= size)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
712 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
713 Lisp_Object new_keys;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
714
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
715 new_keys = Fmake_vector (make_number (size * 2), Qnil);
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
716 bcopy (XVECTOR (this_command_keys)->contents,
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
717 XVECTOR (new_keys)->contents,
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
718 size * sizeof (Lisp_Object));
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
719
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
720 this_command_keys = new_keys;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
721 }
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
722
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
723 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
724 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
725
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
726 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
727 recursive_edit_1 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
728 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
729 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
730 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
731
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
732 if (command_loop_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
733 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
734 specbind (Qstandard_output, Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
735 specbind (Qstandard_input, Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
736 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
737
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
738 val = command_loop ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
739 if (EQ (val, Qt))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
740 Fsignal (Qquit, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
742 return unbind_to (count, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
743 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
744
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
745 /* When an auto-save happens, record the "time", and don't do again soon. */
7224
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
746
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
747 record_auto_save ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
748 {
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
749 last_auto_save = num_nonmacro_input_chars;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
750 }
7224
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
751
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
752 /* Make an auto save happen as soon as possible at command level. */
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
753
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
754 force_auto_save_soon ()
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
755 {
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
756 last_auto_save = - auto_save_interval - 1;
7225
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
757
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
758 record_asynch_buffer_change ();
7224
a96533ce8122 (force_auto_save_soon): New function.
Richard M. Stallman <rms@gnu.org>
parents: 7168
diff changeset
759 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
760
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 "Invoke the editor command loop recursively.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764 that tells this function to return.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766 This function is called by the editor initialization to begin editing.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
767 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
768 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
770 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
771
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
772 command_loop_level++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
773 update_mode_lines = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
774
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
775 record_unwind_protect (recursive_edit_unwind,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
776 (command_loop_level
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
777 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
778 ? Fcurrent_buffer ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
779 : Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
780 recursive_edit_1 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
781 return unbind_to (count, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
783
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
785 recursive_edit_unwind (buffer)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
786 Lisp_Object buffer;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
787 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
788 if (!NILP (buffer))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
789 Fset_buffer (buffer);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
790
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
791 command_loop_level--;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
792 update_mode_lines = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
793 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
794 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
795
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
796 static void
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
797 any_kboard_state ()
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
798 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
799 #ifdef MULTI_KBOARD
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
800 #if 0 /* Theory: if there's anything in Vunread_command_events,
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
801 it will right away be read by read_key_sequence,
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
802 and then if we do switch KBOARDS, it will go into the side
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
803 queue then. So we don't need to do anything special here -- rms. */
10827
4dfd3634b155 (unlock_display): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10820
diff changeset
804 if (CONSP (Vunread_command_events))
10945
dbf1aab47502 (unlock_display): If adding to kbd_queue, set kbd_queue_has_data.
Karl Heuer <kwzh@gnu.org>
parents: 10939
diff changeset
805 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
806 current_kboard->kbd_queue
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
807 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
808 current_kboard->kbd_queue_has_data = 1;
10945
dbf1aab47502 (unlock_display): If adding to kbd_queue, set kbd_queue_has_data.
Karl Heuer <kwzh@gnu.org>
parents: 10939
diff changeset
809 }
10827
4dfd3634b155 (unlock_display): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10820
diff changeset
810 Vunread_command_events = Qnil;
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
811 #endif
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
812 single_kboard = 0;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
813 #endif
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
814 }
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
815
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
816 /* Switch to the single-kboard state, making current_kboard
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
817 the only KBOARD from which further input is accepted. */
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
818
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
819 void
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
820 single_kboard_state ()
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
821 {
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
822 #ifdef MULTI_KBOARD
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
823 single_kboard = 1;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
824 #endif
10827
4dfd3634b155 (unlock_display): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10820
diff changeset
825 }
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
826
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
827 /* Maintain a stack of kboards, so other parts of Emacs
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
828 can switch temporarily to the kboard of a given frame
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
829 and then revert to the previous status. */
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
830
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
831 struct kboard_stack
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
832 {
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
833 KBOARD *kboard;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
834 struct kboard_stack *next;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
835 };
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
836
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
837 static struct kboard_stack *kboard_stack;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
838
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
839 void
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
840 push_frame_kboard (f)
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
841 FRAME_PTR f;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
842 {
11366
1dbffccbd022 (push_frame_kboard, pop_frame_kboard): Do nothing if !MULTI_KBOARD.
Karl Heuer <kwzh@gnu.org>
parents: 11363
diff changeset
843 #ifdef MULTI_KBOARD
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
844 struct kboard_stack *p
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
845 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
846
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
847 p->next = kboard_stack;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
848 p->kboard = current_kboard;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
849 kboard_stack = p;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
850
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
851 current_kboard = FRAME_KBOARD (f);
11366
1dbffccbd022 (push_frame_kboard, pop_frame_kboard): Do nothing if !MULTI_KBOARD.
Karl Heuer <kwzh@gnu.org>
parents: 11363
diff changeset
852 #endif
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
853 }
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
854
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
855 void
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
856 pop_frame_kboard ()
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
857 {
11366
1dbffccbd022 (push_frame_kboard, pop_frame_kboard): Do nothing if !MULTI_KBOARD.
Karl Heuer <kwzh@gnu.org>
parents: 11363
diff changeset
858 #ifdef MULTI_KBOARD
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
859 struct kboard_stack *p = kboard_stack;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
860 current_kboard = p->kboard;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
861 kboard_stack = p->next;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
862 xfree (p);
11366
1dbffccbd022 (push_frame_kboard, pop_frame_kboard): Do nothing if !MULTI_KBOARD.
Karl Heuer <kwzh@gnu.org>
parents: 11363
diff changeset
863 #endif
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
864 }
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
865
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
866 /* Handle errors that are not handled at inner levels
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
867 by printing an error message and returning to the editor command loop. */
10827
4dfd3634b155 (unlock_display): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10820
diff changeset
868
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
869 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
870 cmd_error (data)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
871 Lisp_Object data;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
872 {
10932
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
873 Lisp_Object old_level, old_length;
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
874
8994
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
875 Vstandard_output = Qt;
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
876 Vstandard_input = Qt;
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
877 Vexecuting_macro = Qnil;
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
878 current_kboard->Vprefix_arg = Qnil;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
879 cancel_echoing ();
10932
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
880
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
881 /* Avoid unquittable loop if data contains a circular list. */
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
882 old_level = Vprint_level;
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
883 old_length = Vprint_length;
13290
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
884 XSETFASTINT (Vprint_level, 10);
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
885 XSETFASTINT (Vprint_length, 10);
12087
3bbf71f1cf30 (cmd_error): Use NULL, not 0, as arg to cmd_error_internal.
Karl Heuer <kwzh@gnu.org>
parents: 12007
diff changeset
886 cmd_error_internal (data, NULL);
10932
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
887 Vprint_level = old_level;
df11ec79623a (cmd_error): Bind Vprint_level and Vprint_length.
Karl Heuer <kwzh@gnu.org>
parents: 10930
diff changeset
888 Vprint_length = old_length;
8994
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
889
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
890 Vquit_flag = Qnil;
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
891
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
892 Vinhibit_quit = Qnil;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
893 #ifdef MULTI_KBOARD
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
894 any_kboard_state ();
10626
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
895 #endif
8994
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
896
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
897 return make_number (0);
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
898 }
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
899
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
900 cmd_error_internal (data, context)
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
901 Lisp_Object data;
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
902 char *context;
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
903 {
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
904 Lisp_Object stream;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
905
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
906 Vquit_flag = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
907 Vinhibit_quit = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
908 echo_area_glyphs = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
909
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
910 /* If the window system or terminal frame hasn't been initialized
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
911 yet, or we're not interactive, it's best to dump this message out
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
912 to stderr and exit. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
913 if (! FRAME_MESSAGE_BUF (selected_frame)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
914 || noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
915 stream = Qexternal_debugging_output;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
916 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
917 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
918 Fdiscard_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
919 bitch_at_user ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
920 stream = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
921 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
922
8994
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
923 if (context != 0)
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
924 write_string_1 (context, -1, stream);
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
925
13770
197ada595605 (Fcommand_execute): Allow function + args list as cmd.
Karl Heuer <kwzh@gnu.org>
parents: 13638
diff changeset
926 print_error_message (data, stream);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
927
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
928 /* If the window system or terminal frame hasn't been initialized
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
929 yet, or we're in -batch mode, this error should cause Emacs to exit. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
930 if (! FRAME_MESSAGE_BUF (selected_frame)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
931 || noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
932 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
933 Fterpri (stream);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
934 Fkill_emacs (make_number (-1));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
935 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
936 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
937
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
938 Lisp_Object command_loop_1 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
939 Lisp_Object command_loop_2 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
940 Lisp_Object top_level_1 ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
941
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
942 /* Entry to editor-command-loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
943 This level has the catches for exiting/returning to editor command loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
944 It returns nil to exit recursive edit, t to abort it. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
945
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
946 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
947 command_loop ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
948 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
949 if (command_loop_level > 0 || minibuf_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
950 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
951 return internal_catch (Qexit, command_loop_2, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
952 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
953 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
954 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
955 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
956 internal_catch (Qtop_level, top_level_1, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
957 internal_catch (Qtop_level, command_loop_2, Qnil);
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
958
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
959 /* End of file in -batch run causes exit here. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
960 if (noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
961 Fkill_emacs (Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
962 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
963 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
964
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
965 /* Here we catch errors in execution of commands within the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
966 editing loop, and reenter the editing loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
967 When there is an error, cmd_error runs and returns a non-nil
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
968 value to us. A value of nil means that cmd_loop_1 itself
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
969 returned due to end of file (or end of kbd macro). */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
970
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
971 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
972 command_loop_2 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
973 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
974 register Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
975
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
976 do
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
977 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
978 while (!NILP (val));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
979
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
982
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
983 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
984 top_level_2 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
985 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
986 return Feval (Vtop_level);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
987 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
988
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
989 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
990 top_level_1 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
991 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
992 /* On entry to the outer level, run the startup file */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
993 if (!NILP (Vtop_level))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
994 internal_condition_case (top_level_2, Qerror, cmd_error);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
995 else if (!NILP (Vpurify_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
996 message ("Bare impure Emacs (standard Lisp code not loaded)");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
997 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
998 message ("Bare Emacs (standard Lisp code not loaded)");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
999 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1000 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1001
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1002 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1003 "Exit all recursive editing levels.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1004 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1005 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1006 Fthrow (Qtop_level, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1007 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1008
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1009 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1010 "Exit from the innermost recursive edit or minibuffer.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1011 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1012 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1013 if (command_loop_level > 0 || minibuf_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1014 Fthrow (Qexit, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1015
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1016 error ("No recursive edit is in progress");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1017 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1018
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1019 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1020 "Abort the command that requested this recursive edit or minibuffer input.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1021 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1022 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1023 if (command_loop_level > 0 || minibuf_level > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1024 Fthrow (Qexit, Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1025
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1026 error ("No recursive edit is in progress");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1027 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1028
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1029 /* This is the actual command reading loop,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1030 sans error-handling encapsulation. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1031
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1032 Lisp_Object Fcommand_execute ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1033 static int read_key_sequence ();
13082
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
1034 void safe_run_hooks ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1035
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1036 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1037 command_loop_1 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1038 {
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1039 Lisp_Object cmd, tem;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1040 int lose;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1041 int nonundocount;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1042 Lisp_Object keybuf[30];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1043 int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1044 int no_redisplay;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1045 int no_direct;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1046 int prev_modiff;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1047 struct buffer *prev_buffer;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1048 #ifdef MULTI_KBOARD
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1049 int was_locked = single_kboard;
10820
5bef43a53c01 (display_locked): New var to indicate when we're in the run state.
Karl Heuer <kwzh@gnu.org>
parents: 10800
diff changeset
1050 #endif
10626
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1051
12227
24328f2358a1 (command_loop_1): Clear prefix arg (undo Feb 1 change).
Karl Heuer <kwzh@gnu.org>
parents: 12185
diff changeset
1052 current_kboard->Vprefix_arg = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1053 Vdeactivate_mark = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1054 waiting_for_input = 0;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1055 cancel_echoing ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1056
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1057 nonundocount = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1058 no_redisplay = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1059 this_command_key_count = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1060
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
1061 /* Make sure this hook runs after commands that get errors and
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
1062 throw to top level. */
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1063 /* Note that the value cell will never directly contain nil
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1064 if the symbol is a local variable. */
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
1065 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1066 safe_run_hooks (Qpost_command_hook);
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
1067
8302
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
1068 if (!NILP (Vdeferred_action_list))
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
1069 call0 (Vdeferred_action_function);
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
1070
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
1071 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1072 {
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1073 if (NILP (Vunread_command_events)
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1074 && NILP (Vexecuting_macro)
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1075 && !NILP (sit_for (0, post_command_idle_delay, 0, 1)))
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1076 safe_run_hooks (Qpost_command_idle_hook);
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1077 }
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1078
6290
6ecf8ea4bd8d (command_loop_1): On entry, set this_command
Richard M. Stallman <rms@gnu.org>
parents: 6208
diff changeset
1079 /* Do this after running Vpost_command_hook, for consistency. */
12160
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
1080 current_kboard->Vlast_command = this_command;
6290
6ecf8ea4bd8d (command_loop_1): On entry, set this_command
Richard M. Stallman <rms@gnu.org>
parents: 6208
diff changeset
1081
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1082 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1083 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1084 /* Make sure the current window's buffer is selected. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1085 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1086 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1087
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1088 /* Display any malloc warning that just came out. Use while because
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1089 displaying one warning can cause another. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1090
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1091 while (pending_malloc_warning)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1092 display_malloc_warning ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1093
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1094 no_direct = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1095
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1096 Vdeactivate_mark = Qnil;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1097
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1098 /* If minibuffer on and echo area in use,
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3538
diff changeset
1099 wait 2 sec and redraw minibuffer. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1100
12628
397f6d4852ff (command_loop_1): Clear echo area after 2 sec
Richard M. Stallman <rms@gnu.org>
parents: 12571
diff changeset
1101 if (minibuf_level && echo_area_glyphs
397f6d4852ff (command_loop_1): Clear echo area after 2 sec
Richard M. Stallman <rms@gnu.org>
parents: 12571
diff changeset
1102 && EQ (minibuf_window, echo_area_window))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1103 {
1097
d9efc1c88574 (command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents: 1083
diff changeset
1104 /* Bind inhibit-quit to t so that C-g gets read in
d9efc1c88574 (command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents: 1083
diff changeset
1105 rather than quitting back to the minibuffer. */
d9efc1c88574 (command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents: 1083
diff changeset
1106 int count = specpdl_ptr - specpdl;
d9efc1c88574 (command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents: 1083
diff changeset
1107 specbind (Qinhibit_quit, Qt);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1108 Fsit_for (make_number (2), Qnil, Qnil);
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
1109 unbind_to (count, Qnil);
1097
d9efc1c88574 (command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents: 1083
diff changeset
1110
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1111 echo_area_glyphs = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1112 no_direct = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1113 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1114 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1115 Vquit_flag = Qnil;
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1116 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1117 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1118 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1119
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1120 #ifdef C_ALLOCA
10626
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1121 alloca (0); /* Cause a garbage collection now */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1122 /* Since we can free the most stuff here. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1123 #endif /* C_ALLOCA */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1124
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1125 #if 0
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
1126 #ifdef MULTI_FRAME
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1127 /* Select the frame that the last event came from. Usually,
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1128 switch-frame events will take care of this, but if some lisp
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1129 code swallows a switch-frame event, we'll fix things up here.
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1130 Is this a good idea? */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1131 if (FRAMEP (internal_last_event_frame)
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1132 && XFRAME (internal_last_event_frame) != selected_frame)
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1133 Fselect_frame (internal_last_event_frame, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1134 #endif
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1135 #endif
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1136 /* If it has changed current-menubar from previous value,
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1137 really recompute the menubar from the value. */
4315
9c6571823ab8 (command_loop_1): Call Qrecompute_lucid_menubar only if defined.
Richard M. Stallman <rms@gnu.org>
parents: 4282
diff changeset
1138 if (! NILP (Vlucid_menu_bar_dirty_flag)
9c6571823ab8 (command_loop_1): Call Qrecompute_lucid_menubar only if defined.
Richard M. Stallman <rms@gnu.org>
parents: 4282
diff changeset
1139 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1140 call0 (Qrecompute_lucid_menubar);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
1141
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1142 before_command_key_count = this_command_key_count;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1143 before_command_echo_length = echo_length ();
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1144
13014
077bb437f649 (command_loop_1): Set this_command to nil before reading a command.
Richard M. Stallman <rms@gnu.org>
parents: 12979
diff changeset
1145 this_command = Qnil;
077bb437f649 (command_loop_1): Set this_command to nil before reading a command.
Richard M. Stallman <rms@gnu.org>
parents: 12979
diff changeset
1146
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1147 /* Read next key sequence; i gets its length. */
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
1148 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
1149 Qnil, 0, 1);
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1150
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1151 ++num_input_keys;
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
1152
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1153 /* Now we have read a key sequence of length I,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1154 or else I is 0 and we found end of file. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1155
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1156 if (i == 0) /* End of file -- happens only in */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1157 return Qnil; /* a kbd macro, at the end. */
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1158 /* -1 means read_key_sequence got a menu that was rejected.
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1159 Just loop around and read another command. */
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1160 if (i == -1)
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1161 {
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1162 cancel_echoing ();
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1163 this_command_key_count = 0;
10626
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1164 goto finalize;
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1165 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1166
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1167 last_command_char = keybuf[i - 1];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1168
2406
465732c007f4 (command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents: 2340
diff changeset
1169 /* If the previous command tried to force a specific window-start,
465732c007f4 (command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents: 2340
diff changeset
1170 forget about that, in case this command moves point far away
11174
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1171 from that position. But also throw away beg_unchanged and
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1172 end_unchanged information in that case, so that redisplay will
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1173 update the whole window properly. */
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1174 if (!NILP (XWINDOW (selected_window)->force_start))
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1175 {
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1176 XWINDOW (selected_window)->force_start = Qnil;
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1177 beg_unchanged = end_unchanged = 0;
b400b109a398 (command_loop_1): If we ignore force_start, then also
Karl Heuer <kwzh@gnu.org>
parents: 11167
diff changeset
1178 }
2406
465732c007f4 (command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents: 2340
diff changeset
1179
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1180 cmd = read_key_sequence_cmd;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1181 if (!NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1182 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1183 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1184 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1185 Vexecuting_macro = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1186 QUIT; /* Make some noise. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1187 /* Will return since macro now empty. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1188 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1189 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1190
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1191 /* Do redisplay processing after this command except in special
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
1192 cases identified below that set no_redisplay to 1.
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
1193 (actually, there's currently no way to prevent the redisplay,
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
1194 and no_redisplay is ignored.
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
1195 Perhaps someday we will really implement it.) */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1196 no_redisplay = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1197
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1198 prev_buffer = current_buffer;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1199 prev_modiff = MODIFF;
6204
ba6268a3dee9 (command_loop_1): Fix misplaced assignment of last_point_position.
Karl Heuer <kwzh@gnu.org>
parents: 6178
diff changeset
1200 last_point_position = PT;
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
1201 XSETBUFFER (last_point_position_buffer, prev_buffer);
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1202
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1203 /* Execute the command. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1204
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1205 this_command = cmd;
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1206 /* Note that the value cell will never directly contain nil
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1207 if the symbol is a local variable. */
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
1208 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1209 safe_run_hooks (Qpre_command_hook);
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1210
2924
6e233798a3f7 (read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents: 2898
diff changeset
1211 if (NILP (this_command))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1212 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1213 /* nil means key is undefined. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1214 bitch_at_user ();
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1215 current_kboard->defining_kbd_macro = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1216 update_mode_lines = 1;
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
1217 current_kboard->Vprefix_arg = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1218 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1219 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1220 {
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
1221 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1222 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1223 /* Recognize some common commands in common situations and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1224 do them directly. */
7427
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1225 if (EQ (this_command, Qforward_char) && PT < ZV)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1226 {
13189
104d1e97803c (command_loop_1): Access display tables as char-tables.
Richard M. Stallman <rms@gnu.org>
parents: 13108
diff changeset
1227 struct Lisp_Char_Table *dp
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1228 = window_display_table (XWINDOW (selected_window));
7427
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1229 lose = FETCH_CHAR (PT);
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1230 SET_PT (PT + 1);
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1231 if ((dp
5352
6b91471d9f0f (command_loop_1): Test of whether disp tab elt
Richard M. Stallman <rms@gnu.org>
parents: 5225
diff changeset
1232 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
8238
3b4a76dcecf6 (command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents: 8169
diff changeset
1233 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
3b4a76dcecf6 (command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents: 8169
diff changeset
1234 : (NILP (DISP_CHAR_VECTOR (dp, lose))
3b4a76dcecf6 (command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents: 8169
diff changeset
1235 && (lose >= 0x20 && lose < 0x7f)))
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1236 : (lose >= 0x20 && lose < 0x7f))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1237 && (XFASTINT (XWINDOW (selected_window)->last_modified)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1238 >= MODIFF)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1239 && (XFASTINT (XWINDOW (selected_window)->last_point)
7427
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1240 == PT - 1)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1241 && !windows_or_buffers_changed
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1242 && EQ (current_buffer->selective_display, Qnil)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1243 && !detect_input_pending ()
13329
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
1244 && NILP (Vcolumn_number_mode)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1245 && NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1246 no_redisplay = direct_output_forward_char (1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1247 goto directly_done;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1248 }
7427
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1249 else if (EQ (this_command, Qbackward_char) && PT > BEGV)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1250 {
13189
104d1e97803c (command_loop_1): Access display tables as char-tables.
Richard M. Stallman <rms@gnu.org>
parents: 13108
diff changeset
1251 struct Lisp_Char_Table *dp
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1252 = window_display_table (XWINDOW (selected_window));
7427
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1253 SET_PT (PT - 1);
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1254 lose = FETCH_CHAR (PT);
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1255 if ((dp
7532
996928472982 (command_loop_1): Fix test for valid display table entry,
Richard M. Stallman <rms@gnu.org>
parents: 7502
diff changeset
1256 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
8238
3b4a76dcecf6 (command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents: 8169
diff changeset
1257 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
3b4a76dcecf6 (command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents: 8169
diff changeset
1258 : (NILP (DISP_CHAR_VECTOR (dp, lose))
3b4a76dcecf6 (command_loop_1): Do direct output for cursor motion
Richard M. Stallman <rms@gnu.org>
parents: 8169
diff changeset
1259 && (lose >= 0x20 && lose < 0x7f)))
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1260 : (lose >= 0x20 && lose < 0x7f))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1261 && (XFASTINT (XWINDOW (selected_window)->last_modified)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1262 >= MODIFF)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1263 && (XFASTINT (XWINDOW (selected_window)->last_point)
7427
2ea6fdd2dacf Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 7396
diff changeset
1264 == PT + 1)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1265 && !windows_or_buffers_changed
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1266 && EQ (current_buffer->selective_display, Qnil)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1267 && !detect_input_pending ()
13329
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
1268 && NILP (Vcolumn_number_mode)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1269 && NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1270 no_redisplay = direct_output_forward_char (-1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1271 goto directly_done;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1272 }
2924
6e233798a3f7 (read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents: 2898
diff changeset
1273 else if (EQ (this_command, Qself_insert_command)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1274 /* Try this optimization only on ascii keystrokes. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1275 && INTEGERP (last_command_char))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1276 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1277 unsigned char c = XINT (last_command_char);
8089
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1278 int value;
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1279
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1280 if (NILP (Vexecuting_macro)
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1281 && !EQ (minibuf_window, selected_window))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1282 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1283 if (!nonundocount || nonundocount >= 20)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1284 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1285 Fundo_boundary ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1286 nonundocount = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1287 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1288 nonundocount++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1289 }
8089
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1290 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1291 < MODIFF)
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1292 || (XFASTINT (XWINDOW (selected_window)->last_point)
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1293 != PT)
10309
fe2243b3186b Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents: 10275
diff changeset
1294 || MODIFF <= SAVE_MODIFF
8089
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1295 || windows_or_buffers_changed
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1296 || !EQ (current_buffer->selective_display, Qnil)
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1297 || detect_input_pending ()
13329
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
1298 || !NILP (Vcolumn_number_mode)
8089
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1299 || !NILP (Vexecuting_macro));
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1300 value = internal_self_insert (c, 0);
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1301 if (value)
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1302 lose = 1;
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1303 if (value == 2)
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1304 nonundocount = 0;
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1305
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1306 if (!lose
df2986993482 (command_loop_1): Don't clear nonundocount
Richard M. Stallman <rms@gnu.org>
parents: 8076
diff changeset
1307 && (PT == ZV || FETCH_CHAR (PT) == '\n'))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1308 {
13189
104d1e97803c (command_loop_1): Access display tables as char-tables.
Richard M. Stallman <rms@gnu.org>
parents: 13108
diff changeset
1309 struct Lisp_Char_Table *dp
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1310 = window_display_table (XWINDOW (selected_window));
3677
597bde558c91 (read_char): Set c properly as a Lisp int.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1311 int lose = c;
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1312
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1313 if (dp)
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1314 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
1315 Lisp_Object obj;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
1316
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
1317 obj = DISP_CHAR_VECTOR (dp, lose);
7787
add6e866d6a2 (command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents: 7758
diff changeset
1318 if (NILP (obj))
7828
cfe470ebd714 (command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents: 7807
diff changeset
1319 {
cfe470ebd714 (command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents: 7807
diff changeset
1320 /* Do it only for char codes
cfe470ebd714 (command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents: 7807
diff changeset
1321 that by default display as themselves. */
cfe470ebd714 (command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents: 7807
diff changeset
1322 if (lose >= 0x20 && lose <= 0x7e)
cfe470ebd714 (command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents: 7807
diff changeset
1323 no_redisplay = direct_output_for_insert (lose);
cfe470ebd714 (command_loop_1): Treat nil in display tab like no display tab.
Richard M. Stallman <rms@gnu.org>
parents: 7807
diff changeset
1324 }
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1325 else if (VECTORP (obj)
7787
add6e866d6a2 (command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents: 7758
diff changeset
1326 && XVECTOR (obj)->size == 1
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1327 && (obj = XVECTOR (obj)->contents[0],
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1328 INTEGERP (obj))
7787
add6e866d6a2 (command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents: 7758
diff changeset
1329 /* Insist face not specified in glyph. */
add6e866d6a2 (command_loop_1): Properly handle nil in display table.
Richard M. Stallman <rms@gnu.org>
parents: 7758
diff changeset
1330 && (XINT (obj) & ((-1) << 8)) == 0)
7758
ce538d63b1e9 (command_loop_1): Allow direct output for insert
Richard M. Stallman <rms@gnu.org>
parents: 7727
diff changeset
1331 no_redisplay
ce538d63b1e9 (command_loop_1): Allow direct output for insert
Richard M. Stallman <rms@gnu.org>
parents: 7727
diff changeset
1332 = direct_output_for_insert (XINT (obj));
2097
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1333 }
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1334 else
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1335 {
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1336 if (lose >= 0x20 && lose <= 0x7e)
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1337 no_redisplay = direct_output_for_insert (lose);
dd4410e55081 * keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents: 2061
diff changeset
1338 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1339 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1340 goto directly_done;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1341 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1342 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1343
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1344 /* Here for a command that isn't executed directly */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1345
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1346 nonundocount = 0;
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
1347 if (NILP (current_kboard->Vprefix_arg))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1348 Fundo_boundary ();
13309
499e9df6c0f6 (Fcommand_execute): New arg KEYS. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 13290
diff changeset
1349 Fcommand_execute (this_command, Qnil, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1350
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1351 }
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
1352 directly_done: ;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1353
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1354 /* Note that the value cell will never directly contain nil
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1355 if the symbol is a local variable. */
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
1356 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1357 safe_run_hooks (Qpost_command_hook);
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1358
8302
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
1359 if (!NILP (Vdeferred_action_list))
10070
def41008c136 (command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents: 10060
diff changeset
1360 safe_run_hooks (Qdeferred_action_function);
8302
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
1361
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
1362 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1363 {
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1364 if (NILP (Vunread_command_events)
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1365 && NILP (Vexecuting_macro)
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1366 && !NILP (sit_for (0, post_command_idle_delay, 0, 1)))
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1367 safe_run_hooks (Qpost_command_idle_hook);
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1368 }
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
1369
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1370 /* If there is a prefix argument,
12160
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
1371 1) We don't want Vlast_command to be ``universal-argument''
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
1372 (that would be dumb), so don't set Vlast_command,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1373 2) we want to leave echoing on so that the prefix will be
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1374 echoed as part of this key sequence, so don't call
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1375 cancel_echoing, and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1376 3) we want to leave this_command_key_count non-zero, so that
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1377 read_char will realize that it is re-reading a character, and
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
1378 not echo it a second time.
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
1379
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
1380 If the command didn't actually create a prefix arg,
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
1381 but is merely a frame event that is transparent to prefix args,
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
1382 then the above doesn't apply. */
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
1383 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1384 {
12160
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
1385 current_kboard->Vlast_command = this_command;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1386 cancel_echoing ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1387 this_command_key_count = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1388 }
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1389
6208
db4139d43f8a (command_loop_1, read_key_sequence, Fcommand_execute):
Richard M. Stallman <rms@gnu.org>
parents: 6204
diff changeset
1390 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1391 {
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1392 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1393 {
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1394 current_buffer->mark_active = Qnil;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1395 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1396 }
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1397 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1398 call1 (Vrun_hooks, intern ("activate-mark-hook"));
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1399 }
10626
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1400
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1401 finalize:
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1402 /* Install chars successfully executed in kbd macro. */
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1403
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
1404 if (!NILP (current_kboard->defining_kbd_macro)
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
1405 && NILP (current_kboard->Vprefix_arg))
10626
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1406 finalize_kbd_macro_chars ();
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1407
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1408 #ifdef MULTI_KBOARD
10827
4dfd3634b155 (unlock_display): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10820
diff changeset
1409 if (!was_locked)
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1410 any_kboard_state ();
10626
616345f74278 (cmd_error): Clear prefix arg here.
Karl Heuer <kwzh@gnu.org>
parents: 10602
diff changeset
1411 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1412 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1413 }
7428
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1414
11540
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1415 /* Subroutine for safe_run_hooks: run the hook HOOK. */
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1416
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1417 static Lisp_Object
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1418 safe_run_hooks_1 (hook)
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1419 Lisp_Object hook;
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1420 {
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1421 return call1 (Vrun_hooks, Vinhibit_quit);
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1422 }
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1423
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1424 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1425
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1426 static Lisp_Object
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1427 safe_run_hooks_error (data)
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1428 Lisp_Object data;
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1429 {
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1430 Fset (Vinhibit_quit, Qnil);
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1431 }
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1432
7428
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1433 /* If we get an error while running the hook, cause the hook variable
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1434 to be nil. Also inhibit quits, so that C-g won't cause the hook
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1435 to mysteriously evaporate. */
11540
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1436
13082
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
1437 void
7428
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1438 safe_run_hooks (hook)
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
1439 Lisp_Object hook;
7428
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1440 {
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
1441 Lisp_Object value;
7428
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1442 int count = specpdl_ptr - specpdl;
11540
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1443 specbind (Qinhibit_quit, hook);
b8b8a11a1aed (safe_run_hooks_1, safe_run_hooks_error): New subroutines.
Richard M. Stallman <rms@gnu.org>
parents: 11484
diff changeset
1444
14219
22324381ef74 (safe_run_hooks): Use Qt, not Qerror, to avoid running the debugger.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
1445 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
7428
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1446
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1447 unbind_to (count, Qnil);
e14086d8ba6f (safe_run_hooks): New function, extracted from command_loop_1. Bind
Karl Heuer <kwzh@gnu.org>
parents: 7427
diff changeset
1448 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1449
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1450 /* Number of seconds between polling for input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1451 int polling_period;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1452
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3538
diff changeset
1453 /* Nonzero means polling for input is temporarily suppressed. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1454 int poll_suppress_count;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1455
8653
07cc798f5cab (polling_for_input): Define var unconditionally.
Richard M. Stallman <rms@gnu.org>
parents: 8589
diff changeset
1456 /* Nonzero if polling_for_input is actually being used. */
07cc798f5cab (polling_for_input): Define var unconditionally.
Richard M. Stallman <rms@gnu.org>
parents: 8589
diff changeset
1457 int polling_for_input;
07cc798f5cab (polling_for_input): Define var unconditionally.
Richard M. Stallman <rms@gnu.org>
parents: 8589
diff changeset
1458
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1459 #ifdef POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1461 /* Handle an alarm once each second and read pending input
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1462 so as to handle a C-g if it comces in. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1463
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1464 SIGTYPE
10746
ea87e4d9c8ea (input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents: 10701
diff changeset
1465 input_poll_signal (signalnum) /* If we don't have an argument, */
ea87e4d9c8ea (input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents: 10701
diff changeset
1466 int signalnum; /* some compilers complain in signal calls. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1467 {
2439
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
1468 if (interrupt_input_blocked == 0
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
1469 && !waiting_for_input)
b6c62e4abf59 Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents: 2436
diff changeset
1470 read_avail_input (0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1471 signal (SIGALRM, input_poll_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1472 alarm (polling_period);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1473 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1474
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1475 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1476
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1477 /* Begin signals to poll for input, if they are appropriate.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1478 This function is called unconditionally from various places. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1479
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1480 start_polling ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1481 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1482 #ifdef POLL_FOR_INPUT
4471
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
1483 if (read_socket_hook && !interrupt_input)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1484 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1485 poll_suppress_count--;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1486 if (poll_suppress_count == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1487 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1488 signal (SIGALRM, input_poll_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1489 polling_for_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1490 alarm (polling_period);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1491 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1492 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1493 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1494 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1495
8673
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1496 /* Nonzero if we are using polling to handle input asynchronously. */
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1497
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1498 int
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1499 input_polling_used ()
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1500 {
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1501 #ifdef POLL_FOR_INPUT
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1502 return read_socket_hook && !interrupt_input;
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1503 #else
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1504 return 0;
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1505 #endif
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1506 }
6d1d308ff12d (input_polling_used): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8653
diff changeset
1507
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1508 /* Turn off polling. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1509
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1510 stop_polling ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1511 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1512 #ifdef POLL_FOR_INPUT
4471
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
1513 if (read_socket_hook && !interrupt_input)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1514 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1515 if (poll_suppress_count == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1516 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1517 polling_for_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1518 alarm (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1519 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1520 poll_suppress_count++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1521 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1522 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1523 }
4475
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1524
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1525 /* Set the value of poll_suppress_count to COUNT
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1526 and start or stop polling accordingly. */
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1527
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1528 void
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1529 set_poll_suppress_count (count)
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1530 int count;
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1531 {
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1532 #ifdef POLL_FOR_INPUT
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1533 if (count == 0 && poll_suppress_count != 0)
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1534 {
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1535 poll_suppress_count = 1;
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1536 start_polling ();
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1537 }
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1538 else if (count != 0 && poll_suppress_count == 0)
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1539 {
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1540 stop_polling ();
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1541 }
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1542 poll_suppress_count = count;
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1543 #endif
e9389ba6e04c (set_poll_suppress_count): New function.
Richard M. Stallman <rms@gnu.org>
parents: 4471
diff changeset
1544 }
7487
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1545
7502
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1546 /* Bind polling_period to a value at least N.
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1547 But don't decrease it. */
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1548
7487
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1549 bind_polling_period (n)
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1550 int n;
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1551 {
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1552 #ifdef POLL_FOR_INPUT
7502
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1553 int new = polling_period;
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1554
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1555 if (n > new)
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1556 new = n;
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1557
7487
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1558 stop_polling ();
7502
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1559 specbind (Qpolling_period, make_number (new));
30ce667c8026 (bind_polling_period): Never decrease polling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7500
diff changeset
1560 /* Start a new alarm with the new period. */
7487
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1561 start_polling ();
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1562 #endif
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
1563 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1564
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
1565 /* Apply the control modifier to CHARACTER. */
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
1566
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1567 int
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1568 make_ctrl_char (c)
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1569 int c;
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1570 {
2954
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1571 /* Save the upper bits here. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1572 int upper = c & ~0177;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1573
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1574 c &= 0177;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1575
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1576 /* Everything in the columns containing the upper-case letters
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1577 denotes a control character. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1578 if (c >= 0100 && c < 0140)
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1579 {
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1580 int oc = c;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1581 c &= ~0140;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1582 /* Set the shift modifier for a control char
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1583 made from a shifted letter. But only for letters! */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1584 if (oc >= 'A' && oc <= 'Z')
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1585 c |= shift_modifier;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1586 }
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1587
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1588 /* The lower-case letters denote control characters too. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1589 else if (c >= 'a' && c <= 'z')
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1590 c &= ~0140;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1591
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1592 /* Include the bits for control and shift
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1593 only if the basic ASCII code can't indicate them. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1594 else if (c >= ' ')
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1595 c |= ctrl_modifier;
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1596
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1597 /* Replace the high bits. */
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
1598 c |= (upper & ~ctrl_modifier);
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1599
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1600 return c;
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1601 }
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1602
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1603
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
1604
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1605 /* Input of single characters from keyboard */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1606
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1607 Lisp_Object print_help ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1608 static Lisp_Object kbd_buffer_get_event ();
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
1609 static void record_char ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1610
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1611 #ifdef MULTI_KBOARD
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1612 static jmp_buf wrong_kboard_jmpbuf;
10820
5bef43a53c01 (display_locked): New var to indicate when we're in the run state.
Karl Heuer <kwzh@gnu.org>
parents: 10800
diff changeset
1613 #endif
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
1614
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1615 /* read a character from the keyboard; call the redisplay if needed */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1616 /* commandflag 0 means do not do auto-saving, but do do redisplay.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1617 -1 means do not do redisplay, but do do autosaving.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1618 1 means do both. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1619
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1620 /* The arguments MAPS and NMAPS are for menu prompting.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1621 MAPS is an array of keymaps; NMAPS is the length of MAPS.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1622
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1623 PREV_EVENT is the previous input event, or nil if we are reading
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1624 the first event of a key sequence.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1625
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
1626 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
1627 if we used a mouse menu to read the input, or zero otherwise. If
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
1628 USED_MOUSE_MENU is null, we don't dereference it.
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1629
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
1630 Value is t if we showed a menu and the user rejected it. */
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1631
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1632 Lisp_Object
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1633 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1634 int commandflag;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1635 int nmaps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1636 Lisp_Object *maps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1637 Lisp_Object prev_event;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1638 int *used_mouse_menu;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1639 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1640 register Lisp_Object c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1641 int count;
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1642 jmp_buf local_getcjmp;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1643 jmp_buf save_jump;
8994
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
1644 int key_already_recorded = 0;
12476
5518def44198 (read_char): Temporarily clear Vquit_flag
Richard M. Stallman <rms@gnu.org>
parents: 12469
diff changeset
1645 Lisp_Object tem, save;
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
1646 Lisp_Object also_record;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
1647 also_record = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1648
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1649 before_command_key_count = this_command_key_count;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1650 before_command_echo_length = echo_length ();
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1651
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
1652 retry:
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
1653
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1654 if (CONSP (Vunread_command_events))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1655 {
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1656 c = XCONS (Vunread_command_events)->car;
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1657 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1658
13638
eae7f6d657be (read_char): Handle unread events from popup menus.
Richard M. Stallman <rms@gnu.org>
parents: 13582
diff changeset
1659 /* Undo what read_char_x_menu_prompt did when it unread
eae7f6d657be (read_char): Handle unread events from popup menus.
Richard M. Stallman <rms@gnu.org>
parents: 13582
diff changeset
1660 additional keys returned by Fx_popup_menu. */
eae7f6d657be (read_char): Handle unread events from popup menus.
Richard M. Stallman <rms@gnu.org>
parents: 13582
diff changeset
1661 if (CONSP (c)
eae7f6d657be (read_char): Handle unread events from popup menus.
Richard M. Stallman <rms@gnu.org>
parents: 13582
diff changeset
1662 && (SYMBOLP (XCONS (c)->car) || INTEGERP (XCONS (c)->car))
eae7f6d657be (read_char): Handle unread events from popup menus.
Richard M. Stallman <rms@gnu.org>
parents: 13582
diff changeset
1663 && NILP (XCONS (c)->cdr))
eae7f6d657be (read_char): Handle unread events from popup menus.
Richard M. Stallman <rms@gnu.org>
parents: 13582
diff changeset
1664 c = XCONS (c)->car;
eae7f6d657be (read_char): Handle unread events from popup menus.
Richard M. Stallman <rms@gnu.org>
parents: 13582
diff changeset
1665
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1666 if (this_command_key_count == 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1667 goto reread_first;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1668 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1669 goto reread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1670 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1671
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1672 if (unread_command_char != -1)
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1673 {
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
1674 XSETINT (c, unread_command_char);
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1675 unread_command_char = -1;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1676
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1677 if (this_command_key_count == 0)
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1678 goto reread_first;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1679 else
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1680 goto reread;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1681 }
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1682
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1683 /* If there is no function key translated before
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1684 reset-this-command-lengths takes effect, forget about it. */
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1685 before_command_restore_flag = 0;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
1686
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1687 if (!NILP (Vexecuting_macro))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1688 {
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1689 #ifdef MULTI_FRAME
1239
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1690 /* We set this to Qmacro; since that's not a frame, nobody will
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1691 try to switch frames on us, and the selected window will
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1692 remain unchanged.
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1693
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1694 Since this event came from a macro, it would be misleading to
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3538
diff changeset
1695 leave internal_last_event_frame set to wherever the last
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1696 real event came from. Normally, a switch-frame event selects
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1697 internal_last_event_frame after each command is read, but
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1698 events read from a macro should never cause a new frame to be
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
1699 selected. */
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1700 Vlast_event_frame = internal_last_event_frame = Qmacro;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1701 #endif
1239
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
1702
2719
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
1703 /* Exit the macro if we are at the end.
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
1704 Also, some things replace the macro with t
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
1705 to force an early exit. */
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
1706 if (EQ (Vexecuting_macro, Qt)
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
1707 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1708 {
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
1709 XSETINT (c, -1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1710 return c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1711 }
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1712
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1713 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1714 if (STRINGP (Vexecuting_macro)
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1715 && (XINT (c) & 0x80))
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
1716 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
1717
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1718 executing_macro_index++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1719
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1720 goto from_macro;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1721 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1722
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1723 if (!NILP (unread_switch_frame))
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1724 {
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1725 c = unread_switch_frame;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1726 unread_switch_frame = Qnil;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1727
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1728 /* This event should make it into this_command_keys, and get echoed
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
1729 again, so we go to reread_first, rather than reread. */
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
1730 goto reread_first;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1731 }
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
1732
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1733 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1734 redisplay ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1735
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1736 /* Message turns off echoing unless more keystrokes turn it on again. */
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1737 if (echo_area_glyphs && *echo_area_glyphs
13267
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
1738 && echo_area_glyphs != current_kboard->echobuf
13290
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
1739 && ok_to_echo_at_next_pause != echo_area_glyphs)
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1740 cancel_echoing ();
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1741 else
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1742 /* If already echoing, continue. */
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1743 echo_dash ();
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1744
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1745 /* Try reading a character via menu prompting in the minibuf.
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1746 Try this before the sit-for, because the sit-for
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1747 would do the wrong thing if we are supposed to do
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1748 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1749 after a mouse event so don't try a minibuf menu. */
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1750 c = Qnil;
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1751 if (nmaps > 0 && INTERACTIVE
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1752 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1753 /* Don't bring up a menu if we already have another event. */
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1754 && NILP (Vunread_command_events)
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1755 && unread_command_char < 0
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1756 && !detect_input_pending ())
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1757 {
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1758 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1759 if (! NILP (c))
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1760 {
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1761 key_already_recorded = 1;
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1762 goto non_reread_1;
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1763 }
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1764 }
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1765
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1766 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1767 We will do that below, temporarily for short sections of code,
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1768 when appropriate. local_getcjmp must be in effect
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1769 around any call to sit_for or kbd_buffer_get_event;
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1770 it *must not* be in effect when we call redisplay. */
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1771
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1772 if (_setjmp (local_getcjmp))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1773 {
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
1774 XSETINT (c, quit_char);
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1775 #ifdef MULTI_FRAME
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1776 XSETFRAME (internal_last_event_frame, selected_frame);
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1777 Vlast_event_frame = internal_last_event_frame;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
1778 #endif
2434
39c696510c64 (read_char): Clear Vquit_flag when we return C-g for it.
Richard M. Stallman <rms@gnu.org>
parents: 2406
diff changeset
1779 /* If we report the quit char as an event,
39c696510c64 (read_char): Clear Vquit_flag when we return C-g for it.
Richard M. Stallman <rms@gnu.org>
parents: 2406
diff changeset
1780 don't do so more than once. */
39c696510c64 (read_char): Clear Vquit_flag when we return C-g for it.
Richard M. Stallman <rms@gnu.org>
parents: 2406
diff changeset
1781 if (!NILP (Vinhibit_quit))
39c696510c64 (read_char): Clear Vquit_flag when we return C-g for it.
Richard M. Stallman <rms@gnu.org>
parents: 2406
diff changeset
1782 Vquit_flag = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1783
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1784 #ifdef MULTI_KBOARD
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1785 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1786 KBOARD *kb = FRAME_KBOARD (selected_frame);
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1787 if (kb != current_kboard)
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1788 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1789 Lisp_Object *tailp = &kb->kbd_queue;
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1790 /* We shouldn't get here if we were in single-kboard mode! */
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1791 if (single_kboard)
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1792 abort ();
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1793 while (CONSP (*tailp))
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1794 tailp = &XCONS (*tailp)->cdr;
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1795 if (!NILP (*tailp))
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1796 abort ();
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1797 *tailp = Fcons (c, Qnil);
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1798 kb->kbd_queue_has_data = 1;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1799 current_kboard = kb;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1800 longjmp (wrong_kboard_jmpbuf, 1);
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1801 }
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1802 }
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1803 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1804 goto non_reread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1805 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1806
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1807 /* If in middle of key sequence and minibuffer not active,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1808 start echoing if enough time elapses. */
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1809
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1810 if (minibuf_level == 0 && !current_kboard->immediate_echo
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
1811 && this_command_key_count > 0
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
1812 && ! noninteractive
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1813 && echo_keystrokes > 0
13267
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
1814 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0
13290
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
1815 || ok_to_echo_at_next_pause == echo_area_glyphs))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1816 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1817 Lisp_Object tem0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1818
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1819 /* After a mouse event, start echoing right away.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1820 This is because we are probably about to display a menu,
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1821 and we don't want to delay before doing so. */
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
1822 if (EVENT_HAS_PARAMETERS (prev_event))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1823 echo ();
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1824 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1825 {
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1826 save_getcjmp (save_jump);
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1827 restore_getcjmp (local_getcjmp);
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1828 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1829 restore_getcjmp (save_jump);
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1830 if (EQ (tem0, Qt))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1831 echo ();
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1832 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1833 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1834
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1835 /* Maybe auto save due to number of keystrokes. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1836
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1837 if (commandflag != 0
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1838 && auto_save_interval > 0
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
1839 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1840 && !detect_input_pending ())
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1841 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1842 Fdo_auto_save (Qnil, Qnil);
10147
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
1843 /* Hooks can actually change some buffers in auto save. */
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
1844 redisplay ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1845 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1846
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
1847 /* Try reading using an X menu.
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1848 This is never confused with reading using the minibuf
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1849 because the recursive call of read_char in read_char_minibuf_menu_prompt
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1850 does not pass on any keymaps. */
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1851
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1852 if (nmaps > 0 && INTERACTIVE
11613
c4ef6460a9c9 (read_char, read_char_x_menu_prompt): Exclude
Karl Heuer <kwzh@gnu.org>
parents: 11543
diff changeset
1853 && !NILP (prev_event)
c4ef6460a9c9 (read_char, read_char_x_menu_prompt): Exclude
Karl Heuer <kwzh@gnu.org>
parents: 11543
diff changeset
1854 && EVENT_HAS_PARAMETERS (prev_event)
c4ef6460a9c9 (read_char, read_char_x_menu_prompt): Exclude
Karl Heuer <kwzh@gnu.org>
parents: 11543
diff changeset
1855 && !EQ (XCONS (prev_event)->car, Qmenu_bar)
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1856 /* Don't bring up a menu if we already have another event. */
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
1857 && NILP (Vunread_command_events)
7396
3774d6d8a5ee (read_char): Don't text do_mouse_tracking;
Richard M. Stallman <rms@gnu.org>
parents: 7351
diff changeset
1858 && unread_command_char < 0)
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
1859 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1860
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1861 /* Maybe autosave and/or garbage collect due to idleness. */
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1862
3920
81d29cf5b232 * keyboard.c (read_char): Don't do idle autosaves if we're not
Jim Blandy <jimb@redhat.com>
parents: 3887
diff changeset
1863 if (INTERACTIVE && NILP (c))
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1864 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1865 int delay_level, buffer_size;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1866
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1867 /* Slow down auto saves logarithmically in size of current buffer,
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1868 and garbage collect while we're at it. */
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1869 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1870 last_non_minibuf_size = Z - BEG;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1871 buffer_size = (last_non_minibuf_size >> 8) + 1;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1872 delay_level = 0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1873 while (buffer_size > 64)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1874 delay_level++, buffer_size -= buffer_size >> 2;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1875 if (delay_level < 4) delay_level = 4;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1876 /* delay_level is 4 for files under around 50k, 7 at 100k,
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1877 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1878
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1879 /* Auto save if enough time goes by without input. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1880 if (commandflag != 0
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
1881 && num_nonmacro_input_chars > last_auto_save
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1882 && INTEGERP (Vauto_save_timeout)
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1883 && XINT (Vauto_save_timeout) > 0)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1884 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1885 Lisp_Object tem0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1886 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4;
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1887
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1888 save_getcjmp (save_jump);
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1889 restore_getcjmp (local_getcjmp);
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1890 tem0 = sit_for (delay, 0, 1, 1);
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1891 restore_getcjmp (save_jump);
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1892
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1893 if (EQ (tem0, Qt))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1894 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1895 Fdo_auto_save (Qnil, Qnil);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1896
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1897 /* If we have auto-saved and there is still no input
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1898 available, garbage collect if there has been enough
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1899 consing going on to make it worthwhile. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1900 if (!detect_input_pending ()
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1901 && consing_since_gc > gc_cons_threshold / 2)
10147
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
1902 Fgarbage_collect ();
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1903
10147
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
1904 redisplay ();
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1905 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1906 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
1907 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1908
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1909 /* Read something from current KBOARD's side queue, if possible. */
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1910
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
1911 if (NILP (c))
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1912 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1913 if (current_kboard->kbd_queue_has_data)
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
1914 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1915 if (!CONSP (current_kboard->kbd_queue))
10945
dbf1aab47502 (unlock_display): If adding to kbd_queue, set kbd_queue_has_data.
Karl Heuer <kwzh@gnu.org>
parents: 10939
diff changeset
1916 abort ();
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1917 c = XCONS (current_kboard->kbd_queue)->car;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1918 current_kboard->kbd_queue
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1919 = XCONS (current_kboard->kbd_queue)->cdr;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1920 if (NILP (current_kboard->kbd_queue))
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1921 current_kboard->kbd_queue_has_data = 0;
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1922 input_pending = readable_events ();
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1923 #ifdef MULTI_FRAME
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1924 if (EVENT_HAS_PARAMETERS (c)
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1925 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1926 internal_last_event_frame = XCONS (XCONS (c)->cdr)->car;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1927 Vlast_event_frame = internal_last_event_frame;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
1928 #endif
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
1929 }
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1930 }
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1931
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1932 #ifdef MULTI_KBOARD
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1933 /* If current_kboard's side queue is empty check the other kboards.
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1934 If one of them has data that we have not yet seen here,
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1935 switch to it and process the data waiting for it.
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1936
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1937 Note: if the events queued up for another kboard
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1938 have already been seen here, and therefore are not a complete command,
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1939 the kbd_queue_has_data field is 0, so we skip that kboard here.
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1940 That's to avoid an infinite loop switching between kboards here. */
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1941 if (NILP (c) && !single_kboard)
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1942 {
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1943 KBOARD *kb;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1944 for (kb = all_kboards; kb; kb = kb->next_kboard)
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1945 if (kb->kbd_queue_has_data)
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1946 {
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1947 current_kboard = kb;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1948 longjmp (wrong_kboard_jmpbuf, 1);
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1949 }
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1950 }
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1951 #endif
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1952
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1953 wrong_kboard:
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1954
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1955 stop_polling ();
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1956
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1957 /* Finally, we read from the main queue,
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1958 and if that gives us something we can't use yet, we put it on the
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1959 appropriate side queue and try again. */
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1960
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1961 if (NILP (c))
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1962 {
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1963 KBOARD *kb;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1964
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1965 /* Actually read a character, waiting if necessary. */
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1966 save_getcjmp (save_jump);
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1967 restore_getcjmp (local_getcjmp);
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
1968 c = kbd_buffer_get_event (&kb, used_mouse_menu);
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1969 restore_getcjmp (save_jump);
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1970
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
1971 #ifdef MULTI_KBOARD
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
1972 if (! NILP (c) && (kb != current_kboard))
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1973 {
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1974 Lisp_Object *tailp = &kb->kbd_queue;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1975 while (CONSP (*tailp))
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1976 tailp = &XCONS (*tailp)->cdr;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1977 if (!NILP (*tailp))
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1978 abort ();
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1979 *tailp = Fcons (c, Qnil);
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1980 kb->kbd_queue_has_data = 1;
11763
fc2a3a312e98 [MULTI_KBOARD] (read_char): If the character was for
Karl Heuer <kwzh@gnu.org>
parents: 11755
diff changeset
1981 c = Qnil;
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1982 if (single_kboard)
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1983 goto wrong_kboard;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1984 current_kboard = kb;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1985 longjmp (wrong_kboard_jmpbuf, 1);
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1986 }
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
1987 #endif
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
1988 }
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
1989
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1990 /* Terminate Emacs in batch mode if at eof. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1991 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1992 Fkill_emacs (make_number (1));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1993
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
1994 if (INTEGERP (c))
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1995 {
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1996 /* Add in any extra modifiers, where appropriate. */
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1997 if ((extra_keyboard_modifiers & CHAR_CTL)
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1998 || ((extra_keyboard_modifiers & 0177) < ' '
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
1999 && (extra_keyboard_modifiers & 0177) != 0))
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
2000 XSETINT (c, make_ctrl_char (XINT (c)));
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2001
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2002 /* Transfer any other modifier bits directly from
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2003 extra_keyboard_modifiers to c. Ignore the actual character code
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2004 in the low 16 bits of extra_keyboard_modifiers. */
3677
597bde558c91 (read_char): Set c properly as a Lisp int.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
2005 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2006 }
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
2007
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2008 non_reread:
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2009
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2010 start_polling ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2011
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2012 if (NILP (c))
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2013 {
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2014 if (commandflag >= 0
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2015 && !input_pending && !detect_input_pending ())
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2016 redisplay ();
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2017
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2018 goto wrong_kboard;
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2019 }
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2020
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2021 non_reread_1:
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2022
8569
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2023 /* Buffer switch events are only for internal wakeups
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2024 so don't show them to the user. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
2025 if (BUFFERP (c))
8569
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2026 return c;
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2027
8994
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
2028 if (key_already_recorded)
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
2029 return c;
818bddaf3e03 (cmd_error_internal): New function, broken out of cmd_error.
Richard M. Stallman <rms@gnu.org>
parents: 8938
diff changeset
2030
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2031 /* Process special events within read_char
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2032 and loop around to read another event. */
12476
5518def44198 (read_char): Temporarily clear Vquit_flag
Richard M. Stallman <rms@gnu.org>
parents: 12469
diff changeset
2033 save = Vquit_flag;
5518def44198 (read_char): Temporarily clear Vquit_flag
Richard M. Stallman <rms@gnu.org>
parents: 12469
diff changeset
2034 Vquit_flag = Qnil;
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2035 tem = get_keyelt (access_keymap (get_keymap_1 (Vspecial_event_map, 0, 0),
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2036 c, 0, 0), 1);
12476
5518def44198 (read_char): Temporarily clear Vquit_flag
Richard M. Stallman <rms@gnu.org>
parents: 12469
diff changeset
2037 Vquit_flag = save;
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2038
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2039 if (!NILP (tem))
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2040 {
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2041 last_input_char = c;
13309
499e9df6c0f6 (Fcommand_execute): New arg KEYS. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 13290
diff changeset
2042 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char));
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2043 goto retry;
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2044 }
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
2045
8569
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2046 /* Wipe the echo area. */
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2047 echo_area_glyphs = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2048
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2049 /* Handle things that only apply to characters. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
2050 if (INTEGERP (c))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2051 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2052 /* If kbd_buffer_get_event gave us an EOF, return that. */
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2053 if (XINT (c) == -1)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2054 return c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2055
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
2056 if (STRINGP (Vkeyboard_translate_table)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
2057 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c))
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
2058 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
13246
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2059 else if ((VECTORP (Vkeyboard_translate_table)
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2060 && XVECTOR (Vkeyboard_translate_table)->size > XFASTINT (c))
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2061 || CHAR_TABLE_P (Vkeyboard_translate_table))
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2062 {
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2063 Lisp_Object d;
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2064 d = Faref (Vkeyboard_translate_table, c);
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2065 /* nil in keyboard-translate-table means no translation. */
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2066 if (!NILP (d))
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2067 c = d;
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
2068 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2069 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2070
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2071 /* If this event is a mouse click in the menu bar,
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2072 return just menu-bar for now. Modify the mouse click event
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2073 so we won't do this twice, then queue it up. */
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2074 if (EVENT_HAS_PARAMETERS (c)
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2075 && CONSP (XCONS (c)->cdr)
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2076 && CONSP (EVENT_START (c))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2077 && CONSP (XCONS (EVENT_START (c))->cdr))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2078 {
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2079 Lisp_Object posn;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2080
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2081 posn = POSN_BUFFER_POSN (EVENT_START (c));
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2082 /* Handle menu-bar events:
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2083 insert the dummy prefix event `menu-bar'. */
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2084 if (EQ (posn, Qmenu_bar))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2085 {
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2086 /* Change menu-bar to (menu-bar) as the event "position". */
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2087 POSN_BUFFER_POSN (EVENT_START (c)) = Fcons (posn, Qnil);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2088
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2089 also_record = c;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2090 Vunread_command_events = Fcons (c, Vunread_command_events);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2091 c = posn;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2092 }
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2093 }
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2094
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2095 record_char (c);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2096 if (! NILP (also_record))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2097 record_char (also_record);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2098
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2099 from_macro:
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2100 reread_first:
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
2101 before_command_key_count = this_command_key_count;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
2102 before_command_echo_length = echo_length ();
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2103
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2104 /* Don't echo mouse motion events. */
10233
100a10bb4d47 (read_char): Don't echo keys when echo_keystrokes is 0.
Richard M. Stallman <rms@gnu.org>
parents: 10147
diff changeset
2105 if (echo_keystrokes
100a10bb4d47 (read_char): Don't echo keys when echo_keystrokes is 0.
Richard M. Stallman <rms@gnu.org>
parents: 10147
diff changeset
2106 && ! (EVENT_HAS_PARAMETERS (c)
100a10bb4d47 (read_char): Don't echo keys when echo_keystrokes is 0.
Richard M. Stallman <rms@gnu.org>
parents: 10147
diff changeset
2107 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2108 {
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2109 echo_char (c);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2110 if (! NILP (also_record))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2111 echo_char (also_record);
13267
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
2112 /* Once we reread a character, echoing can happen
12d329dd9940 (read_char): If we reread a char, the next pause
Richard M. Stallman <rms@gnu.org>
parents: 13246
diff changeset
2113 the next time we pause to read a new one. */
13290
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
2114 ok_to_echo_at_next_pause = echo_area_glyphs;
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2115 }
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2116
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2117 /* Record this character as part of the current key. */
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2118 add_command_key (c);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2119 if (! NILP (also_record))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2120 add_command_key (also_record);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2121
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2122 /* Re-reading in the middle of a command */
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2123 reread:
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2124 last_input_char = c;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2125 num_input_chars++;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2126
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2127 /* Process the help character specially if enabled */
12144
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2128 if (!NILP (Vhelp_form) && help_char_p (c))
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2129 {
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2130 Lisp_Object tem0;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2131 count = specpdl_ptr - specpdl;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2132
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2133 record_unwind_protect (Fset_window_configuration,
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2134 Fcurrent_window_configuration (Qnil));
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2135
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2136 tem0 = Feval (Vhelp_form);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2137 if (STRINGP (tem0))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2138 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2139
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2140 cancel_echoing ();
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2141 do
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2142 c = read_char (0, 0, 0, Qnil, 0);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2143 while (BUFFERP (c));
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2144 /* Remove the help from the frame */
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2145 unbind_to (count, Qnil);
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2146
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2147 redisplay ();
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2148 if (EQ (c, make_number (040)))
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2149 {
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2150 cancel_echoing ();
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2151 do
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2152 c = read_char (0, 0, 0, Qnil, 0);
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2153 while (BUFFERP (c));
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2154 }
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2155 }
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2156
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2157 return c;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2158 }
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2159
12144
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2160 /* Return 1 if should recognize C as "the help character". */
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2161
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2162 int
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2163 help_char_p (c)
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2164 Lisp_Object c;
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2165 {
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2166 Lisp_Object tail;
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2167
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2168 if (EQ (c, Vhelp_char))
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2169 return 1;
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2170 for (tail = Vhelp_event_list; CONSP (tail); tail = XCONS (tail)->cdr)
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2171 if (EQ (c, XCONS (tail)->car))
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2172 return 1;
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2173 return 0;
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2174 }
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
2175
9689
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2176 /* Record the input event C in various ways. */
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2177
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2178 static void
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2179 record_char (c)
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2180 Lisp_Object c;
fb713e1560d1 (record_char): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents: 9668
diff changeset
2181 {
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2182 total_keys++;
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
2183 XVECTOR (recent_keys)->contents[recent_keys_index] = c;
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
2184 if (++recent_keys_index >= NUM_RECENT_KEYS)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2185 recent_keys_index = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2186
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2187 /* Write c to the dribble file. If c is a lispy event, write
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2188 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2189 If you, dear reader, have a better idea, you've got the source. :-) */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2190 if (dribble)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2191 {
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
2192 if (INTEGERP (c))
8569
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2193 {
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2194 if (XUINT (c) < 0x100)
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2195 putc (XINT (c), dribble);
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2196 else
12087
3bbf71f1cf30 (cmd_error): Use NULL, not 0, as arg to cmd_error_internal.
Karl Heuer <kwzh@gnu.org>
parents: 12007
diff changeset
2197 fprintf (dribble, " 0x%x", (int) XUINT (c));
8569
3a9e9d3df590 (read_char): Don't show buffer-events to the user.
Richard M. Stallman <rms@gnu.org>
parents: 8502
diff changeset
2198 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2199 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2200 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2201 Lisp_Object dribblee;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2202
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2203 /* If it's a structured event, take the event header. */
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2204 dribblee = EVENT_HEAD (c);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2205
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
2206 if (SYMBOLP (dribblee))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2207 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2208 putc ('<', dribble);
1590
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
2209 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
11cd7c23f538 * keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents: 1565
diff changeset
2210 XSYMBOL (dribblee)->name->size,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2211 dribble);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2212 putc ('>', dribble);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2213 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2214 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2215
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2216 fflush (dribble);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2217 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2218
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2219 store_kbd_macro_char (c);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2220
1104
f3a7122a68e1 (num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 1097
diff changeset
2221 num_nonmacro_input_chars++;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2222 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2223
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2224 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2225 print_help (object)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2226 Lisp_Object object;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2227 {
9864
0299d64cdd07 (print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 9840
diff changeset
2228 struct buffer *old = current_buffer;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2229 Fprinc (object, Qnil);
9864
0299d64cdd07 (print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 9840
diff changeset
2230 set_buffer_internal (XBUFFER (Vstandard_output));
0299d64cdd07 (print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 9840
diff changeset
2231 call0 (intern ("help-mode"));
0299d64cdd07 (print_help): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents: 9840
diff changeset
2232 set_buffer_internal (old);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2233 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2234 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2235
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2236 /* Copy out or in the info on where C-g should throw to.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2237 This is used when running Lisp code from within get_char,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2238 in case get_char is called recursively.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2239 See read_process_output. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2240
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2241 save_getcjmp (temp)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2242 jmp_buf temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2243 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2244 bcopy (getcjmp, temp, sizeof getcjmp);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2245 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2246
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2247 restore_getcjmp (temp)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2248 jmp_buf temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2249 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2250 bcopy (temp, getcjmp, sizeof getcjmp);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2251 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2252
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
2253 #ifdef HAVE_MOUSE
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
2254
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2255 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2256 of this function. */
9618
9fe4987e4896 (do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents: 9607
diff changeset
2257
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2258 static Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2259 tracking_off (old_value)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2260 Lisp_Object old_value;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2261 {
9881
02cd4dde69e1 (tracking_off): Test old value with NILP.
Richard M. Stallman <rms@gnu.org>
parents: 9864
diff changeset
2262 do_mouse_tracking = old_value;
02cd4dde69e1 (tracking_off): Test old value with NILP.
Richard M. Stallman <rms@gnu.org>
parents: 9864
diff changeset
2263 if (NILP (old_value))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2264 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2265 /* Redisplay may have been preempted because there was input
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2266 available, and it assumes it will be called again after the
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2267 input has been processed. If the only input available was
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2268 the sort that we have just disabled, then we need to call
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2269 redisplay. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2270 if (!readable_events ())
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2271 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2272 redisplay_preserve_echo_area ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2273 get_input_pending (&input_pending);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2274 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2275 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2276 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2277
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2278 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2279 "Evaluate BODY with mouse movement events enabled.\n\
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2280 Within a `track-mouse' form, mouse motion generates input events that\n\
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2281 you can read with `read-event'.\n\
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2282 Normally, mouse motion is ignored.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2283 (args)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2284 Lisp_Object args;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2285 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2286 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2287 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2288
9618
9fe4987e4896 (do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents: 9607
diff changeset
2289 record_unwind_protect (tracking_off, do_mouse_tracking);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2290
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2291 do_mouse_tracking = Qt;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
2292
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2293 val = Fprogn (args);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2294 return unbind_to (count, val);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2295 }
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
2296
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2297 /* If mouse has moved on some frame, return one of those frames.
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2298 Return 0 otherwise. */
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2299
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2300 static FRAME_PTR
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2301 some_mouse_moved ()
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2302 {
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2303 Lisp_Object tail, frame;
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2304
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2305 FOR_EACH_FRAME (tail, frame)
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2306 {
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2307 if (XFRAME (frame)->mouse_moved)
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2308 return XFRAME (frame);
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2309 }
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2310
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2311 return 0;
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2312 }
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2313
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
2314 #endif /* HAVE_MOUSE */
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2315
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2316 /* Low level keyboard/mouse input.
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2317 kbd_buffer_store_event places events in kbd_buffer, and
13324
cff657a37032 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 13309
diff changeset
2318 kbd_buffer_get_event retrieves them. */
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2319
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2320 /* Return true iff there are any events in the queue that read-char
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2321 would return. If this returns false, a read-char would block. */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2322 static int
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2323 readable_events ()
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2324 {
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2325 if (kbd_fetch_ptr != kbd_store_ptr)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2326 return 1;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2327 #ifdef HAVE_MOUSE
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2328 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2329 return 1;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2330 #endif
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
2331 if (single_kboard)
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2332 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2333 if (current_kboard->kbd_queue_has_data)
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2334 return 1;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2335 }
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2336 else
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2337 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2338 KBOARD *kb;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2339 for (kb = all_kboards; kb; kb = kb->next_kboard)
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2340 if (kb->kbd_queue_has_data)
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2341 return 1;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2342 }
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2343 return 0;
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2344 }
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2345
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2346 /* Set this for debugging, to have a way to get out */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2347 int stop_character;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2348
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2349 #ifdef MULTI_KBOARD
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2350 static KBOARD *
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2351 event_to_kboard (event)
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2352 struct input_event *event;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2353 {
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2354 Lisp_Object frame;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2355 frame = event->frame_or_window;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2356 if (CONSP (frame))
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2357 frame = XCONS (frame)->car;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2358 else if (WINDOWP (frame))
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2359 frame = WINDOW_FRAME (XWINDOW (frame));
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2360
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2361 /* There are still some events that don't set this field.
11167
5ba84aee3999 (event_to_kboard): Ignore dead frames.
Karl Heuer <kwzh@gnu.org>
parents: 11165
diff changeset
2362 For now, just ignore the problem.
5ba84aee3999 (event_to_kboard): Ignore dead frames.
Karl Heuer <kwzh@gnu.org>
parents: 11165
diff changeset
2363 Also ignore dead frames here. */
5ba84aee3999 (event_to_kboard): Ignore dead frames.
Karl Heuer <kwzh@gnu.org>
parents: 11165
diff changeset
2364 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2365 return 0;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2366 else
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2367 return FRAME_KBOARD (XFRAME (frame));
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2368 }
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2369 #endif
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2370
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2371 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2372
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2373 void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2374 kbd_buffer_store_event (event)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2375 register struct input_event *event;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2376 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2377 if (event->kind == no_event)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2378 abort ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2379
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2380 if (event->kind == ascii_keystroke)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2381 {
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2382 register int c = event->code & 0377;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2383
2950
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
2384 if (event->modifiers & ctrl_modifier)
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
2385 c = make_ctrl_char (c);
6dee690ddac5 * keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2924
diff changeset
2386
4282
af81ea5c816e (kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents: 4255
diff changeset
2387 c |= (event->modifiers
af81ea5c816e (kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents: 4255
diff changeset
2388 & (meta_modifier | alt_modifier
af81ea5c816e (kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents: 4255
diff changeset
2389 | hyper_modifier | super_modifier));
af81ea5c816e (kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents: 4255
diff changeset
2390
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
2391 if (c == quit_char)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2392 {
985
952aa214a3d0 * keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents: 966
diff changeset
2393 extern SIGTYPE interrupt_signal ();
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2394 #ifdef MULTI_KBOARD
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2395 KBOARD *kb;
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2396 struct input_event *sp;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2397
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
2398 if (single_kboard
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2399 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2400 kb != current_kboard))
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2401 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2402 kb->kbd_queue
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2403 = Fcons (make_lispy_switch_frame (event->frame_or_window),
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2404 Fcons (make_number (c), Qnil));
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2405 kb->kbd_queue_has_data = 1;
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2406 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2407 {
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2408 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2409 sp = kbd_buffer;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2410
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2411 if (event_to_kboard (sp) == kb)
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2412 {
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2413 sp->kind = no_event;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2414 sp->frame_or_window = Qnil;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2415 }
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2416 }
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2417 return;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2418 }
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2419 #endif
985
952aa214a3d0 * keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents: 966
diff changeset
2420
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
2421 #ifdef MULTI_FRAME
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2422 /* If this results in a quit_char being returned to Emacs as
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2423 input, set Vlast_event_frame properly. If this doesn't
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2424 get returned to Emacs as an event, the next event read
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
2425 will set Vlast_event_frame again, so this is safe to do. */
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2426 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2427 Lisp_Object focus;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2428
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2429 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2430 if (NILP (focus))
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2431 focus = event->frame_or_window;
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2432 internal_last_event_frame = focus;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2433 Vlast_event_frame = focus;
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2434 }
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
2435 #endif
985
952aa214a3d0 * keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents: 966
diff changeset
2436
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
2437 last_event_timestamp = event->timestamp;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2438 interrupt_signal ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2439 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2440 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2441
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2442 if (c && c == stop_character)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2443 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2444 sys_suspend ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2445 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2446 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2447 }
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
2448 /* Don't insert two buffer_switch_event's in a row.
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
2449 Just ignore the second one. */
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
2450 else if (event->kind == buffer_switch_event
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
2451 && kbd_fetch_ptr != kbd_store_ptr
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
2452 && kbd_store_ptr->kind == buffer_switch_event)
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
2453 return;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2454
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2455 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2456 kbd_store_ptr = kbd_buffer;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2457
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2458 /* Don't let the very last slot in the buffer become full,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2459 since that would make the two pointers equal,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2460 and that is indistinguishable from an empty buffer.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2461 Discard the event if it would fill the last slot. */
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2462 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2463 {
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2464 volatile struct input_event *sp = kbd_store_ptr;
10551
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2465 sp->kind = event->kind;
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2466 if (event->kind == selection_request_event)
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2467 {
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2468 /* We must not use the ordinary copying code for this case,
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2469 since `part' is an enum and copying it might not copy enough
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2470 in this case. */
10551
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2471 bcopy (event, (char *) sp, sizeof (*event));
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2472 }
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2473 else
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2474 {
10551
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2475 sp->code = event->code;
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2476 sp->part = event->part;
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2477 sp->frame_or_window = event->frame_or_window;
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2478 sp->modifiers = event->modifiers;
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2479 sp->x = event->x;
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2480 sp->y = event->y;
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
2481 sp->timestamp = event->timestamp;
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
2482 }
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2483 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2484 - kbd_buffer]
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2485 = event->frame_or_window);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2486
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2487 kbd_store_ptr++;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2488 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2489 }
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2490
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2491 /* Read one event from the event buffer, waiting if necessary.
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2492 The value is a Lisp object representing the event.
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2493 The value is nil for an event that should be ignored,
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2494 or that was handled here.
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2495 We always read and discard one event. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2496
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2497 static Lisp_Object
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2498 kbd_buffer_get_event (kbp, used_mouse_menu)
11445
5146afa8e131 (kbd_buffer_get_event): Don't use prototype.
Richard M. Stallman <rms@gnu.org>
parents: 11366
diff changeset
2499 KBOARD **kbp;
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2500 int *used_mouse_menu;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2501 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2502 register int c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2503 Lisp_Object obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2504
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2505 if (noninteractive)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2506 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2507 c = getchar ();
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
2508 XSETINT (obj, c);
11167
5ba84aee3999 (event_to_kboard): Ignore dead frames.
Karl Heuer <kwzh@gnu.org>
parents: 11165
diff changeset
2509 *kbp = current_kboard;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2510 return obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2511 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2512
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2513 /* Wait until there is input available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2514 for (;;)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2515 {
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2516 if (kbd_fetch_ptr != kbd_store_ptr)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2517 break;
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2518 #ifdef HAVE_MOUSE
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2519 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2520 break;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2521 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2522
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2523 /* If the quit flag is set, then read_char will return
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2524 quit_char, so that counts as "available input." */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2525 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2526 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2527
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2528 /* One way or another, wait until input is available; then, if
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2529 interrupt handlers have not read it, read it now. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2530
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2531 #ifdef OLDVMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2532 wait_for_kbd_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2533 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2534 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2535 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2536 gobble_input (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2537 #endif /* SIGIO */
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2538 if (kbd_fetch_ptr != kbd_store_ptr)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2539 break;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2540 #ifdef HAVE_MOUSE
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2541 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2542 break;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2543 #endif
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2544 {
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2545 Lisp_Object minus_one;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2546
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2547 XSETINT (minus_one, -1);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2548 wait_reading_process_input (0, 0, minus_one, 1);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2549
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2550 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2551 /* Pass 1 for EXPECT since we just waited to have input. */
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2552 read_avail_input (1);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2553 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2554 #endif /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2555 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2556
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2557 /* At this point, we know that there is a readable event available
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2558 somewhere. If the event queue is empty, then there must be a
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2559 mouse movement enabled and available. */
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2560 if (kbd_fetch_ptr != kbd_store_ptr)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2561 {
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2562 struct input_event *event;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2563
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2564 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2565 ? kbd_fetch_ptr
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2566 : kbd_buffer);
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2567
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2568 last_event_timestamp = event->timestamp;
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
2569
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2570 #ifdef MULTI_KBOARD
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2571 *kbp = event_to_kboard (event);
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2572 if (*kbp == 0)
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2573 *kbp = current_kboard; /* Better than returning null ptr? */
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2574 #else
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2575 *kbp = &the_only_kboard;
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2576 #endif
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2577
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2578 obj = Qnil;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2579
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2580 /* These two kinds of events get special handling
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2581 and don't actually appear to the command loop.
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2582 We return nil for them. */
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2583 if (event->kind == selection_request_event)
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2584 {
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2585 #ifdef HAVE_X11
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
2586 struct input_event copy;
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
2587
10635
c807d6c947de (kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents: 10626
diff changeset
2588 /* Remove it from the buffer before processing it,
c807d6c947de (kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents: 10626
diff changeset
2589 since otherwise swallow_events will see it
c807d6c947de (kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents: 10626
diff changeset
2590 and process it again. */
11350
2fc5320e4a99 (any_kboard_state): Renamed from unlock_kboard.
Richard M. Stallman <rms@gnu.org>
parents: 11285
diff changeset
2591 copy = *event;
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2592 kbd_fetch_ptr = event + 1;
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2593 input_pending = readable_events ();
10635
c807d6c947de (kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents: 10626
diff changeset
2594 x_handle_selection_request (&copy);
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2595 #else
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2596 /* We're getting selection request events, but we don't have
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2597 a window system. */
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2598 abort ();
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2599 #endif
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2600 }
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2601
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2602 else if (event->kind == selection_clear_event)
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2603 {
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2604 #ifdef HAVE_X11
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2605 struct input_event copy;
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2606
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2607 /* Remove it from the buffer before processing it. */
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2608 copy = *event;
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2609 kbd_fetch_ptr = event + 1;
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2610 input_pending = readable_events ();
12729
21110e58640c (kbd_buffer_get_event, swallow_events): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents: 12712
diff changeset
2611 x_handle_selection_clear (&copy);
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2612 #else
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2613 /* We're getting selection request events, but we don't have
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2614 a window system. */
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2615 abort ();
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
2616 #endif
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2617 }
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2618 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
5133
16fe8285dc2a (kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents: 5078
diff changeset
2619 else if (event->kind == delete_window_event)
16fe8285dc2a (kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents: 5078
diff changeset
2620 {
9215
fa3883c219ea (head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents: 9124
diff changeset
2621 /* Make an event (delete-frame (FRAME)). */
fa3883c219ea (head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents: 9124
diff changeset
2622 obj = Fcons (event->frame_or_window, Qnil);
9729
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2623 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2624 kbd_fetch_ptr = event + 1;
9729
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2625 }
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2626 else if (event->kind == iconify_event)
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2627 {
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2628 /* Make an event (iconify-frame (FRAME)). */
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2629 obj = Fcons (event->frame_or_window, Qnil);
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2630 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2631 kbd_fetch_ptr = event + 1;
9729
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2632 }
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2633 else if (event->kind == deiconify_event)
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2634 {
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2635 /* Make an event (make-frame-visible (FRAME)). */
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2636 obj = Fcons (event->frame_or_window, Qnil);
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
2637 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2638 kbd_fetch_ptr = event + 1;
5133
16fe8285dc2a (kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents: 5078
diff changeset
2639 }
16fe8285dc2a (kbd_buffer_get_event): Handle delete_window_event's.
Richard M. Stallman <rms@gnu.org>
parents: 5078
diff changeset
2640 #endif
6749
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
2641 else if (event->kind == buffer_switch_event)
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
2642 {
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
2643 /* The value doesn't matter here; only the type is tested. */
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
2644 XSETBUFFER (obj, current_buffer);
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2645 kbd_fetch_ptr = event + 1;
6749
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
2646 }
12659
1243af8addb5 (kbd_buffer_get_event) [USE_X_TOOLKIT]:
Richard M. Stallman <rms@gnu.org>
parents: 12628
diff changeset
2647 #ifdef USE_X_TOOLKIT
1243af8addb5 (kbd_buffer_get_event) [USE_X_TOOLKIT]:
Richard M. Stallman <rms@gnu.org>
parents: 12628
diff changeset
2648 else if (event->kind == menu_bar_activate_event)
1243af8addb5 (kbd_buffer_get_event) [USE_X_TOOLKIT]:
Richard M. Stallman <rms@gnu.org>
parents: 12628
diff changeset
2649 {
1243af8addb5 (kbd_buffer_get_event) [USE_X_TOOLKIT]:
Richard M. Stallman <rms@gnu.org>
parents: 12628
diff changeset
2650 kbd_fetch_ptr = event + 1;
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2651 input_pending = readable_events ();
12659
1243af8addb5 (kbd_buffer_get_event) [USE_X_TOOLKIT]:
Richard M. Stallman <rms@gnu.org>
parents: 12628
diff changeset
2652 x_activate_menubar (XFRAME (event->frame_or_window));
1243af8addb5 (kbd_buffer_get_event) [USE_X_TOOLKIT]:
Richard M. Stallman <rms@gnu.org>
parents: 12628
diff changeset
2653 }
1243af8addb5 (kbd_buffer_get_event) [USE_X_TOOLKIT]:
Richard M. Stallman <rms@gnu.org>
parents: 12628
diff changeset
2654 #endif
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2655 /* Just discard these, by returning nil.
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2656 With MULTI_KBOARD, these events are used as placeholders
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2657 when we need to randomly delete events from the queue.
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2658 (They shouldn't otherwise be found in the buffer,
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
2659 but on some machines it appears they do show up
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2660 even without MULTI_KBOARD.) */
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2661 else if (event->kind == no_event)
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2662 kbd_fetch_ptr = event + 1;
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
2663
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2664 /* If this event is on a different frame, return a switch-frame this
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2665 time, and leave the event in the queue for next time. */
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2666 else
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2667 {
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
2668 #ifdef MULTI_FRAME
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2669 Lisp_Object frame;
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2670 Lisp_Object focus;
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2671
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2672 frame = event->frame_or_window;
11285
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
2673 if (CONSP (frame))
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
2674 frame = XCONS (frame)->car;
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
2675 else if (WINDOWP (frame))
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2676 frame = WINDOW_FRAME (XWINDOW (frame));
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2677
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2678 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2679 if (! NILP (focus))
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2680 frame = focus;
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2681
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2682 if (! EQ (frame, internal_last_event_frame)
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2683 && XFRAME (frame) != selected_frame)
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2684 obj = make_lispy_switch_frame (frame);
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2685 internal_last_event_frame = frame;
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
2686 #endif /* MULTI_FRAME */
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2687
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2688 /* If we didn't decide to make a switch-frame event, go ahead
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2689 and build a real event from the queue entry. */
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2690
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2691 if (NILP (obj))
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2692 {
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2693 obj = make_lispy_event (event);
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2694 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2695 /* If this was a menu selection, then set the flag to inhibit
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2696 writing to last_nonmenu_event. Don't do this if the event
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2697 we're returning is (menu-bar), though; that indicates the
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2698 beginning of the menu sequence, and we might as well leave
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2699 that as the `event with parameters' for this selection. */
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2700 if (event->kind == menu_bar_event
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2701 && !(CONSP (obj) && EQ (XCONS (obj)->car, Qmenu_bar))
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2702 && used_mouse_menu)
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2703 *used_mouse_menu = 1;
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
2704 #endif
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2705
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2706 /* Wipe out this event, to catch bugs. */
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2707 event->kind = no_event;
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2708 XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer] = Qnil;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2709
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2710 kbd_fetch_ptr = event + 1;
3101
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2711 }
9de5bf724302 (read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents: 3067
diff changeset
2712 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2713 }
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
2714 #ifdef HAVE_MOUSE
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2715 /* Try generating a mouse motion event. */
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2716 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2717 {
12571
c960e63751ec (mouse_moved): Variable deleted.
Karl Heuer <kwzh@gnu.org>
parents: 12476
diff changeset
2718 FRAME_PTR f = some_mouse_moved ();
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2719 Lisp_Object bar_window;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2720 enum scroll_bar_part part;
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
2721 Lisp_Object x, y;
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
2722 unsigned long time;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2723
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
2724 *kbp = current_kboard;
9668
38a4e4386aed (kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents: 9652
diff changeset
2725 /* Note that this uses F to determine which display to look at.
38a4e4386aed (kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents: 9652
diff changeset
2726 If there is no valid info, it does not store anything
38a4e4386aed (kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents: 9652
diff changeset
2727 so x remains nil. */
38a4e4386aed (kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents: 9652
diff changeset
2728 x = Qnil;
11127
53e4f014e31c (kbd_buffer_get_event): Pass 0 for `insist' arg.
Richard M. Stallman <rms@gnu.org>
parents: 11026
diff changeset
2729 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2730
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2731 obj = Qnil;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2732
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
2733 #ifdef MULTI_FRAME
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2734 /* Decide if we should generate a switch-frame event. Don't
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2735 generate switch-frame events for motion outside of all Emacs
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2736 frames. */
9668
38a4e4386aed (kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents: 9652
diff changeset
2737 if (!NILP (x) && f)
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2738 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2739 Lisp_Object frame;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2740
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
2741 frame = FRAME_FOCUS_FRAME (f);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2742 if (NILP (frame))
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
2743 XSETFRAME (frame, f);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2744
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2745 if (! EQ (frame, internal_last_event_frame)
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
2746 && XFRAME (frame) != selected_frame)
3929
d620db2bc420 * keyboard.c (kbd_buffer_get_event): Correctly generate
Jim Blandy <jimb@redhat.com>
parents: 3920
diff changeset
2747 obj = make_lispy_switch_frame (frame);
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2748 internal_last_event_frame = frame;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
2749 }
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
2750 #endif
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
2751
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
2752 /* If we didn't decide to make a switch-frame event, go ahead and
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
2753 return a mouse-motion event. */
9668
38a4e4386aed (kbd_buffer_get_event): Cope if mouse_position_hook does not store anything.
Richard M. Stallman <rms@gnu.org>
parents: 9652
diff changeset
2754 if (!NILP (x) && NILP (obj))
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
2755 obj = make_lispy_movement (f, bar_window, part, x, y, time);
6805
8310b2eb6b06 (make_lispy_movement): Conditionalize on MULTI_FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 6749
diff changeset
2756 }
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
2757 #endif /* HAVE_MOUSE */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2758 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2759 /* We were promised by the above while loop that there was
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2760 something for us to read! */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2761 abort ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2762
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2763 input_pending = readable_events ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2764
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2765 #ifdef MULTI_FRAME
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
2766 Vlast_event_frame = internal_last_event_frame;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2767 #endif
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
2768
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2769 return (obj);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2770 }
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2771
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2772 /* Process any events that are not user-visible,
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2773 then return, without reading any user-visible events. */
3104
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2774
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2775 void
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2776 swallow_events ()
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2777 {
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2778 while (kbd_fetch_ptr != kbd_store_ptr)
3104
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2779 {
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2780 struct input_event *event;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2781
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2782 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2783 ? kbd_fetch_ptr
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2784 : kbd_buffer);
3104
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2785
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2786 last_event_timestamp = event->timestamp;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2787
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2788 /* These two kinds of events get special handling
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2789 and don't actually appear to the command loop. */
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2790 if (event->kind == selection_request_event)
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2791 {
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2792 #ifdef HAVE_X11
10635
c807d6c947de (kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents: 10626
diff changeset
2793 struct input_event copy;
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2794
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2795 /* Remove it from the buffer before processing it,
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2796 since otherwise swallow_events called recursively could see it
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2797 and process it again. */
10635
c807d6c947de (kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents: 10626
diff changeset
2798 copy = *event;
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
2799 kbd_fetch_ptr = event + 1;
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2800 input_pending = readable_events ();
10635
c807d6c947de (kbd_buffer_get_event, swallow_events): Remove selection_request event
Richard M. Stallman <rms@gnu.org>
parents: 10626
diff changeset
2801 x_handle_selection_request (&copy);
3104
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2802 #else
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2803 /* We're getting selection request events, but we don't have
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2804 a window system. */
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2805 abort ();
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2806 #endif
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2807 }
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2808
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2809 else if (event->kind == selection_clear_event)
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2810 {
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2811 #ifdef HAVE_X11
12712
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2812 struct input_event copy;
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2813
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2814 /* Remove it from the buffer before processing it, */
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2815 copy = *event;
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2816
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2817 kbd_fetch_ptr = event + 1;
33dc35e15fd2 (kbd_buffer_get_event): Update input_pending after
Richard M. Stallman <rms@gnu.org>
parents: 12659
diff changeset
2818 input_pending = readable_events ();
12729
21110e58640c (kbd_buffer_get_event, swallow_events): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents: 12712
diff changeset
2819 x_handle_selection_clear (&copy);
3104
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2820 #else
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2821 /* We're getting selection request events, but we don't have
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2822 a window system. */
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2823 abort ();
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2824 #endif
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2825 }
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2826 else
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2827 break;
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2828 }
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2829
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2830 get_input_pending (&input_pending);
3c6fccdf8257 (swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3101
diff changeset
2831 }
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
2832
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2833 /* Caches for modify_event_symbol. */
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2834 static Lisp_Object accent_key_syms;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2835 static Lisp_Object func_key_syms;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2836 static Lisp_Object mouse_syms;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2837
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2838 /* This is a list of keysym codes for special "accent" characters.
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2839 It parallels lispy_accent_keys. */
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2840
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2841 static int lispy_accent_codes[] =
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2842 {
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2843 #ifdef XK_dead_circumflex
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2844 XK_dead_circumflex,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2845 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2846 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2847 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2848 #ifdef XK_dead_grave
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2849 XK_dead_grave,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2850 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2851 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2852 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2853 #ifdef XK_dead_tilde
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2854 XK_dead_tilde,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2855 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2856 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2857 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2858 #ifdef XK_dead_diaeresis
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2859 XK_dead_diaeresis,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2860 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2861 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2862 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2863 #ifdef XK_dead_macron
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2864 XK_dead_macron,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2865 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2866 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2867 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2868 #ifdef XK_dead_degree
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2869 XK_dead_degree,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2870 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2871 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2872 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2873 #ifdef XK_dead_acute
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2874 XK_dead_acute,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2875 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2876 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2877 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2878 #ifdef XK_dead_cedilla
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2879 XK_dead_cedilla,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2880 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2881 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2882 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2883 #ifdef XK_dead_breve
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2884 XK_dead_breve,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2885 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2886 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2887 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2888 #ifdef XK_dead_ogonek
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2889 XK_dead_ogonek,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2890 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2891 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2892 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2893 #ifdef XK_dead_caron
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2894 XK_dead_caron,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2895 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2896 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2897 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2898 #ifdef XK_dead_doubleacute
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2899 XK_dead_doubleacute,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2900 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2901 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2902 #endif
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2903 #ifdef XK_dead_abovedot
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2904 XK_dead_abovedot,
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2905 #else
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2906 0,
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
2907 #endif
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2908 };
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2909
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2910 /* This is a list of Lisp names for special "accent" characters.
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2911 It parallels lispy_accent_codes. */
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2912
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2913 static char *lispy_accent_keys[] =
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2914 {
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2915 "dead-circumflex",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2916 "dead-grave",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2917 "dead-tilde",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2918 "dead-diaeresis",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2919 "dead-macron",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2920 "dead-degree",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2921 "dead-acute",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2922 "dead-cedilla",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2923 "dead-breve",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2924 "dead-ogonek",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2925 "dead-caron",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2926 "dead-doubleacute",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2927 "dead-abovedot",
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2928 };
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
2929
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2930 #ifdef HAVE_NTGUI
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2931 #define FUNCTION_KEY_OFFSET 0x0
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2932
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2933 char *lispy_function_keys[] =
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2934 {
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2935 0, /* 0 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2936
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2937 0, /* VK_LBUTTON 0x01 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2938 0, /* VK_RBUTTON 0x02 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2939 "cancel", /* VK_CANCEL 0x03 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2940 0, /* VK_MBUTTON 0x04 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2941
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2942 0, 0, 0, /* 0x05 .. 0x07 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2943
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2944 "backspace", /* VK_BACK 0x08 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2945 "tab", /* VK_TAB 0x09 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2946
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2947 0, 0, /* 0x0A .. 0x0B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2948
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2949 "clear", /* VK_CLEAR 0x0C */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2950 "return", /* VK_RETURN 0x0D */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2951
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2952 0, 0, /* 0x0E .. 0x0F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2953
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2954 "shift", /* VK_SHIFT 0x10 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2955 "control", /* VK_CONTROL 0x11 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2956 "menu", /* VK_MENU 0x12 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2957 "pause", /* VK_PAUSE 0x13 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2958 "capital", /* VK_CAPITAL 0x14 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2959
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2960 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2961
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2962 0, /* VK_ESCAPE 0x1B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2963
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2964 0, 0, 0, 0, /* 0x1C .. 0x1F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2965
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2966 0, /* VK_SPACE 0x20 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2967 "prior", /* VK_PRIOR 0x21 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2968 "next", /* VK_NEXT 0x22 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2969 "end", /* VK_END 0x23 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2970 "home", /* VK_HOME 0x24 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2971 "left", /* VK_LEFT 0x25 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2972 "up", /* VK_UP 0x26 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2973 "right", /* VK_RIGHT 0x27 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2974 "down", /* VK_DOWN 0x28 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2975 "select", /* VK_SELECT 0x29 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2976 "print", /* VK_PRINT 0x2A */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2977 "execute", /* VK_EXECUTE 0x2B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2978 "snapshot", /* VK_SNAPSHOT 0x2C */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2979 "insert", /* VK_INSERT 0x2D */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2980 "delete", /* VK_DELETE 0x2E */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2981 "help", /* VK_HELP 0x2F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2982
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2983 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2984
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2985 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2986
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2987 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2988
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2989 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2990
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2991 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2992 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2993 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2994
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2995 0, /* VK_LWIN 0x5B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2996 0, /* VK_RWIN 0x5C */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2997 0, /* VK_APPS 0x5D */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2998
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
2999 0, 0, /* 0x5E .. 0x5F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3000
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3001 "kp-0", /* VK_NUMPAD0 0x60 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3002 "kp-1", /* VK_NUMPAD1 0x61 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3003 "kp-2", /* VK_NUMPAD2 0x62 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3004 "kp-3", /* VK_NUMPAD3 0x63 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3005 "kp-4", /* VK_NUMPAD4 0x64 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3006 "kp-5", /* VK_NUMPAD5 0x65 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3007 "kp-6", /* VK_NUMPAD6 0x66 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3008 "kp-7", /* VK_NUMPAD7 0x67 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3009 "kp-8", /* VK_NUMPAD8 0x68 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3010 "kp-9", /* VK_NUMPAD9 0x69 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3011 "kp-multiply", /* VK_MULTIPLY 0x6A */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3012 "kp-add", /* VK_ADD 0x6B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3013 "kp-separator", /* VK_SEPARATOR 0x6C */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3014 "kp-subtract", /* VK_SUBTRACT 0x6D */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3015 "kp-decimal", /* VK_DECIMAL 0x6E */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3016 "kp-divide", /* VK_DIVIDE 0x6F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3017 "f1", /* VK_F1 0x70 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3018 "f2", /* VK_F2 0x71 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3019 "f3", /* VK_F3 0x72 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3020 "f4", /* VK_F4 0x73 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3021 "f5", /* VK_F5 0x74 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3022 "f6", /* VK_F6 0x75 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3023 "f7", /* VK_F7 0x76 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3024 "f8", /* VK_F8 0x77 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3025 "f9", /* VK_F9 0x78 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3026 "f10", /* VK_F10 0x79 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3027 "f11", /* VK_F11 0x7A */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3028 "f12", /* VK_F12 0x7B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3029 "f13", /* VK_F13 0x7C */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3030 "f14", /* VK_F14 0x7D */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3031 "f15", /* VK_F15 0x7E */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3032 "f16", /* VK_F16 0x7F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3033 "f17", /* VK_F17 0x80 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3034 "f18", /* VK_F18 0x81 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3035 "f19", /* VK_F19 0x82 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3036 "f20", /* VK_F20 0x83 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3037 "f21", /* VK_F21 0x84 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3038 "f22", /* VK_F22 0x85 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3039 "f23", /* VK_F23 0x86 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3040 "f24", /* VK_F24 0x87 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3041
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3042 0, 0, 0, 0, /* 0x88 .. 0x8B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3043 0, 0, 0, 0, /* 0x8C .. 0x8F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3044
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3045 "kp-numlock", /* VK_NUMLOCK 0x90 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3046 "scroll", /* VK_SCROLL 0x91 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3047
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3048 0, 0, 0, 0, 0, /* 0x92 .. 0x96 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3049 0, 0, 0, 0, 0, /* 0x97 .. 0x9B */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3050 0, 0, 0, 0, /* 0x9C .. 0x9F */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3051
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3052 /*
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3053 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3054 * Used only as parameters to GetAsyncKeyState() and GetKeyState().
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3055 * No other API or message will distinguish left and right keys this way.
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3056 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3057 /* 0xA0 .. 0xEF */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3058
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3059 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3060 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3061 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3062 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3063 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3064
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3065 /* 0xF0 .. 0xF5 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3066
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3067 0, 0, 0, 0, 0, 0,
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3068
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3069 "attn", /* VK_ATTN 0xF6 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3070 "crsel", /* VK_CRSEL 0xF7 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3071 "exsel", /* VK_EXSEL 0xF8 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3072 "ereof", /* VK_EREOF 0xF9 */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3073 "play", /* VK_PLAY 0xFA */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3074 "zoom", /* VK_ZOOM 0xFB */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3075 "noname", /* VK_NONAME 0xFC */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3076 "pa1", /* VK_PA1 0xFD */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3077 "oem_clear", /* VK_OEM_CLEAR 0xFE */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3078 };
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3079
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3080 #else
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3081
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3082 #define FUNCTION_KEY_OFFSET 0xff00
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3083
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3084 /* You'll notice that this table is arranged to be conveniently
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3085 indexed by X Windows keysym values. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3086 static char *lispy_function_keys[] =
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3087 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3088 /* X Keysym value */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3089
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3090 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3091 "backspace",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3092 "tab",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3093 "linefeed",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3094 "clear",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3095 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3096 "return",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3097 0, 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3098 0, 0, 0, /* 0xff10 */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3099 "pause",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3100 0, 0, 0, 0, 0, 0, 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3101 "escape",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3102 0, 0, 0, 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3103 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3104 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3105 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3106
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3107 "home", /* 0xff50 */ /* IsCursorKey */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3108 "left",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3109 "up",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3110 "right",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3111 "down",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3112 "prior",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3113 "next",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3114 "end",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3115 "begin",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3116 0, /* 0xff59 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3117 0, 0, 0, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3118 "select", /* 0xff60 */ /* IsMiscFunctionKey */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3119 "print",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3120 "execute",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3121 "insert",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3122 0, /* 0xff64 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3123 "undo",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3124 "redo",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3125 "menu",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3126 "find",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3127 "cancel",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3128 "help",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3129 "break", /* 0xff6b */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3130
7587
efaee8861ad4 (read_char_minibuf_menu_prompt): Don't forget to initialize nobindings.
Richard M. Stallman <rms@gnu.org>
parents: 7547
diff changeset
3131 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3132 0, /* 0xff76 */
3054
57814bb76b37 (lispy_function_keys): Add kp-numlock. Fix kp-backspace.
Richard M. Stallman <rms@gnu.org>
parents: 3042
diff changeset
3133 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3134 "kp-space", /* 0xff80 */ /* IsKeypadKey */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3135 0, 0, 0, 0, 0, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3136 "kp-tab", /* 0xff89 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3137 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3138 "kp-enter", /* 0xff8d */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3139 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3140 "kp-f1", /* 0xff91 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3141 "kp-f2",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3142 "kp-f3",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3143 "kp-f4",
7547
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3144 "kp-home", /* 0xff95 */
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3145 "kp-left",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3146 "kp-up",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3147 "kp-right",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3148 "kp-down",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3149 "kp-prior", /* kp-page-up */
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3150 "kp-next", /* kp-page-down */
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3151 "kp-end",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3152 "kp-begin",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3153 "kp-insert",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3154 "kp-delete",
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3155 0, /* 0xffa0 */
ca777847b11f (lispy_function_keys): Add various kp- keys for X11R6.
Richard M. Stallman <rms@gnu.org>
parents: 7532
diff changeset
3156 0, 0, 0, 0, 0, 0, 0, 0, 0,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3157 "kp-multiply", /* 0xffaa */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3158 "kp-add",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3159 "kp-separator",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3160 "kp-subtract",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3161 "kp-decimal",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3162 "kp-divide", /* 0xffaf */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3163 "kp-0", /* 0xffb0 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3164 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3165 0, /* 0xffba */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3166 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3167 "kp-equal", /* 0xffbd */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3168 "f1", /* 0xffbe */ /* IsFunctionKey */
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3169 "f2",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3170 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3171 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3172 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3173 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3174 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3175 0, 0, 0, 0, 0, 0, 0, 0,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3176 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3177 0, 0, 0, 0, 0, 0, 0, "delete"
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3178 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3179
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3180 #endif /* HAVE_NTGUI */
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3181
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3182 static char *lispy_mouse_names[] =
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3183 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3184 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3185 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3186
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3187 /* Scroll bar parts. */
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3188 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3189
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3190 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3191 Lisp_Object *scroll_bar_parts[] = {
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3192 &Qabove_handle, &Qhandle, &Qbelow_handle
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3193 };
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3194
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3195
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3196 /* A vector, indexed by button number, giving the down-going location
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3197 of currently depressed buttons, both scroll bar and non-scroll bar.
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3198
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3199 The elements have the form
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3200 (BUTTON-NUMBER MODIFIER-MASK . REST)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3201 where REST is the cdr of a position as it would be reported in the event.
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3202
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3203 The make_lispy_event function stores positions here to tell the
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3204 difference between click and drag events, and to store the starting
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3205 location to be included in drag events. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3206
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3207 static Lisp_Object button_down_location;
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3208
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3209 /* Information about the most recent up-going button event: Which
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3210 button, what location, and what time. */
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3211
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3212 static int last_mouse_button;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3213 static int last_mouse_x;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3214 static int last_mouse_y;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3215 static unsigned long button_down_time;
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3216
3993
992a1abeb6cd * keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents: 3972
diff changeset
3217 /* The maximum time between clicks to make a double-click,
992a1abeb6cd * keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents: 3972
diff changeset
3218 or Qnil to disable double-click detection,
992a1abeb6cd * keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents: 3972
diff changeset
3219 or Qt for no time limit. */
992a1abeb6cd * keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents: 3972
diff changeset
3220 Lisp_Object Vdouble_click_time;
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3221
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3222 /* The number of clicks in this multiple-click. */
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3223
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3224 int double_click_count;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3225
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3226 /* Given a struct input_event, build the lisp event which represents
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3227 it. If EVENT is 0, build a mouse movement event from the mouse
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3228 movement buffer, which should have a movement event in it.
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3229
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3230 Note that events must be passed to this function in the order they
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3231 are received; this function stores the location of button presses
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3232 in order to build drag events when the button is released. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3233
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3234 static Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3235 make_lispy_event (event)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3236 struct input_event *event;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3237 {
5394
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
3238 int i;
ca6521958577 (lispy_accent_codes): Cope if an XK symbol is undefined.
Richard M. Stallman <rms@gnu.org>
parents: 5371
diff changeset
3239
10457
2ab3bd0288a9 Change all occurences of SWITCH_ENUM_BUG to use SWITCH_ENUM_CAST instead.
Karl Heuer <kwzh@gnu.org>
parents: 10433
diff changeset
3240 switch (SWITCH_ENUM_CAST (event->kind))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3241 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3242 /* A simple keystroke. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3243 case ascii_keystroke:
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3244 {
8938
16c1ca187613 (kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents: 8936
diff changeset
3245 Lisp_Object lispy_c;
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3246 int c = event->code & 0377;
2867
5b72eb2483e7 * xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents: 2789
diff changeset
3247 /* Turn ASCII characters into control characters
5b72eb2483e7 * xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents: 2789
diff changeset
3248 when proper. */
5b72eb2483e7 * xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents: 2789
diff changeset
3249 if (event->modifiers & ctrl_modifier)
2954
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
3250 c = make_ctrl_char (c);
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
3251
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
3252 /* Add in the other modifier bits. We took care of ctrl_modifier
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
3253 just above, and the shift key was taken care of by the X code,
0dfd1927264e (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents: 2950
diff changeset
3254 and applied to control characters by make_ctrl_char. */
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3255 c |= (event->modifiers
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3256 & (meta_modifier | alt_modifier
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3257 | hyper_modifier | super_modifier));
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3258 button_down_time = 0;
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
3259 XSETFASTINT (lispy_c, c);
8938
16c1ca187613 (kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents: 8936
diff changeset
3260 return lispy_c;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3261 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3262
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3263 /* A function key. The symbol may need to have modifier prefixes
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3264 tacked onto it. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3265 case non_ascii_keystroke:
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3266 button_down_time = 0;
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3267
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3268 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3269 if (event->code == lispy_accent_codes[i])
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3270 return modify_event_symbol (i,
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3271 event->modifiers,
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3272 Qfunction_key, Qnil,
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3273 lispy_accent_keys, &accent_key_syms,
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3274 (sizeof (lispy_accent_keys)
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3275 / sizeof (lispy_accent_keys[0])));
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3276
6096
443b78042b86 (Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents: 6053
diff changeset
3277 /* Handle system-specific keysyms. */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3278 if (event->code & (1 << 28))
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3279 {
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3280 /* We need to use an alist rather than a vector as the cache
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3281 since we can't make a vector long enuf. */
12176
3e14d94320f2 (system_key_syms): Deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12173
diff changeset
3282 if (NILP (current_kboard->system_key_syms))
3e14d94320f2 (system_key_syms): Deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12173
diff changeset
3283 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
12173
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
3284 return modify_event_symbol (event->code,
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3285 event->modifiers,
11543
317e5825008b (Vsystem_key_alist): Delete global variable.
Karl Heuer <kwzh@gnu.org>
parents: 11540
diff changeset
3286 Qfunction_key,
317e5825008b (Vsystem_key_alist): Delete global variable.
Karl Heuer <kwzh@gnu.org>
parents: 11540
diff changeset
3287 current_kboard->Vsystem_key_alist,
12176
3e14d94320f2 (system_key_syms): Deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12173
diff changeset
3288 0, &current_kboard->system_key_syms,
3e14d94320f2 (system_key_syms): Deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12173
diff changeset
3289 (unsigned)-1);
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3290 }
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3291
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3292 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3293 event->modifiers,
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3294 Qfunction_key, Qnil,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3295 lispy_function_keys, &func_key_syms,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3296 (sizeof (lispy_function_keys)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3297 / sizeof (lispy_function_keys[0])));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3298 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3299
11026
682ae4a3d465 (make_lispy_event): Do mouse code only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11016
diff changeset
3300 #ifdef HAVE_MOUSE
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3301 /* A mouse click. Figure out where it is, decide whether it's
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3302 a press, click or drag, and build the appropriate structure. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3303 case mouse_click:
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3304 case scroll_bar_click:
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3305 {
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3306 int button = event->code;
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3307 int is_double;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3308 Lisp_Object position;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3309 Lisp_Object *start_pos_ptr;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3310 Lisp_Object start_pos;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3311
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3312 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3313 abort ();
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3314
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3315 /* Build the position as appropriate for this mouse click. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3316 if (event->kind == mouse_click)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3317 {
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3318 int part;
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
3319 FRAME_PTR f = XFRAME (event->frame_or_window);
6024
0aa565fdb1b9 (make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents: 6020
diff changeset
3320 Lisp_Object window;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3321 Lisp_Object posn;
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3322 int row, column;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3323
7351
f5cf08a3a645 (make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents: 7345
diff changeset
3324 /* Ignore mouse events that were made on frame that
f5cf08a3a645 (make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents: 7345
diff changeset
3325 have been deleted. */
f5cf08a3a645 (make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents: 7345
diff changeset
3326 if (! FRAME_LIVE_P (f))
f5cf08a3a645 (make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents: 7345
diff changeset
3327 return Qnil;
f5cf08a3a645 (make_lispy_event): Ignore mouse events for deleted frame.
Richard M. Stallman <rms@gnu.org>
parents: 7345
diff changeset
3328
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3329 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
12007
4179378fa410 (make_lispy_event, make_lispy_movement):
Karl Heuer <kwzh@gnu.org>
parents: 11993
diff changeset
3330 &column, &row, NULL, 1);
10275
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3331
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3332 #ifndef USE_X_TOOLKIT
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3333 /* In the non-toolkit version, clicks on the menu bar
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3334 are ordinary button events in the event buffer.
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3335 Distinguish them, and invoke the menu.
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3336
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3337 (In the toolkit version, the toolkit handles the menu bar
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3338 and Emacs doesn't know about it until after the user
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3339 makes a selection.) */
13191
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
3340 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
3341 && (event->modifiers & down_modifier))
5684
6479e0eabb27 * keyboard.c (make_lispy_event): Add USE_X_TOOLKIT conditional and
Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr>
parents: 5674
diff changeset
3342 {
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3343 Lisp_Object items, item;
8169
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3344 int hpos;
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3345 int i;
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3346
13191
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
3347 #if 0
8169
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3348 /* Activate the menu bar on the down event. If the
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3349 up event comes in before the menu code can deal with it,
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3350 just ignore it. */
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3351 if (! (event->modifiers & down_modifier))
09a8da4ffadf (make_lispy_event): Ignore menu bar up events.
Richard M. Stallman <rms@gnu.org>
parents: 8089
diff changeset
3352 return Qnil;
13191
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
3353 #endif
6024
0aa565fdb1b9 (make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents: 6020
diff changeset
3354
6812
ba2176fd811c (make_lispy_event): Initialize item.
Karl Heuer <kwzh@gnu.org>
parents: 6805
diff changeset
3355 item = Qnil;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3356 items = FRAME_MENU_BAR_ITEMS (f);
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3357 for (i = 0; i < XVECTOR (items)->size; i += 3)
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3358 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3359 Lisp_Object pos, string;
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3360 string = XVECTOR (items)->contents[i + 1];
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3361 pos = XVECTOR (items)->contents[i + 2];
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3362 if (NILP (string))
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3363 break;
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3364 if (column >= XINT (pos)
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3365 && column < XINT (pos) + XSTRING (string)->size)
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3366 {
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3367 item = XVECTOR (items)->contents[i];
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3368 break;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3369 }
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3370 }
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3371
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3372 position
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3373 = Fcons (event->frame_or_window,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3374 Fcons (Qmenu_bar,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3375 Fcons (Fcons (event->x, event->y),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3376 Fcons (make_number (event->timestamp),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3377 Qnil))));
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3378
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
3379 return Fcons (item, Fcons (position, Qnil));
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3380 }
10275
0231c0d38918 (make_lispy_event) [USE_X_TOOLKIT]: Turn off
Richard M. Stallman <rms@gnu.org>
parents: 10233
diff changeset
3381 #endif /* not USE_X_TOOLKIT */
6024
0aa565fdb1b9 (make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents: 6020
diff changeset
3382
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3383 window = window_from_coordinates (f, column, row, &part);
6024
0aa565fdb1b9 (make_lispy_event): For menu bar event in USE_X_TOOLKIT
Richard M. Stallman <rms@gnu.org>
parents: 6020
diff changeset
3384
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
3385 if (!WINDOWP (window))
8432
ebb72cf97695 (make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents: 8418
diff changeset
3386 {
ebb72cf97695 (make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents: 8418
diff changeset
3387 window = event->frame_or_window;
ebb72cf97695 (make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents: 8418
diff changeset
3388 posn = Qnil;
ebb72cf97695 (make_lispy_event): If the position is not in a window,
Richard M. Stallman <rms@gnu.org>
parents: 8418
diff changeset
3389 }
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3390 else
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3391 {
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3392 int pixcolumn, pixrow;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3393 column -= XINT (XWINDOW (window)->left);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3394 row -= XINT (XWINDOW (window)->top);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3395 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3396 XSETINT (event->x, pixcolumn);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3397 XSETINT (event->y, pixrow);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3398
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3399 if (part == 1)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3400 posn = Qmode_line;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3401 else if (part == 2)
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3402 posn = Qvertical_line;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3403 else
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
3404 XSETINT (posn,
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
3405 buffer_posn_from_coords (XWINDOW (window),
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
3406 column, row));
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3407 }
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3408
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3409 position
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3410 = Fcons (window,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3411 Fcons (posn,
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3412 Fcons (Fcons (event->x, event->y),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3413 Fcons (make_number (event->timestamp),
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
3414 Qnil))));
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3415 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3416 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3417 {
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3418 Lisp_Object window;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3419 Lisp_Object portion_whole;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3420 Lisp_Object part;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3421
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3422 window = event->frame_or_window;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3423 portion_whole = Fcons (event->x, event->y);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3424 part = *scroll_bar_parts[(int) event->part];
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3425
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3426 position =
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3427 Fcons (window,
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3428 Fcons (Qvertical_scroll_bar,
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3429 Fcons (portion_whole,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3430 Fcons (make_number (event->timestamp),
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3431 Fcons (part, Qnil)))));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3432 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3433
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3434 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3435
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3436 start_pos = *start_pos_ptr;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3437 *start_pos_ptr = Qnil;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3438
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3439 is_double = (button == last_mouse_button
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3440 && XINT (event->x) == last_mouse_x
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3441 && XINT (event->y) == last_mouse_y
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3442 && button_down_time != 0
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3443 && (EQ (Vdouble_click_time, Qt)
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3444 || (INTEGERP (Vdouble_click_time)
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3445 && ((int)(event->timestamp - button_down_time)
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3446 < XINT (Vdouble_click_time)))));
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3447 last_mouse_button = button;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3448 last_mouse_x = XINT (event->x);
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3449 last_mouse_y = XINT (event->y);
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3450
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3451 /* If this is a button press, squirrel away the location, so
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3452 we can decide later whether it was a click or a drag. */
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3453 if (event->modifiers & down_modifier)
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3454 {
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3455 if (is_double)
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3456 {
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3457 double_click_count++;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3458 event->modifiers |= ((double_click_count > 2)
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3459 ? triple_modifier
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3460 : double_modifier);
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3461 }
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3462 else
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3463 double_click_count = 1;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3464 button_down_time = event->timestamp;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3465 *start_pos_ptr = Fcopy_alist (position);
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3466 }
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3467
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3468 /* Now we're releasing a button - check the co-ordinates to
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3469 see if this was a click or a drag. */
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3470 else if (event->modifiers & up_modifier)
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3471 {
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3472 /* If we did not see a down before this up,
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3473 ignore the up. Probably this happened because
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3474 the down event chose a menu item.
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3475 It would be an annoyance to treat the release
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3476 of the button that chose the menu item
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3477 as a separate event. */
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3478
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
3479 if (!CONSP (start_pos))
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3480 return Qnil;
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3481
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3482 event->modifiers &= ~up_modifier;
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3483 #if 0 /* Formerly we treated an up with no down as a click event. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
3484 if (!CONSP (start_pos))
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3485 event->modifiers |= click_modifier;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3486 else
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3487 #endif
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3488 {
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3489 /* The third element of every position should be the (x,y)
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3490 pair. */
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3491 Lisp_Object down;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3492
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3493 down = Fnth (make_number (2), start_pos);
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3494 if (EQ (event->x, XCONS (down)->car)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3495 && EQ (event->y, XCONS (down)->cdr))
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3496 {
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
3497 event->modifiers |= click_modifier;
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3498 }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3499 else
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3500 {
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3501 button_down_time = 0;
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3502 event->modifiers |= drag_modifier;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3503 }
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
3504 /* Don't check is_double; treat this as multiple
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
3505 if the down-event was multiple. */
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
3506 if (double_click_count > 1)
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
3507 event->modifiers |= ((double_click_count > 2)
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
3508 ? triple_modifier
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
3509 : double_modifier);
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3510 }
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3511 }
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3512 else
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3513 /* Every mouse event should either have the down_modifier or
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3514 the up_modifier set. */
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3515 abort ();
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3516
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3517 {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3518 /* Get the symbol we should use for the mouse click. */
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3519 Lisp_Object head;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3520
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3521 head = modify_event_symbol (button,
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3522 event->modifiers,
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3523 Qmouse_click, Qnil,
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3524 lispy_mouse_names, &mouse_syms,
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3525 (sizeof (lispy_mouse_names)
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3526 / sizeof (lispy_mouse_names[0])));
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3527 if (event->modifiers & drag_modifier)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3528 return Fcons (head,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3529 Fcons (start_pos,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3530 Fcons (position,
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
3531 Qnil)));
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3532 else if (event->modifiers & (double_modifier | triple_modifier))
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3533 return Fcons (head,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3534 Fcons (position,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3535 Fcons (make_number (double_click_count),
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3536 Qnil)));
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3537 else
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3538 return Fcons (head,
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3539 Fcons (position,
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3540 Qnil));
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3541 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3542 }
11026
682ae4a3d465 (make_lispy_event): Do mouse code only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11016
diff changeset
3543 #endif /* HAVE_MOUSE */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3544
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
3545 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
11285
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
3546 case menu_bar_event:
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
3547 /* The event value is in the cdr of the frame_or_window slot. */
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
3548 if (!CONSP (event->frame_or_window))
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
3549 abort ();
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
3550 return XCONS (event->frame_or_window)->cdr;
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
3551 #endif
7b90c1076881 (kbd_buffer_get_event): Check for frame buried in a cons.
Karl Heuer <kwzh@gnu.org>
parents: 11260
diff changeset
3552
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3553 /* The 'kind' field of the event is something we don't recognize. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3554 default:
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
3555 abort ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3556 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3557 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3558
11026
682ae4a3d465 (make_lispy_event): Do mouse code only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11016
diff changeset
3559 #ifdef HAVE_MOUSE
6805
8310b2eb6b06 (make_lispy_movement): Conditionalize on MULTI_FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 6749
diff changeset
3560
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3561 static Lisp_Object
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3562 make_lispy_movement (frame, bar_window, part, x, y, time)
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
3563 FRAME_PTR frame;
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3564 Lisp_Object bar_window;
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3565 enum scroll_bar_part part;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3566 Lisp_Object x, y;
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
3567 unsigned long time;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3568 {
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3569 #ifdef MULTI_FRAME
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3570 /* Is it a scroll bar movement? */
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3571 if (frame && ! NILP (bar_window))
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3572 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3573 Lisp_Object part_sym;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3574
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3575 part_sym = *scroll_bar_parts[(int) part];
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3576 return Fcons (Qscroll_bar_movement,
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3577 (Fcons (Fcons (bar_window,
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
3578 Fcons (Qvertical_scroll_bar,
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3579 Fcons (Fcons (x, y),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3580 Fcons (make_number (time),
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
3581 Fcons (part_sym,
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3582 Qnil))))),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3583 Qnil)));
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3584 }
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3585
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3586 /* Or is it an ordinary mouse movement? */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3587 else
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3588 #endif /* MULTI_FRAME */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3589 {
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3590 int area;
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3591 Lisp_Object window;
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3592 Lisp_Object posn;
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3593 int column, row;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3594
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3595 #ifdef MULTI_FRAME
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3596 if (frame)
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3597 #else
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3598 if (1)
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3599 #endif
7345
c107ec7641ec (last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
3600 {
c107ec7641ec (last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
3601 /* It's in a frame; which window on that frame? */
12007
4179378fa410 (make_lispy_event, make_lispy_movement):
Karl Heuer <kwzh@gnu.org>
parents: 11993
diff changeset
3602 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row,
4179378fa410 (make_lispy_event, make_lispy_movement):
Karl Heuer <kwzh@gnu.org>
parents: 11993
diff changeset
3603 NULL, 1);
7345
c107ec7641ec (last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
3604 window = window_from_coordinates (frame, column, row, &area);
c107ec7641ec (last_point_position_buffer): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
3605 }
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3606 else
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3607 window = Qnil;
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3608
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
3609 if (WINDOWP (window))
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3610 {
6053
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3611 int pixcolumn, pixrow;
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3612 column -= XINT (XWINDOW (window)->left);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3613 row -= XINT (XWINDOW (window)->top);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3614 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3615 XSETINT (x, pixcolumn);
19d123e039fa (make_lispy_movement, make_lispy_event):
Richard M. Stallman <rms@gnu.org>
parents: 6024
diff changeset
3616 XSETINT (y, pixrow);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3617
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3618 if (area == 1)
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3619 posn = Qmode_line;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3620 else if (area == 2)
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3621 posn = Qvertical_line;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3622 else
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
3623 XSETINT (posn,
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
3624 buffer_posn_from_coords (XWINDOW (window), column, row));
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3625 }
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3626 #ifdef MULTI_FRAME
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3627 else if (frame != 0)
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3628 {
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
3629 XSETFRAME (window, frame);
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3630 posn = Qnil;
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
3631 }
8247
26dbb6234efd (safe_run_hooks): Use local var to restore hook's value.
Richard M. Stallman <rms@gnu.org>
parents: 8238
diff changeset
3632 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3633 else
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3634 {
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3635 window = Qnil;
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3636 posn = Qnil;
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
3637 XSETFASTINT (x, 0);
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
3638 XSETFASTINT (y, 0);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3639 }
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3640
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3641 return Fcons (Qmouse_movement,
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3642 Fcons (Fcons (window,
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3643 Fcons (posn,
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3644 Fcons (Fcons (x, y),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3645 Fcons (make_number (time),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3646 Qnil)))),
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3647 Qnil));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3648 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3649 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3650
11026
682ae4a3d465 (make_lispy_event): Do mouse code only if HAVE_MOUSE.
Karl Heuer <kwzh@gnu.org>
parents: 11016
diff changeset
3651 #endif /* HAVE_MOUSE */
6805
8310b2eb6b06 (make_lispy_movement): Conditionalize on MULTI_FRAME.
Richard M. Stallman <rms@gnu.org>
parents: 6749
diff changeset
3652
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3653 /* Construct a switch frame event. */
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3654 static Lisp_Object
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3655 make_lispy_switch_frame (frame)
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3656 Lisp_Object frame;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3657 {
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3658 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3659 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3660
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3661 /* Manipulating modifiers. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3662
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3663 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3664
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3665 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3666 SYMBOL's name of the end of the modifiers; the string from this
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3667 position is the unmodified symbol name.
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3668
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3669 This doesn't use any caches. */
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3670
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3671 static int
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3672 parse_modifiers_uncached (symbol, modifier_end)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3673 Lisp_Object symbol;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3674 int *modifier_end;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3675 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3676 struct Lisp_String *name;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3677 int i;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3678 int modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3679
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3680 CHECK_SYMBOL (symbol, 1);
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3681
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3682 modifiers = 0;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3683 name = XSYMBOL (symbol)->name;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3684
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3685 for (i = 0; i+2 <= name->size; )
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3686 {
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3687 int this_mod_end = 0;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3688 int this_mod = 0;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3689
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3690 /* See if the name continues with a modifier word.
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3691 Check that the word appears, but don't check what follows it.
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3692 Set this_mod and this_mod_end to record what we find. */
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3693
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3694 switch (name->data[i])
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3695 {
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3696 #define SINGLE_LETTER_MOD(BIT) \
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3697 (this_mod_end = i + 1, this_mod = BIT)
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3698
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3699 case 'A':
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3700 SINGLE_LETTER_MOD (alt_modifier);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3701 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3702
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3703 case 'C':
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3704 SINGLE_LETTER_MOD (ctrl_modifier);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3705 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3706
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3707 case 'H':
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3708 SINGLE_LETTER_MOD (hyper_modifier);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3709 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3710
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3711 case 'M':
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3712 SINGLE_LETTER_MOD (meta_modifier);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3713 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3714
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3715 case 'S':
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3716 SINGLE_LETTER_MOD (shift_modifier);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3717 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3718
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3719 case 's':
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3720 SINGLE_LETTER_MOD (super_modifier);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3721 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3722
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3723 #undef SINGLE_LETTER_MOD
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3724 }
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3725
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3726 /* If we found no modifier, stop looking for them. */
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3727 if (this_mod_end == 0)
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3728 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3729
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3730 /* Check there is a dash after the modifier, so that it
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3731 really is a modifier. */
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3732 if (this_mod_end >= name->size || name->data[this_mod_end] != '-')
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3733 break;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3734
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3735 /* This modifier is real; look for another. */
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3736 modifiers |= this_mod;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3737 i = this_mod_end + 1;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
3738 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3739
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3740 /* Should we include the `click' modifier? */
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3741 if (! (modifiers & (down_modifier | drag_modifier
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3742 | double_modifier | triple_modifier))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3743 && i + 7 == name->size
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
3744 && strncmp (name->data + i, "mouse-", 6) == 0
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
3745 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3746 modifiers |= click_modifier;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3747
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3748 if (modifier_end)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3749 *modifier_end = i;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3750
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3751 return modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3752 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3753
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3754 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3755 prepended to the string BASE[0..BASE_LEN-1].
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3756 This doesn't use any caches. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3757 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3758 apply_modifiers_uncached (modifiers, base, base_len)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3759 int modifiers;
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3760 char *base;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3761 int base_len;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3762 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3763 /* Since BASE could contain nulls, we can't use intern here; we have
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3764 to use Fintern, which expects a genuine Lisp_String, and keeps a
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3765 reference to it. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3766 char *new_mods =
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3767 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3768 int mod_len;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3769
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3770 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3771 char *p = new_mods;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3772
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3773 /* Only the event queue may use the `up' modifier; it should always
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3774 be turned into a click or drag event before presented to lisp code. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3775 if (modifiers & up_modifier)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3776 abort ();
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3777
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3778 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3779 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3780 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3781 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3782 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3783 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3784 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
3785 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3786 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3787 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3788 /* The click modifier is denoted by the absence of other modifiers. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3789
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3790 *p = '\0';
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3791
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3792 mod_len = p - new_mods;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3793 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3794
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3795 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3796 Lisp_Object new_name;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3797
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3798 new_name = make_uninit_string (mod_len + base_len);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3799 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3800 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3801
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3802 return Fintern (new_name, Qnil);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3803 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3804 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3805
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3806
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3807 static char *modifier_names[] =
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3808 {
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
3809 "up", "down", "drag", "click", "double", "triple", 0, 0,
12946
271dc8563a91 (modifier_names): Add 4 bits to modifier bit positions.
Richard M. Stallman <rms@gnu.org>
parents: 12919
diff changeset
3810 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
3811 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3812 };
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3813 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3814
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3815 static Lisp_Object modifier_symbols;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3816
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3817 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3818 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3819 lispy_modifier_list (modifiers)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3820 int modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3821 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3822 Lisp_Object modifier_list;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3823 int i;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3824
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3825 modifier_list = Qnil;
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3826 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3827 if (modifiers & (1<<i))
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3828 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3829 modifier_list);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3830
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3831 return modifier_list;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3832 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3833
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3834
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3835 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3836 where UNMODIFIED is the unmodified form of SYMBOL,
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3837 MASK is the set of modifiers present in SYMBOL's name.
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3838 This is similar to parse_modifiers_uncached, but uses the cache in
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3839 SYMBOL's Qevent_symbol_element_mask property, and maintains the
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3840 Qevent_symbol_elements property. */
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
3841
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3842 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3843 parse_modifiers (symbol)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3844 Lisp_Object symbol;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3845 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3846 Lisp_Object elements;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3847
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3848 elements = Fget (symbol, Qevent_symbol_element_mask);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3849 if (CONSP (elements))
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3850 return elements;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3851 else
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3852 {
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3853 int end;
11682
7eda6c1f3d5e (parse_modifiers, apply_modifiers): Don't assume 32-bit EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents: 11671
diff changeset
3854 int modifiers = parse_modifiers_uncached (symbol, &end);
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3855 Lisp_Object unmodified;
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3856 Lisp_Object mask;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3857
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3858 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3859 XSYMBOL (symbol)->name->size - end),
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3860 Qnil);
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3861
11682
7eda6c1f3d5e (parse_modifiers, apply_modifiers): Don't assume 32-bit EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents: 11671
diff changeset
3862 if (modifiers & ~(((EMACS_INT)1 << VALBITS) - 1))
2436
80aafda1127b * keyboard.c (parse_modifiers, apply_modifiers): Make sure we're
Jim Blandy <jimb@redhat.com>
parents: 2434
diff changeset
3863 abort ();
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
3864 XSETFASTINT (mask, modifiers);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3865 elements = Fcons (unmodified, Fcons (mask, Qnil));
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3866
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3867 /* Cache the parsing results on SYMBOL. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3868 Fput (symbol, Qevent_symbol_element_mask,
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3869 elements);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3870 Fput (symbol, Qevent_symbol_elements,
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3871 Fcons (unmodified, lispy_modifier_list (modifiers)));
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3872
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3873 /* Since we know that SYMBOL is modifiers applied to unmodified,
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3874 it would be nice to put that in unmodified's cache.
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3875 But we can't, since we're not sure that parse_modifiers is
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3876 canonical. */
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3877
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3878 return elements;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3879 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3880 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3881
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3882 /* Apply the modifiers MODIFIERS to the symbol BASE.
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3883 BASE must be unmodified.
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3884
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3885 This is like apply_modifiers_uncached, but uses BASE's
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3886 Qmodifier_cache property, if present. It also builds
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3887 Qevent_symbol_elements properties, since it has that info anyway.
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3888
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3889 apply_modifiers copies the value of BASE's Qevent_kind property to
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3890 the modified symbol. */
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3891 static Lisp_Object
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3892 apply_modifiers (modifiers, base)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3893 int modifiers;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3894 Lisp_Object base;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3895 {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3896 Lisp_Object cache, index, entry, new_symbol;
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3897
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3898 /* Mask out upper bits. We don't know where this value's been. */
11682
7eda6c1f3d5e (parse_modifiers, apply_modifiers): Don't assume 32-bit EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents: 11671
diff changeset
3899 modifiers &= ((EMACS_INT)1 << VALBITS) - 1;
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3900
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3901 /* The click modifier never figures into cache indices. */
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
3902 cache = Fget (base, Qmodifier_cache);
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
3903 XSETFASTINT (index, (modifiers & ~click_modifier));
7999
f1837249c67f (apply_modifiers): Use assq_no_quit.
Richard M. Stallman <rms@gnu.org>
parents: 7957
diff changeset
3904 entry = assq_no_quit (index, cache);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3905
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3906 if (CONSP (entry))
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3907 new_symbol = XCONS (entry)->cdr;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3908 else
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3909 {
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3910 /* We have to create the symbol ourselves. */
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3911 new_symbol = apply_modifiers_uncached (modifiers,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3912 XSYMBOL (base)->name->data,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3913 XSYMBOL (base)->name->size);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3914
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3915 /* Add the new symbol to the base's cache. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3916 entry = Fcons (index, new_symbol);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3917 Fput (base, Qmodifier_cache, Fcons (entry, cache));
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3918
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3919 /* We have the parsing info now for free, so add it to the caches. */
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
3920 XSETFASTINT (index, modifiers);
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3921 Fput (new_symbol, Qevent_symbol_element_mask,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3922 Fcons (base, Fcons (index, Qnil)));
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3923 Fput (new_symbol, Qevent_symbol_elements,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3924 Fcons (base, lispy_modifier_list (modifiers)));
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3925 }
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3926
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3927 /* Make sure this symbol is of the same kind as BASE.
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3928
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3929 You'd think we could just set this once and for all when we
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3930 intern the symbol above, but reorder_modifiers may call us when
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3931 BASE's property isn't set right; we can't assume that just
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3932 because it has a Qmodifier_cache property it must have its
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
3933 Qevent_kind set right as well. */
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3934 if (NILP (Fget (new_symbol, Qevent_kind)))
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3935 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3936 Lisp_Object kind;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3937
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3938 kind = Fget (base, Qevent_kind);
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3939 if (! NILP (kind))
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3940 Fput (new_symbol, Qevent_kind, kind);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3941 }
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3942
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
3943 return new_symbol;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3944 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3945
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3946
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3947 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3948 return a symbol with the modifiers placed in the canonical order.
1239
52afa4976154 * keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents: 1140
diff changeset
3949 Canonical order is alphabetical, except for down and drag, which
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3950 always come last. The 'click' modifier is never written out.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3951
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3952 Fdefine_key calls this to make sure that (for example) C-M-foo
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3953 and M-C-foo end up being equivalent in the keymap. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3954
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3955 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3956 reorder_modifiers (symbol)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3957 Lisp_Object symbol;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3958 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3959 /* It's hopefully okay to write the code this way, since everything
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3960 will soon be in caches, and no consing will be done at all. */
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3961 Lisp_Object parsed;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3962
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
3963 parsed = parse_modifiers (symbol);
11671
8d81f3c6a0b5 (reorder_modifiers): Cast apply_modifiers arg to int.
Richard M. Stallman <rms@gnu.org>
parents: 11670
diff changeset
3964 return apply_modifiers ((int) XINT (XCONS (XCONS (parsed)->cdr)->car),
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
3965 XCONS (parsed)->car);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3966 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3967
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3968
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3969 /* For handling events, we often want to produce a symbol whose name
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3970 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3971 to some base, like the name of a function key or mouse button.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3972 modify_event_symbol produces symbols of this sort.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3973
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3974 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3975 is the name of the i'th symbol. TABLE_SIZE is the number of elements
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3976 in the table.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3977
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3978 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3979 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3980
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3981 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3982 persist between calls to modify_event_symbol that it can use to
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3983 store a cache of the symbols it's generated for this NAME_TABLE
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3984 before. The object stored there may be a vector or an alist.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3985
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3986 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3987
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3988 MODIFIERS is a set of modifier bits (as given in struct input_events)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3989 whose prefixes should be applied to the symbol name.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3990
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3991 SYMBOL_KIND is the value to be placed in the event_kind property of
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
3992 the returned symbol.
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3993
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3994 The symbols we create are supposed to have an
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3538
diff changeset
3995 `event-symbol-elements' property, which lists the modifiers present
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3996 in the symbol's name. */
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
3997
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3998 static Lisp_Object
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
3999 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4000 name_table, symbol_table, table_size)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4001 int symbol_num;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4002 unsigned modifiers;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4003 Lisp_Object symbol_kind;
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4004 Lisp_Object name_alist;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4005 char **name_table;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4006 Lisp_Object *symbol_table;
12173
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4007 unsigned int table_size;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4008 {
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4009 Lisp_Object value;
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4010 Lisp_Object symbol_int;
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4011
12173
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4012 /* Get rid of the "vendor-specific" bit here. */
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4013 XSETINT (symbol_int, symbol_num & 0xffffff);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4014
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4015 /* Is this a request for a valid symbol? */
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4016 if (symbol_num < 0 || symbol_num >= table_size)
7807
cd93cee36101 (modify_event_symbol): Return nil if out of range.
Richard M. Stallman <rms@gnu.org>
parents: 7787
diff changeset
4017 return Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4018
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4019 if (CONSP (*symbol_table))
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4020 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4021
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4022 /* If *symbol_table doesn't seem to be initialized properly, fix that.
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4023 *symbol_table should be a lisp vector TABLE_SIZE elements long,
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4024 where the Nth element is the symbol for NAME_TABLE[N], or nil if
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
4025 we've never used that symbol before. */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4026 else
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4027 {
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4028 if (! VECTORP (*symbol_table)
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4029 || XVECTOR (*symbol_table)->size != table_size)
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4030 {
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4031 Lisp_Object size;
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4032
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
4033 XSETFASTINT (size, table_size);
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4034 *symbol_table = Fmake_vector (size, Qnil);
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4035 }
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4036
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4037 value = XVECTOR (*symbol_table)->contents[symbol_num];
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4038 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4039
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4040 /* Have we already used this symbol before? */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4041 if (NILP (value))
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4042 {
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4043 /* No; let's create it. */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4044 if (!NILP (name_alist))
6894
34435700529d (modify_event_symbol): Use the cdr of the alist entry.
Richard M. Stallman <rms@gnu.org>
parents: 6893
diff changeset
4045 value = Fcdr_safe (Fassq (symbol_int, name_alist));
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4046 else if (name_table[symbol_num])
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4047 value = intern (name_table[symbol_num]);
6894
34435700529d (modify_event_symbol): Use the cdr of the alist entry.
Richard M. Stallman <rms@gnu.org>
parents: 6893
diff changeset
4048
13413
12b63cc21bdb [HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 13329
diff changeset
4049 #ifdef HAVE_WINDOW_SYSTEM
12173
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4050 if (NILP (value))
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4051 {
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4052 char *name = x_get_keysym_name (symbol_num);
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4053 if (name)
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4054 value = intern (name);
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4055 }
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4056 #endif
f31fca0fcdb0 (modify_event_symbol): Mask out high bits here,
Karl Heuer <kwzh@gnu.org>
parents: 12160
diff changeset
4057
6894
34435700529d (modify_event_symbol): Use the cdr of the alist entry.
Richard M. Stallman <rms@gnu.org>
parents: 6893
diff changeset
4058 if (NILP (value))
3042
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
4059 {
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
4060 char buf[20];
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
4061 sprintf (buf, "key-%d", symbol_num);
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4062 value = intern (buf);
3042
793f7e0dc66b (modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents: 2980
diff changeset
4063 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4064
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4065 if (CONSP (*symbol_table))
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4066 *symbol_table = Fcons (value, *symbol_table);
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4067 else
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4068 XVECTOR (*symbol_table)->contents[symbol_num] = value;
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4069
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
4070 /* Fill in the cache entries for this symbol; this also
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4071 builds the Qevent_symbol_elements property, which the user
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4072 cares about. */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4073 apply_modifiers (modifiers & click_modifier, value);
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4074 Fput (value, Qevent_kind, symbol_kind);
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4075 }
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
4076
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
4077 /* Apply modifiers to that symbol. */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4078 return apply_modifiers (modifiers, value);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4079 }
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4080
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4081 /* Convert a list that represents an event type,
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4082 such as (ctrl meta backspace), into the usual representation of that
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4083 event type as a number or a symbol. */
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4084
12150
64b16f71a15c (Fevent_convert_list): Renamed from convert_event_type_list.
Karl Heuer <kwzh@gnu.org>
parents: 12144
diff changeset
4085 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
14079
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
4086 "Convert the event description list EVENT-DESC to an event type.\n\
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
4087 EVENT-DESC should contain one base event type (a character or symbol)\n\
12150
64b16f71a15c (Fevent_convert_list): Renamed from convert_event_type_list.
Karl Heuer <kwzh@gnu.org>
parents: 12144
diff changeset
4088 and zero or more modifier names (control, meta, hyper, super, shift, alt,\n\
64b16f71a15c (Fevent_convert_list): Renamed from convert_event_type_list.
Karl Heuer <kwzh@gnu.org>
parents: 12144
diff changeset
4089 drag, down, double or triple).\n\
64b16f71a15c (Fevent_convert_list): Renamed from convert_event_type_list.
Karl Heuer <kwzh@gnu.org>
parents: 12144
diff changeset
4090 The return value is an event type (a character or symbol) which\n\
64b16f71a15c (Fevent_convert_list): Renamed from convert_event_type_list.
Karl Heuer <kwzh@gnu.org>
parents: 12144
diff changeset
4091 has the same base event type and all the specified modifiers.")
14079
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
4092 (event_desc)
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
4093 Lisp_Object event_desc;
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4094 {
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4095 Lisp_Object base;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4096 int modifiers = 0;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4097 Lisp_Object rest;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4098
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4099 base = Qnil;
14079
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
4100 rest = event_desc;
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4101 while (CONSP (rest))
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4102 {
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4103 Lisp_Object elt;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4104 int this = 0;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4105
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4106 elt = XCONS (rest)->car;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4107
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4108 /* Given a symbol, see if it is a modifier name. */
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4109 if (SYMBOLP (elt))
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4110 this = parse_solitary_modifier (elt);
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4111
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4112 if (this != 0)
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4113 modifiers |= this;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4114 else if (!NILP (base))
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4115 error ("Two bases given in one event");
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4116 else
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4117 base = elt;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4118
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4119 rest = XCONS (rest)->cdr;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4120 }
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4121
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4122 /* Let the symbol A refer to the character A. */
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4123 if (SYMBOLP (base) && XSYMBOL (base)->name->size == 1)
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4124 XSETINT (base, XSYMBOL (base)->name->data[0]);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4125
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4126 if (INTEGERP (base))
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4127 {
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4128 /* Turn (shift a) into A. */
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4129 if ((modifiers & shift_modifier) != 0
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4130 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4131 {
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4132 XSETINT (base, XINT (base) - ('a' - 'A'));
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4133 modifiers &= ~shift_modifier;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4134 }
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4135
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4136 /* Turn (control a) into C-a. */
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4137 if (modifiers & ctrl_modifier)
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4138 return make_number ((modifiers & ~ctrl_modifier)
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4139 | make_ctrl_char (XINT (base)));
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4140 else
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4141 return make_number (modifiers | XINT (base));
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4142 }
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4143 else if (SYMBOLP (base))
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4144 return apply_modifiers (modifiers, base);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4145 else
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4146 error ("Invalid base event");
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4147 }
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4148
10984
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4149 /* Try to recognize SYMBOL as a modifier name.
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4150 Return the modifier flag bit, or 0 if not recognized. */
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4151
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4152 static int
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4153 parse_solitary_modifier (symbol)
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4154 Lisp_Object symbol;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4155 {
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4156 struct Lisp_String *name = XSYMBOL (symbol)->name;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4157
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4158 switch (name->data[0])
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4159 {
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4160 #define SINGLE_LETTER_MOD(BIT) \
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4161 if (name->size == 1) \
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4162 return BIT;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4163
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4164 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4165 if (LEN == name->size \
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4166 && ! strncmp (name->data, NAME, LEN)) \
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4167 return BIT;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4168
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4169 case 'A':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4170 SINGLE_LETTER_MOD (alt_modifier);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4171 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4172
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4173 case 'a':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4174 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4175 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4176
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4177 case 'C':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4178 SINGLE_LETTER_MOD (ctrl_modifier);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4179 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4180
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4181 case 'c':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4182 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4183 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4184 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4185
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4186 case 'H':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4187 SINGLE_LETTER_MOD (hyper_modifier);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4188 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4189
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4190 case 'h':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4191 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4192 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4193
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4194 case 'M':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4195 SINGLE_LETTER_MOD (meta_modifier);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4196 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4197
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4198 case 'm':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4199 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4200 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4201
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4202 case 'S':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4203 SINGLE_LETTER_MOD (shift_modifier);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4204 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4205
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4206 case 's':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4207 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4208 MULTI_LETTER_MOD (super_modifier, "super", 5);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4209 SINGLE_LETTER_MOD (super_modifier);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4210 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4211
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4212 case 'd':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4213 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4214 MULTI_LETTER_MOD (down_modifier, "down", 4);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4215 MULTI_LETTER_MOD (double_modifier, "double", 6);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4216 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4217
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4218 case 't':
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4219 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4220 break;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4221
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4222 #undef SINGLE_LETTER_MOD
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4223 #undef MULTI_LETTER_MOD
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4224 }
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4225
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4226 return 0;
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4227 }
0409e4548077 (parse_modifiers_uncached): Delete the code for
Richard M. Stallman <rms@gnu.org>
parents: 10945
diff changeset
4228
10844
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4229 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4230 Such a list is not valid as an event,
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4231 but it can be a Lucid-style event type list. */
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4232
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4233 int
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4234 lucid_event_type_list_p (object)
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4235 Lisp_Object object;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4236 {
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4237 Lisp_Object tail;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4238
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4239 if (! CONSP (object))
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4240 return 0;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4241
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4242 for (tail = object; CONSP (tail); tail = XCONS (tail)->cdr)
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4243 {
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4244 Lisp_Object elt;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4245 elt = XCONS (tail)->car;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4246 if (! (INTEGERP (elt) || SYMBOLP (elt)))
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4247 return 0;
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4248 }
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4249
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4250 return NILP (tail);
06d6b2e17987 (convert_event_type_list): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10827
diff changeset
4251 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4252
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4253 /* Store into *addr a value nonzero if terminal input chars are available.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4254 Serves the purpose of ioctl (0, FIONREAD, addr)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4255 but works even if FIONREAD does not exist.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4256 (In fact, this may actually read some input.) */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4257
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4258 static void
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4259 get_input_pending (addr)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4260 int *addr;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4261 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4262 /* First of all, have we already counted some input? */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4263 *addr = !NILP (Vquit_flag) || readable_events ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4264
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4265 /* If input is being read as it arrives, and we have none, there is none. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4266 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4267 return;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4268
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4269 /* Try to read some input and see how much we get. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4270 gobble_input (0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4271 *addr = !NILP (Vquit_flag) || readable_events ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4272 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4273
8727
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4274 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4275
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4276 int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4277 gobble_input (expected)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4278 int expected;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4279 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4280 #ifndef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4281 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4282 if (interrupt_input)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4283 {
624
2bb7f23b7ea5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 586
diff changeset
4284 SIGMASKTYPE mask;
638
40b255f55df3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 624
diff changeset
4285 mask = sigblockx (SIGIO);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4286 read_avail_input (expected);
638
40b255f55df3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 624
diff changeset
4287 sigsetmask (mask);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4288 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4289 else
8727
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4290 #ifdef POLL_FOR_INPUT
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4291 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4292 {
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4293 SIGMASKTYPE mask;
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4294 mask = sigblockx (SIGALRM);
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4295 read_avail_input (expected);
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4296 sigsetmask (mask);
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4297 }
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4298 else
592bbf02e29d (gobble_input): Block SIGALRM if we are using it.
Richard M. Stallman <rms@gnu.org>
parents: 8718
diff changeset
4299 #endif
9572
b36d5e88cccc *** empty log message ***
Morten Welinder <terra@diku.dk>
parents: 9445
diff changeset
4300 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4301 read_avail_input (expected);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4302 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4303 }
6749
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
4304
7225
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4305 /* Put a buffer_switch_event in the buffer
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4306 so that read_key_sequence will notice the new current buffer. */
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4307
6749
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
4308 record_asynch_buffer_change ()
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
4309 {
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
4310 struct input_event event;
8502
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4311 Lisp_Object tem;
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4312
6749
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
4313 event.kind = buffer_switch_event;
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
4314 event.frame_or_window = Qnil;
7225
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4315
8718
44a433fa6e8f (record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents: 8673
diff changeset
4316 #ifdef subprocesses
8502
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4317 /* We don't need a buffer-switch event unless Emacs is waiting for input.
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4318 The purpose of the event is to make read_key_sequence look up the
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4319 keymaps again. If we aren't in read_key_sequence, we don't need one,
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4320 and the event could cause trouble by messing up (input-pending-p). */
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4321 tem = Fwaiting_for_user_input_p ();
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4322 if (NILP (tem))
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4323 return;
8718
44a433fa6e8f (record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents: 8673
diff changeset
4324 #else
44a433fa6e8f (record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents: 8673
diff changeset
4325 /* We never need these events if we have no asynchronous subprocesses. */
44a433fa6e8f (record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents: 8673
diff changeset
4326 return;
44a433fa6e8f (record_asynch_buffer_change): Don't test
Richard M. Stallman <rms@gnu.org>
parents: 8673
diff changeset
4327 #endif
8502
0d7af9e98916 (record_asynch_buffer_change): Do nothing except when waiting_for_user_input_p.
Richard M. Stallman <rms@gnu.org>
parents: 8432
diff changeset
4328
7225
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4329 /* Make sure no interrupt happens while storing the event. */
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4330 #ifdef SIGIO
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4331 if (interrupt_input)
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4332 {
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4333 SIGMASKTYPE mask;
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4334 mask = sigblockx (SIGIO);
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4335 kbd_buffer_store_event (&event);
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4336 sigsetmask (mask);
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4337 }
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4338 else
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4339 #endif
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4340 {
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4341 stop_polling ();
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4342 kbd_buffer_store_event (&event);
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4343 start_polling ();
420c92074bd6 (record_asynch_buffer_change): Block SIGIO.
Richard M. Stallman <rms@gnu.org>
parents: 7224
diff changeset
4344 }
6749
c409eb264509 (kbd_buffer_get_event): Make buffer_switch_event lispy.
Karl Heuer <kwzh@gnu.org>
parents: 6461
diff changeset
4345 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4346
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4347 #ifndef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4348
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4349 /* Read any terminal input already buffered up by the system
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4350 into the kbd_buffer, but do not wait.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4351
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4352 EXPECTED should be nonzero if the caller knows there is some input.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4353
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4354 Except on VMS, all input is read by this function.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4355 If interrupt_input is nonzero, this function MUST be called
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4356 only when SIGIO is blocked.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4357
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4358 Returns the number of keyboard chars read, or -1 meaning
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4359 this is a bad time to try to read input. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4360
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4361 static int
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4362 read_avail_input (expected)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4363 int expected;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4364 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4365 struct input_event buf[KBD_BUFFER_SIZE];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4366 register int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4367 int nread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4368
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4369 if (read_socket_hook)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4370 /* No need for FIONREAD or fcntl; just say don't wait. */
9652
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
4371 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE,
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
4372 expected, expected);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4373 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4374 {
5032
2802aff49c77 (read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents: 4996
diff changeset
4375 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
2802aff49c77 (read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents: 4996
diff changeset
4376 the kbd_buffer can really hold. That may prevent loss
2802aff49c77 (read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents: 4996
diff changeset
4377 of characters on some systems when input is stuffed at us. */
2802aff49c77 (read_avail_input): Make cbuf 1 char shorter.
Richard M. Stallman <rms@gnu.org>
parents: 4996
diff changeset
4378 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6875
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4379 int n_to_read;
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4380
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4381 /* Determine how many characters we should *try* to read. */
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
4382 #ifdef WINDOWSNT
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
4383 return 0;
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
4384 #else /* not WINDOWSNT */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4385 #ifdef MSDOS
6875
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4386 n_to_read = dos_keysns ();
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4387 if (n_to_read == 0)
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4388 return 0;
6891
065060f1f9b8 (read_avail_input): Fix comment delimiter.
Karl Heuer <kwzh@gnu.org>
parents: 6875
diff changeset
4389 #else /* not MSDOS */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4390 #ifdef FIONREAD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4391 /* Find out how much input is available. */
9652
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
4392 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4393 /* Formerly simply reported no input, but that sometimes led to
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4394 a failure of Emacs to terminate.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4395 SIGHUP seems appropriate if we can't reach the terminal. */
1947
ba1e55a4ba76 (read_avail_input): Args to `kill' were backwards.
Richard M. Stallman <rms@gnu.org>
parents: 1921
diff changeset
4396 /* ??? Is it really right to send the signal just to this process
ba1e55a4ba76 (read_avail_input): Args to `kill' were backwards.
Richard M. Stallman <rms@gnu.org>
parents: 1921
diff changeset
4397 rather than to the whole process group?
ba1e55a4ba76 (read_avail_input): Args to `kill' were backwards.
Richard M. Stallman <rms@gnu.org>
parents: 1921
diff changeset
4398 Perhaps on systems with FIONREAD Emacs is alone in its group. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4399 kill (getpid (), SIGHUP);
6875
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4400 if (n_to_read == 0)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4401 return 0;
6875
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4402 if (n_to_read > sizeof cbuf)
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4403 n_to_read = sizeof cbuf;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4404 #else /* no FIONREAD */
13290
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
4405 #if defined (USG) || defined (DGUX)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4406 /* Read some input if available, but don't wait. */
6875
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4407 n_to_read = sizeof cbuf;
9652
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
4408 fcntl (input_fd, F_SETFL, O_NDELAY);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4409 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4410 you lose;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4411 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4412 #endif
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4413 #endif /* not MSDOS */
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
4414 #endif /* not WINDOWSNT */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4415
6875
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4416 /* Now read; for one reason or another, this will not block.
1862df471cac (make_lispy_event): Put mouse event code
Richard M. Stallman <rms@gnu.org>
parents: 6812
diff changeset
4417 NREAD is set to the number of chars read. */
6963
67b16a9f7e5d (read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents: 6936
diff changeset
4418 do
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4419 {
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4420 #ifdef MSDOS
13290
4caecb87e4ec (ok_to_echo_at_next_pause): Make it a char *.
Richard M. Stallman <rms@gnu.org>
parents: 13267
diff changeset
4421 cbuf[0] = dos_keyread ();
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4422 nread = 1;
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4423 #else
9652
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
4424 nread = read (input_fd, cbuf, n_to_read);
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4425 #endif
6936
5538df04e96a (read_avail_input): Test both aix386 and _BSD.
Richard M. Stallman <rms@gnu.org>
parents: 6932
diff changeset
4426 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4427 /* The kernel sometimes fails to deliver SIGHUP for ptys.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4428 This looks incorrect, but it isn't, because _BSD causes
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4429 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4430 and that causes a value other than 0 when there is no input. */
5194
85a1088ca765 (kbd_buffer_get_event): If user destroys the last frame,
Richard M. Stallman <rms@gnu.org>
parents: 5178
diff changeset
4431 if (nread == 0)
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4432 kill (0, SIGHUP);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4433 #endif
6963
67b16a9f7e5d (read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents: 6936
diff changeset
4434 }
6972
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4435 while (
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4436 /* We used to retry the read if it was interrupted.
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4437 But this does the wrong thing when O_NDELAY causes
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4438 an EAGAIN error. Does anybody know of a situation
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4439 where a retry is actually needed? */
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4440 #if 0
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4441 nread < 0 && (errno == EAGAIN
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4442 #ifdef EFAULT
6963
67b16a9f7e5d (read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents: 6936
diff changeset
4443 || errno == EFAULT
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
4444 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4445 #ifdef EBADSLT
6963
67b16a9f7e5d (read_avail_input): Write loop as a do-while.
Karl Heuer <kwzh@gnu.org>
parents: 6936
diff changeset
4446 || errno == EBADSLT
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4447 #endif
6972
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4448 )
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4449 #else
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4450 0
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4451 #endif
2238e97bc571 (read_avail_input): Don't retry read.
Karl Heuer <kwzh@gnu.org>
parents: 6968
diff changeset
4452 );
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4453
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4454 #ifndef FIONREAD
5371
63aa7b7e42c5 (read_avail_input): Turn O_NDELAY off on DGUX as on USG.
Richard M. Stallman <rms@gnu.org>
parents: 5352
diff changeset
4455 #if defined (USG) || defined (DGUX)
9652
13a13988685a (read_avail_input): Use input_fd.
Richard M. Stallman <rms@gnu.org>
parents: 9618
diff changeset
4456 fcntl (input_fd, F_SETFL, 0);
5371
63aa7b7e42c5 (read_avail_input): Turn O_NDELAY off on DGUX as on USG.
Richard M. Stallman <rms@gnu.org>
parents: 5352
diff changeset
4457 #endif /* USG or DGUX */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4458 #endif /* no FIONREAD */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4459 for (i = 0; i < nread; i++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4460 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4461 buf[i].kind = ascii_keystroke;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4462 buf[i].modifiers = 0;
2690
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
4463 if (meta_key == 1 && (cbuf[i] & 0x80))
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
4464 buf[i].modifiers = meta_modifier;
2690
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
4465 if (meta_key != 2)
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
4466 cbuf[i] &= ~0x80;
9745
129ec4acc4ff (read_avail_input): Fix Lisp_Object vs. int problem.
Karl Heuer <kwzh@gnu.org>
parents: 9729
diff changeset
4467
129ec4acc4ff (read_avail_input): Fix Lisp_Object vs. int problem.
Karl Heuer <kwzh@gnu.org>
parents: 9729
diff changeset
4468 buf[i].code = cbuf[i];
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4469 #ifdef MULTI_FRAME
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
4470 XSETFRAME (buf[i].frame_or_window, selected_frame);
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4471 #else
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4472 buf[i].frame_or_window = Qnil;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
4473 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4474 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4475 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4476
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4477 /* Scan the chars for C-g and store them in kbd_buffer. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4478 for (i = 0; i < nread; i++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4479 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4480 kbd_buffer_store_event (&buf[i]);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4481 /* Don't look at input that follows a C-g too closely.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4482 This reduces lossage due to autorepeat on C-g. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4483 if (buf[i].kind == ascii_keystroke
8938
16c1ca187613 (kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents: 8936
diff changeset
4484 && buf[i].code == quit_char)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4485 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4486 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4487
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4488 return nread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4489 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4490 #endif /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4491
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4492 #ifdef SIGIO /* for entire page */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4493 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4494
1119
5d315d54b8b4 * keyboard.c (kbd_buffer_get_event): When performing the
Jim Blandy <jimb@redhat.com>
parents: 1104
diff changeset
4495 SIGTYPE
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4496 input_available_signal (signo)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4497 int signo;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4498 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4499 /* Must preserve main program's value of errno. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4500 int old_errno = errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4501 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4502 extern int select_alarmed;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4503 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4504
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4505 #ifdef USG
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4506 /* USG systems forget handlers when they are used;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4507 must reestablish each time */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4508 signal (signo, input_available_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4509 #endif /* USG */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4510
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4511 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4512 sigisheld (SIGIO);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4513 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4514
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4515 if (input_available_clear_time)
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
4516 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4517
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4518 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4519 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4520 int nread;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4521 nread = read_avail_input (1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4522 /* -1 means it's not ok to read the input now.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4523 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4524 0 means there was no keyboard input available. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4525 if (nread <= 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4526 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4527
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4528 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4529 select_alarmed = 1; /* Force the select emulator back to life */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4530 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4531 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4532
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4533 #ifdef BSD4_1
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4534 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4535 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4536 errno = old_errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4537 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4538 #endif /* SIGIO */
2726
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4539
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4540 /* Send ourselves a SIGIO.
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4541
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4542 This function exists so that the UNBLOCK_INPUT macro in
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4543 blockinput.h can have some way to take care of input we put off
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4544 dealing with, without assuming that every file which uses
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4545 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4546 void
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4547 reinvoke_input_signal ()
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4548 {
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
4549 #ifdef SIGIO
2726
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4550 kill (0, SIGIO);
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4551 #endif
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4552 }
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4553
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
4554
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4555
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4556 /* Return the prompt-string of a sparse keymap.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4557 This is the first element which is a string.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4558 Return nil if there is none. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4559
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4560 Lisp_Object
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4561 map_prompt (map)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4562 Lisp_Object map;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4563 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4564 while (CONSP (map))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4565 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4566 register Lisp_Object tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4567 tem = Fcar (map);
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4568 if (STRINGP (tem))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4569 return tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4570 map = Fcdr (map);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4571 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4572 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4573 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4574
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4575 static void menu_bar_item ();
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4576 static void menu_bar_one_keymap ();
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4577
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4578 /* These variables hold the vector under construction within
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4579 menu_bar_items and its subroutines, and the current index
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4580 for storing into that vector. */
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4581 static Lisp_Object menu_bar_items_vector;
8938
16c1ca187613 (kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents: 8936
diff changeset
4582 static int menu_bar_items_index;
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4583
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4584 /* Return a vector of menu items for a menu bar, appropriate
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4585 to the current buffer. Each item has three elements in the vector:
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4586 KEY STRING MAPLIST.
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4587
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4588 OLD is an old vector we can optionally reuse, or nil. */
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4589
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4590 Lisp_Object
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4591 menu_bar_items (old)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4592 Lisp_Object old;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4593 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4594 /* The number of keymaps we're scanning right now, and the number of
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4595 keymaps we have allocated space for. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4596 int nmaps;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4597
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4598 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4599 in the current keymaps, or nil where it is not a prefix. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4600 Lisp_Object *maps;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4601
4115
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
4602 Lisp_Object def, tem, tail;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4603
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4604 Lisp_Object result;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4605
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4606 int mapno;
3255
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
4607 Lisp_Object oquit;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4608
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4609 int i;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4610
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4611 struct gcpro gcpro1;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4612
3209
1166db56c752 * keyboard.c (menu_bar_items): Bind Qinhibit_quit to Qt while we
Jim Blandy <jimb@redhat.com>
parents: 3174
diff changeset
4613 /* In order to build the menus, we need to call the keymap
1166db56c752 * keyboard.c (menu_bar_items): Bind Qinhibit_quit to Qt while we
Jim Blandy <jimb@redhat.com>
parents: 3174
diff changeset
4614 accessors. They all call QUIT. But this function is called
1166db56c752 * keyboard.c (menu_bar_items): Bind Qinhibit_quit to Qt while we
Jim Blandy <jimb@redhat.com>
parents: 3174
diff changeset
4615 during redisplay, during which a quit is fatal. So inhibit
3255
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
4616 quitting while building the menus.
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
4617 We do this instead of specbind because (1) errors will clear it anyway
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
4618 and (2) this avoids risk of specpdl overflow. */
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
4619 oquit = Vinhibit_quit;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
4620 Vinhibit_quit = Qt;
3209
1166db56c752 * keyboard.c (menu_bar_items): Bind Qinhibit_quit to Qt while we
Jim Blandy <jimb@redhat.com>
parents: 3174
diff changeset
4621
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4622 if (!NILP (old))
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4623 menu_bar_items_vector = old;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4624 else
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4625 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4626 menu_bar_items_index = 0;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4627
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4628 GCPRO1 (menu_bar_items_vector);
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4629
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4630 /* Build our list of keymaps.
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4631 If we recognize a function key and replace its escape sequence in
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4632 keybuf with its symbol, or if the sequence starts with a mouse
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4633 click and we need to switch buffers, we jump back here to rebuild
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4634 the initial keymaps from the current buffer. */
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
4635 {
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4636 Lisp_Object *tmaps;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4637
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4638 /* Should overriding-terminal-local-map and overriding-local-map apply? */
9607
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
4639 if (!NILP (Voverriding_local_map_menu_flag))
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
4640 {
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4641 /* Yes, use them (if non-nil) as well as the global map. */
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4642 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4643 nmaps = 0;
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4644 if (!NILP (current_kboard->Voverriding_terminal_local_map))
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4645 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4646 if (!NILP (Voverriding_local_map))
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4647 maps[nmaps++] = Voverriding_local_map;
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
4648 }
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
4649 else
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
4650 {
9607
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
4651 /* No, so use major and minor mode keymaps. */
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4652 nmaps = current_minor_maps (NULL, &tmaps);
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4653 maps = (Lisp_Object *) alloca ((nmaps + 2) * sizeof (maps[0]));
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4654 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4655 #ifdef USE_TEXT_PROPERTIES
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4656 maps[nmaps++] = get_local_map (PT, current_buffer);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4657 #else
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4658 maps[nmaps++] = current_buffer->keymap;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4659 #endif
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
4660 }
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
4661 maps[nmaps++] = current_global_map;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4662 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4663
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4664 /* Look up in each map the dummy prefix key `menu-bar'. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4665
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4666 result = Qnil;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4667
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4668 for (mapno = nmaps - 1; mapno >= 0; mapno--)
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4669 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4670 if (! NILP (maps[mapno]))
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
4671 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4672 else
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4673 def = Qnil;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4674
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4675 tem = Fkeymapp (def);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4676 if (!NILP (tem))
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4677 menu_bar_one_keymap (def);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4678 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4679
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4680 /* Move to the end those items that should be at the end. */
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4681
4115
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
4682 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
4683 {
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4684 int i;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4685 int end = menu_bar_items_index;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4686
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4687 for (i = 0; i < end; i += 3)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4688 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i]))
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4689 {
6159
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4690 Lisp_Object tem0, tem1, tem2;
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4691 /* Move the item at index I to the end,
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4692 shifting all the others forward. */
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4693 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4694 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4695 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4696 if (end > i + 3)
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4697 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4698 &XVECTOR (menu_bar_items_vector)->contents[i],
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4699 (end - i - 3) * sizeof (Lisp_Object));
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4700 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem0;
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4701 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem1;
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4702 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem2;
78275962ef1e (menu_bar_items): When moving an item to the end,
Richard M. Stallman <rms@gnu.org>
parents: 6135
diff changeset
4703 break;
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4704 }
4115
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
4705 }
4088
bea0be5ab35e (Vhelp_menu_bar_map): New var.
Richard M. Stallman <rms@gnu.org>
parents: 4065
diff changeset
4706
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4707 /* Add nil, nil, nil at the end. */
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4708 i = menu_bar_items_index;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4709 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4710 {
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4711 Lisp_Object tem;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4712 int newsize = 2 * i;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4713 tem = Fmake_vector (make_number (2 * i), Qnil);
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4714 bcopy (XVECTOR (menu_bar_items_vector)->contents,
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4715 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4716 menu_bar_items_vector = tem;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4717 }
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4718 /* Add this item. */
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4719 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4720 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4721 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4722 menu_bar_items_index = i;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4723
3255
b04e2b131ef0 (menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents: 3209
diff changeset
4724 Vinhibit_quit = oquit;
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4725 UNGCPRO;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4726 return menu_bar_items_vector;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4727 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4728
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4729 /* Scan one map KEYMAP, accumulating any menu items it defines
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4730 in menu_bar_items_vector. */
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4731
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4732 static void
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4733 menu_bar_one_keymap (keymap)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4734 Lisp_Object keymap;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4735 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4736 Lisp_Object tail, item, key, binding, item_string, table;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4737
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4738 /* Loop over all keymap entries that have menu strings. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4739 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr)
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4740 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4741 item = XCONS (tail)->car;
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4742 if (CONSP (item))
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4743 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4744 key = XCONS (item)->car;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4745 binding = XCONS (item)->cdr;
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4746 if (CONSP (binding))
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4747 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4748 item_string = XCONS (binding)->car;
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4749 if (STRINGP (item_string))
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4750 menu_bar_item (key, item_string, Fcdr (binding));
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4751 }
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4752 else if (EQ (binding, Qundefined))
7650
f6d9c3187245 (menu_bar_one_keymap):
Richard M. Stallman <rms@gnu.org>
parents: 7587
diff changeset
4753 menu_bar_item (key, Qnil, binding);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4754 }
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4755 else if (VECTORP (item))
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4756 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4757 /* Loop over the char values represented in the vector. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4758 int len = XVECTOR (item)->size;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4759 int c;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4760 for (c = 0; c < len; c++)
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4761 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4762 Lisp_Object character;
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
4763 XSETFASTINT (character, c);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4764 binding = XVECTOR (item)->contents[c];
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4765 if (CONSP (binding))
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4766 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4767 item_string = XCONS (binding)->car;
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4768 if (STRINGP (item_string))
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4769 menu_bar_item (key, item_string, Fcdr (binding));
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4770 }
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4771 else if (EQ (binding, Qundefined))
7650
f6d9c3187245 (menu_bar_one_keymap):
Richard M. Stallman <rms@gnu.org>
parents: 7587
diff changeset
4772 menu_bar_item (key, Qnil, binding);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4773 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4774 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4775 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4776 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4777
5808
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4778 /* This is used as the handler when calling internal_condition_case_1. */
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4779
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4780 static Lisp_Object
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4781 menu_bar_item_1 (arg)
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4782 Lisp_Object arg;
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4783 {
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4784 return Qnil;
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4785 }
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4786
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4787 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4788 If there's already an item for KEY, add this DEF to it. */
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4789
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4790 static void
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4791 menu_bar_item (key, item_string, def)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4792 Lisp_Object key, item_string, def;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4793 {
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4794 Lisp_Object tem;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4795 Lisp_Object enabled;
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4796 int i;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4797
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4798 if (EQ (def, Qundefined))
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4799 {
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4800 /* If a map has an explicit `undefined' as definition,
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4801 discard any previously made menu bar item. */
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4802
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4803 for (i = 0; i < menu_bar_items_index; i += 3)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4804 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4805 {
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4806 if (menu_bar_items_index > i + 3)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4807 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4808 &XVECTOR (menu_bar_items_vector)->contents[i],
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4809 (menu_bar_items_index - i - 3) * sizeof (Lisp_Object));
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4810 menu_bar_items_index -= 3;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4811 return;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4812 }
7650
f6d9c3187245 (menu_bar_one_keymap):
Richard M. Stallman <rms@gnu.org>
parents: 7587
diff changeset
4813
f6d9c3187245 (menu_bar_one_keymap):
Richard M. Stallman <rms@gnu.org>
parents: 7587
diff changeset
4814 /* If there's no definition for this key yet,
f6d9c3187245 (menu_bar_one_keymap):
Richard M. Stallman <rms@gnu.org>
parents: 7587
diff changeset
4815 just ignore `undefined'. */
f6d9c3187245 (menu_bar_one_keymap):
Richard M. Stallman <rms@gnu.org>
parents: 7587
diff changeset
4816 return;
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4817 }
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
4818
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4819 /* See if this entry is enabled. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4820 enabled = Qt;
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4821
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
4822 if (SYMBOLP (def))
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4823 {
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4824 /* No property, or nil, means enable.
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4825 Otherwise, enable if value is not nil. */
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4826 tem = Fget (def, Qmenu_enable);
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4827 if (!NILP (tem))
5808
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4828 /* (condition-case nil (eval tem)
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4829 (error nil)) */
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4830 enabled = internal_condition_case_1 (Feval, tem, Qerror,
995860e5f342 (menu_bar_item): Use internal_condition_case_1.
Richard M. Stallman <rms@gnu.org>
parents: 5779
diff changeset
4831 menu_bar_item_1);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4832 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4833
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4834 /* Ignore this item if it's not enabled. */
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4835 if (NILP (enabled))
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4836 return;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4837
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4838 /* Find any existing item for this KEY. */
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4839 for (i = 0; i < menu_bar_items_index; i += 3)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4840 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4841 break;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4842
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4843 /* If we did not find this KEY, add it at the end. */
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4844 if (i == menu_bar_items_index)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4845 {
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4846 /* If vector is too small, get a bigger one. */
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4847 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4848 {
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4849 Lisp_Object tem;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4850 int newsize = 2 * i;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4851 tem = Fmake_vector (make_number (2 * i), Qnil);
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4852 bcopy (XVECTOR (menu_bar_items_vector)->contents,
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4853 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4854 menu_bar_items_vector = tem;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4855 }
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4856 /* Add this item. */
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4857 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4858 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string;
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4859 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil);
6135
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4860 menu_bar_items_index = i;
bfe9f873bd64 (menu_bar_items): Accept old vector as arg. Return a vector.
Richard M. Stallman <rms@gnu.org>
parents: 6101
diff changeset
4861 }
7098
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4862 /* We did find an item for this KEY. Add DEF to its list of maps. */
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4863 else
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4864 {
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4865 Lisp_Object old;
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4866 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4867 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old);
9e9d5db094b5 (menu_bar_item): Put a list of keymaps into the third
Richard M. Stallman <rms@gnu.org>
parents: 6972
diff changeset
4868 }
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4869 }
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
4870
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
4871 /* Read a character using menus based on maps in the array MAPS.
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
4872 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
4873 Return t if we displayed a menu but the user rejected it.
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4874
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4875 PREV_EVENT is the previous input event, or nil if we are reading
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4876 the first event of a key sequence.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4877
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
4878 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
4879 if we used a mouse menu to read the input, or zero otherwise. If
11654
47ceabade5b2 (kbd_buffer_get_event): New arg USED_MOUSE_MENU.
Karl Heuer <kwzh@gnu.org>
parents: 11613
diff changeset
4880 USED_MOUSE_MENU is null, we don't dereference it.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4881
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4882 The prompting is done based on the prompt-string of the map
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
4883 and the strings associated with various map elements.
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4884
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4885 This can be done with X menus or with menus put in the minibuf.
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4886 These are done in different ways, depending on how the input will be read.
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4887 Menus using X are done after auto-saving in read-char, getting the input
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4888 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4889 and do auto-saving in the inner call of read_char. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4890
3453
1fd89e975a78 (read_char_menu_prompt): Now static. Add declaration.
Richard M. Stallman <rms@gnu.org>
parents: 3452
diff changeset
4891 static Lisp_Object
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4892 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4893 int nmaps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4894 Lisp_Object *maps;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4895 Lisp_Object prev_event;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4896 int *used_mouse_menu;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4897 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4898 int mapno;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4899 register Lisp_Object name;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4900 Lisp_Object rest, vector;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4901
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
4902 if (used_mouse_menu)
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
4903 *used_mouse_menu = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4904
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4905 /* Use local over global Menu maps */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4906
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4907 if (! menu_prompting)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4908 return Qnil;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4909
9396
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
4910 /* Optionally disregard all but the global map. */
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
4911 if (inhibit_local_menu_bar_menus)
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
4912 {
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
4913 maps += (nmaps - 1);
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
4914 nmaps = 1;
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
4915 }
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
4916
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4917 /* Get the menu name from the first map that has one (a prompt string). */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4918 for (mapno = 0; mapno < nmaps; mapno++)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4919 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4920 name = map_prompt (maps[mapno]);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4921 if (!NILP (name))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4922 break;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4923 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4924
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4925 /* If we don't have any menus, just read a character normally. */
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1802
diff changeset
4926 if (mapno >= nmaps)
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4927 return Qnil;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4928
13864
8389738a7792 (read_char_x_menu_prompt): HAVE_X_MENU renamed to HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents: 13842
diff changeset
4929 #ifdef HAVE_MENUS
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4930 /* If we got to this point via a mouse click,
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4931 use a real menu for mouse selection. */
11613
c4ef6460a9c9 (read_char, read_char_x_menu_prompt): Exclude
Karl Heuer <kwzh@gnu.org>
parents: 11543
diff changeset
4932 if (EVENT_HAS_PARAMETERS (prev_event)
c4ef6460a9c9 (read_char, read_char_x_menu_prompt): Exclude
Karl Heuer <kwzh@gnu.org>
parents: 11543
diff changeset
4933 && !EQ (XCONS (prev_event)->car, Qmenu_bar))
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4934 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4935 /* Display the menu and get the selection. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4936 Lisp_Object *realmaps
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4937 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4938 Lisp_Object value;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4939 int nmaps1 = 0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4940
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4941 /* Use the maps that are not nil. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4942 for (mapno = 0; mapno < nmaps; mapno++)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4943 if (!NILP (maps[mapno]))
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4944 realmaps[nmaps1++] = maps[mapno];
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4945
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4946 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
2719
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
4947 if (CONSP (value))
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
4948 {
13082
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4949 Lisp_Object tem;
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4950
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4951 /* If we got multiple events, unread all but
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4952 the first.
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4953 There is no way to prevent those unread events
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4954 from showing up later in last_nonmenu_event.
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4955 So turn symbol and integer events into lists,
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4956 to indicate that they came from a mouse menu,
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4957 so that when present in last_nonmenu_event
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4958 they won't confuse things. */
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4959 for (tem = XCONS (value)->cdr; !NILP (tem);
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4960 tem = XCONS (tem)->cdr)
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4961 if (SYMBOLP (XCONS (tem)->car)
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4962 || INTEGERP (XCONS (tem)->car))
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4963 XCONS (tem)->car
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4964 = Fcons (XCONS (tem)->car, Qnil);
909b5a8414ee (safe_run_hooks): No longer static.
Richard M. Stallman <rms@gnu.org>
parents: 13014
diff changeset
4965
2719
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
4966 /* If we got more than one event, put all but the first
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
4967 onto this list to be read later.
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
4968 Return just the first event now. */
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
4969 Vunread_command_events
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
4970 = nconc2 (XCONS (value)->cdr, Vunread_command_events);
2719
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
4971 value = XCONS (value)->car;
340d7c6c8790 * keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents: 2690
diff changeset
4972 }
6932
bde97688f58b (read_char_x_menu_prompt): Don't check for value = nil
Richard M. Stallman <rms@gnu.org>
parents: 6925
diff changeset
4973 else if (NILP (value))
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
4974 value = Qt;
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
4975 if (used_mouse_menu)
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
4976 *used_mouse_menu = 1;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4977 return value;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
4978 }
13864
8389738a7792 (read_char_x_menu_prompt): HAVE_X_MENU renamed to HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents: 13842
diff changeset
4979 #endif /* HAVE_MENUS */
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4980 return Qnil ;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4981 }
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4982
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4983 static Lisp_Object
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
4984 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4985 int commandflag ;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4986 int nmaps;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4987 Lisp_Object *maps;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4988 {
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4989 int mapno;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4990 register Lisp_Object name;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4991 int nlength;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4992 int width = FRAME_WIDTH (selected_frame) - 4;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4993 char *menu = (char *) alloca (width + 4);
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4994 int idx = -1;
7587
efaee8861ad4 (read_char_minibuf_menu_prompt): Don't forget to initialize nobindings.
Richard M. Stallman <rms@gnu.org>
parents: 7547
diff changeset
4995 int nobindings = 1;
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4996 Lisp_Object rest, vector;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4997
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4998 if (! menu_prompting)
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
4999 return Qnil;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5000
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5001 /* Get the menu name from the first map that has one (a prompt string). */
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5002 for (mapno = 0; mapno < nmaps; mapno++)
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5003 {
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5004 name = map_prompt (maps[mapno]);
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5005 if (!NILP (name))
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5006 break;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5007 }
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5008
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5009 /* If we don't have any menus, just read a character normally. */
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5010 if (mapno >= nmaps)
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5011 return Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5012
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5013 /* Prompt string always starts with map's prompt, and a space. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5014 strcpy (menu, XSTRING (name)->data);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5015 nlength = XSTRING (name)->size;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5016 menu[nlength++] = ':';
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5017 menu[nlength++] = ' ';
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5018 menu[nlength] = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5019
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5020 /* Start prompting at start of first map. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5021 mapno = 0;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5022 rest = maps[mapno];
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5023
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5024 /* Present the documented bindings, a line at a time. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5025 while (1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5026 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5027 int notfirst = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5028 int i = nlength;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5029 Lisp_Object obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5030 int ch;
10907
1e9ffdb9980c (read_char_minibuf_menu_prompt): orig_defn_macro is now Lisp_Object, not int.
Karl Heuer <kwzh@gnu.org>
parents: 10905
diff changeset
5031 Lisp_Object orig_defn_macro;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5032
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5033 /* Loop over elements of map. */
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5034 while (i < width)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5035 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5036 Lisp_Object s, elt;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5037
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5038 /* If reached end of map, start at beginning of next map. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5039 if (NILP (rest))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5040 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5041 mapno++;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5042 /* At end of last map, wrap around to first map if just starting,
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5043 or end this line if already have something on it. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5044 if (mapno == nmaps)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5045 {
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5046 mapno = 0;
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
5047 if (notfirst || nobindings) break;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5048 }
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5049 rest = maps[mapno];
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5050 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5051
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5052 /* Look at the next element of the map. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5053 if (idx >= 0)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5054 elt = XVECTOR (vector)->contents[idx];
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5055 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5056 elt = Fcar_safe (rest);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5057
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5058 if (idx < 0 && VECTORP (elt))
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5059 {
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5060 /* If we found a dense table in the keymap,
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5061 advanced past it, but start scanning its contents. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5062 rest = Fcdr_safe (rest);
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5063 vector = elt;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5064 idx = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5065 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5066 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5067 {
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5068 /* An ordinary element. */
12185
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5069 Lisp_Object event;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5070
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5071 if (idx < 0)
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5072 {
12185
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5073 s = Fcar_safe (Fcdr_safe (elt)); /* alist */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5074 event = Fcar_safe (elt);
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5075 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5076 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5077 {
12185
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5078 s = Fcar_safe (elt); /* vector */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5079 XSETINT (event, idx);
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5080 }
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5081
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5082 /* Ignore the element if it has no prompt string. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5083 if (STRINGP (s) && INTEGERP (event))
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5084 {
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5085 /* 1 if the char to type matches the string. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5086 int char_matches;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5087 Lisp_Object upcased_event, downcased_event;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5088 Lisp_Object desc;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5089
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5090 upcased_event = Fupcase (event);
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5091 downcased_event = Fdowncase (event);
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5092 char_matches = (XINT (upcased_event) == XSTRING (s)->data[0]
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5093 || XINT (downcased_event) == XSTRING (s)->data[0]);
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5094 if (! char_matches)
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5095 desc = Fsingle_key_description (event);
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5096
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5097 /* If we have room for the prompt string, add it to this line.
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5098 If this is the first on the line, always add it. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5099 if ((XSTRING (s)->size + i + 2
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5100 + (char_matches ? 0 : XSTRING (desc)->size + 3))
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5101 < width
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5102 || !notfirst)
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5103 {
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5104 int thiswidth;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5105
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5106 /* Punctuate between strings. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5107 if (notfirst)
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5108 {
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5109 strcpy (menu + i, ", ");
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5110 i += 2;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5111 }
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5112 notfirst = 1;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5113 nobindings = 0 ;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5114
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5115 /* If the char to type doesn't match the string's
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5116 first char, explicitly show what char to type. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5117 if (! char_matches)
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5118 {
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5119 /* Add as much of string as fits. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5120 thiswidth = XSTRING (desc)->size;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5121 if (thiswidth + i > width)
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5122 thiswidth = width - i;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5123 bcopy (XSTRING (desc)->data, menu + i, thiswidth);
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5124 i += thiswidth;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5125 strcpy (menu + i, " = ");
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5126 i += 3;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5127 }
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5128
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5129 /* Add as much of string as fits. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5130 thiswidth = XSTRING (s)->size;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5131 if (thiswidth + i > width)
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5132 thiswidth = width - i;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5133 bcopy (XSTRING (s)->data, menu + i, thiswidth);
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5134 i += thiswidth;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5135 menu[i] = 0;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5136 }
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5137 else
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5138 {
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5139 /* If this element does not fit, end the line now,
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5140 and save the element for the next line. */
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5141 strcpy (menu + i, "...");
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5142 break;
7a18efea682a (read_char_minibuf_menu_prompt):
Karl Heuer <kwzh@gnu.org>
parents: 12176
diff changeset
5143 }
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5144 }
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5145
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5146 /* Move past this element. */
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5147 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5148 /* Handle reaching end of dense table. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5149 idx = -1;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5150 if (idx >= 0)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5151 idx++;
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5152 else
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5153 rest = Fcdr_safe (rest);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5154 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5155 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5156
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5157 /* Prompt with that and read response. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5158 message1 (menu);
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5159
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5160 /* Make believe its not a keyboard macro in case the help char
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5161 is pressed. Help characters are not recorded because menu prompting
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5162 is not used on replay.
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5163 */
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5164 orig_defn_macro = current_kboard->defining_kbd_macro;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5165 current_kboard->defining_kbd_macro = Qnil;
5889
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5166 do
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5167 obj = read_char (commandflag, 0, 0, Qnil, 0);
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5168 while (BUFFERP (obj));
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5169 current_kboard->defining_kbd_macro = orig_defn_macro;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5170
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5171 if (!INTEGERP (obj))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5172 return obj;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5173 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5174 ch = XINT (obj);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5175
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5176 if (! EQ (obj, menu_prompt_more_char)
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5177 && (!INTEGERP (menu_prompt_more_char)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5178 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5179 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5180 if (!NILP (current_kboard->defining_kbd_macro))
10907
1e9ffdb9980c (read_char_minibuf_menu_prompt): orig_defn_macro is now Lisp_Object, not int.
Karl Heuer <kwzh@gnu.org>
parents: 10905
diff changeset
5181 store_kbd_macro_char (obj);
5565
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5182 return obj;
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5183 }
8b688d642fc1 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
Richard M. Stallman <rms@gnu.org>
parents: 5513
diff changeset
5184 /* Help char - go round again */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5185 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5186 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5187
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5188 /* Reading key sequences. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5189
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5190 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5191 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5192 keymap, or nil otherwise. Return the index of the first keymap in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5193 which KEY has any binding, or NMAPS if no map has a binding.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5194
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5195 If KEY is a meta ASCII character, treat it like meta-prefix-char
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5196 followed by the corresponding non-meta character. Keymaps in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5197 CURRENT with non-prefix bindings for meta-prefix-char become nil in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5198 NEXT.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5199
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
5200 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
5201 unmodified.
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
5202
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5203 NEXT may be the same array as CURRENT. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5204
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5205 static int
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
5206 follow_key (key, nmaps, current, defs, next)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5207 Lisp_Object key;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5208 Lisp_Object *current, *defs, *next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5209 int nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5210 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5211 int i, first_binding;
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5212 int did_meta = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5213
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5214 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5215 followed by the corresponding non-meta character.
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5216 Put the results into DEFS, since we are going to alter that anyway.
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5217 Do not alter CURRENT or NEXT. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5218 if (INTEGERP (key) && (XINT (key) & CHAR_META))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5219 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5220 for (i = 0; i < nmaps; i++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5221 if (! NILP (current[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5222 {
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5223 Lisp_Object def;
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5224 def = get_keyelt (access_keymap (current[i],
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5225 meta_prefix_char, 1, 0));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5226
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5227 /* Note that since we pass the resulting bindings through
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5228 get_keymap_1, non-prefix bindings for meta-prefix-char
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5229 disappear. */
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5230 defs[i] = get_keymap_1 (def, 0, 1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5231 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5232 else
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5233 defs[i] = Qnil;
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5234
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5235 did_meta = 1;
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
5236 XSETINT (key, XFASTINT (key) & ~CHAR_META);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5237 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5238
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5239 first_binding = nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5240 for (i = nmaps - 1; i >= 0; i--)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5241 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5242 if (! NILP (current[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5243 {
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5244 Lisp_Object map;
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5245 if (did_meta)
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5246 map = defs[i];
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5247 else
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5248 map = current[i];
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5249
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
5250 defs[i] = get_keyelt (access_keymap (map, key, 1, 0));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5251 if (! NILP (defs[i]))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5252 first_binding = i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5253 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5254 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5255 defs[i] = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5256 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5257
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5258 /* Given the set of bindings we've found, produce the next set of maps. */
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5259 if (first_binding < nmaps)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5260 for (i = 0; i < nmaps; i++)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5261 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5262
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5263 return first_binding;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5264 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5265
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5266 /* Read a sequence of keys that ends with a non prefix character,
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5267 storing it in KEYBUF, a buffer of size BUFSIZE.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5268 Prompt with PROMPT.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5269 Return the length of the key sequence stored.
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
5270 Return -1 if the user rejected a command menu.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5271
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5272 Echo starting immediately unless `prompt' is 0.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5273
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5274 Where a key sequence ends depends on the currently active keymaps.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5275 These include any minor mode keymaps active in the current buffer,
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5276 the current buffer's local map, and the global map.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5277
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5278 If a key sequence has no other bindings, we check Vfunction_key_map
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5279 to see if some trailing subsequence might be the beginning of a
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5280 function key's sequence. If so, we try to read the whole function
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5281 key, and substitute its symbolic name into the key sequence.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5282
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5283 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5284 `double-' events into similar click events, if that would make them
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5285 bound. We try to turn `triple-' events first into `double-' events,
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5286 then into clicks.
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5287
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5288 If we get a mouse click in a mode line, vertical divider, or other
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5289 non-text area, we treat the click as if it were prefixed by the
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5290 symbol denoting that area - `mode-line', `vertical-line', or
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5291 whatever.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5292
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5293 If the sequence starts with a mouse click, we read the key sequence
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5294 with respect to the buffer clicked on, not the current buffer.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5295
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5296 If the user switches frames in the midst of a key sequence, we put
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5297 off the switch-frame event until later; the next call to
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5298 read_char will return it. */
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
5299
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5300 static int
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
5301 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
5302 can_return_switch_frame)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5303 Lisp_Object *keybuf;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5304 int bufsize;
4878
57c506c597b9 (read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents: 4849
diff changeset
5305 Lisp_Object prompt;
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
5306 int dont_downcase_last;
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
5307 int can_return_switch_frame;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5308 {
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5309 int count = specpdl_ptr - specpdl;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5310
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5311 /* How many keys there are in the current key sequence. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5312 int t;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5313
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5314 /* The length of the echo buffer when we started reading, and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5315 the length of this_command_keys when we started reading. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5316 int echo_start;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5317 int keys_start;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5318
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5319 /* The number of keymaps we're scanning right now, and the number of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5320 keymaps we have allocated space for. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5321 int nmaps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5322 int nmaps_allocated = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5323
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5324 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5325 the current keymaps. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5326 Lisp_Object *defs;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5327
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5328 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5329 in the current keymaps, or nil where it is not a prefix. */
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5330 Lisp_Object *submaps;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5331
10381
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5332 /* The local map to start out with at start of key sequence. */
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5333 Lisp_Object orig_local_map;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5334
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5335 /* 1 if we have already considered switching to the local-map property
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5336 of the place where a mouse click occurred. */
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5337 int localized_local_map = 0;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5338
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5339 /* The index in defs[] of the first keymap that has a binding for
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5340 this key sequence. In other words, the lowest i such that
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5341 defs[i] is non-nil. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5342 int first_binding;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5343
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5344 /* If t < mock_input, then KEYBUF[t] should be read as the next
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5345 input key.
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5346
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5347 We use this to recover after recognizing a function key. Once we
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5348 realize that a suffix of the current key sequence is actually a
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5349 function key's escape sequence, we replace the suffix with the
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5350 function key's binding from Vfunction_key_map. Now keybuf
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5351 contains a new and different key sequence, so the echo area,
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5352 this_command_keys, and the submaps and defs arrays are wrong. In
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5353 this situation, we set mock_input to t, set t to 0, and jump to
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5354 restart_sequence; the loop will read keys from keybuf up until
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5355 mock_input, thus rebuilding the state; and then it will resume
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5356 reading characters from the keyboard. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5357 int mock_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5358
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5359 /* If the sequence is unbound in submaps[], then
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5360 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5361 and fkey_map is its binding.
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5362
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5363 These might be > t, indicating that all function key scanning
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5364 should hold off until t reaches them. We do this when we've just
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5365 recognized a function key, to avoid searching for the function
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5366 key's again in Vfunction_key_map. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5367 int fkey_start = 0, fkey_end = 0;
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5368 Lisp_Object fkey_map;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5369
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5370 /* Likewise, for key_translation_map. */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5371 int keytran_start = 0, keytran_end = 0;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5372 Lisp_Object keytran_map;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5373
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
5374 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
5375 we put it off for later. While we're reading, we keep the event here. */
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5376 Lisp_Object delayed_switch_frame;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5377
4823
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5378 /* See the comment below... */
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5379 #if defined (GOBBLE_FIRST_EVENT)
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5380 Lisp_Object first_event;
4823
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5381 #endif
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5382
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
5383 Lisp_Object original_uppercase;
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
5384 int original_uppercase_position = -1;
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
5385
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5386 /* Gets around Microsoft compiler limitations. */
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
5387 int dummyflag = 0;
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5388
5077
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5389 struct buffer *starting_buffer;
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5390
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5391 /* Nonzero if we seem to have got the beginning of a binding
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5392 in function_key_map. */
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5393 int function_key_possible = 0;
9445
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
5394 int key_translation_possible = 0;
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5395
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5396 /* Save the status of key translation before each step,
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5397 so that we can restore this after downcasing. */
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5398 Lisp_Object prev_fkey_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5399 Lisp_Object prev_fkey_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5400 Lisp_Object prev_fkey_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5401
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5402 Lisp_Object prev_keytran_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5403 Lisp_Object prev_keytran_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5404 Lisp_Object prev_keytran_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5405
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5406 int junk;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5407
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5408 last_nonmenu_event = Qnil;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5409
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5410 delayed_switch_frame = Qnil;
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5411 fkey_map = Vfunction_key_map;
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5412 keytran_map = Vkey_translation_map;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5413
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5414 /* If there is no function-key-map, turn off function key scanning. */
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5415 if (NILP (Fkeymapp (Vfunction_key_map)))
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5416 fkey_start = fkey_end = bufsize + 1;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5417
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5418 /* If there is no key-translation-map, turn off scanning. */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5419 if (NILP (Fkeymapp (Vkey_translation_map)))
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5420 keytran_start = keytran_end = bufsize + 1;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5421
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5422 if (INTERACTIVE)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5423 {
4878
57c506c597b9 (read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents: 4849
diff changeset
5424 if (!NILP (prompt))
57c506c597b9 (read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents: 4849
diff changeset
5425 echo_prompt (XSTRING (prompt)->data);
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
5426 else if (cursor_in_echo_area && echo_keystrokes)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5427 /* This doesn't put in a dash if the echo buffer is empty, so
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5428 you don't always see a dash hanging out in the minibuffer. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5429 echo_dash ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5430 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5431
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5432 /* Record the initial state of the echo area and this_command_keys;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5433 we will need to restore them if we replay a key sequence. */
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5434 if (INTERACTIVE)
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5435 echo_start = echo_length ();
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5436 keys_start = this_command_key_count;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5437
4823
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5438 #if defined (GOBBLE_FIRST_EVENT)
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5439 /* This doesn't quite work, because some of the things that read_char
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5440 does cannot safely be bypassed. It seems too risky to try to make
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5441 this work right. */
4823
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5442
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5443 /* Read the first char of the sequence specially, before setting
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5444 up any keymaps, in case a filter runs and switches buffers on us. */
4878
57c506c597b9 (read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents: 4849
diff changeset
5445 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5446 &junk);
4823
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
5447 #endif /* GOBBLE_FIRST_EVENT */
3294
4a10e4c34b11 (read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents: 3276
diff changeset
5448
10381
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5449 orig_local_map = get_local_map (PT, current_buffer);
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5450
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5451 /* We jump here when the key sequence has been thoroughly changed, and
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5452 we need to rescan it starting from the beginning. When we jump here,
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5453 keybuf[0..mock_input] holds the sequence we should reread. */
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
5454 replay_sequence:
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5455
5077
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5456 starting_buffer = current_buffer;
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5457 function_key_possible = 0;
9445
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
5458 key_translation_possible = 0;
5077
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5459
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5460 /* Build our list of keymaps.
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
5461 If we recognize a function key and replace its escape sequence in
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
5462 keybuf with its symbol, or if the sequence starts with a mouse
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
5463 click and we need to switch buffers, we jump back here to rebuild
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
5464 the initial keymaps from the current buffer. */
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5465 {
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5466 Lisp_Object *maps;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5467
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5468 if (!NILP (current_kboard->Voverriding_terminal_local_map)
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5469 || !NILP (Voverriding_local_map))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5470 {
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5471 if (3 > nmaps_allocated)
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
5472 {
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5473 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5474 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5475 nmaps_allocated = 3;
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
5476 }
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5477 nmaps = 0;
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5478 if (!NILP (current_kboard->Voverriding_terminal_local_map))
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5479 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5480 if (!NILP (Voverriding_local_map))
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5481 submaps[nmaps++] = Voverriding_local_map;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5482 }
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
5483 else
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
5484 {
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5485 nmaps = current_minor_maps (0, &maps);
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5486 if (nmaps + 2 > nmaps_allocated)
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
5487 {
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5488 submaps = (Lisp_Object *) alloca ((nmaps+2) * sizeof (submaps[0]));
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5489 defs = (Lisp_Object *) alloca ((nmaps+2) * sizeof (defs[0]));
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5490 nmaps_allocated = nmaps + 2;
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
5491 }
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5492 bcopy (maps, submaps, nmaps * sizeof (submaps[0]));
2061
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
5493 #ifdef USE_TEXT_PROPERTIES
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5494 submaps[nmaps++] = orig_local_map;
2061
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
5495 #else
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5496 submaps[nmaps++] = current_buffer->keymap;
2061
8fe7e77dc596 Include intervals.h.
Richard M. Stallman <rms@gnu.org>
parents: 2056
diff changeset
5497 #endif
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
5498 }
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
5499 submaps[nmaps++] = current_global_map;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5500 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5501
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5502 /* Find an accurate initial value for first_binding. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5503 for (first_binding = 0; first_binding < nmaps; first_binding++)
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5504 if (! NILP (submaps[first_binding]))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5505 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5506
5077
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5507 /* Start from the beginning in keybuf. */
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5508 t = 0;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5509
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5510 /* These are no-ops the first time through, but if we restart, they
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5511 revert the echo area and this_command_keys to their original state. */
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5512 this_command_key_count = keys_start;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5513 if (INTERACTIVE && t < mock_input)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5514 echo_truncate (echo_start);
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5515
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
5516 /* If the best binding for the current key sequence is a keymap, or
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
5517 we may be looking at a function key's escape sequence, keep on
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
5518 reading. */
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5519 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
5520 || (first_binding >= nmaps
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
5521 && fkey_start < t
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
5522 /* mock input is never part of a function key's sequence. */
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
5523 && mock_input <= fkey_start)
10533
52b954844444 (read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents: 10457
diff changeset
5524 || (first_binding >= nmaps
52b954844444 (read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents: 10457
diff changeset
5525 && keytran_start < t && key_translation_possible)
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5526 /* Don't return in the middle of a possible function key sequence,
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5527 if the only bindings we found were via case conversion.
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5528 Thus, if ESC O a has a function-key-map translation
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5529 and ESC o has a binding, don't return after ESC O,
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5530 so that we can translate ESC O plus the next character. */
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
5531 )
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5532 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5533 Lisp_Object key;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5534 int used_mouse_menu = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5535
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5536 /* Where the last real key started. If we need to throw away a
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5537 key that has expanded into more than one element of keybuf
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5538 (say, a mouse click on the mode line which is being treated
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5539 as [mode-line (mouse-...)], then we backtrack to this point
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5540 of keybuf. */
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5541 int last_real_key_start;
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
5542
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5543 /* These variables are analogous to echo_start and keys_start;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5544 while those allow us to restart the entire key sequence,
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5545 echo_local_start and keys_local_start allow us to throw away
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5546 just one key. */
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5547 int echo_local_start, keys_local_start, local_first_binding;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5548
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5549 if (t >= bufsize)
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5550 error ("Key sequence too long");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5551
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5552 if (INTERACTIVE)
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5553 echo_local_start = echo_length ();
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5554 keys_local_start = this_command_key_count;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5555 local_first_binding = first_binding;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5556
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5557 replay_key:
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5558 /* These are no-ops, unless we throw away a keystroke below and
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5559 jumped back up to replay_key; in that case, these restore the
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5560 variables to their original state, allowing us to replay the
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5561 loop. */
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
5562 if (INTERACTIVE && t < mock_input)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5563 echo_truncate (echo_local_start);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5564 this_command_key_count = keys_local_start;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5565 first_binding = local_first_binding;
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5566
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5567 /* By default, assume each event is "real". */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5568 last_real_key_start = t;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5569
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5570 /* Does mock_input indicate that we are re-reading a key sequence? */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5571 if (t < mock_input)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5572 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5573 key = keybuf[t];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5574 add_command_key (key);
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
5575 if (echo_keystrokes)
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
5576 echo_char (key);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5577 }
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5578
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5579 /* If not, we should actually read a character. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5580 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5581 {
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
5582 struct buffer *buf = current_buffer;
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
5583
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5584 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5585 #ifdef MULTI_KBOARD
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5586 KBOARD *interrupted_kboard = current_kboard;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5587 struct frame *interrupted_frame = selected_frame;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5588 if (setjmp (wrong_kboard_jmpbuf))
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5589 {
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5590 if (!NILP (delayed_switch_frame))
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5591 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5592 interrupted_kboard->kbd_queue
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5593 = Fcons (delayed_switch_frame,
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5594 interrupted_kboard->kbd_queue);
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5595 delayed_switch_frame = Qnil;
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5596 }
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5597 while (t > 0)
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5598 interrupted_kboard->kbd_queue
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5599 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5600
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5601 /* If the side queue is non-empty, ensure it begins with a
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5602 switch-frame, so we'll replay it in the right context. */
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5603 if (CONSP (interrupted_kboard->kbd_queue)
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5604 && (key = XCONS (interrupted_kboard->kbd_queue)->car,
10997
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5605 !(EVENT_HAS_PARAMETERS (key)
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5606 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
66d853abce42 (event_to_perdisplay): New function.
Karl Heuer <kwzh@gnu.org>
parents: 10985
diff changeset
5607 Qswitch_frame))))
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5608 {
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5609 Lisp_Object frame;
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5610 XSETFRAME (frame, interrupted_frame);
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5611 interrupted_kboard->kbd_queue
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5612 = Fcons (make_lispy_switch_frame (frame),
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
5613 interrupted_kboard->kbd_queue);
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5614 }
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5615 mock_input = 0;
10915
4d587fff2aa0 (read_key_sequence): Update orig_local_map
Richard M. Stallman <rms@gnu.org>
parents: 10907
diff changeset
5616 orig_local_map = get_local_map (PT, current_buffer);
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5617 goto replay_sequence;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5618 }
10820
5bef43a53c01 (display_locked): New var to indicate when we're in the run state.
Karl Heuer <kwzh@gnu.org>
parents: 10800
diff changeset
5619 #endif
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5620 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event,
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5621 &used_mouse_menu);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
5622 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5623
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
5624 /* read_char returns t when it shows a menu and the user rejects it.
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
5625 Just return -1. */
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
5626 if (EQ (key, Qt))
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
5627 return -1;
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
5628
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5629 /* read_char returns -1 at the end of a macro.
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5630 Emacs 18 handles this by returning immediately with a
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5631 zero, so that's what we'll do. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5632 if (INTEGERP (key) && XINT (key) == -1)
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
5633 {
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5634 t = 0;
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5635 /* The Microsoft C compiler can't handle the goto that
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5636 would go here. */
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
5637 dummyflag = 1;
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5638 break;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
5639 }
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5640
5889
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5641 /* If the current buffer has been changed from under us, the
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5642 keymap may have changed, so replay the sequence. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5643 if (BUFFERP (key))
5889
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5644 {
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5645 mock_input = t;
10915
4d587fff2aa0 (read_key_sequence): Update orig_local_map
Richard M. Stallman <rms@gnu.org>
parents: 10907
diff changeset
5646 orig_local_map = get_local_map (PT, current_buffer);
5889
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5647 goto replay_sequence;
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5648 }
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5649
5077
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5650 /* If we have a quit that was typed in another frame, and
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5651 quit_throw_to_read_char switched buffers,
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5652 replay to get the right keymap. */
8938
16c1ca187613 (kbd_store_ptr): Declare storage class before qualifier.
Karl Heuer <kwzh@gnu.org>
parents: 8936
diff changeset
5653 if (XINT (key) == quit_char && current_buffer != starting_buffer)
5077
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5654 {
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5655 keybuf[t++] = key;
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5656 mock_input = t;
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5657 Vquit_flag = Qnil;
10915
4d587fff2aa0 (read_key_sequence): Update orig_local_map
Richard M. Stallman <rms@gnu.org>
parents: 10907
diff changeset
5658 orig_local_map = get_local_map (PT, current_buffer);
5077
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5659 goto replay_sequence;
a928c879b7ea (read_key_sequence): If we get a quit, and current buffer
Richard M. Stallman <rms@gnu.org>
parents: 5064
diff changeset
5660 }
5889
06bbb0e856d7 (read_char, read_char_minibuf_menu_prompt, read_key_sequence): Retry read_char
Karl Heuer <kwzh@gnu.org>
parents: 5887
diff changeset
5661
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5662 Vquit_flag = Qnil;
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5663 }
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5664
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
5665 /* Clicks in non-text areas get prefixed by the symbol
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5666 in their CHAR-ADDRESS field. For example, a click on
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5667 the mode line is prefixed by the symbol `mode-line'.
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5668
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5669 Furthermore, key sequences beginning with mouse clicks
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5670 are read using the keymaps of the buffer clicked on, not
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5671 the current buffer. So we may have to switch the buffer
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5672 here.
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5673
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5674 When we turn one event into two events, we must make sure
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5675 that neither of the two looks like the original--so that,
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5676 if we replay the events, they won't be expanded again.
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5677 If not for this, such reexpansion could happen either here
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5678 or when user programs play with this-command-keys. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5679 if (EVENT_HAS_PARAMETERS (key))
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5680 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5681 Lisp_Object kind;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5682
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5683 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5684 if (EQ (kind, Qmouse_click))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5685 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5686 Lisp_Object window, posn;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5687
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5688 window = POSN_WINDOW (EVENT_START (key));
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5689 posn = POSN_BUFFER_POSN (EVENT_START (key));
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5690 if (CONSP (posn))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5691 {
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5692 /* We're looking at the second event of a
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5693 sequence which we expanded before. Set
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5694 last_real_key_start appropriately. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5695 if (t > 0)
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5696 last_real_key_start = t - 1;
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
5697 }
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5698
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5699 /* Key sequences beginning with mouse clicks are
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5700 read using the keymaps in the buffer clicked on,
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5701 not the current buffer. If we're at the
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5702 beginning of a key sequence, switch buffers. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5703 if (last_real_key_start == 0
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5704 && WINDOWP (window)
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5705 && BUFFERP (XWINDOW (window)->buffer)
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5706 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
5707 {
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5708 keybuf[t] = key;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5709 mock_input = t + 1;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5710
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5711 /* Arrange to go back to the original buffer once we're
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5712 done reading the key sequence. Note that we can't
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5713 use save_excursion_{save,restore} here, because they
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5714 save point as well as the current buffer; we don't
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5715 want to save point, because redisplay may change it,
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5716 to accommodate a Fset_window_start or something. We
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5717 don't want to do this at the top of the function,
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5718 because we may get input from a subprocess which
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5719 wants to change the selected window and stuff (say,
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5720 emacsclient). */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5721 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5722
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5723 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
10381
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5724 orig_local_map = get_local_map (PT, current_buffer);
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5725 goto replay_sequence;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5726 }
10381
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5727 /* For a mouse click, get the local text-property keymap
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5728 of the place clicked on, rather than point. */
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5729 if (last_real_key_start == 0 && CONSP (XCONS (key)->cdr)
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5730 && ! localized_local_map)
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5731 {
10381
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5732 Lisp_Object map_here, start, pos;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5733
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5734 localized_local_map = 1;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5735 start = EVENT_START (key);
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5736 if (CONSP (start) && CONSP (XCONS (start)->cdr))
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5737 {
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5738 pos = POSN_BUFFER_POSN (start);
12979
15f32c044bb8 (Fcommand_execute): Ignore `disabled' property on
Richard M. Stallman <rms@gnu.org>
parents: 12946
diff changeset
5739 if (INTEGERP (pos)
15f32c044bb8 (Fcommand_execute): Ignore `disabled' property on
Richard M. Stallman <rms@gnu.org>
parents: 12946
diff changeset
5740 && XINT (pos) >= BEG && XINT (pos) <= Z)
10381
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5741 {
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5742 map_here = get_local_map (XINT (pos), current_buffer);
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5743 if (!EQ (map_here, orig_local_map))
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5744 {
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5745 orig_local_map = map_here;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5746 keybuf[t] = key;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5747 mock_input = t + 1;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5748
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5749 goto replay_sequence;
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5750 }
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5751 }
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5752 }
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5753 }
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5754
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5755 /* Expand mode-line and scroll-bar events into two events:
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5756 use posn as a fake prefix key. */
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5757 if (SYMBOLP (posn))
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
5758 {
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5759 if (t + 1 >= bufsize)
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5760 error ("Key sequence too long");
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5761 keybuf[t] = posn;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5762 keybuf[t+1] = key;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5763 mock_input = t + 2;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5764
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5765 /* Zap the position in key, so we know that we've
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5766 expanded it, and don't try to do so again. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5767 POSN_BUFFER_POSN (EVENT_START (key))
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5768 = Fcons (posn, Qnil);
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5769 goto replay_key;
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
5770 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5771 }
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5772 else if (EQ (kind, Qswitch_frame))
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5773 {
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
5774 /* If we're at the beginning of a key sequence, and the caller
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
5775 says it's okay, go ahead and return this event. If we're
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
5776 in the midst of a key sequence, delay it until the end. */
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
5777 if (t > 0 || !can_return_switch_frame)
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5778 {
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5779 delayed_switch_frame = key;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5780 goto replay_key;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5781 }
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5782 }
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
5783 else if (CONSP (XCONS (key)->cdr)
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
5784 && CONSP (EVENT_START (key))
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
5785 && CONSP (XCONS (EVENT_START (key))->cdr))
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
5786 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5787 Lisp_Object posn;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5788
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5789 posn = POSN_BUFFER_POSN (EVENT_START (key));
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5790 /* Handle menu-bar events:
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5791 insert the dummy prefix event `menu-bar'. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5792 if (EQ (posn, Qmenu_bar))
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5793 {
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5794 if (t + 1 >= bufsize)
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5795 error ("Key sequence too long");
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5796 keybuf[t] = posn;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5797 keybuf[t+1] = key;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5798
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5799 /* Zap the position in key, so we know that we've
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5800 expanded it, and don't try to do so again. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5801 POSN_BUFFER_POSN (EVENT_START (key))
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5802 = Fcons (posn, Qnil);
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5803
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5804 mock_input = t + 2;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5805 goto replay_sequence;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5806 }
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5807 else if (CONSP (posn))
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5808 {
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5809 /* We're looking at the second event of a
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5810 sequence which we expanded before. Set
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5811 last_real_key_start appropriately. */
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5812 if (last_real_key_start == t && t > 0)
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5813 last_real_key_start = t - 1;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5814 }
3452
3393f6e53d25 (read_key_sequence) [!USE_TEXT_PROPERTIES]: Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 3294
diff changeset
5815 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5816 }
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5817
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5818 /* We have finally decided that KEY is something we might want
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5819 to look up. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5820 first_binding = (follow_key (key,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5821 nmaps - first_binding,
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5822 submaps + first_binding,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5823 defs + first_binding,
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
5824 submaps + first_binding)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5825 + first_binding);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5826
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5827 /* If KEY wasn't bound, we'll try some fallbacks. */
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5828 if (first_binding >= nmaps)
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5829 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5830 Lisp_Object head;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5831
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5832 head = EVENT_HEAD (key);
12342
87aeb150a91a (read_key_sequence): Don't use Vprefix_help_command
Richard M. Stallman <rms@gnu.org>
parents: 12335
diff changeset
5833 if (help_char_p (head) && t > 0)
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5834 {
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5835 read_key_sequence_cmd = Vprefix_help_command;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5836 keybuf[t++] = key;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5837 last_nonmenu_event = key;
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5838 /* The Microsoft C compiler can't handle the goto that
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5839 would go here. */
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
5840 dummyflag = 1;
10533
52b954844444 (read_key_sequence): Don't wait for a possible key translation sequence if we
Karl Heuer <kwzh@gnu.org>
parents: 10457
diff changeset
5841 break;
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5842 }
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
5843
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5844 if (SYMBOLP (head))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5845 {
6461
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5846 Lisp_Object breakdown;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5847 int modifiers;
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5848
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5849 breakdown = parse_modifiers (head);
eed1282ed6b0 (add_command_key, command_loop_1, read_char, kbd_buffer_store_event,
Karl Heuer <kwzh@gnu.org>
parents: 6311
diff changeset
5850 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5851 /* Attempt to reduce an unbound mouse event to a simpler
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5852 event that is bound:
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5853 Drags reduce to clicks.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5854 Double-clicks reduce to clicks.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5855 Triple-clicks reduce to double-clicks, then to clicks.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5856 Down-clicks are eliminated.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5857 Double-downs reduce to downs, then are eliminated.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5858 Triple-downs reduce to double-downs, then to downs,
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5859 then are eliminated. */
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5860 if (modifiers & (down_modifier | drag_modifier
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5861 | double_modifier | triple_modifier))
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5862 {
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5863 while (modifiers & (down_modifier | drag_modifier
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5864 | double_modifier | triple_modifier))
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5865 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5866 Lisp_Object new_head, new_click;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5867 if (modifiers & triple_modifier)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5868 modifiers ^= (double_modifier | triple_modifier);
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5869 else if (modifiers & double_modifier)
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5870 modifiers &= ~double_modifier;
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5871 else if (modifiers & drag_modifier)
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
5872 modifiers &= ~drag_modifier;
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5873 else
4397
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5874 {
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5875 /* Dispose of this `down' event by simply jumping
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5876 back to replay_key, to get another event.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5877
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5878 Note that if this event came from mock input,
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5879 then just jumping back to replay_key will just
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5880 hand it to us again. So we have to wipe out any
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5881 mock input.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5882
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5883 We could delete keybuf[t] and shift everything
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5884 after that to the left by one spot, but we'd also
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5885 have to fix up any variable that points into
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5886 keybuf, and shifting isn't really necessary
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5887 anyway.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5888
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5889 Adding prefixes for non-textual mouse clicks
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5890 creates two characters of mock input, and both
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5891 must be thrown away. If we're only looking at
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5892 the prefix now, we can just jump back to
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5893 replay_key. On the other hand, if we've already
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5894 processed the prefix, and now the actual click
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5895 itself is giving us trouble, then we've lost the
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5896 state of the keymaps we want to backtrack to, and
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5897 we need to replay the whole sequence to rebuild
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5898 it.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5899
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5900 Beyond that, only function key expansion could
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5901 create more than two keys, but that should never
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5902 generate mouse events, so it's okay to zero
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5903 mock_input in that case too.
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5904
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5905 Isn't this just the most wonderful code ever? */
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5906 if (t == last_real_key_start)
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5907 {
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5908 mock_input = 0;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5909 goto replay_key;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5910 }
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5911 else
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5912 {
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5913 mock_input = last_real_key_start;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5914 goto replay_sequence;
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5915 }
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5916 }
d6d07b43f6d5 (last_mouse_button): Renamed from button_up_button.
Richard M. Stallman <rms@gnu.org>
parents: 4315
diff changeset
5917
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5918 new_head
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5919 = apply_modifiers (modifiers, XCONS (breakdown)->car);
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5920 new_click
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5921 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5922
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5923 /* Look for a binding for this new key. follow_key
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5924 promises that it didn't munge submaps the
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5925 last time we called it, since key was unbound. */
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5926 first_binding
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5927 = (follow_key (new_click,
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5928 nmaps - local_first_binding,
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5929 submaps + local_first_binding,
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5930 defs + local_first_binding,
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
5931 submaps + local_first_binding)
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
5932 + local_first_binding);
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5933
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5934 /* If that click is bound, go for it. */
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5935 if (first_binding < nmaps)
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5936 {
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5937 key = new_click;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5938 break;
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5939 }
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5940 /* Otherwise, we'll leave key set to the drag event. */
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
5941 }
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5942 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5943 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5944 }
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
5945
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5946 keybuf[t++] = key;
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5947 /* Normally, last_nonmenu_event gets the previous key we read.
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5948 But when a mouse popup menu is being used,
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5949 we don't update last_nonmenu_event; it continues to hold the mouse
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5950 event that preceded the first level of menu. */
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5951 if (!used_mouse_menu)
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
5952 last_nonmenu_event = key;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5953
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5954 prev_fkey_map = fkey_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5955 prev_fkey_start = fkey_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5956 prev_fkey_end = fkey_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5957
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5958 prev_keytran_map = keytran_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5959 prev_keytran_start = keytran_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5960 prev_keytran_end = keytran_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
5961
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5962 /* If the sequence is unbound, see if we can hang a function key
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5963 off the end of it. We only want to scan real keyboard input
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5964 for function key sequences, so if mock_input says that we're
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5965 re-reading old events, don't examine it. */
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
5966 if (first_binding >= nmaps
899
ef5f79a6535a entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 853
diff changeset
5967 && t >= mock_input)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5968 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5969 Lisp_Object fkey_next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5970
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5971 /* Continue scan from fkey_end until we find a bound suffix.
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5972 If we fail, increment fkey_start
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
5973 and start fkey_end from there. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5974 while (fkey_end < t)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5975 {
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5976 Lisp_Object key;
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5977
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5978 key = keybuf[fkey_end++];
853
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
5979 /* Look up meta-characters by prefixing them
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
5980 with meta_prefix_char. I hate this. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
5981 if (INTEGERP (key) && XINT (key) & meta_modifier)
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5982 {
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
5983 fkey_next
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
5984 = get_keymap_1
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5985 (get_keyelt
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
5986 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5987 0, 1);
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
5988 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
5989 }
853
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
5990 else
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
5991 fkey_next = fkey_map;
224b0d5d1a38 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 765
diff changeset
5992
3748
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
5993 fkey_next
260c9c3200b1 Calls to access_keymap updated.
Richard M. Stallman <rms@gnu.org>
parents: 3682
diff changeset
5994 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
939
c4dcdc9aed70 Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents: 899
diff changeset
5995
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
5996 #if 0 /* I didn't turn this on, because it might cause trouble
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
5997 for the mapping of return into C-m and tab into C-i. */
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
5998 /* Optionally don't map function keys into other things.
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
5999 This enables the user to redefine kp- keys easily. */
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6000 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6001 fkey_next = Qnil;
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6002 #endif
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6003
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6004 /* If the function key map gives a function, not an
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6005 array, then call the function with no args and use
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6006 its value instead. */
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6007 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6008 && fkey_end == t)
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6009 {
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6010 struct gcpro gcpro1, gcpro2, gcpro3;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6011 Lisp_Object tem;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6012 tem = fkey_next;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6013
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6014 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
4878
57c506c597b9 (read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents: 4849
diff changeset
6015 fkey_next = call1 (fkey_next, prompt);
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6016 UNGCPRO;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6017 /* If the function returned something invalid,
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6018 barf--don't ignore it.
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
6019 (To ignore it safely, we would need to gcpro a bunch of
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6020 other variables.) */
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6021 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6022 error ("Function in function-key-map returns invalid key sequence");
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6023 }
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6024
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
6025 function_key_possible = ! NILP (fkey_next);
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
6026
939
c4dcdc9aed70 Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents: 899
diff changeset
6027 /* If keybuf[fkey_start..fkey_end] is bound in the
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
6028 function key map and it's a suffix of the current
939
c4dcdc9aed70 Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents: 899
diff changeset
6029 sequence (i.e. fkey_end == t), replace it with
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
6030 the binding and restart with fkey_start at the end. */
4137
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6031 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6032 && fkey_end == t)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6033 {
4417
02b7d9476fae (read_key_sequence): Use XFASTINT to convert value
Richard M. Stallman <rms@gnu.org>
parents: 4397
diff changeset
6034 int len = XFASTINT (Flength (fkey_next));
4137
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6035
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6036 t = fkey_start + len;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6037 if (t >= bufsize)
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6038 error ("Key sequence too long");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6039
4137
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6040 if (VECTORP (fkey_next))
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6041 bcopy (XVECTOR (fkey_next)->contents,
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6042 keybuf + fkey_start,
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6043 (t - fkey_start) * sizeof (keybuf[0]));
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6044 else if (STRINGP (fkey_next))
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6045 {
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6046 int i;
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6047
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6048 for (i = 0; i < len; i++)
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6049 XSETFASTINT (keybuf[fkey_start + i],
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6050 XSTRING (fkey_next)->data[i]);
4137
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6051 }
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
6052
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6053 mock_input = t;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6054 fkey_start = fkey_end = t;
3538
f53bcee8d914 (read_key_sequence): Reset fkey_map when we find
Richard M. Stallman <rms@gnu.org>
parents: 3453
diff changeset
6055 fkey_map = Vfunction_key_map;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6056
9445
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6057 /* Do pass the results through key-translation-map. */
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6058 keytran_start = keytran_end = 0;
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6059 keytran_map = Vkey_translation_map;
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6060
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
6061 goto replay_sequence;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6062 }
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
6063
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
6064 fkey_map = get_keymap_1 (fkey_next, 0, 1);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6065
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
6066 /* If we no longer have a bound suffix, try a new positions for
547
1856d835aac3 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 518
diff changeset
6067 fkey_start. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6068 if (NILP (fkey_map))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6069 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6070 fkey_end = ++fkey_start;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6071 fkey_map = Vfunction_key_map;
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
6072 function_key_possible = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6073 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6074 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6075 }
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6076
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6077 /* Look for this sequence in key-translation-map. */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6078 {
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6079 Lisp_Object keytran_next;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6080
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6081 /* Scan from keytran_end until we find a bound suffix. */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6082 while (keytran_end < t)
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6083 {
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6084 Lisp_Object key;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6085
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6086 key = keybuf[keytran_end++];
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6087 /* Look up meta-characters by prefixing them
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6088 with meta_prefix_char. I hate this. */
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6089 if (INTEGERP (key) && XINT (key) & meta_modifier)
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6090 {
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6091 keytran_next
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6092 = get_keymap_1
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6093 (get_keyelt
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6094 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6095 0, 1);
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6096 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6097 }
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6098 else
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6099 keytran_next = keytran_map;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6100
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6101 keytran_next
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6102 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6103
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6104 /* If the key translation map gives a function, not an
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6105 array, then call the function with no args and use
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6106 its value instead. */
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6107 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6108 && keytran_end == t)
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6109 {
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6110 struct gcpro gcpro1, gcpro2, gcpro3;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6111 Lisp_Object tem;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6112 tem = keytran_next;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6113
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
6114 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
4878
57c506c597b9 (read_key_sequence): Arg prompt is now a Lisp object.
Richard M. Stallman <rms@gnu.org>
parents: 4849
diff changeset
6115 keytran_next = call1 (keytran_next, prompt);
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6116 UNGCPRO;
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6117 /* If the function returned something invalid,
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6118 barf--don't ignore it.
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
6119 (To ignore it safely, we would need to gcpro a bunch of
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6120 other variables.) */
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6121 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
6122 error ("Function in key-translation-map returns invalid key sequence");
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6123 }
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6124
9445
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6125 key_translation_possible = ! NILP (keytran_next);
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6126
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6127 /* If keybuf[keytran_start..keytran_end] is bound in the
4849
5ebf3eec091b (read_key_sequence): Allow function in key-translation-map
Richard M. Stallman <rms@gnu.org>
parents: 4823
diff changeset
6128 key translation map and it's a suffix of the current
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6129 sequence (i.e. keytran_end == t), replace it with
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6130 the binding and restart with keytran_start at the end. */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6131 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6132 && keytran_end == t)
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6133 {
4417
02b7d9476fae (read_key_sequence): Use XFASTINT to convert value
Richard M. Stallman <rms@gnu.org>
parents: 4397
diff changeset
6134 int len = XFASTINT (Flength (keytran_next));
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6135
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6136 t = keytran_start + len;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6137 if (t >= bufsize)
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6138 error ("Key sequence too long");
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6139
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6140 if (VECTORP (keytran_next))
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6141 bcopy (XVECTOR (keytran_next)->contents,
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6142 keybuf + keytran_start,
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6143 (t - keytran_start) * sizeof (keybuf[0]));
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6144 else if (STRINGP (keytran_next))
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6145 {
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6146 int i;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6147
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6148 for (i = 0; i < len; i++)
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6149 XSETFASTINT (keybuf[keytran_start + i],
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6150 XSTRING (keytran_next)->data[i]);
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6151 }
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6152
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6153 mock_input = t;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6154 keytran_start = keytran_end = t;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6155 keytran_map = Vkey_translation_map;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6156
9445
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6157 /* Don't pass the results of key-translation-map
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6158 through function-key-map. */
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6159 fkey_start = fkey_end = t;
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6160 fkey_map = Vkey_translation_map;
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6161
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6162 goto replay_sequence;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6163 }
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6164
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6165 keytran_map = get_keymap_1 (keytran_next, 0, 1);
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6166
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
6167 /* If we no longer have a bound suffix, try a new positions for
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6168 keytran_start. */
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6169 if (NILP (keytran_map))
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6170 {
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6171 keytran_end = ++keytran_start;
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6172 keytran_map = Vkey_translation_map;
9445
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6173 key_translation_possible = 0;
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6174 }
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6175 }
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6176 }
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6177
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6178 /* If KEY is not defined in any of the keymaps,
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6179 and cannot be part of a function key or translation,
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6180 and is an upper case letter
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6181 use the corresponding lower-case letter instead. */
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6182 if (first_binding == nmaps && ! function_key_possible
9445
712af9626dc0 (read_key_sequence): The output of function-key-map
Richard M. Stallman <rms@gnu.org>
parents: 9396
diff changeset
6183 && ! key_translation_possible
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6184 && INTEGERP (key)
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6185 && ((((XINT (key) & 0x3ffff)
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6186 < XSTRING (current_buffer->downcase_table)->size)
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6187 && UPPERCASEP (XINT (key) & 0x3ffff))
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6188 || (XINT (key) & shift_modifier)))
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6189 {
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6190 Lisp_Object new_key;
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6191
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6192 original_uppercase = key;
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6193 original_uppercase_position = t - 1;
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6194
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6195 if (XINT (new_key) & shift_modifier)
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6196 XSETINT (new_key, XINT (key) & ~shift_modifier);
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6197 else
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6198 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6199 | (XINT (key) & ~0x3ffff)));
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6200
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6201 /* We have to do this unconditionally, regardless of whether
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6202 the lower-case char is defined in the keymaps, because they
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6203 might get translated through function-key-map. */
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6204 keybuf[t - 1] = new_key;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6205 mock_input = t;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6206
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6207 fkey_map = prev_fkey_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6208 fkey_start = prev_fkey_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6209 fkey_end = prev_fkey_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6210
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6211 keytran_map = prev_keytran_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6212 keytran_start = prev_keytran_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6213 keytran_end = prev_keytran_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6214
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6215 goto replay_sequence;
8418
d97339356ae6 (follow_key): Don't downcase letters here.
Richard M. Stallman <rms@gnu.org>
parents: 8302
diff changeset
6216 }
10147
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6217 /* If KEY is not defined in any of the keymaps,
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6218 and cannot be part of a function key or translation,
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6219 and is a shifted function key,
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6220 use the corresponding unshifted function key instead. */
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6221 if (first_binding == nmaps && ! function_key_possible
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6222 && ! key_translation_possible
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6223 && SYMBOLP (key))
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6224 {
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6225 Lisp_Object breakdown;
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6226 int modifiers;
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6227
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6228 breakdown = parse_modifiers (key);
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6229 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6230 if (modifiers & shift_modifier)
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6231 {
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6232 Lisp_Object new_key;
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6233
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6234 original_uppercase = key;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6235 original_uppercase_position = t - 1;
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6236
10147
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6237 modifiers &= ~shift_modifier;
12759
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6238 new_key = apply_modifiers (modifiers,
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6239 XCONS (breakdown)->car);
dd9049c5c51d (read_key_sequence): Don't downshift an event
Richard M. Stallman <rms@gnu.org>
parents: 12729
diff changeset
6240
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6241 keybuf[t - 1] = new_key;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6242 mock_input = t;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6243
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6244 fkey_map = prev_fkey_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6245 fkey_start = prev_fkey_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6246 fkey_end = prev_fkey_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6247
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6248 keytran_map = prev_keytran_map;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6249 keytran_start = prev_keytran_start;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6250 keytran_end = prev_keytran_end;
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6251
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6252 goto replay_sequence;
10147
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6253 }
ab78d1d2f5d7 (read_char): After auto-saving, redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 10070
diff changeset
6254 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6255 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6256
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6257 if (!dummyflag)
9800
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
6258 read_key_sequence_cmd = (first_binding < nmaps
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
6259 ? defs[first_binding]
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
6260 : Qnil);
476dc2f97d11 (read_key_sequence): Use flags instead of gotos to
Richard M. Stallman <rms@gnu.org>
parents: 9745
diff changeset
6261
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
6262 unread_switch_frame = delayed_switch_frame;
1515
8cc7bc81d2aa * keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents: 1449
diff changeset
6263 unbind_to (count, Qnil);
3799
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6264
12800
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6265 /* Don't downcase the last character if the caller says don't.
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6266 Don't downcase it if the result is undefined, either. */
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6267 if ((dont_downcase_last || first_binding >= nmaps)
1086fa1dfb89 (read_key_sequence): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 12759
diff changeset
6268 && t - 1 == original_uppercase_position)
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6269 keybuf[t - 1] = original_uppercase;
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6270
3799
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6271 /* Occasionally we fabricate events, perhaps by expanding something
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6272 according to function-key-map, or by adding a prefix symbol to a
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6273 mouse click in the scroll bar or modeline. In this cases, return
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6274 the entire generated key sequence, even if we hit an unbound
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6275 prefix or a definition before the end. This means that you will
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6276 be able to push back the event properly, and also means that
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6277 read-key-sequence will always return a logical unit.
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6278
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6279 Better ideas? */
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
6280 for (; t < mock_input; t++)
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
6281 {
8076
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
6282 if (echo_keystrokes)
3a35434b19d2 (safe_run_hooks): Take symbol as arg.
Richard M. Stallman <rms@gnu.org>
parents: 8067
diff changeset
6283 echo_char (keybuf[t]);
3809
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
6284 add_command_key (keybuf[t]);
0f579c7269a3 * keyboard.c (read_key_sequence): Don't confuse mock input with
Jim Blandy <jimb@redhat.com>
parents: 3799
diff changeset
6285 }
3799
1c2303940681 * keyboard.c (read_key_sequence): If we add events to a key
Jim Blandy <jimb@redhat.com>
parents: 3748
diff changeset
6286
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6287 return t;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6288 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6289
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6290 #if 0 /* This doc string is too long for some compilers.
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6291 This commented-out definition serves for DOC. */
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6292 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6293 "Read a sequence of keystrokes and return as a string or vector.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6294 The sequence is sufficient to specify a non-prefix command in the\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6295 current local and global maps.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6296 \n\
691
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
6297 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
6298 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
6299 as a continuation of the previous key.\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6300 \n\
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6301 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6302 convert the last event to lower case. (Normally any upper case event\n\
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6303 is converted to lower case if the original event is undefined and the lower\n\
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6304 case equivalent is defined.) A non-nil value is appropriate for reading\n\
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6305 a key sequence to be defined.\n\
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6306 \n\
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6307 A C-g typed while in this function is treated like any other character,\n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6308 and `quit-flag' is not set.\n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6309 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6310 If the key sequence starts with a mouse click, then the sequence is read\n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6311 using the keymaps of the buffer of the window clicked in, not the buffer\n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6312 of the selected window as normal.\n\
4988
2f9a58694d43 (Fread_key_sequence): Split the doc string with "".
Richard M. Stallman <rms@gnu.org>
parents: 4878
diff changeset
6313 ""\n\
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6314 `read-key-sequence' drops unbound button-down events, since you normally\n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6315 only care about the click or drag events which follow them. If a drag\n\
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
6316 or multi-click event is unbound, but the corresponding click event would\n\
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
6317 be bound, `read-key-sequence' turns the event into a click event at the\n\
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6318 drag's starting position. This means that you don't have to distinguish\n\
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
6319 between click and drag, double, or triple events unless you want to.\n\
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6320 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6321 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
6322 lines separating windows, and scroll bars with imaginary keys\n\
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
6323 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6324 \n\
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6325 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this\n\
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6326 function will process a switch-frame event if the user switches frames\n\
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6327 before typing anything. If the user switches frames in the middle of a\n\
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6328 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME\n\
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6329 is nil, then the event will be put off until after the current key sequence.\n\
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6330 \n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6331 `read-key-sequence' checks `function-key-map' for function key\n\
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
6332 sequences, where they wouldn't conflict with ordinary bindings. See\n\
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
6333 `function-key-map' for more details.")
11755
fb074e606a41 (Fread_key_sequence): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11698
diff changeset
6334 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6335 #endif
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6336
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6337 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
6338 0)
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6339 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6340 Lisp_Object prompt, continue_echo, dont_downcase_last;
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6341 Lisp_Object can_return_switch_frame;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6342 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6343 Lisp_Object keybuf[30];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6344 register int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6345 struct gcpro gcpro1, gcpro2;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6346
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6347 if (!NILP (prompt))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6348 CHECK_STRING (prompt, 0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6349 QUIT;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6350
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6351 bzero (keybuf, sizeof keybuf);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6352 GCPRO1 (keybuf[0]);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6353 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6354
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 721
diff changeset
6355 if (NILP (continue_echo))
691
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
6356 this_command_key_count = 0;
cae8c3ef1677 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 687
diff changeset
6357
10539
ffef84d4d8a8 (read_key_sequence): New arg dont_downcase_last
Richard M. Stallman <rms@gnu.org>
parents: 10533
diff changeset
6358 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
10903
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6359 prompt, ! NILP (dont_downcase_last),
ff1b5efecdb0 (read_key_sequence): New arg can_return_switch_frame. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents: 10861
diff changeset
6360 ! NILP (can_return_switch_frame));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6361
4106
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
6362 if (i == -1)
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
6363 {
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
6364 Vquit_flag = Qt;
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
6365 QUIT;
bfc21ea9a00f (read_char_menu_prompt): If the user rejects a menu,
Richard M. Stallman <rms@gnu.org>
parents: 4097
diff changeset
6366 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6367 UNGCPRO;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
6368 return make_event_array (i, keybuf);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6369 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6370
13309
499e9df6c0f6 (Fcommand_execute): New arg KEYS. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 13290
diff changeset
6371 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 3, 0,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6372 "Execute CMD as an editor command.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6373 CMD must be a symbol that satisfies the `commandp' predicate.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6374 Optional second arg RECORD-FLAG non-nil\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6375 means unconditionally put this command in `command-history'.\n\
13309
499e9df6c0f6 (Fcommand_execute): New arg KEYS. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 13290
diff changeset
6376 Otherwise, that is done only if an arg is read using the minibuffer.\n\
499e9df6c0f6 (Fcommand_execute): New arg KEYS. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 13290
diff changeset
6377 The argument KEYS specifies the value to use instead of (this-command-keys)\n\
499e9df6c0f6 (Fcommand_execute): New arg KEYS. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 13290
diff changeset
6378 when reading the arguments; if it is nil, (this_command_key_count) is used.")
14079
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
6379 (cmd, record_flag, keys)
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
6380 Lisp_Object cmd, record_flag, keys;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6381 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6382 register Lisp_Object final;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6383 register Lisp_Object tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6384 Lisp_Object prefixarg;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6385 struct backtrace backtrace;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6386 extern int debug_on_next_call;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6387
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
6388 prefixarg = current_kboard->Vprefix_arg;
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
6389 current_kboard->Vprefix_arg = Qnil;
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
6390 Vcurrent_prefix_arg = prefixarg;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6391 debug_on_next_call = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6392
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6393 if (SYMBOLP (cmd))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6394 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6395 tem = Fget (cmd, Qdisabled);
6208
db4139d43f8a (command_loop_1, read_key_sequence, Fcommand_execute):
Richard M. Stallman <rms@gnu.org>
parents: 6204
diff changeset
6396 if (!NILP (tem) && !NILP (Vrun_hooks))
12979
15f32c044bb8 (Fcommand_execute): Ignore `disabled' property on
Richard M. Stallman <rms@gnu.org>
parents: 12946
diff changeset
6397 {
15f32c044bb8 (Fcommand_execute): Ignore `disabled' property on
Richard M. Stallman <rms@gnu.org>
parents: 12946
diff changeset
6398 tem = Fsymbol_value (Qdisabled_command_hook);
15f32c044bb8 (Fcommand_execute): Ignore `disabled' property on
Richard M. Stallman <rms@gnu.org>
parents: 12946
diff changeset
6399 if (!NILP (tem))
15f32c044bb8 (Fcommand_execute): Ignore `disabled' property on
Richard M. Stallman <rms@gnu.org>
parents: 12946
diff changeset
6400 return call1 (Vrun_hooks, Qdisabled_command_hook);
15f32c044bb8 (Fcommand_execute): Ignore `disabled' property on
Richard M. Stallman <rms@gnu.org>
parents: 12946
diff changeset
6401 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6402 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6403
13842
7d0b87f737f9 (Fcommand_execute): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 13770
diff changeset
6404 while (1)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6405 {
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6406 final = Findirect_function (cmd);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6407
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6408 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6409 do_autoload (final, cmd);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6410 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6411 break;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6412 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6413
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6414 if (STRINGP (final) || VECTORP (final))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6415 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6416 /* If requested, place the macro in the command history. For
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6417 other sorts of commands, call-interactively takes care of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6418 this. */
14079
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
6419 if (!NILP (record_flag))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6420 Vcommand_history
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6421 = Fcons (Fcons (Qexecute_kbd_macro,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6422 Fcons (final, Fcons (prefixarg, Qnil))),
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6423 Vcommand_history);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6424
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6425 return Fexecute_kbd_macro (final, prefixarg);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6426 }
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6427 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6428 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6429 backtrace.next = backtrace_list;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6430 backtrace_list = &backtrace;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6431 backtrace.function = &Qcall_interactively;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6432 backtrace.args = &cmd;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6433 backtrace.nargs = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6434 backtrace.evalargs = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6435
14079
2464cc0b5b3e (Fevent_convert_list, Fcommand_execute): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents: 14036
diff changeset
6436 tem = Fcall_interactively (cmd, record_flag, keys);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6437
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6438 backtrace_list = backtrace.next;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6439 return tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6440 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6441 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6442 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6443
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6444 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6445 1, 1, "P",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6446 "Read function name, then read its arguments and call it.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6447 (prefixarg)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6448 Lisp_Object prefixarg;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6449 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6450 Lisp_Object function;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6451 char buf[40];
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6452 Lisp_Object saved_keys;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6453 struct gcpro gcpro1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6454
5894
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
6455 saved_keys = Fvector (this_command_key_count,
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
6456 XVECTOR (this_command_keys)->contents);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6457 buf[0] = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6458 GCPRO1 (saved_keys);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6459
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6460 if (EQ (prefixarg, Qminus))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6461 strcpy (buf, "- ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6462 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6463 strcpy (buf, "C-u ");
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6464 else if (CONSP (prefixarg) && INTEGERP (XCONS (prefixarg)->car))
11698
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6465 {
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6466 if (sizeof (int) == sizeof (EMACS_INT))
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6467 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6468 else if (sizeof (long) == sizeof (EMACS_INT))
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6469 sprintf (buf, "%ld ", XINT (XCONS (prefixarg)->car));
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6470 else
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6471 abort ();
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6472 }
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6473 else if (INTEGERP (prefixarg))
11698
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6474 {
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6475 if (sizeof (int) == sizeof (EMACS_INT))
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6476 sprintf (buf, "%d ", XINT (prefixarg));
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6477 else if (sizeof (long) == sizeof (EMACS_INT))
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6478 sprintf (buf, "%ld ", XINT (prefixarg));
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6479 else
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6480 abort ();
36204fbb45d0 (Fexecute_extended_command): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents: 11682
diff changeset
6481 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6482
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6483 /* This isn't strictly correct if execute-extended-command
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6484 is bound to anything else. Perhaps it should use
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6485 this_command_keys? */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6486 strcat (buf, "M-x ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6487
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6488 /* Prompt with buf, and then read a string, completing from and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6489 restricting to the set of all defined commands. Don't provide
4823
ec62e93360d1 (read_key_sequence): Don't declare first_event; it is no longer used.
Brian Fox <bfox@gnu.org>
parents: 4773
diff changeset
6490 any initial input. Save the command read on the extended-command
4773
ae7c67879859 (Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents: 4696
diff changeset
6491 history list. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6492 function = Fcompleting_read (build_string (buf),
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6493 Vobarray, Qcommandp,
4773
ae7c67879859 (Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents: 4696
diff changeset
6494 Qt, Qnil, Qextended_command_history);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6495
13864
8389738a7792 (read_char_x_menu_prompt): HAVE_X_MENU renamed to HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents: 13842
diff changeset
6496 if (STRINGP (function) && XSTRING (function)->size == 0)
8389738a7792 (read_char_x_menu_prompt): HAVE_X_MENU renamed to HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents: 13842
diff changeset
6497 error ("No command name given");
8389738a7792 (read_char_x_menu_prompt): HAVE_X_MENU renamed to HAVE_MENUS.
Richard M. Stallman <rms@gnu.org>
parents: 13842
diff changeset
6498
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6499 /* Set this_command_keys to the concatenation of saved_keys and
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6500 function, followed by a RET. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6501 {
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6502 struct Lisp_String *str;
5894
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
6503 Lisp_Object *keys;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6504 int i;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6505 Lisp_Object tem;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6506
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6507 this_command_key_count = 0;
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6508
5894
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
6509 keys = XVECTOR (saved_keys)->contents;
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
6510 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
6511 add_command_key (keys[i]);
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6512
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6513 str = XSTRING (function);
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6514 for (i = 0; i < str->size; i++)
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6515 {
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6516 XSETFASTINT (tem, str->data[i]);
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6517 add_command_key (tem);
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6518 }
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6519
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6520 XSETFASTINT (tem, '\015');
708
030fb4635335 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 701
diff changeset
6521 add_command_key (tem);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6522 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6523
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6524 UNGCPRO;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6525
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
6526 function = Fintern (function, Qnil);
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
6527 current_kboard->Vprefix_arg = prefixarg;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6528 this_command = function;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6529
13108
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6530 /* If enabled, show which key runs this command. */
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6531 if (!NILP (Vsuggest_key_bindings)
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6532 && SYMBOLP (function))
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6533 {
13582
3c46cfae4391 (Fexecute_extended_command):
Richard M. Stallman <rms@gnu.org>
parents: 13454
diff changeset
6534 Lisp_Object bindings;
3c46cfae4391 (Fexecute_extended_command):
Richard M. Stallman <rms@gnu.org>
parents: 13454
diff changeset
6535
3c46cfae4391 (Fexecute_extended_command):
Richard M. Stallman <rms@gnu.org>
parents: 13454
diff changeset
6536 bindings = Fwhere_is_internal (function, Voverriding_local_map,
3c46cfae4391 (Fexecute_extended_command):
Richard M. Stallman <rms@gnu.org>
parents: 13454
diff changeset
6537 Qt, Qnil);
13108
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6538
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6539 if (!NILP (bindings))
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6540 {
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6541 message ("You can run the command `%s' by typing %s",
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6542 XSYMBOL (function)->name->data,
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6543 XSTRING (Fkey_description (bindings))->data);
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6544 Fsit_for ((NUMBERP (Vsuggest_key_bindings)
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6545 ? Vsuggest_key_bindings : make_number (2)),
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6546 Qnil, Qnil);
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6547 }
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6548 }
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6549
13309
499e9df6c0f6 (Fcommand_execute): New arg KEYS. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents: 13290
diff changeset
6550 return Fcommand_execute (function, Qt, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6551 }
13108
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6552
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6553 /* Find the set of keymaps now active.
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6554 Store into *MAPS_P a vector holding the various maps
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6555 and return the number of them. The vector was malloc'd
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6556 and the caller should free it. */
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6557
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6558 int
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6559 current_active_maps (maps_p)
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6560 Lisp_Object **maps_p;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6561 {
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6562 Lisp_Object *tmaps, *maps;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6563 int nmaps;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6564
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6565 /* Should overriding-terminal-local-map and overriding-local-map apply? */
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6566 if (!NILP (Voverriding_local_map_menu_flag))
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6567 {
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6568 /* Yes, use them (if non-nil) as well as the global map. */
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6569 maps = (Lisp_Object *) xmalloc (3 * sizeof (maps[0]));
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6570 nmaps = 0;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6571 if (!NILP (current_kboard->Voverriding_terminal_local_map))
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6572 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6573 if (!NILP (Voverriding_local_map))
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6574 maps[nmaps++] = Voverriding_local_map;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6575 }
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6576 else
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6577 {
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6578 /* No, so use major and minor mode keymaps. */
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6579 nmaps = current_minor_maps (NULL, &tmaps);
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6580 maps = (Lisp_Object *) xmalloc ((nmaps + 2) * sizeof (maps[0]));
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6581 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6582 #ifdef USE_TEXT_PROPERTIES
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6583 maps[nmaps++] = get_local_map (PT, current_buffer);
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6584 #else
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6585 maps[nmaps++] = current_buffer->keymap;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6586 #endif
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6587 }
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6588 maps[nmaps++] = current_global_map;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6589
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6590 *maps_p = maps;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6591 return nmaps;
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
6592 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6593
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6594
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6595 detect_input_pending ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6596 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6597 if (!input_pending)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6598 get_input_pending (&input_pending);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6599
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6600 return input_pending;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6601 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6602
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6603 /* This is called in some cases before a possible quit.
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6604 It cases the next call to detect_input_pending to recompute input_pending.
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6605 So calling this function unnecessarily can't do any harm. */
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6606 clear_input_pending ()
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6607 {
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6608 input_pending = 0;
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6609 }
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6610
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6611 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6612 "T if command input is currently available with no waiting.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6613 Actually, the value is nil only if we can be sure that no input is available.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6614 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6615 {
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
6616 if (!NILP (Vunread_command_events) || unread_command_char != -1)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6617 return (Qt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6618
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6619 return detect_input_pending () ? Qt : Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6620 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6621
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6622 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
1802
456ebec04db7 (Frecent_keys): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1778
diff changeset
6623 "Return vector of last 100 events, not counting those from keyboard macros.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6624 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6625 {
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
6626 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6627 Lisp_Object val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6628
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6629 if (total_keys < NUM_RECENT_KEYS)
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
6630 return Fvector (total_keys, keys);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6631 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6632 {
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
6633 val = Fvector (NUM_RECENT_KEYS, keys);
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
6634 bcopy (keys + recent_keys_index,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6635 XVECTOR (val)->contents,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6636 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
1261
60b30565326c * keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents: 1239
diff changeset
6637 bcopy (keys,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6638 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6639 recent_keys_index * sizeof (Lisp_Object));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6640 return val;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6641 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6642 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6643
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6644 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
2611
8bfb4d8d4238 (Fthis_command_keys): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 2512
diff changeset
6645 "Return the key sequence that invoked this command.\n\
8bfb4d8d4238 (Fthis_command_keys): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 2512
diff changeset
6646 The value is a string or a vector.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6647 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6648 {
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
6649 return make_event_array (this_command_key_count,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
6650 XVECTOR (this_command_keys)->contents);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6651 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6652
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6653 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6654 Sreset_this_command_lengths, 0, 0, 0,
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6655 "Used for complicated reasons in `universal-argument-other-key'.\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6656 \n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6657 `universal-argument-other-key' rereads the event just typed.\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6658 It then gets translated through `function-key-map'.\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6659 The translated event gets included in the echo area and in\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6660 the value of `this-command-keys' in addition to the raw original event.\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6661 That is not right.\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6662 \n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6663 Calling this function directs the translated event to replace\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6664 the original event, so that only one version of the event actually\n\
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6665 appears in the echo area and in the value of `this-command-keys.'.")
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6666 ()
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6667 {
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6668 before_command_restore_flag = 1;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6669 before_command_key_count_1 = before_command_key_count;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6670 before_command_echo_length_1 = before_command_echo_length;
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6671 }
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
6672
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6673 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6674 "Return the current depth in recursive edits.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6675 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6676 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6677 Lisp_Object temp;
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
6678 XSETFASTINT (temp, command_loop_level + minibuf_level);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6679 return temp;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6680 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6681
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6682 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6683 "FOpen dribble file: ",
1888
86ff3942d7e1 (Fopen_dribble_file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1842
diff changeset
6684 "Start writing all keyboard characters to a dribble file called FILE.\n\
86ff3942d7e1 (Fopen_dribble_file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1842
diff changeset
6685 If FILE is nil, close any open dribble file.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6686 (file)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6687 Lisp_Object file;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6688 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6689 if (NILP (file))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6690 {
9977
c5c2a86432a4 (Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents: 9881
diff changeset
6691 if (dribble)
c5c2a86432a4 (Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents: 9881
diff changeset
6692 {
c5c2a86432a4 (Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents: 9881
diff changeset
6693 fclose (dribble);
c5c2a86432a4 (Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents: 9881
diff changeset
6694 dribble = 0;
c5c2a86432a4 (Fopen_dribble_file): Call fclose only when dribble is non zero.
Richard M. Stallman <rms@gnu.org>
parents: 9881
diff changeset
6695 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6696 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6697 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6698 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6699 file = Fexpand_file_name (file, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6700 dribble = fopen (XSTRING (file)->data, "w");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6701 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6702 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6703 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6704
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6705 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6706 "Discard the contents of the terminal input buffer.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6707 Also cancel any kbd macro being defined.")
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6708 ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6709 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
6710 current_kboard->defining_kbd_macro = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6711 update_mode_lines++;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6712
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
6713 Vunread_command_events = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
6714 unread_command_char = -1;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6715
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6716 discard_tty_input ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6717
1654
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
6718 /* Without the cast, GCC complains that this assignment loses the
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
6719 volatile qualifier of kbd_store_ptr. Is there anything wrong
fe6f6e55182f * keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents: 1590
diff changeset
6720 with that? */
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6721 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6722 Ffillarray (kbd_buffer_frame_or_window, Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6723 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6724
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6725 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6726 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6727
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6728 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6729 "Stop Emacs and return to superior process. You can resume later.\n\
6101
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
6730 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
6731 control, run a subshell instead.\n\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6732 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
1891
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
6733 to be read as terminal input by Emacs's parent, after suspension.\n\
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
6734 \n\
9215
fa3883c219ea (head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents: 9124
diff changeset
6735 Before suspending, run the normal hook `suspend-hook'.\n\
fa3883c219ea (head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents: 9124
diff changeset
6736 After resumption run the normal hook `suspend-resume-hook'.\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6737 \n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6738 Some operating systems cannot stop the Emacs process and resume it later.\n\
1891
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
6739 On such systems, Emacs starts a subshell instead of suspending.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6740 (stuffstring)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6741 Lisp_Object stuffstring;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6742 {
1895
b497a7ec0d58 (Fsuspend_emacs): Make tem not register.
Richard M. Stallman <rms@gnu.org>
parents: 1891
diff changeset
6743 Lisp_Object tem;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6744 int count = specpdl_ptr - specpdl;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6745 int old_height, old_width;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6746 int width, height;
1891
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
6747 struct gcpro gcpro1, gcpro2;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6748 extern init_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6749
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6750 if (!NILP (stuffstring))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6751 CHECK_STRING (stuffstring, 0);
1891
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
6752
2338
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
6753 /* Run the functions in suspend-hook. */
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
6754 if (!NILP (Vrun_hooks))
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
6755 call1 (Vrun_hooks, intern ("suspend-hook"));
1891
035c39b0b1b9 (Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents: 1888
diff changeset
6756
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6757 GCPRO1 (stuffstring);
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
6758 get_frame_size (&old_width, &old_height);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6759 reset_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6760 /* sys_suspend can get an error if it tries to fork a subshell
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6761 and the system resources aren't available for that. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6762 record_unwind_protect (init_sys_modes, 0);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6763 stuff_buffered_input (stuffstring);
6101
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
6764 if (cannot_suspend)
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
6765 sys_subshell ();
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
6766 else
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
6767 sys_suspend ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6768 unbind_to (count, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6769
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6770 /* Check if terminal/window size has changed.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6771 Note that this is not useful when we are running directly
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6772 with a window system; but suspend should be disabled in that case. */
765
e4093444f9f8 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 732
diff changeset
6773 get_frame_size (&width, &height);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6774 if (width != old_width || height != old_height)
4137
9f3fe01a678d * keyboard.c (read_key_sequence): Accept both strings and vectors
Jim Blandy <jimb@redhat.com>
parents: 4115
diff changeset
6775 change_frame_size (selected_frame, height, width, 0, 0);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6776
2338
36cc4399937f * keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents: 2188
diff changeset
6777 /* Run suspend-resume-hook. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6778 if (!NILP (Vrun_hooks))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6779 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
6780
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6781 UNGCPRO;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6782 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6783 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6784
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6785 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3538
diff changeset
6786 Then in any case stuff anything Emacs has read ahead and not used. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6787
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6788 stuff_buffered_input (stuffstring)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6789 Lisp_Object stuffstring;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6790 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6791 /* stuff_char works only in BSD, versions 4.2 and up. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6792 #ifdef BSD
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6793 #ifndef BSD4_1
10551
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
6794 register unsigned char *p;
7b2cb7c878d0 (the_only_perd): Define this var here.
Karl Heuer <kwzh@gnu.org>
parents: 10539
diff changeset
6795
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
6796 if (STRINGP (stuffstring))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6797 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6798 register int count;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6799
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6800 p = XSTRING (stuffstring)->data;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6801 count = XSTRING (stuffstring)->size;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6802 while (count-- > 0)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6803 stuff_char (*p++);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6804 stuff_char ('\n');
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6805 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6806 /* Anything we have read ahead, put back for the shell to read. */
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6807 /* ?? What should this do when we have multiple keyboards??
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
6808 Should we ignore anything that was typed in at the "wrong" kboard? */
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6809 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6810 {
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6811 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6812 kbd_fetch_ptr = kbd_buffer;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6813 if (kbd_fetch_ptr->kind == ascii_keystroke)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6814 stuff_char (kbd_fetch_ptr->code);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6815 kbd_fetch_ptr->kind = no_event;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6816 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
6817 - kbd_buffer]
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
6818 = Qnil);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6819 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6820 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6821 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6822 #endif /* BSD and not BSD4_1 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6823 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6824
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6825 set_waiting_for_input (time_to_clear)
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6826 EMACS_TIME *time_to_clear;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6827 {
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6828 input_available_clear_time = time_to_clear;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6829
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6830 /* Tell interrupt_signal to throw back to read_char, */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6831 waiting_for_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6832
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6833 /* If interrupt_signal was called before and buffered a C-g,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6834 make it run again now, to avoid timing error. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6835 if (!NILP (Vquit_flag))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6836 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6837 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6838
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6839 clear_waiting_for_input ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6840 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6841 /* Tell interrupt_signal not to throw back to read_char, */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6842 waiting_for_input = 0;
648
70b112526394 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 638
diff changeset
6843 input_available_clear_time = 0;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6844 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6845
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6846 /* This routine is called at interrupt level in response to C-G.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6847 If interrupt_input, this is the handler for SIGINT.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6848 Otherwise, it is called from kbd_buffer_store_event,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6849 in handling SIGIO or SIGTINT.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6850
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6851 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6852 immediately throw back to read_char.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6853
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6854 Otherwise it sets the Lisp variable quit-flag not-nil.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6855 This causes eval to throw, when it gets a chance.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6856 If quit-flag is already non-nil, it stops the job right away. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6857
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6858 SIGTYPE
10746
ea87e4d9c8ea (input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents: 10701
diff changeset
6859 interrupt_signal (signalnum) /* If we don't have an argument, */
ea87e4d9c8ea (input_poll_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents: 10701
diff changeset
6860 int signalnum; /* some compilers complain in signal calls. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6861 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6862 char c;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6863 /* Must preserve main program's value of errno. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6864 int old_errno = errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6865
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6866 #ifdef USG
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6867 if (!read_socket_hook && NILP (Vwindow_system))
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6868 {
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6869 /* USG systems forget handlers when they are used;
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6870 must reestablish each time */
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6871 signal (SIGINT, interrupt_signal);
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6872 signal (SIGQUIT, interrupt_signal);
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
6873 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6874 #endif /* USG */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6875
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6876 cancel_echoing ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6877
966
eb74884fc95a * keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents: 939
diff changeset
6878 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6879 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6880 fflush (stdout);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6881 reset_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6882 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6883 #ifdef SIGTSTP /* Support possible in later USG versions */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6884 /*
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6885 * On systems which can suspend the current process and return to the original
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6886 * shell, this command causes the user to end up back at the shell.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6887 * The "Auto-save" and "Abort" questions are not asked until
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6888 * the user elects to return to emacs, at which point he can save the current
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6889 * job and either dump core or continue.
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6890 */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6891 sys_suspend ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6892 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6893 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6894 if (sys_suspend () == -1)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6895 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6896 printf ("Not running as a subprocess;\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6897 printf ("you can continue or abort.\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6898 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6899 #else /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6900 /* Perhaps should really fork an inferior shell?
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6901 But that would not provide any way to get back
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6902 to the original shell, ever. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6903 printf ("No support for stopping a process on this operating system;\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6904 printf ("you can continue or abort.\n");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6905 #endif /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6906 #endif /* not SIGTSTP */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6907 #ifdef MSDOS
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6908 /* We must remain inside the screen area when the internal terminal
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6909 is used. Note that [Enter] is not echoed by dos. */
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6910 cursor_to (0, 0);
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6911 #endif
13454
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6912 /* It doesn't work to autosave while GC is in progress;
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6913 the code used for auto-saving doesn't cope with the mark bit. */
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6914 if (!gc_in_progress)
4282
af81ea5c816e (kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents: 4255
diff changeset
6915 {
13454
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6916 printf ("Auto-save? (y or n) ");
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6917 fflush (stdout);
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6918 if (((c = getchar ()) & ~040) == 'Y')
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6919 {
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6920 Fdo_auto_save (Qt, Qnil);
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6921 #ifdef MSDOS
13454
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6922 printf ("\r\nAuto-save done");
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6923 #else /* not MSDOS */
13454
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6924 printf ("Auto-save done\n");
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6925 #endif /* not MSDOS */
13454
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6926 }
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6927 while (c != '\n') c = getchar ();
4282
af81ea5c816e (kbd_buffer_store_event): Apply all the modifiers bits
Richard M. Stallman <rms@gnu.org>
parents: 4255
diff changeset
6928 }
13454
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6929 else
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6930 {
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6931 /* During GC, it must be safe to reenable quitting again. */
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6932 Vinhibit_quit = Qnil;
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6933 #ifdef MSDOS
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6934 printf ("\r\n");
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6935 #endif /* not MSDOS */
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6936 printf ("Garbage collection in progress; cannot auto-save now\r\n");
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6937 printf ("but will instead do a real quit after garbage collection ends\r\n");
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6938 fflush (stdout);
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6939 }
1a16700ce493 (interrupt_signal): Do special things in GC.
Richard M. Stallman <rms@gnu.org>
parents: 13413
diff changeset
6940
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6941 #ifdef MSDOS
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6942 printf ("\r\nAbort? (y or n) ");
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6943 #else /* not MSDOS */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6944 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6945 printf ("Abort (and enter debugger)? (y or n) ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6946 #else /* not VMS */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6947 printf ("Abort (and dump core)? (y or n) ");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6948 #endif /* not VMS */
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6949 #endif /* not MSDOS */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6950 fflush (stdout);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6951 if (((c = getchar ()) & ~040) == 'Y')
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6952 abort ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6953 while (c != '\n') c = getchar ();
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6954 #ifdef MSDOS
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6955 printf ("\r\nContinuing...\r\n");
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6956 #else /* not MSDOS */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6957 printf ("Continuing...\n");
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
6958 #endif /* not MSDOS */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6959 fflush (stdout);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6960 init_sys_modes ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6961 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6962 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6963 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6964 /* If executing a function that wants to be interrupted out of
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6965 and the user has not deferred quitting by binding `inhibit-quit'
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6966 then quit right away. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6967 if (immediate_quit && NILP (Vinhibit_quit))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6968 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6969 immediate_quit = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6970 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6971 Fsignal (Qquit, Qnil);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6972 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6973 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6974 /* Else request quit when it's safe */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6975 Vquit_flag = Qt;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6976 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6977
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6978 if (waiting_for_input && !echoing)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6979 quit_throw_to_read_char ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6980
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6981 errno = old_errno;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6982 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6983
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6984 /* Handle a C-g by making read_char return C-g. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6985
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6986 quit_throw_to_read_char ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6987 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6988 quit_error_check ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6989 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6990 /* Prevent another signal from doing this before we finish. */
650
39f0e62a8511 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 648
diff changeset
6991 clear_waiting_for_input ();
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6992 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6993
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
6994 Vunread_command_events = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
6995 unread_command_char = -1;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6996
12309
c78f7af6cee9 (quit_throw_to_read_char): Turn off the error check
Richard M. Stallman <rms@gnu.org>
parents: 12290
diff changeset
6997 #if 0 /* Currently, sit_for is called from read_char without turning
c78f7af6cee9 (quit_throw_to_read_char): Turn off the error check
Richard M. Stallman <rms@gnu.org>
parents: 12290
diff changeset
6998 off polling. And that can call set_waiting_for_input.
c78f7af6cee9 (quit_throw_to_read_char): Turn off the error check
Richard M. Stallman <rms@gnu.org>
parents: 12290
diff changeset
6999 It seems to be harmless. */
2340
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
7000 #ifdef POLL_FOR_INPUT
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
7001 /* May be > 1 if in recursive minibuffer. */
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
7002 if (poll_suppress_count == 0)
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
7003 abort ();
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
7004 #endif
12309
c78f7af6cee9 (quit_throw_to_read_char): Turn off the error check
Richard M. Stallman <rms@gnu.org>
parents: 12290
diff changeset
7005 #endif
5178
e2ebd4e12279 (quit_throw_to_read_char):
Richard M. Stallman <rms@gnu.org>
parents: 5133
diff changeset
7006 #ifdef MULTI_FRAME
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7007 if (FRAMEP (internal_last_event_frame)
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7008 && XFRAME (internal_last_event_frame) != selected_frame)
12290
99ffac67fb53 (quit_throw_to_read_char): Use do_switch_frame directly.
Richard M. Stallman <rms@gnu.org>
parents: 12264
diff changeset
7009 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
99ffac67fb53 (quit_throw_to_read_char): Use do_switch_frame directly.
Richard M. Stallman <rms@gnu.org>
parents: 12264
diff changeset
7010 Qnil, 0);
5178
e2ebd4e12279 (quit_throw_to_read_char):
Richard M. Stallman <rms@gnu.org>
parents: 5133
diff changeset
7011 #endif
2340
f19f4582c04d * keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents: 2338
diff changeset
7012
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7013 _longjmp (getcjmp, 1);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7014 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7015
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7016 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7017 "Set mode of reading keyboard input.\n\
695
e3fac20d3015 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 691
diff changeset
7018 First arg INTERRUPT non-nil means use input interrupts;\n\
e3fac20d3015 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 691
diff changeset
7019 nil means use CBREAK mode.\n\
e3fac20d3015 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 691
diff changeset
7020 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7021 (no effect except in CBREAK mode).\n\
2690
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7022 Third arg META t means accept 8-bit input (for a Meta key).\n\
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7023 META nil means ignore the top bit, on the assumption it is parity.\n\
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7024 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
2898
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7025 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7026 See also `current-input-mode'.")
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7027 (interrupt, flow, meta, quit)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7028 Lisp_Object interrupt, flow, meta, quit;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7029 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7030 if (!NILP (quit)
9124
8ed50a8939e9 (echo_char, cmd_error_internal, command_loop_1, read_char,
Karl Heuer <kwzh@gnu.org>
parents: 8994
diff changeset
7031 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
4471
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7032 error ("set-input-mode: QUIT must be an ASCII character");
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7033
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7034 #ifdef POLL_FOR_INPUT
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7035 stop_polling ();
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7036 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7037
13191
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
7038 #ifndef MSDOS
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
7039 /* this causes startup screen to be restored and messes with the mouse */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7040 reset_sys_modes ();
13191
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
7041 #endif
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
7042
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7043 #ifdef SIGIO
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7044 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11993
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7045 if (read_socket_hook)
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7046 {
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7047 /* When using X, don't give the user a real choice,
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7048 because we haven't implemented the mechanisms to support it. */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7049 #ifdef NO_SOCK_SIGIO
11993
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7050 interrupt_input = 0;
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7051 #else /* not NO_SOCK_SIGIO */
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7052 interrupt_input = 1;
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7053 #endif /* NO_SOCK_SIGIO */
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7054 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7055 else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7056 interrupt_input = !NILP (interrupt);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7057 #else /* not SIGIO */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7058 interrupt_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7059 #endif /* not SIGIO */
11993
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7060
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7061 /* Our VMS input only works by interrupts, as of now. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7062 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7063 interrupt_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7064 #endif
11993
25aed301d8f7 (Fset_input_mode): When read_socket_hook, ignore
Karl Heuer <kwzh@gnu.org>
parents: 11832
diff changeset
7065
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7066 flow_control = !NILP (flow);
2690
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7067 if (NILP (meta))
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7068 meta_key = 0;
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7069 else if (EQ (meta, Qt))
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7070 meta_key = 1;
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7071 else
5275561e6b0a (read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents: 2651
diff changeset
7072 meta_key = 2;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7073 if (!NILP (quit))
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7074 /* Don't let this value be out of range. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7075 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7076
13191
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
7077 #ifndef MSDOS
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7078 init_sys_modes ();
13191
cb145d50f910 (make_lispy_event) [!USE_X_TOOLKIT]: Dragging
Richard M. Stallman <rms@gnu.org>
parents: 13189
diff changeset
7079 #endif
4471
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7080
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7081 #ifdef POLL_FOR_INPUT
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7082 poll_suppress_count = 1;
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7083 start_polling ();
31c5586e9d36 (Fset_input_mode): Start polling, if appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 4417
diff changeset
7084 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7085 return Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7086 }
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7087
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7088 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7089 "Return information about the way Emacs currently reads keyboard input.\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7090 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7091 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7092 nil, Emacs is using CBREAK mode.\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7093 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7094 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
2898
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7095 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7096 META nil means ignoring the top bit, on the assumption it is parity.\n\
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7097 META is neither t nor nil if accepting 8-bit input and using\n\
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7098 all 8 bits as the character code.\n\
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7099 QUIT is the character Emacs currently uses to quit.\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7100 The elements of this list correspond to the arguments of\n\
2898
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7101 `set-input-mode'.")
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7102 ()
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7103 {
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7104 Lisp_Object val[4];
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7105
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7106 val[0] = interrupt_input ? Qt : Qnil;
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7107 val[1] = flow_control ? Qt : Qnil;
2898
15f219ab20d7 (Fcurrent_input_mode): Return META as 3-way flag.
Richard M. Stallman <rms@gnu.org>
parents: 2892
diff changeset
7108 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
7109 XSETFASTINT (val[3], quit_char);
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7110
3116
05c3ef28bb6b (Fcurrent_input_mode): Fix the call to Flist.
Richard M. Stallman <rms@gnu.org>
parents: 3104
diff changeset
7111 return Flist (sizeof (val) / sizeof (val[0]), val);
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7112 }
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7113
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7114
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7115 /*
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7116 * Set up a new kboard object with reasonable initial values.
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7117 */
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7118 void
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7119 init_kboard (kb)
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7120 KBOARD *kb;
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7121 {
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
7122 kb->Voverriding_terminal_local_map = Qnil;
12160
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
7123 kb->Vlast_command = Qnil;
12118
14520fa2d792 (cmd_error, command_loop_1, Fcommand_execute)
Karl Heuer <kwzh@gnu.org>
parents: 12087
diff changeset
7124 kb->Vprefix_arg = Qnil;
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7125 kb->kbd_queue = Qnil;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7126 kb->kbd_queue_has_data = 0;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7127 kb->immediate_echo = 0;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7128 kb->echoptr = kb->echobuf;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7129 kb->echo_after_prompt = -1;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7130 kb->kbd_macro_buffer = 0;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7131 kb->kbd_macro_bufsize = 0;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7132 kb->defining_kbd_macro = Qnil;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7133 kb->Vlast_kbd_macro = Qnil;
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7134 kb->reference_count = 0;
11543
317e5825008b (Vsystem_key_alist): Delete global variable.
Karl Heuer <kwzh@gnu.org>
parents: 11540
diff changeset
7135 kb->Vsystem_key_alist = Qnil;
12176
3e14d94320f2 (system_key_syms): Deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12173
diff changeset
7136 kb->system_key_syms = Qnil;
11777
14ecddbe182f (init_kboard): Initialize Vdefault_minibuffer_frame.
Karl Heuer <kwzh@gnu.org>
parents: 11763
diff changeset
7137 kb->Vdefault_minibuffer_frame = Qnil;
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7138 }
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7139
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7140 /*
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7141 * Destroy the contents of a kboard object, but not the object itself.
14036
621a575db6f7 Comment fixes.
Karl Heuer <kwzh@gnu.org>
parents: 13864
diff changeset
7142 * We use this just before deleting it, or if we're going to initialize
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7143 * it a second time.
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7144 */
11165
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7145 static void
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7146 wipe_kboard (kb)
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7147 KBOARD *kb;
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7148 {
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7149 if (kb->kbd_macro_buffer)
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7150 xfree (kb->kbd_macro_buffer);
10654
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7151 }
012591ef4e64 (syms_of_keyboard): Move DEFVAR_DISPLAY's here from callint.c.
Karl Heuer <kwzh@gnu.org>
parents: 10635
diff changeset
7152
11165
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7153 #ifdef MULTI_KBOARD
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7154 void
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7155 delete_kboard (kb)
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7156 KBOARD *kb;
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7157 {
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7158 KBOARD **kbp;
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7159 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7160 if (*kbp == NULL)
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7161 abort ();
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7162 *kbp = kb->next_kboard;
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7163 wipe_kboard (kb);
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7164 xfree (kb);
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7165 }
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7166 #endif
d5cd4e375335 (wipe_kboard): Make this function static.
Karl Heuer <kwzh@gnu.org>
parents: 11127
diff changeset
7167
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7168 init_keyboard ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7169 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7170 /* This is correct before outermost invocation of the editor loop */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7171 command_loop_level = -1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7172 immediate_quit = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7173 quit_char = Ctl ('g');
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
7174 Vunread_command_events = Qnil;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7175 unread_command_char = -1;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7176 total_keys = 0;
1262
c9fc221502e4 * keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents: 1261
diff changeset
7177 recent_keys_index = 0;
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7178 kbd_fetch_ptr = kbd_buffer;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7179 kbd_store_ptr = kbd_buffer;
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7180 kbd_buffer_frame_or_window
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7181 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
7182 #ifdef HAVE_MOUSE
9618
9fe4987e4896 (do_mouse_tracking): Now a FRAME_PTR.
Richard M. Stallman <rms@gnu.org>
parents: 9607
diff changeset
7183 do_mouse_tracking = Qnil;
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
7184 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7185 input_pending = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7186
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7187 #ifdef MULTI_FRAME
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7188 /* This means that command_loop_1 won't try to select anything the first
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7189 time through. */
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7190 internal_last_event_frame = Qnil;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7191 Vlast_event_frame = internal_last_event_frame;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7192 #endif
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7193
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7194 #ifdef MULTI_KBOARD
11363
f15dccd23db8 (init_keyboard): Don't malloc a new structure;
Karl Heuer <kwzh@gnu.org>
parents: 11350
diff changeset
7195 current_kboard = initial_kboard;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
7196 #endif
11363
f15dccd23db8 (init_keyboard): Don't malloc a new structure;
Karl Heuer <kwzh@gnu.org>
parents: 11350
diff changeset
7197 wipe_kboard (current_kboard);
11016
8d8eef563e13 (unlock_kboard): Renamed from unlock_display.
Karl Heuer <kwzh@gnu.org>
parents: 10997
diff changeset
7198 init_kboard (current_kboard);
1565
a681f63f93fa * keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents: 1515
diff changeset
7199
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7200 if (initialized)
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7201 Ffillarray (kbd_buffer_frame_or_window, Qnil);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7202
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7203 kbd_buffer_frame_or_window
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7204 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
7205 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7206 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7207 signal (SIGINT, interrupt_signal);
1921
06ecd9e51ca0 * keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents: 1895
diff changeset
7208 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7209 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7210 SIGQUIT and we can't tell which one it will give us. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7211 signal (SIGQUIT, interrupt_signal);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7212 #endif /* HAVE_TERMIO */
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
7213 }
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7214 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7215 #ifdef SIGIO
7957
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
7216 if (!noninteractive)
a1404ed5d012 (echo_after_prompt): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 7868
diff changeset
7217 signal (SIGIO, input_available_signal);
1008
f1df63f98e5c * keyboard.c (init_keyboard): Changed "#endif SIGIO" to
Jim Blandy <jimb@redhat.com>
parents: 985
diff changeset
7218 #endif /* SIGIO */
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7219
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7220 /* Use interrupt input by default, if it works and noninterrupt input
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7221 has deficiencies. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7222
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7223 #ifdef INTERRUPT_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7224 interrupt_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7225 #else
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7226 interrupt_input = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7227 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7228
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7229 /* Our VMS input only works by interrupts, as of now. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7230 #ifdef VMS
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7231 interrupt_input = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7232 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7233
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7234 sigfree ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7235 dribble = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7236
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7237 if (keyboard_init_hook)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7238 (*keyboard_init_hook) ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7239
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7240 #ifdef POLL_FOR_INPUT
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7241 poll_suppress_count = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7242 start_polling ();
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7243 #endif
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7244 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7245
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
7246 /* This type's only use is in syms_of_keyboard, to initialize the
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7247 event header symbols and put properties on them. */
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7248 struct event_head {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7249 Lisp_Object *var;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7250 char *name;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7251 Lisp_Object *kind;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7252 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7253
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7254 struct event_head head_table[] = {
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
7255 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
7256 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
7257 &Qswitch_frame, "switch-frame", &Qswitch_frame,
9215
fa3883c219ea (head_table): Set up Qdelete_frame.
Richard M. Stallman <rms@gnu.org>
parents: 9124
diff changeset
7258 &Qdelete_frame, "delete-frame", &Qdelete_frame,
9729
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
7259 &Qiconify_frame, "iconify-frame", &Qiconify_frame,
75b481d9773e (kbd_buffer_get_event): Translate them to lispy events.
Karl Heuer <kwzh@gnu.org>
parents: 9689
diff changeset
7260 &Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7261 };
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7262
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7263 syms_of_keyboard ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7264 {
4094
1dae74fd93d2 (Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4088
diff changeset
7265 Qdisabled_command_hook = intern ("disabled-command-hook");
1dae74fd93d2 (Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4088
diff changeset
7266 staticpro (&Qdisabled_command_hook);
1dae74fd93d2 (Qdisabled_command_hook): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 4088
diff changeset
7267
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7268 Qself_insert_command = intern ("self-insert-command");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7269 staticpro (&Qself_insert_command);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7270
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7271 Qforward_char = intern ("forward-char");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7272 staticpro (&Qforward_char);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7273
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7274 Qbackward_char = intern ("backward-char");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7275 staticpro (&Qbackward_char);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7276
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7277 Qdisabled = intern ("disabled");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7278 staticpro (&Qdisabled);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7279
4065
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
7280 Qundefined = intern ("undefined");
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
7281 staticpro (&Qundefined);
adf973a863dd (Qundefined): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 3994
diff changeset
7282
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7283 Qpre_command_hook = intern ("pre-command-hook");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7284 staticpro (&Qpre_command_hook);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7285
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7286 Qpost_command_hook = intern ("post-command-hook");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7287 staticpro (&Qpost_command_hook);
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7288
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7289 Qpost_command_idle_hook = intern ("post-command-idle-hook");
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7290 staticpro (&Qpost_command_idle_hook);
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7291
10070
def41008c136 (command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents: 10060
diff changeset
7292 Qdeferred_action_function = intern ("deferred-action-function");
def41008c136 (command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents: 10060
diff changeset
7293 staticpro (&Qdeferred_action_function);
def41008c136 (command_loop_1): Use safe_run_hooks to run
Richard M. Stallman <rms@gnu.org>
parents: 10060
diff changeset
7294
5674
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
7295 Qcommand_hook_internal = intern ("command-hook-internal");
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
7296 staticpro (&Qcommand_hook_internal);
bb8bfab97970 (read_key_sequence): Properly gcpro fkey_map while using keytran_map.
Richard M. Stallman <rms@gnu.org>
parents: 5614
diff changeset
7297
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7298 Qfunction_key = intern ("function-key");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7299 staticpro (&Qfunction_key);
1322
5f327f1dddd3 * keyboard.c (modify_event_symbol): Make sure that the unmodified
Jim Blandy <jimb@redhat.com>
parents: 1310
diff changeset
7300 Qmouse_click = intern ("mouse-click");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7301 staticpro (&Qmouse_click);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7302
2512
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
7303 Qmenu_enable = intern ("menu-enable");
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
7304 staticpro (&Qmenu_enable);
2a13ec10bfd7 * keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents: 2505
diff changeset
7305
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7306 Qmode_line = intern ("mode-line");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7307 staticpro (&Qmode_line);
732
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
7308 Qvertical_line = intern ("vertical-line");
a8d94735277e *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 727
diff changeset
7309 staticpro (&Qvertical_line);
1988
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
7310 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
1709282a3413 * keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents: 1960
diff changeset
7311 staticpro (&Qvertical_scroll_bar);
2149
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
7312 Qmenu_bar = intern ("menu-bar");
9e21e9f8bb0d (syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents: 2133
diff changeset
7313 staticpro (&Qmenu_bar);
1711
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
7314
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
7315 Qabove_handle = intern ("above-handle");
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
7316 staticpro (&Qabove_handle);
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
7317 Qhandle = intern ("handle");
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
7318 staticpro (&Qhandle);
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
7319 Qbelow_handle = intern ("below-handle");
4cd44b41f1e3 * keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents: 1654
diff changeset
7320 staticpro (&Qbelow_handle);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7321
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
7322 Qevent_kind = intern ("event-kind");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7323 staticpro (&Qevent_kind);
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7324 Qevent_symbol_elements = intern ("event-symbol-elements");
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7325 staticpro (&Qevent_symbol_elements);
1328
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
7326 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
7327 staticpro (&Qevent_symbol_element_mask);
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
7328 Qmodifier_cache = intern ("modifier-cache");
c4eb3aa71303 * keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents: 1322
diff changeset
7329 staticpro (&Qmodifier_cache);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7330
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7331 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7332 staticpro (&Qrecompute_lucid_menubar);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7333 Qactivate_menubar_hook = intern ("activate-menubar-hook");
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7334 staticpro (&Qactivate_menubar_hook);
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7335
7487
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
7336 Qpolling_period = intern ("polling-period");
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
7337 staticpro (&Qpolling_period);
a7ff1a4b4e21 (syms_of_keyboard): Set up Qpolling_period.
Richard M. Stallman <rms@gnu.org>
parents: 7447
diff changeset
7338
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7339 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7340 struct event_head *p;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7341
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7342 for (p = head_table;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7343 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7344 p++)
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7345 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7346 *p->var = intern (p->name);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7347 staticpro (p->var);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7348 Fput (*p->var, Qevent_kind, *p->kind);
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7349 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7350 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7351 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7352
1778
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
7353 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
1f18bfe28e2f * termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents: 1711
diff changeset
7354 staticpro (&button_down_location);
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7355
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7356 {
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7357 int i;
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7358 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7359
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7360 modifier_symbols = Fmake_vector (make_number (len), Qnil);
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7361 for (i = 0; i < len; i++)
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7362 if (modifier_names[i])
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7363 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
1310
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7364 staticpro (&modifier_symbols);
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7365 }
8db103d11270 * keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents: 1262
diff changeset
7366
1262
c9fc221502e4 * keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents: 1261
diff changeset
7367 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
c9fc221502e4 * keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents: 1261
diff changeset
7368 staticpro (&recent_keys);
c9fc221502e4 * keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents: 1261
diff changeset
7369
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
7370 this_command_keys = Fmake_vector (make_number (40), Qnil);
1449
7f2b81dc2dd1 (syms_of_keyboard): Properly staticpro this_command_keys.
Richard M. Stallman <rms@gnu.org>
parents: 1439
diff changeset
7371 staticpro (&this_command_keys);
1439
b3b2d1181d3a * keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents: 1404
diff changeset
7372
4773
ae7c67879859 (Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents: 4696
diff changeset
7373 Qextended_command_history = intern ("extended-command-history");
ae7c67879859 (Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents: 4696
diff changeset
7374 Fset (Qextended_command_history, Qnil);
ae7c67879859 (Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents: 4696
diff changeset
7375 staticpro (&Qextended_command_history);
ae7c67879859 (Qextended_command_history): New variable prevents
Brian Fox <bfox@gnu.org>
parents: 4696
diff changeset
7376
10800
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7377 kbd_buffer_frame_or_window
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7378 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7379 staticpro (&kbd_buffer_frame_or_window);
5bfee5ff5d18 (kbd_buffer_frame_or_window): Restored old var.
Karl Heuer <kwzh@gnu.org>
parents: 10746
diff changeset
7380
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
7381 accent_key_syms = Qnil;
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
7382 staticpro (&accent_key_syms);
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
7383
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7384 func_key_syms = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7385 staticpro (&func_key_syms);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7386
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7387 mouse_syms = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7388 staticpro (&mouse_syms);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7389
1386
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
7390 unread_switch_frame = Qnil;
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
7391 staticpro (&unread_switch_frame);
5845050f9d5c * keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents: 1328
diff changeset
7392
12150
64b16f71a15c (Fevent_convert_list): Renamed from convert_event_type_list.
Karl Heuer <kwzh@gnu.org>
parents: 12144
diff changeset
7393 defsubr (&Sevent_convert_list);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7394 defsubr (&Sread_key_sequence);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7395 defsubr (&Srecursive_edit);
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
7396 #ifdef HAVE_MOUSE
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7397 defsubr (&Strack_mouse);
9840
81829106d303 (EVENT_QUEUES_EMPTY): Only test do_mouse_tracking and mouse_moved #ifdef
Roland McGrath <roland@gnu.org>
parents: 9830
diff changeset
7398 #endif
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7399 defsubr (&Sinput_pending_p);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7400 defsubr (&Scommand_execute);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7401 defsubr (&Srecent_keys);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7402 defsubr (&Sthis_command_keys);
12335
0ab97d00e336 (Freset_this_command_lengths): New function.
Richard M. Stallman <rms@gnu.org>
parents: 12309
diff changeset
7403 defsubr (&Sreset_this_command_lengths);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7404 defsubr (&Ssuspend_emacs);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7405 defsubr (&Sabort_recursive_edit);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7406 defsubr (&Sexit_recursive_edit);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7407 defsubr (&Srecursion_depth);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7408 defsubr (&Stop_level);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7409 defsubr (&Sdiscard_input);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7410 defsubr (&Sopen_dribble_file);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7411 defsubr (&Sset_input_mode);
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7412 defsubr (&Scurrent_input_mode);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7413 defsubr (&Sexecute_extended_command);
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7414
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7415 DEFVAR_LISP ("last-command-char", &last_command_char,
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7416 "Last input event that was part of a command.");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7417
8039
7cc73292df36 (syms_of_keyboard): Don't staticpro the same var twice.
Karl Heuer <kwzh@gnu.org>
parents: 7999
diff changeset
7418 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7419 "Last input event that was part of a command.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7420
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7421 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7422 "Last input event in a command, except for mouse menu events.\n\
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7423 Mouse menus give back keys that don't look like mouse events;\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7424 this variable holds the actual mouse event that led to the menu,\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7425 so that you can determine whether the command was run by mouse or not.");
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7426
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7427 DEFVAR_LISP ("last-input-char", &last_input_char,
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7428 "Last input event.");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7429
8039
7cc73292df36 (syms_of_keyboard): Don't staticpro the same var twice.
Karl Heuer <kwzh@gnu.org>
parents: 7999
diff changeset
7430 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7431 "Last input event.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7432
7168
82bb839ac5c6 (Vunread_command_events): Renamed from unread_command_events.
Richard M. Stallman <rms@gnu.org>
parents: 7098
diff changeset
7433 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
1960
6051ba81a938 (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 1947
diff changeset
7434 "List of objects to be read as next command input events.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7435
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7436 DEFVAR_INT ("unread-command-char", &unread_command_char,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7437 "If not -1, an object to be read as next command input event.");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7438
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7439 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7440 "Meta-prefix character code. Meta-foo as command input\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7441 turns into this character followed by foo.");
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
7442 XSETINT (meta_prefix_char, 033);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7443
12160
14d4e014f55f (last_command): Var deleted; now part of struct kboard.
Karl Heuer <kwzh@gnu.org>
parents: 12150
diff changeset
7444 DEFVAR_KBOARD ("last-command", Vlast_command,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7445 "The last command executed. Normally a symbol with a function definition,\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7446 but can be whatever was found in the keymap, or whatever the variable\n\
10060
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7447 `this-command' was set to by that command.\n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7448 \n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7449 The value `mode-exit' is special; it means that the previous command\n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7450 read an event that told it to exit, and it did so and unread that event.\n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7451 In other words, the present command is the event that made the previous\n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7452 command exit.\n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7453 \n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7454 The value `kill-region' is special; it means that the previous command\n\
145bf101cccc (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 9977
diff changeset
7455 was a kill command.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7456
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7457 DEFVAR_LISP ("this-command", &this_command,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7458 "The command now being executed.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7459 The command can set this variable; whatever is put here\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7460 will be in `last-command' during the following command.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7461 this_command = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7462
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7463 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7464 "*Number of keyboard input characters between auto-saves.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7465 Zero means disable autosaving due to number of characters typed.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7466 auto_save_interval = 300;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7467
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7468 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7469 "*Number of seconds idle time before auto-save.\n\
687
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 682
diff changeset
7470 Zero or nil means disable auto-saving due to idleness.\n\
e2b747dd6a6e *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 682
diff changeset
7471 After auto-saving due to this many seconds of idle time,\n\
701
e7eb08ed73c0 *** empty log message ***
Joseph Arceneaux <jla@gnu.org>
parents: 695
diff changeset
7472 Emacs also does a garbage collection if that seems to be warranted.");
9311
6e40f49dc6fb (read_char, make_lispy_event, make_lispy_movement, parse_modifiers,
Karl Heuer <kwzh@gnu.org>
parents: 9272
diff changeset
7473 XSETFASTINT (Vauto_save_timeout, 30);
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7474
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7475 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7476 "*Nonzero means echo unfinished commands after this many seconds of pause.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7477 echo_keystrokes = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7478
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7479 DEFVAR_INT ("polling-period", &polling_period,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7480 "*Interval between polling for input during Lisp execution.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7481 The reason for polling is to make C-g work to stop a running program.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7482 Polling is needed only when using X windows and SIGIO does not work.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7483 Polling is automatically disabled in all other cases.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7484 polling_period = 2;
10985
d917a965cb47 (unlock_display): current_perdisplay now is never null.
Karl Heuer <kwzh@gnu.org>
parents: 10984
diff changeset
7485
3993
992a1abeb6cd * keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents: 3972
diff changeset
7486 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
7487 "*Maximum time between mouse clicks to make a double-click.\n\
3993
992a1abeb6cd * keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents: 3972
diff changeset
7488 Measured in milliseconds. nil means disable double-click recognition;\n\
992a1abeb6cd * keyboard.c (Vdouble_click_time): Renamed from double_click_time,
Jim Blandy <jimb@redhat.com>
parents: 3972
diff changeset
7489 t means double-clicks have no time limit and are detected\n\
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
7490 by position only.");
3994
df443e5f391e Fix initialization of Vdouble_click_time in syms_of_keyboard.
Jim Blandy <jimb@redhat.com>
parents: 3993
diff changeset
7491 Vdouble_click_time = make_number (500);
3861
fc8c92b69513 * keyboard.c (make_lispy_event): Added detection of double-click
Jim Blandy <jimb@redhat.com>
parents: 3809
diff changeset
7492
9396
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
7493 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
7494 "*Non-nil means inhibit local map menu bar menus.");
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
7495 inhibit_local_menu_bar_menus = 0;
c5d9742c47b3 (inhibit_local_menu_bar_menus): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9311
diff changeset
7496
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7497 DEFVAR_INT ("num-input-keys", &num_input_keys,
10381
8e8259e052ed (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 10309
diff changeset
7498 "Number of complete keys read from the keyboard so far.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7499 num_input_keys = 0;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7500
10861
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7501 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7502 "The frame in which the most recently read event occurred.\n\
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7503 If the last event came from a keyboard macro, this is set to `macro'.");
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7504 Vlast_event_frame = Qnil;
655e3daa560c (cmd_error): Use clear_prefix_arg.
Karl Heuer <kwzh@gnu.org>
parents: 10844
diff changeset
7505
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7506 DEFVAR_LISP ("help-char", &Vhelp_char,
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7507 "Character to recognize as meaning Help.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7508 When it is read, do `(eval help-form)', and display result if it's a string.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7509 If the value of `help-form' is nil, this char can be read normally.");
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
7510 XSETINT (Vhelp_char, Ctl ('H'));
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7511
12144
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
7512 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
7513 "List of input events to recognize as meaning Help.\n\
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
7514 These work just like the value of `help-char' (see that).");
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
7515 Vhelp_event_list = Qnil;
12720a817d83 (Vhelp_event_list): New var.
Karl Heuer <kwzh@gnu.org>
parents: 12142
diff changeset
7516
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7517 DEFVAR_LISP ("help-form", &Vhelp_form,
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7518 "Form to execute when character `help-char' is read.\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7519 If the form returns a string, that string is displayed.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7520 If `help-form' is nil, the help char is not recognized.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7521 Vhelp_form = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7522
3972
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7523 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7524 "Command to run when `help-char' character follows a prefix key.\n\
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7525 This command is used only when there is no actual binding\n\
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7526 for that character after that prefix key.");
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7527 Vprefix_help_command = Qnil;
e49ff3115e7d (read_char): After Fgarbage_collect, call redisplay.
Richard M. Stallman <rms@gnu.org>
parents: 3929
diff changeset
7528
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7529 DEFVAR_LISP ("top-level", &Vtop_level,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7530 "Form to evaluate when Emacs starts up.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7531 Useful to set before you dump a modified Emacs.");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7532 Vtop_level = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7533
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7534 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
13246
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
7535 "Translate table for keyboard input, or nil.\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7536 Each character is looked up in this string and the contents used instead.\n\
13246
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
7537 The value may be a string, a vector, or a char-table.\n\
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
7538 If it is a string or vector of length N,\n\
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
7539 character codes N and up are untranslated.\n\
47725e106652 (read_char): Let Vkeyboard_translate_table be char-table.
Richard M. Stallman <rms@gnu.org>
parents: 13191
diff changeset
7540 In a vector or a char-table, an element which is nil means \"no translation\".");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7541 Vkeyboard_translate_table = Qnil;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7542
6101
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
7543 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
7544 "Non-nil means to always spawn a subshell instead of suspending,\n\
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
7545 even if the operating system has support for stopping a process.");
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
7546 cannot_suspend = 0;
9b32ddce536b (Fsuspend_emacs): New variable cannot-suspend forces a subshell even if the
Karl Heuer <kwzh@gnu.org>
parents: 6096
diff changeset
7547
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7548 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7549 "Non-nil means prompt with menus when appropriate.\n\
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7550 This is done when reading from a keymap that has a prompt string,\n\
1083
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7551 for elements that have prompt strings.\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7552 The menu is displayed on the screen\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7553 if X menus were enabled at configuration\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7554 time and the previous event was a mouse click prefix key.\n\
cbbbe0a96ecc (last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents: 1046
diff changeset
7555 Otherwise, menu prompting uses the echo area.");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7556 menu_prompting = 1;
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7557
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7558 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7559 "Character to see next line of menu prompt.\n\
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7560 Type this character while in a menu prompt to rotate around the lines of it.");
9272
0a0998c4d4b6 (command_loop_1, read_char, Ftrack_mouse, kbd_buffer_get_event,
Karl Heuer <kwzh@gnu.org>
parents: 9228
diff changeset
7561 XSETINT (menu_prompt_more_char, ' ');
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
7562
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
7563 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
7564 "A mask of additional modifier keys to use with every keyboard character.\n\
2726
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
7565 Emacs applies the modifiers of the character stored here to each keyboard\n\
954251d0fbd1 * blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents: 2719
diff changeset
7566 character it reads. For example, after evaluating the expression\n\
10602
05a3cfc7a5ba (syms_of_keyboard): Fix missing backslashes.
Karl Heuer <kwzh@gnu.org>
parents: 10579
diff changeset
7567 (setq extra-keyboard-modifiers ?\\C-x)\n\
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7568 all input characters will have the control modifier applied to them.\n\
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7569 \n\
10602
05a3cfc7a5ba (syms_of_keyboard): Fix missing backslashes.
Karl Heuer <kwzh@gnu.org>
parents: 10579
diff changeset
7570 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7571 not count as a control character; rather, it counts as a character\n\
4600
a4d11a20b724 (kbd_buffer_store_event): Use bcopy to copy
Richard M. Stallman <rms@gnu.org>
parents: 4558
diff changeset
7572 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
2651
d3f05a05fe2a Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents: 2618
diff changeset
7573 cancels any modification.");
1842
2cc82d6070e2 (extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents: 1821
diff changeset
7574 extra_keyboard_modifiers = 0;
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7575
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7576 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7577 "If an editing command sets this to t, deactivate the mark afterward.\n\
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7578 The command loop sets this to nil before each command,\n\
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7579 and tests the value when the command returns.\n\
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7580 Buffer modification stores t in this variable.");
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7581 Vdeactivate_mark = Qnil;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7582
5894
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
7583 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
7584 "Temporary storage of pre-command-hook or post-command-hook.");
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
7585 Vcommand_hook_internal = Qnil;
89c310941fcb (syms_of_keyboard): Add a DEFVAR for command-hook-internal.
Karl Heuer <kwzh@gnu.org>
parents: 5889
diff changeset
7586
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7587 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
7433
cc5e8709ab89 (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 7428
diff changeset
7588 "Normal hook run before each command is executed.\n\
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7589 Errors running the hook are caught and ignored.");
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7590 Vpre_command_hook = Qnil;
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7591
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7592 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
7433
cc5e8709ab89 (syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 7428
diff changeset
7593 "Normal hook run after each command is executed.\n\
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7594 Errors running the hook are caught and ignored.");
2045
cc85a38463b8 (follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents: 1988
diff changeset
7595 Vpost_command_hook = Qnil;
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7596
12919
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7597 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7598 "Normal hook run after each command is executed, if idle.\n\
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7599 Errors running the hook are caught and ignored.");
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7600 Vpost_command_idle_hook = Qnil;
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7601
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7602 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7603 "Delay time before running `post-command-idle-delay'.\n\
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7604 This is measured in microseconds.");
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7605 post_command_idle_delay = 100000;
cb9fe3733db5 (Qpost_command_idle_hook, Vpost_command_idle_hook): New vars.
Richard M. Stallman <rms@gnu.org>
parents: 12800
diff changeset
7606
2188
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7607 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7608 "t means menu bar, specified Lucid style, needs to be recomputed.");
f74e9c948380 (command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents: 2149
diff changeset
7609 Vlucid_menu_bar_dirty_flag = Qnil;
4088
bea0be5ab35e (Vhelp_menu_bar_map): New var.
Richard M. Stallman <rms@gnu.org>
parents: 4065
diff changeset
7610
4115
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
7611 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
7612 "List of menu bar items to move to the end of the menu bar.\n\
4255
4b65e1ff27b8 (command_loop_1): Run post-command-hook first thing.
Richard M. Stallman <rms@gnu.org>
parents: 4137
diff changeset
7613 The elements of the list are event types that may have menu bar bindings.");
4115
4aafcdc3d9e7 (Vhelp_menu_bar_map): Deleted.
Richard M. Stallman <rms@gnu.org>
parents: 4106
diff changeset
7614 Vmenu_bar_final_items = Qnil;
5225
95a44cfa9e17 (make_lispy_event): Offset the event code here.
Richard M. Stallman <rms@gnu.org>
parents: 5224
diff changeset
7615
12264
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
7616 DEFVAR_KBOARD ("overriding-terminal-local-map",
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
7617 Voverriding_terminal_local_map,
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
7618 "Keymap that overrides all other local keymaps.\n\
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
7619 If this variable is non-nil, it is used as a keymap instead of the\n\
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
7620 buffer's local map, and the minor mode keymaps and text property keymaps.");
93010bff5b56 (init_kboard): Initialize it.
Karl Heuer <kwzh@gnu.org>
parents: 12227
diff changeset
7621
5614
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
7622 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
7623 "Keymap that overrides all other local keymaps.\n\
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
7624 If this variable is non-nil, it is used as a keymap instead of the\n\
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
7625 buffer's local map, and the minor mode keymaps and text property keymaps.");
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
7626 Voverriding_local_map = Qnil;
16074afb03df (Voverriding_local_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 5588
diff changeset
7627
9607
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
7628 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
7629 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
7630 Otherwise, the menu bar continues to reflect the buffer's local map\n\
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
7631 and the minor mode maps regardless of `overriding-local-map'.");
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
7632 Voverriding_local_map_menu_flag = Qnil;
081040eb1863 (Voverriding_local_map_menu_flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9572
diff changeset
7633
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7634 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7635 "Keymap defining bindings for special events to execute at low level.");
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7636 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7637
9881
02cd4dde69e1 (tracking_off): Test old value with NILP.
Richard M. Stallman <rms@gnu.org>
parents: 9864
diff changeset
7638 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11832
7c2d57ac784f (syms_of_keyboard): Always define track-mouse.
Karl Heuer <kwzh@gnu.org>
parents: 11777
diff changeset
7639 "*Non-nil means generate motion events for mouse motion.");
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
7640
11543
317e5825008b (Vsystem_key_alist): Delete global variable.
Karl Heuer <kwzh@gnu.org>
parents: 11540
diff changeset
7641 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
6096
443b78042b86 (Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents: 6053
diff changeset
7642 "Alist of system-specific X windows key symbols.\n\
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
7643 Each element should have the form (N . SYMBOL) where N is the\n\
6096
443b78042b86 (Vsystem_key_alist): Renamed from Vvendor_key_alist.
Richard M. Stallman <rms@gnu.org>
parents: 6053
diff changeset
7644 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
5513
d7770758acfd (interrupt_signal) [MSDOS]: write explicit CRs since
Richard M. Stallman <rms@gnu.org>
parents: 5394
diff changeset
7645 and SYMBOL is its name.");
8302
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7646
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7647 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7648 "List of deferred actions to be performed at a later time.\n\
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7649 The precise format isn't relevant here; we just check whether it is nil.");
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7650 Vdeferred_action_list = Qnil;
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7651
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7652 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7653 "Function to call to handle deferred actions, after each command.\n\
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7654 This function is called with no arguments after each command\n\
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7655 whenever `deferred-action-list' is non-nil.");
4e5626d0b962 (Vdeferred_action_list, Vdeferred_action_function): New variables.
Richard M. Stallman <rms@gnu.org>
parents: 8247
diff changeset
7656 Vdeferred_action_function = Qnil;
13108
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
7657
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
7658 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
7659 "Non-nil means show the equivalent key-binding when M-x command has one.\n\
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
7660 The value can be a length of time to show the message for.\n\
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
7661 If the value is non-nil and not a number, we wait 2 seconds.");
04466bd88580 (Vsuggest_key_bindings): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 13082
diff changeset
7662 Vsuggest_key_bindings = Qt;
13329
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
7663
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
7664 DEFVAR_LISP ("column-number-mode", &Vcolumn_number_mode,
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
7665 "Non-nil enables display of the current column number in the mode line.");
3bd6e6e466f7 (command_loop_1): No direct display if Column Number mode.
Richard M. Stallman <rms@gnu.org>
parents: 13324
diff changeset
7666 Vcolumn_number_mode = Qnil;
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7667 }
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7668
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7669 keys_of_keyboard ()
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7670 {
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7671 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7672 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7673 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7674 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7675 initial_define_key (meta_map, 'x', "execute-extended-command");
12469
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7676
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7677 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7678 "handle-delete-frame");
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7679 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7680 "ignore-event");
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7681 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
bec888e46e6a (Vspecial_event_map): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 12342
diff changeset
7682 "ignore-event");
518
3a316f923456 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7683 }