Mercurial > emacs
annotate src/keyboard.c @ 3407:d00aaf536bfd
[!FLOAT_CHECK_ERRNO] (IN_FLOAT): New definition.
(Flog): Fix argument of `log'.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 01 Jun 1993 20:29:48 +0000 |
| parents | 4a10e4c34b11 |
| children | 3393f6e53d25 |
| rev | line source |
|---|---|
| 518 | 1 /* Keyboard and mouse input; editor command loop. |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993 Free Software Foundation, Inc. |
| 518 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
|
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 | 9 any later version. |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
| 20 /* Allow config.h to undefine symbols found here. */ | |
| 21 #include <signal.h> | |
| 22 | |
| 23 #include "config.h" | |
| 24 #include <stdio.h> | |
| 25 #undef NULL | |
| 26 #include "termchar.h" | |
| 27 #include "termopts.h" | |
| 28 #include "lisp.h" | |
| 29 #include "termhooks.h" | |
| 30 #include "macros.h" | |
| 765 | 31 #include "frame.h" |
| 518 | 32 #include "window.h" |
| 33 #include "commands.h" | |
| 34 #include "buffer.h" | |
| 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 | 37 #include "keyboard.h" |
| 2061 | 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 | 40 #include <setjmp.h> |
| 41 #include <errno.h> | |
| 42 | |
| 562 | 43 #ifndef VMS |
| 44 #include <sys/ioctl.h> | |
| 45 #endif | |
| 46 | |
| 47 #include "syssignal.h" | |
|
1046
d4b1e5db2b2a
* keyboard.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1008
diff
changeset
|
48 #include "systty.h" |
| 648 | 49 #include "systime.h" |
| 518 | 50 |
| 51 extern int errno; | |
| 52 | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
53 /* 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
|
54 |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
55 /* 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
|
56 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
|
57 |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
58 /* 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
|
59 during the current critical section. */ |
|
2481
a7a0f89c1f64
* keyboard.c (interrupt_input_blocked, interrupt_input_pending):
Jim Blandy <jimb@redhat.com>
parents:
2439
diff
changeset
|
60 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
|
61 |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
62 |
| 518 | 63 #ifdef HAVE_X_WINDOWS |
| 64 extern Lisp_Object Vmouse_grabbed; | |
| 65 | |
| 66 /* Make all keyboard buffers much bigger when using X windows. */ | |
| 67 #define KBD_BUFFER_SIZE 4096 | |
| 68 #else /* No X-windows, character input */ | |
| 69 #define KBD_BUFFER_SIZE 256 | |
| 70 #endif /* No X-windows */ | |
| 71 | |
| 72 /* Following definition copied from eval.c */ | |
| 73 | |
| 74 struct backtrace | |
| 75 { | |
| 76 struct backtrace *next; | |
| 77 Lisp_Object *function; | |
| 78 Lisp_Object *args; /* Points to vector of args. */ | |
| 79 int nargs; /* length of vector. If nargs is UNEVALLED, | |
| 80 args points to slot holding list of | |
| 81 unevalled args */ | |
| 82 char evalargs; | |
| 83 }; | |
| 84 | |
| 85 /* Non-nil disable property on a command means | |
| 86 do not execute it; call disabled-command-hook's value instead. */ | |
| 87 Lisp_Object Qdisabled, Vdisabled_command_hook; | |
| 88 | |
| 89 #define NUM_RECENT_KEYS (100) | |
| 90 int recent_keys_index; /* Index for storing next element into recent_keys */ | |
| 91 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
|
92 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */ |
| 518 | 93 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
94 /* 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
|
95 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
|
96 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
|
97 actually mean something. |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
98 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
|
99 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
|
100 int this_command_key_count; |
| 518 | 101 |
| 102 extern int minbuf_level; | |
| 103 | |
| 104 extern struct backtrace *backtrace_list; | |
| 105 | |
| 106 /* Nonzero means do menu prompting. */ | |
| 107 static int menu_prompting; | |
| 108 | |
| 109 /* Character to see next line of menu prompt. */ | |
| 110 static Lisp_Object menu_prompt_more_char; | |
| 111 | |
| 112 /* For longjmp to where kbd input is being done. */ | |
| 113 static jmp_buf getcjmp; | |
| 114 | |
| 115 /* True while doing kbd input. */ | |
| 116 int waiting_for_input; | |
| 117 | |
| 118 /* True while displaying for echoing. Delays C-g throwing. */ | |
| 119 static int echoing; | |
| 120 | |
| 121 /* Nonzero means C-G should cause immediate error-signal. */ | |
| 122 int immediate_quit; | |
| 123 | |
| 124 /* Character to recognize as the help char. */ | |
| 125 Lisp_Object help_char; | |
| 126 | |
| 127 /* Form to execute when help char is typed. */ | |
| 128 Lisp_Object Vhelp_form; | |
| 129 | |
| 130 /* Character that causes a quit. Normally C-g. | |
| 131 | |
| 132 If we are running on an ordinary terminal, this must be an ordinary | |
| 133 ASCII char, since we want to make it our interrupt character. | |
| 134 | |
| 135 If we are not running on an ordinary terminal, it still needs to be | |
| 136 an ordinary ASCII char. This character needs to be recognized in | |
| 137 the input interrupt handler. At this point, the keystroke is | |
| 138 represented as a struct input_event, while the desired quit | |
| 139 character is specified as a lispy event. The mapping from struct | |
| 140 input_events to lispy events cannot run in an interrupt handler, | |
| 141 and the reverse mapping is difficult for anything but ASCII | |
| 142 keystrokes. | |
| 143 | |
| 144 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an | |
| 145 ASCII character. */ | |
| 146 int quit_char; | |
| 147 | |
| 148 extern Lisp_Object current_global_map; | |
| 149 extern int minibuf_level; | |
| 150 | |
| 151 /* Current depth in recursive edits. */ | |
| 152 int command_loop_level; | |
| 153 | |
| 154 /* Total number of times command_loop has read a key sequence. */ | |
| 155 int num_input_keys; | |
| 156 | |
| 157 /* Last input character read as a command. */ | |
| 158 Lisp_Object last_command_char; | |
| 159 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
160 /* 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
|
161 reached by the mouse. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
162 Lisp_Object last_nonmenu_event; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
163 |
| 518 | 164 /* Last input character read for any purpose. */ |
| 165 Lisp_Object last_input_char; | |
| 166 | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
167 /* If not Qnil, a list of objects to be read as subsequent command input. */ |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
168 Lisp_Object unread_command_events; |
| 518 | 169 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
170 /* 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
|
171 int unread_command_char; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
172 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
173 /* 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
|
174 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
|
175 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
|
176 |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
177 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
|
178 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
|
179 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
|
180 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
|
181 |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
182 /* 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
|
183 int extra_keyboard_modifiers; |
|
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
184 |
| 518 | 185 /* Char to use as prefix when a meta character is typed in. |
| 186 This is bound on entry to minibuffer in case ESC is changed there. */ | |
| 187 | |
| 188 Lisp_Object meta_prefix_char; | |
| 189 | |
| 190 /* Last size recorded for a current buffer which is not a minibuffer. */ | |
| 191 static int last_non_minibuf_size; | |
| 192 | |
|
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
193 /* Number of idle seconds before an auto-save and garbage collection. */ |
| 518 | 194 static Lisp_Object Vauto_save_timeout; |
| 195 | |
| 196 /* Total number of times read_char has returned. */ | |
| 197 int num_input_chars; | |
| 198 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
199 /* 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
|
200 int num_nonmacro_input_chars; |
|
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
201 |
| 518 | 202 /* Auto-save automatically when this many characters have been typed |
| 203 since the last time. */ | |
| 204 | |
| 205 static int auto_save_interval; | |
| 206 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
207 /* Value of num_nonmacro_input_chars as of last auto save. */ |
| 518 | 208 |
| 209 int last_auto_save; | |
| 210 | |
| 211 /* Last command executed by the editor command loop, not counting | |
| 212 commands that set the prefix argument. */ | |
| 213 | |
| 214 Lisp_Object last_command; | |
| 215 | |
| 216 /* The command being executed by the command loop. | |
| 217 Commands may set this, and the value set will be copied into last_command | |
| 218 instead of the actual command. */ | |
| 219 Lisp_Object this_command; | |
| 220 | |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
221 #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
|
222 /* The frame in which the last input event occurred, or Qmacro if the |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
223 last event came from a macro. We use this to determine when to |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
224 generate switch-frame events. This may be cleared by functions |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
225 like Fselect_frame, to make sure that a switch-frame event is |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
226 generated by the next character. */ |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
227 Lisp_Object internal_last_event_frame; |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
228 |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
229 /* A user-visible version of the above, intended to allow users to |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
230 figure out where the last event came from, if the event doesn't |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
231 carry that information itself (i.e. if it was a character). */ |
| 765 | 232 Lisp_Object Vlast_event_frame; |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
233 #endif |
| 518 | 234 |
| 708 | 235 /* The timestamp of the last input event we received from the X server. |
| 236 X Windows wants this for selection ownership. */ | |
| 518 | 237 unsigned long last_event_timestamp; |
| 238 | |
| 239 Lisp_Object Qself_insert_command; | |
| 240 Lisp_Object Qforward_char; | |
| 241 Lisp_Object Qbackward_char; | |
| 242 | |
| 243 /* read_key_sequence stores here the command definition of the | |
| 244 key sequence that it reads. */ | |
| 245 Lisp_Object read_key_sequence_cmd; | |
| 246 | |
| 247 /* Form to evaluate (if non-nil) when Emacs is started. */ | |
| 248 Lisp_Object Vtop_level; | |
| 249 | |
| 250 /* User-supplied string to translate input characters through. */ | |
| 251 Lisp_Object Vkeyboard_translate_table; | |
| 252 | |
| 253 /* Keymap mapping ASCII function key sequences onto their preferred forms. */ | |
| 254 extern Lisp_Object Vfunction_key_map; | |
| 255 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
256 /* 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
|
257 Lisp_Object Vdeactivate_mark; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
258 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
259 /* 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
|
260 |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
261 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
|
262 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
|
263 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
264 /* Hooks to run before and after each command. */ |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
265 Lisp_Object Qpre_command_hook, Qpost_command_hook; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
266 Lisp_Object Vpre_command_hook, Vpost_command_hook; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
267 |
| 518 | 268 /* File in which we write all commands we read. */ |
| 269 FILE *dribble; | |
| 270 | |
| 271 /* Nonzero if input is available. */ | |
| 272 int input_pending; | |
| 273 | |
|
2690
5275561e6b0a
(read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents:
2651
diff
changeset
|
274 /* 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
|
275 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
|
276 |
| 518 | 277 int meta_key; |
| 278 | |
| 279 extern char *pending_malloc_warning; | |
| 280 | |
| 281 /* Circular buffer for pre-read keyboard input. */ | |
| 282 static struct input_event kbd_buffer[KBD_BUFFER_SIZE]; | |
| 283 | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
284 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
285 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
286 The interrupt-level event handlers will never enqueue an event on a |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
287 frame which is not in Vframe_list, and once an event is dequeued, |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
288 internal_last_event_frame or the event itself points to the frame. |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
289 So that's all fine. |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
290 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
291 But while the event is sitting in the queue, it's completely |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
292 unprotected. Suppose the user types one command which will run for |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
293 a while and then delete a frame, and then types another event at |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
294 the frame that will be deleted, before the command gets around to |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
295 it. Suppose there are no references to this frame elsewhere in |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
296 Emacs, and a GC occurs before the second event is dequeued. Now we |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
297 have an event referring to a freed frame, which will crash Emacs |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
298 when it is dequeued. |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
299 |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
300 Similar things happen when an event on a scroll bar is enqueued; the |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
301 window may be deleted while the event is in the queue. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
302 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
303 So, we use this vector to protect the frame_or_window field in the |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
304 event queue. That way, they'll be dequeued as dead frames or |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
305 windows, but still valid lisp objects. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
306 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
307 If kbd_buffer[i].kind != no_event, then |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
308 (XVECTOR (kbd_buffer_frame_or_window)->contents[i] |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
309 == kbd_buffer[i].frame_or_window. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
310 static Lisp_Object kbd_buffer_frame_or_window; |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
311 |
| 518 | 312 /* Pointer to next available character in kbd_buffer. |
| 313 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty. | |
| 314 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the | |
| 315 next available char is in kbd_buffer[0]. */ | |
| 316 static struct input_event *kbd_fetch_ptr; | |
| 317 | |
| 318 /* Pointer to next place to store character in kbd_buffer. This | |
| 319 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next | |
| 320 character should go in kbd_buffer[0]. */ | |
|
1654
fe6f6e55182f
* keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents:
1590
diff
changeset
|
321 #ifdef __STDC__ |
|
fe6f6e55182f
* keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents:
1590
diff
changeset
|
322 volatile |
|
fe6f6e55182f
* keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents:
1590
diff
changeset
|
323 #endif |
| 518 | 324 static struct input_event *kbd_store_ptr; |
| 325 | |
| 326 /* The above pair of variables forms a "queue empty" flag. When we | |
| 327 enqueue a non-hook event, we increment kbd_write_count. When we | |
| 328 dequeue a non-hook event, we increment kbd_read_count. We say that | |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
329 there is input available iff the two counters are not equal. |
| 518 | 330 |
| 331 Why not just have a flag set and cleared by the enqueuing and | |
| 332 dequeuing functions? Such a flag could be screwed up by interrupts | |
| 333 at inopportune times. */ | |
| 334 | |
|
2719
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
335 /* If this flag is non-zero, we check mouse_moved to see when the |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
336 mouse moves, and motion events will appear in the input stream. If |
|
2719
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
337 it is zero, mouse motion is ignored. */ |
|
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
338 static int do_mouse_tracking; |
| 518 | 339 |
| 340 /* The window system handling code should set this if the mouse has | |
| 341 moved since the last call to the mouse_position_hook. Calling that | |
| 342 hook should clear this. Code assumes that if this is set, it can | |
| 343 call mouse_position_hook to get the promised position, so don't set | |
| 344 it unless you're prepared to substantiate the claim! */ | |
| 345 int mouse_moved; | |
| 346 | |
| 347 /* True iff there is an event in kbd_buffer, or if mouse tracking is | |
| 348 enabled and there is a new mouse position in the mouse movement | |
| 349 buffer. Note that if this is false, that doesn't mean that there | |
| 350 is readable input; all the events in the queue might be button-up | |
| 351 events, and do_mouse_tracking might be off. */ | |
| 352 #define EVENT_QUEUES_EMPTY \ | |
| 353 ((kbd_fetch_ptr == kbd_store_ptr) && (!do_mouse_tracking || !mouse_moved)) | |
| 354 | |
| 355 | |
| 356 /* Symbols to head events. */ | |
| 357 Lisp_Object Qmouse_movement; | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
358 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
|
359 Lisp_Object Qswitch_frame; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
360 |
| 518 | 361 /* Symbols to denote kinds of events. */ |
| 362 Lisp_Object Qfunction_key; | |
| 363 Lisp_Object Qmouse_click; | |
| 364 /* Lisp_Object Qmouse_movement; - also an event header */ | |
| 365 | |
| 366 /* Properties of event headers. */ | |
| 367 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
|
368 Lisp_Object Qevent_symbol_elements; |
| 518 | 369 |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
370 Lisp_Object Qmenu_enable; |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
371 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
372 /* 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
|
373 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
|
374 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
|
375 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
|
376 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
|
377 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
|
378 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
379 /* 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
|
380 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
|
381 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
|
382 apply_modifiers. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
383 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
|
384 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
385 /* Symbols to use for parts of windows. */ |
| 518 | 386 Lisp_Object Qmode_line; |
| 732 | 387 Lisp_Object Qvertical_line; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
388 Lisp_Object Qvertical_scroll_bar; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
389 Lisp_Object Qmenu_bar; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
390 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
391 extern Lisp_Object Qmenu_enable; |
| 518 | 392 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
393 Lisp_Object recursive_edit_unwind (), command_loop (); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
394 Lisp_Object Fthis_command_keys (); |
| 518 | 395 |
| 648 | 396 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt |
| 397 happens. */ | |
| 398 EMACS_TIME *input_available_clear_time; | |
| 518 | 399 |
| 400 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode. | |
| 401 Default is 1 if INTERRUPT_INPUT is defined. */ | |
| 402 int interrupt_input; | |
| 403 | |
| 404 /* Nonzero while interrupts are temporarily deferred during redisplay. */ | |
| 405 int interrupts_deferred; | |
| 406 | |
| 407 /* nonzero means use ^S/^Q for flow control. */ | |
| 408 int flow_control; | |
| 409 | |
| 410 /* Allow m- file to inhibit use of FIONREAD. */ | |
| 411 #ifdef BROKEN_FIONREAD | |
| 412 #undef FIONREAD | |
| 413 #endif | |
| 414 | |
| 415 /* We are unable to use interrupts if FIONREAD is not available, | |
| 416 so flush SIGIO so we won't try. */ | |
| 417 #ifndef FIONREAD | |
| 418 #ifdef SIGIO | |
| 419 #undef SIGIO | |
| 420 #endif | |
| 421 #endif | |
| 422 | |
| 423 /* If we support X Windows, and won't get an interrupt when input | |
| 424 arrives from the server, poll periodically so we can detect C-g. */ | |
| 425 #ifdef HAVE_X_WINDOWS | |
| 426 #ifndef SIGIO | |
| 427 #define POLL_FOR_INPUT | |
| 428 #endif | |
| 429 #endif | |
| 430 | |
| 431 /* Global variable declarations. */ | |
| 432 | |
| 433 /* Function for init_keyboard to call with no args (if nonzero). */ | |
| 434 void (*keyboard_init_hook) (); | |
| 435 | |
| 436 static int read_avail_input (); | |
| 437 static void get_input_pending (); | |
| 438 | |
| 439 /* > 0 if we are to echo keystrokes. */ | |
| 440 static int echo_keystrokes; | |
| 441 | |
| 442 /* Nonzero means echo each character as typed. */ | |
| 443 static int immediate_echo; | |
| 444 | |
| 445 /* The text we're echoing in the modeline - partial key sequences, | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
446 usually. '\0'-terminated. This really shouldn't have a fixed size. */ |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
447 static char echobuf[300]; |
| 518 | 448 |
| 449 /* Where to append more text to echobuf if we want to. */ | |
| 450 static char *echoptr; | |
| 451 | |
| 452 #define min(a,b) ((a)<(b)?(a):(b)) | |
| 453 #define max(a,b) ((a)>(b)?(a):(b)) | |
| 454 | |
| 455 /* Install the string STR as the beginning of the string of echoing, | |
| 456 so that it serves as a prompt for the next character. | |
| 457 Also start echoing. */ | |
| 458 | |
| 459 echo_prompt (str) | |
| 460 char *str; | |
| 461 { | |
| 462 int len = strlen (str); | |
| 463 if (len > sizeof echobuf - 4) | |
| 464 len = sizeof echobuf - 4; | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
465 bcopy (str, echobuf, len); |
| 518 | 466 echoptr = echobuf + len; |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
467 *echoptr = '\0'; |
| 518 | 468 |
| 469 echo (); | |
| 470 } | |
| 471 | |
| 472 /* Add C to the echo string, if echoing is going on. | |
| 473 C can be a character, which is printed prettily ("M-C-x" and all that | |
| 474 jazz), or a symbol, whose name is printed. */ | |
| 475 | |
| 476 echo_char (c) | |
| 477 Lisp_Object c; | |
| 478 { | |
| 479 extern char *push_key_description (); | |
| 480 | |
| 481 if (immediate_echo) | |
| 482 { | |
| 483 char *ptr = echoptr; | |
| 484 | |
| 485 if (ptr != echobuf) | |
| 486 *ptr++ = ' '; | |
| 487 | |
| 488 /* 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
|
489 c = EVENT_HEAD (c); |
| 518 | 490 |
| 491 if (XTYPE (c) == Lisp_Int) | |
| 492 { | |
| 493 if (ptr - echobuf > sizeof echobuf - 6) | |
| 494 return; | |
| 495 | |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
496 ptr = push_key_description (XINT (c), ptr); |
| 518 | 497 } |
| 498 else if (XTYPE (c) == Lisp_Symbol) | |
| 499 { | |
| 500 struct Lisp_String *name = XSYMBOL (c)->name; | |
| 501 if (((ptr - echobuf) + name->size + 4) > sizeof echobuf) | |
| 502 return; | |
| 503 bcopy (name->data, ptr, name->size); | |
| 504 ptr += name->size; | |
| 505 } | |
| 506 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
507 if (echoptr == echobuf && EQ (c, help_char)) |
| 518 | 508 { |
| 509 strcpy (ptr, " (Type ? for further options)"); | |
| 510 ptr += strlen (ptr); | |
| 511 } | |
| 512 | |
| 513 *ptr = 0; | |
| 514 echoptr = ptr; | |
| 515 | |
| 516 echo (); | |
| 517 } | |
| 518 } | |
| 519 | |
| 520 /* Temporarily add a dash to the end of the echo string if it's not | |
| 521 empty, so that it serves as a mini-prompt for the very next character. */ | |
| 522 | |
| 523 echo_dash () | |
| 524 { | |
| 525 if (!immediate_echo && echoptr == echobuf) | |
| 526 return; | |
|
2505
c0a13d078f68
* keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents:
2482
diff
changeset
|
527 /* Do nothing if not echoing at all. */ |
|
c0a13d078f68
* keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents:
2482
diff
changeset
|
528 if (echoptr == 0) |
|
c0a13d078f68
* keyboard.c (echo_dash): Do nothing if echoptr is 0.
Jim Blandy <jimb@redhat.com>
parents:
2482
diff
changeset
|
529 return; |
| 518 | 530 |
| 531 /* Put a dash at the end of the buffer temporarily, | |
| 532 but make it go away when the next character is added. */ | |
| 533 echoptr[0] = '-'; | |
| 534 echoptr[1] = 0; | |
| 535 | |
| 536 echo (); | |
| 537 } | |
| 538 | |
| 539 /* Display the current echo string, and begin echoing if not already | |
| 540 doing so. */ | |
| 541 | |
| 542 echo () | |
| 543 { | |
| 544 if (!immediate_echo) | |
| 545 { | |
| 546 int i; | |
| 547 immediate_echo = 1; | |
| 548 | |
| 549 for (i = 0; i < this_command_key_count; i++) | |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
550 echo_char (XVECTOR (this_command_keys)->contents[i]); |
| 518 | 551 echo_dash (); |
| 552 } | |
| 553 | |
| 554 echoing = 1; | |
| 555 message1 (echobuf); | |
| 556 echoing = 0; | |
| 557 | |
| 558 if (waiting_for_input && !NILP (Vquit_flag)) | |
| 559 quit_throw_to_read_char (); | |
| 560 } | |
| 561 | |
| 562 /* Turn off echoing, for the start of a new command. */ | |
| 563 | |
| 564 cancel_echoing () | |
| 565 { | |
| 566 immediate_echo = 0; | |
| 567 echoptr = echobuf; | |
| 568 } | |
| 569 | |
| 570 /* Return the length of the current echo string. */ | |
| 571 | |
| 572 static int | |
| 573 echo_length () | |
| 574 { | |
| 575 return echoptr - echobuf; | |
| 576 } | |
| 577 | |
| 578 /* Truncate the current echo message to its first LEN chars. | |
| 579 This and echo_char get used by read_key_sequence when the user | |
| 765 | 580 switches frames while entering a key sequence. */ |
| 518 | 581 |
| 582 static void | |
| 583 echo_truncate (len) | |
| 584 int len; | |
| 585 { | |
| 586 echobuf[len] = '\0'; | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
587 echoptr = echobuf + len; |
| 518 | 588 } |
| 589 | |
| 590 | |
| 591 /* Functions for manipulating this_command_keys. */ | |
| 592 static void | |
| 593 add_command_key (key) | |
| 594 Lisp_Object key; | |
| 595 { | |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
596 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
|
597 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
598 if (this_command_key_count >= size) |
| 518 | 599 { |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
600 Lisp_Object new_keys = Fmake_vector (make_number (size * 2), Qnil); |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
601 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
602 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
|
603 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
|
604 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
|
605 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
606 this_command_keys = new_keys; |
| 518 | 607 } |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
608 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
609 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key; |
| 518 | 610 } |
| 611 | |
| 612 Lisp_Object | |
| 613 recursive_edit_1 () | |
| 614 { | |
| 615 int count = specpdl_ptr - specpdl; | |
| 616 Lisp_Object val; | |
| 617 | |
| 618 if (command_loop_level > 0) | |
| 619 { | |
| 620 specbind (Qstandard_output, Qt); | |
| 621 specbind (Qstandard_input, Qt); | |
| 622 } | |
| 623 | |
| 624 val = command_loop (); | |
| 625 if (EQ (val, Qt)) | |
| 626 Fsignal (Qquit, Qnil); | |
| 627 | |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
628 return unbind_to (count, Qnil); |
| 518 | 629 } |
| 630 | |
| 631 /* When an auto-save happens, record the "time", and don't do again soon. */ | |
| 632 record_auto_save () | |
| 633 { | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
634 last_auto_save = num_nonmacro_input_chars; |
| 518 | 635 } |
| 636 | |
| 637 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | |
| 638 "Invoke the editor command loop recursively.\n\ | |
| 639 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\ | |
| 640 that tells this function to return.\n\ | |
| 641 Alternately, `(throw 'exit t)' makes this function signal an error.\n\ | |
| 642 This function is called by the editor initialization to begin editing.") | |
| 643 () | |
| 644 { | |
| 645 int count = specpdl_ptr - specpdl; | |
| 646 Lisp_Object val; | |
| 647 | |
| 648 command_loop_level++; | |
| 649 update_mode_lines = 1; | |
| 650 | |
| 651 record_unwind_protect (recursive_edit_unwind, | |
| 652 (command_loop_level | |
| 653 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)) | |
| 654 ? Fcurrent_buffer () | |
| 655 : Qnil); | |
| 656 recursive_edit_1 (); | |
| 657 return unbind_to (count, Qnil); | |
| 658 } | |
| 659 | |
| 660 Lisp_Object | |
| 661 recursive_edit_unwind (buffer) | |
| 662 Lisp_Object buffer; | |
| 663 { | |
| 664 if (!NILP (buffer)) | |
| 665 Fset_buffer (buffer); | |
| 666 | |
| 667 command_loop_level--; | |
| 668 update_mode_lines = 1; | |
| 669 return Qnil; | |
| 670 } | |
| 671 | |
| 672 Lisp_Object | |
| 673 cmd_error (data) | |
| 674 Lisp_Object data; | |
| 675 { | |
| 676 Lisp_Object errmsg, tail, errname, file_error; | |
| 677 Lisp_Object stream; | |
| 678 struct gcpro gcpro1; | |
| 679 int i; | |
| 680 | |
| 681 Vquit_flag = Qnil; | |
| 682 Vinhibit_quit = Qt; | |
| 683 Vstandard_output = Qt; | |
| 684 Vstandard_input = Qt; | |
| 685 Vexecuting_macro = Qnil; | |
| 686 echo_area_glyphs = 0; | |
| 687 | |
| 765 | 688 /* If the window system or terminal frame hasn't been initialized |
| 518 | 689 yet, or we're not interactive, it's best to dump this message out |
| 690 to stderr and exit. */ | |
| 765 | 691 if (! FRAME_MESSAGE_BUF (selected_frame) |
| 518 | 692 || noninteractive) |
| 693 stream = Qexternal_debugging_output; | |
| 694 else | |
| 695 { | |
| 696 Fdiscard_input (); | |
| 697 bitch_at_user (); | |
| 698 stream = Qt; | |
| 699 } | |
| 700 | |
| 701 errname = Fcar (data); | |
| 702 | |
| 703 if (EQ (errname, Qerror)) | |
| 704 { | |
| 705 data = Fcdr (data); | |
| 706 if (!CONSP (data)) data = Qnil; | |
| 707 errmsg = Fcar (data); | |
| 708 file_error = Qnil; | |
| 709 } | |
| 710 else | |
| 711 { | |
| 712 errmsg = Fget (errname, Qerror_message); | |
| 713 file_error = Fmemq (Qfile_error, | |
| 714 Fget (errname, Qerror_conditions)); | |
| 715 } | |
| 716 | |
| 717 /* Print an error message including the data items. | |
| 718 This is done by printing it into a scratch buffer | |
| 719 and then making a copy of the text in the buffer. */ | |
| 720 | |
| 721 if (!CONSP (data)) data = Qnil; | |
| 722 tail = Fcdr (data); | |
| 723 GCPRO1 (tail); | |
| 724 | |
| 725 /* For file-error, make error message by concatenating | |
| 726 all the data items. They are all strings. */ | |
| 727 if (!NILP (file_error) && !NILP (tail)) | |
| 728 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr; | |
| 729 | |
| 730 if (XTYPE (errmsg) == Lisp_String) | |
| 731 Fprinc (errmsg, stream); | |
| 732 else | |
| 733 write_string_1 ("peculiar error", -1, stream); | |
| 734 | |
| 735 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++) | |
| 736 { | |
| 737 write_string_1 (i ? ", " : ": ", 2, stream); | |
| 738 if (!NILP (file_error)) | |
| 739 Fprinc (Fcar (tail), stream); | |
| 740 else | |
| 741 Fprin1 (Fcar (tail), stream); | |
| 742 } | |
| 743 UNGCPRO; | |
| 744 | |
| 765 | 745 /* If the window system or terminal frame hasn't been initialized |
| 518 | 746 yet, or we're in -batch mode, this error should cause Emacs to exit. */ |
| 765 | 747 if (! FRAME_MESSAGE_BUF (selected_frame) |
| 518 | 748 || noninteractive) |
| 749 { | |
| 750 Fterpri (stream); | |
| 751 Fkill_emacs (make_number (-1)); | |
| 752 } | |
| 753 | |
| 754 Vquit_flag = Qnil; | |
| 755 | |
| 756 Vinhibit_quit = Qnil; | |
| 757 return make_number (0); | |
| 758 } | |
| 759 | |
| 760 Lisp_Object command_loop_1 (); | |
| 761 Lisp_Object command_loop_2 (); | |
| 762 Lisp_Object top_level_1 (); | |
| 763 | |
| 764 /* Entry to editor-command-loop. | |
| 765 This level has the catches for exiting/returning to editor command loop. | |
| 766 It returns nil to exit recursive edit, t to abort it. */ | |
| 767 | |
| 768 Lisp_Object | |
| 769 command_loop () | |
| 770 { | |
| 771 if (command_loop_level > 0 || minibuf_level > 0) | |
| 772 { | |
| 773 return internal_catch (Qexit, command_loop_2, Qnil); | |
| 774 } | |
| 775 else | |
| 776 while (1) | |
| 777 { | |
| 778 internal_catch (Qtop_level, top_level_1, Qnil); | |
| 779 internal_catch (Qtop_level, command_loop_2, Qnil); | |
| 780 | |
| 781 /* End of file in -batch run causes exit here. */ | |
| 782 if (noninteractive) | |
| 783 Fkill_emacs (Qt); | |
| 784 } | |
| 785 } | |
| 786 | |
| 787 /* Here we catch errors in execution of commands within the | |
| 788 editing loop, and reenter the editing loop. | |
| 789 When there is an error, cmd_error runs and returns a non-nil | |
| 790 value to us. A value of nil means that cmd_loop_1 itself | |
| 791 returned due to end of file (or end of kbd macro). */ | |
| 792 | |
| 793 Lisp_Object | |
| 794 command_loop_2 () | |
| 795 { | |
| 796 register Lisp_Object val; | |
| 797 | |
| 798 do | |
| 799 val = internal_condition_case (command_loop_1, Qerror, cmd_error); | |
| 800 while (!NILP (val)); | |
| 801 | |
| 802 return Qnil; | |
| 803 } | |
| 804 | |
| 805 Lisp_Object | |
| 806 top_level_2 () | |
| 807 { | |
| 808 return Feval (Vtop_level); | |
| 809 } | |
| 810 | |
| 811 Lisp_Object | |
| 812 top_level_1 () | |
| 813 { | |
| 814 /* On entry to the outer level, run the startup file */ | |
| 815 if (!NILP (Vtop_level)) | |
| 816 internal_condition_case (top_level_2, Qerror, cmd_error); | |
| 817 else if (!NILP (Vpurify_flag)) | |
| 818 message ("Bare impure Emacs (standard Lisp code not loaded)"); | |
| 819 else | |
| 820 message ("Bare Emacs (standard Lisp code not loaded)"); | |
| 821 return Qnil; | |
| 822 } | |
| 823 | |
| 824 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "", | |
| 825 "Exit all recursive editing levels.") | |
| 826 () | |
| 827 { | |
| 828 Fthrow (Qtop_level, Qnil); | |
| 829 } | |
| 830 | |
| 831 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "", | |
| 832 "Exit from the innermost recursive edit or minibuffer.") | |
| 833 () | |
| 834 { | |
| 835 if (command_loop_level > 0 || minibuf_level > 0) | |
| 836 Fthrow (Qexit, Qnil); | |
| 837 | |
| 838 error ("No recursive edit is in progress"); | |
| 839 } | |
| 840 | |
| 841 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "", | |
| 842 "Abort the command that requested this recursive edit or minibuffer input.") | |
| 843 () | |
| 844 { | |
| 845 if (command_loop_level > 0 || minibuf_level > 0) | |
| 846 Fthrow (Qexit, Qt); | |
| 847 | |
| 848 error ("No recursive edit is in progress"); | |
| 849 } | |
| 850 | |
| 851 /* This is the actual command reading loop, | |
| 852 sans error-handling encapsulation. */ | |
| 853 | |
| 854 Lisp_Object Fcommand_execute (); | |
| 855 static int read_key_sequence (); | |
| 856 | |
| 857 Lisp_Object | |
| 858 command_loop_1 () | |
| 859 { | |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
860 Lisp_Object cmd, tem; |
| 518 | 861 int lose; |
| 862 int nonundocount; | |
| 863 Lisp_Object keybuf[30]; | |
| 864 int i; | |
| 865 int no_redisplay; | |
| 866 int no_direct; | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
867 int prev_modiff; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
868 struct buffer *prev_buffer; |
| 518 | 869 |
| 870 Vprefix_arg = Qnil; | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
871 Vdeactivate_mark = Qnil; |
| 518 | 872 waiting_for_input = 0; |
| 873 cancel_echoing (); | |
| 874 | |
| 875 /* Don't clear out last_command at the beginning of a macro. */ | |
| 876 if (XTYPE (Vexecuting_macro) != Lisp_String) | |
| 877 last_command = Qt; | |
| 878 | |
| 879 nonundocount = 0; | |
| 880 no_redisplay = 0; | |
| 881 this_command_key_count = 0; | |
| 882 | |
| 883 while (1) | |
| 884 { | |
| 885 /* Install chars successfully executed in kbd macro. */ | |
| 886 | |
| 887 if (defining_kbd_macro && NILP (Vprefix_arg)) | |
| 888 finalize_kbd_macro_chars (); | |
| 889 | |
| 890 /* Make sure the current window's buffer is selected. */ | |
| 891 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer) | |
| 892 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer)); | |
| 893 | |
| 894 /* Display any malloc warning that just came out. Use while because | |
| 895 displaying one warning can cause another. */ | |
| 896 | |
| 897 while (pending_malloc_warning) | |
| 898 display_malloc_warning (); | |
| 899 | |
| 900 no_direct = 0; | |
| 901 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
902 Vdeactivate_mark = Qnil; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
903 |
| 518 | 904 /* If minibuffer on and echo area in use, |
| 905 wait 2 sec and redraw minibufer. */ | |
| 906 | |
| 907 if (minibuf_level && echo_area_glyphs) | |
| 908 { | |
|
1097
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
909 /* 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
|
910 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
|
911 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
|
912 specbind (Qinhibit_quit, Qt); |
| 518 | 913 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
|
914 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
|
915 |
| 518 | 916 echo_area_glyphs = 0; |
| 917 no_direct = 1; | |
| 918 if (!NILP (Vquit_flag)) | |
| 919 { | |
| 920 Vquit_flag = Qnil; | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
921 unread_command_events = Fcons (make_number (quit_char), Qnil); |
| 518 | 922 } |
| 923 } | |
| 924 | |
| 925 #ifdef C_ALLOCA | |
| 926 alloca (0); /* Cause a garbage collection now */ | |
| 927 /* Since we can free the most stuff here. */ | |
| 928 #endif /* C_ALLOCA */ | |
| 929 | |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
930 #if 0 |
| 765 | 931 #ifdef MULTI_FRAME |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
932 /* 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
|
933 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
|
934 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
|
935 Is this a good idea? */ |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
936 if (XTYPE (internal_last_event_frame) == Lisp_Frame |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
937 && 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
|
938 Fselect_frame (internal_last_event_frame, Qnil); |
| 518 | 939 #endif |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
940 #endif |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
941 /* 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
|
942 really recompute the menubar from the value. */ |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
943 if (! NILP (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
|
944 call0 (Qrecompute_lucid_menubar); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
945 |
|
2789
6ec57c1558da
(command_loop_1): Don't do it here.
Richard M. Stallman <rms@gnu.org>
parents:
2756
diff
changeset
|
946 #if 0 /* This is done in xdisp.c now. */ |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
947 #ifdef MULTI_FRAME |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
948 for (tem = Vframe_list; CONSP (tem); tem = XCONS (tem)->cdr) |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
949 { |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
950 struct frame *f = XFRAME (XCONS (tem)->car); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
951 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f)); |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
952 |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
953 /* If the user has switched buffers or windows, we need to |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
954 recompute to reflect the new bindings. But we'll |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
955 recompute when update_mode_lines is set too; that means |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
956 that people can use force-mode-line-update to request |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
957 that the menu bar be recomputed. The adverse effect on |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
958 the rest of the redisplay algorithm is about the same as |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
959 windows_or_buffers_changed anyway. */ |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
960 if (windows_or_buffers_changed |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
961 || update_mode_lines |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
962 || (XFASTINT (w->last_modified) < MODIFF |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
963 && (XFASTINT (w->last_modified) |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
964 <= XBUFFER (w->buffer)->save_modified))) |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
965 { |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
966 struct buffer *prev = current_buffer; |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
967 current_buffer = XBUFFER (w->buffer); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
968 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
969 current_buffer = prev; |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
970 } |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
971 } |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
972 #endif /* MULTI_FRAME */ |
|
2789
6ec57c1558da
(command_loop_1): Don't do it here.
Richard M. Stallman <rms@gnu.org>
parents:
2756
diff
changeset
|
973 #endif /* 0 */ |
| 518 | 974 |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
975 /* Read next key sequence; i gets its length. */ |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
976 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])), 0); |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
977 |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
978 ++num_input_keys; |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
979 |
| 518 | 980 /* Now we have read a key sequence of length I, |
| 981 or else I is 0 and we found end of file. */ | |
| 982 | |
| 983 if (i == 0) /* End of file -- happens only in */ | |
| 984 return Qnil; /* a kbd macro, at the end. */ | |
| 985 | |
| 986 last_command_char = keybuf[i - 1]; | |
| 987 | |
|
2406
465732c007f4
(command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents:
2340
diff
changeset
|
988 /* 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
|
989 forget about that, in case this command moves point far away |
|
465732c007f4
(command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents:
2340
diff
changeset
|
990 from that position. */ |
|
465732c007f4
(command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents:
2340
diff
changeset
|
991 XWINDOW (selected_window)->force_start = Qnil; |
|
465732c007f4
(command_loop_1): Clear force_start of selected_window
Richard M. Stallman <rms@gnu.org>
parents:
2340
diff
changeset
|
992 |
| 518 | 993 cmd = read_key_sequence_cmd; |
| 994 if (!NILP (Vexecuting_macro)) | |
| 995 { | |
| 996 if (!NILP (Vquit_flag)) | |
| 997 { | |
| 998 Vexecuting_macro = Qt; | |
| 999 QUIT; /* Make some noise. */ | |
| 1000 /* Will return since macro now empty. */ | |
| 1001 } | |
| 1002 } | |
| 1003 | |
| 1004 /* Do redisplay processing after this command except in special | |
| 1005 cases identified below that set no_redisplay to 1. */ | |
| 1006 no_redisplay = 0; | |
| 1007 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1008 prev_buffer = current_buffer; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1009 prev_modiff = MODIFF; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1010 |
| 518 | 1011 /* Execute the command. */ |
| 1012 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1013 this_command = cmd; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1014 if (!NILP (Vpre_command_hook)) |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1015 call1 (Vrun_hooks, Qpre_command_hook); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1016 |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1017 if (NILP (this_command)) |
| 518 | 1018 { |
| 1019 /* nil means key is undefined. */ | |
| 1020 bitch_at_user (); | |
| 1021 defining_kbd_macro = 0; | |
| 1022 update_mode_lines = 1; | |
| 1023 Vprefix_arg = Qnil; | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1024 |
| 518 | 1025 } |
| 1026 else | |
| 1027 { | |
| 1028 if (NILP (Vprefix_arg) && ! no_direct) | |
| 1029 { | |
| 1030 /* Recognize some common commands in common situations and | |
| 1031 do them directly. */ | |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1032 if (EQ (this_command, Qforward_char) && point < ZV) |
| 518 | 1033 { |
| 1034 struct Lisp_Vector *dp | |
| 1035 = window_display_table (XWINDOW (selected_window)); | |
| 1036 lose = FETCH_CHAR (point); | |
| 1037 SET_PT (point + 1); | |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1038 if ((dp |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1039 ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector |
|
2133
63d15b0e048e
(command_loop_1): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
2097
diff
changeset
|
1040 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1) |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1041 : (lose >= 0x20 && lose < 0x7f)) |
| 518 | 1042 && (XFASTINT (XWINDOW (selected_window)->last_modified) |
| 1043 >= MODIFF) | |
| 1044 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
| 1045 == point - 1) | |
| 1046 && !windows_or_buffers_changed | |
| 1047 && EQ (current_buffer->selective_display, Qnil) | |
| 1048 && !detect_input_pending () | |
| 1049 && NILP (Vexecuting_macro)) | |
| 1050 no_redisplay = direct_output_forward_char (1); | |
| 1051 goto directly_done; | |
| 1052 } | |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1053 else if (EQ (this_command, Qbackward_char) && point > BEGV) |
| 518 | 1054 { |
| 1055 struct Lisp_Vector *dp | |
| 1056 = window_display_table (XWINDOW (selected_window)); | |
| 1057 SET_PT (point - 1); | |
| 1058 lose = FETCH_CHAR (point); | |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1059 if ((dp |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1060 ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector |
|
2133
63d15b0e048e
(command_loop_1): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
2097
diff
changeset
|
1061 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1) |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1062 : (lose >= 0x20 && lose < 0x7f)) |
| 518 | 1063 && (XFASTINT (XWINDOW (selected_window)->last_modified) |
| 1064 >= MODIFF) | |
| 1065 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
| 1066 == point + 1) | |
| 1067 && !windows_or_buffers_changed | |
| 1068 && EQ (current_buffer->selective_display, Qnil) | |
| 1069 && !detect_input_pending () | |
| 1070 && NILP (Vexecuting_macro)) | |
| 1071 no_redisplay = direct_output_forward_char (-1); | |
| 1072 goto directly_done; | |
| 1073 } | |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1074 else if (EQ (this_command, Qself_insert_command) |
| 518 | 1075 /* Try this optimization only on ascii keystrokes. */ |
| 1076 && XTYPE (last_command_char) == Lisp_Int) | |
| 1077 { | |
| 1078 unsigned char c = XINT (last_command_char); | |
| 1079 | |
| 1080 if (NILP (Vexecuting_macro) && | |
| 1081 !EQ (minibuf_window, selected_window)) | |
| 1082 { | |
| 1083 if (!nonundocount || nonundocount >= 20) | |
| 1084 { | |
| 1085 Fundo_boundary (); | |
| 1086 nonundocount = 0; | |
| 1087 } | |
| 1088 nonundocount++; | |
| 1089 } | |
| 1090 lose = (XFASTINT (XWINDOW (selected_window)->last_modified) | |
| 1091 < MODIFF) | |
| 1092 || (XFASTINT (XWINDOW (selected_window)->last_point) | |
| 1093 != point) | |
| 1094 || MODIFF <= current_buffer->save_modified | |
| 1095 || windows_or_buffers_changed | |
| 1096 || !EQ (current_buffer->selective_display, Qnil) | |
| 1097 || detect_input_pending () | |
| 1098 || !NILP (Vexecuting_macro); | |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
1099 if (internal_self_insert (XINT (c), 0)) |
| 518 | 1100 { |
| 1101 lose = 1; | |
| 1102 nonundocount = 0; | |
| 1103 } | |
| 1104 if (!lose && | |
| 1105 (point == ZV || FETCH_CHAR (point) == '\n')) | |
| 1106 { | |
| 1107 struct Lisp_Vector *dp | |
| 1108 = window_display_table (XWINDOW (selected_window)); | |
|
2097
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1109 int lose = XINT (c); |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1110 |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1111 if (dp) |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1112 { |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1113 Lisp_Object obj = DISP_CHAR_VECTOR (dp, lose); |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1114 |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1115 if (XTYPE (obj) == Lisp_Vector |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1116 && XVECTOR (obj)->size == 1 |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1117 && (XTYPE (obj = XVECTOR (obj)->contents[0]) |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1118 == Lisp_Int)) |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1119 no_redisplay = |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1120 direct_output_for_insert (XINT (obj)); |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1121 } |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1122 else |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1123 { |
|
dd4410e55081
* keyboard.c (command_loop_1): Adjust to the fact that display
Jim Blandy <jimb@redhat.com>
parents:
2061
diff
changeset
|
1124 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
|
1125 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
|
1126 } |
| 518 | 1127 } |
| 1128 goto directly_done; | |
| 1129 } | |
| 1130 } | |
| 1131 | |
| 1132 /* Here for a command that isn't executed directly */ | |
| 1133 | |
| 1134 nonundocount = 0; | |
| 1135 if (NILP (Vprefix_arg)) | |
| 1136 Fundo_boundary (); | |
|
2924
6e233798a3f7
(read_key_sequence): Reexamine this_command
Richard M. Stallman <rms@gnu.org>
parents:
2898
diff
changeset
|
1137 Fcommand_execute (this_command, Qnil); |
| 518 | 1138 |
| 1139 } | |
| 547 | 1140 directly_done: ; |
| 518 | 1141 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1142 if (!NILP (Vpost_command_hook)) |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1143 call1 (Vrun_hooks, Qpost_command_hook); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1144 |
| 518 | 1145 /* If there is a prefix argument, |
| 1146 1) We don't want last_command to be ``universal-argument'' | |
| 1147 (that would be dumb), so don't set last_command, | |
| 1148 2) we want to leave echoing on so that the prefix will be | |
| 1149 echoed as part of this key sequence, so don't call | |
| 1150 cancel_echoing, and | |
| 1151 3) we want to leave this_command_key_count non-zero, so that | |
| 1152 read_char will realize that it is re-reading a character, and | |
| 1153 not echo it a second time. */ | |
| 1154 if (NILP (Vprefix_arg)) | |
| 1155 { | |
| 1156 last_command = this_command; | |
| 1157 cancel_echoing (); | |
| 1158 this_command_key_count = 0; | |
| 1159 } | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1160 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1161 if (!NILP (current_buffer->mark_active)) |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1162 { |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1163 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
|
1164 { |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1165 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
|
1166 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
|
1167 } |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1168 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
|
1169 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
|
1170 } |
| 518 | 1171 } |
| 1172 } | |
| 1173 | |
| 1174 /* Number of seconds between polling for input. */ | |
| 1175 int polling_period; | |
| 1176 | |
| 1177 /* Nonzero means polling for input is temporarily suppresed. */ | |
| 1178 int poll_suppress_count; | |
| 1179 | |
| 1180 #ifdef POLL_FOR_INPUT | |
| 1181 int polling_for_input; | |
| 1182 | |
| 1183 /* Handle an alarm once each second and read pending input | |
| 1184 so as to handle a C-g if it comces in. */ | |
| 1185 | |
| 1186 SIGTYPE | |
| 1187 input_poll_signal () | |
| 1188 { | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
1189 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
|
1190 && !waiting_for_input) |
|
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2436
diff
changeset
|
1191 read_avail_input (0); |
| 518 | 1192 signal (SIGALRM, input_poll_signal); |
| 1193 alarm (polling_period); | |
| 1194 } | |
| 1195 | |
| 1196 #endif | |
| 1197 | |
| 1198 /* Begin signals to poll for input, if they are appropriate. | |
| 1199 This function is called unconditionally from various places. */ | |
| 1200 | |
| 1201 start_polling () | |
| 1202 { | |
| 1203 #ifdef POLL_FOR_INPUT | |
| 1204 if (read_socket_hook) | |
| 1205 { | |
| 1206 poll_suppress_count--; | |
| 1207 if (poll_suppress_count == 0) | |
| 1208 { | |
| 1209 signal (SIGALRM, input_poll_signal); | |
| 1210 polling_for_input = 1; | |
| 1211 alarm (polling_period); | |
| 1212 } | |
| 1213 } | |
| 1214 #endif | |
| 1215 } | |
| 1216 | |
| 1217 /* Turn off polling. */ | |
| 1218 | |
| 1219 stop_polling () | |
| 1220 { | |
| 1221 #ifdef POLL_FOR_INPUT | |
| 1222 if (read_socket_hook) | |
| 1223 { | |
| 1224 if (poll_suppress_count == 0) | |
| 1225 { | |
| 1226 polling_for_input = 0; | |
| 1227 alarm (0); | |
| 1228 } | |
| 1229 poll_suppress_count++; | |
| 1230 } | |
| 1231 #endif | |
| 1232 } | |
| 1233 | |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1234 /* Applying the control modifier to CHARACTER. */ |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1235 int |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1236 make_ctrl_char (c) |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1237 int c; |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1238 { |
|
2954
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1239 /* Save the upper bits here. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1240 int upper = c & ~0177; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1241 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1242 c &= 0177; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1243 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1244 /* Everything in the columns containing the upper-case letters |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1245 denotes a control character. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1246 if (c >= 0100 && c < 0140) |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1247 { |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1248 int oc = c; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1249 c &= ~0140; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1250 /* Set the shift modifier for a control char |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1251 made from a shifted letter. But only for letters! */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1252 if (oc >= 'A' && oc <= 'Z') |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1253 c |= shift_modifier; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1254 } |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1255 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1256 /* The lower-case letters denote control characters too. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1257 else if (c >= 'a' && c <= 'z') |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1258 c &= ~0140; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1259 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1260 /* Include the bits for control and shift |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1261 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
|
1262 else if (c >= ' ') |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1263 c |= ctrl_modifier; |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1264 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1265 /* Replace the high bits. */ |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
1266 c |= (upper & ~ctrl_modifier); |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1267 |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1268 return c; |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1269 } |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1270 |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1271 |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1272 |
| 518 | 1273 /* Input of single characters from keyboard */ |
| 1274 | |
| 1275 Lisp_Object print_help (); | |
| 1276 static Lisp_Object kbd_buffer_get_event (); | |
| 1277 | |
| 1278 /* read a character from the keyboard; call the redisplay if needed */ | |
| 1279 /* commandflag 0 means do not do auto-saving, but do do redisplay. | |
| 1280 -1 means do not do redisplay, but do do autosaving. | |
| 1281 1 means do both. */ | |
| 1282 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1283 /* 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
|
1284 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
|
1285 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1286 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
|
1287 the first event of a key sequence. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1288 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
1289 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
1290 if we used a mouse menu to read the input, or zero otherwise. If |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
1291 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone. */ |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1292 |
| 518 | 1293 Lisp_Object |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1294 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) |
| 518 | 1295 int commandflag; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1296 int nmaps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1297 Lisp_Object *maps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1298 Lisp_Object prev_event; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1299 int *used_mouse_menu; |
| 518 | 1300 { |
| 1301 register Lisp_Object c; | |
| 1302 int count; | |
| 1303 jmp_buf save_jump; | |
| 1304 | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
1305 if (CONSP (unread_command_events)) |
| 518 | 1306 { |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
1307 c = XCONS (unread_command_events)->car; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
1308 unread_command_events = XCONS (unread_command_events)->cdr; |
| 518 | 1309 |
| 1310 if (this_command_key_count == 0) | |
| 1311 goto reread_first; | |
| 1312 else | |
| 1313 goto reread; | |
| 1314 } | |
| 1315 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1316 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
|
1317 { |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1318 XSET (c, Lisp_Int, unread_command_char); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1319 unread_command_char = -1; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1320 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1321 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
|
1322 goto reread_first; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1323 else |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1324 goto reread; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1325 } |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1326 |
| 518 | 1327 if (!NILP (Vexecuting_macro)) |
| 1328 { | |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1329 #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
|
1330 /* 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
|
1331 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
|
1332 remain unchanged. |
|
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1333 |
|
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1334 Since this event came from a macro, it would be misleading to |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1335 leave internal_last_event_frame set to whereever the last |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1336 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
|
1337 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
|
1338 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
|
1339 selected. */ |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1340 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
|
1341 #endif |
|
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
1342 |
|
2719
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
1343 /* 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
|
1344 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
|
1345 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
|
1346 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
|
1347 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro))) |
| 518 | 1348 { |
| 1349 XSET (c, Lisp_Int, -1); | |
| 1350 return c; | |
| 1351 } | |
| 1352 | |
| 1353 c = Faref (Vexecuting_macro, make_number (executing_macro_index)); | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1354 if (XTYPE (Vexecuting_macro) == Lisp_String |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1355 && (XINT (c) & 0x80)) |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1356 XFASTINT (c) = CHAR_META | (XINT (c) & ~0x80); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1357 |
| 518 | 1358 executing_macro_index++; |
| 1359 | |
| 1360 goto from_macro; | |
| 1361 } | |
| 1362 | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1363 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
|
1364 { |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1365 c = unread_switch_frame; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1366 unread_switch_frame = Qnil; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1367 |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1368 /* 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
|
1369 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
|
1370 goto reread_first; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1371 } |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1372 |
| 518 | 1373 /* Save outer setjmp data, in case called recursively. */ |
| 650 | 1374 save_getcjmp (save_jump); |
| 518 | 1375 |
| 1376 stop_polling (); | |
| 1377 | |
| 1378 if (commandflag >= 0 && !input_pending && !detect_input_pending ()) | |
| 1379 redisplay (); | |
| 1380 | |
| 1381 if (_setjmp (getcjmp)) | |
| 1382 { | |
| 1383 XSET (c, Lisp_Int, quit_char); | |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1384 #ifdef MULTI_FRAME |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1385 XSET (internal_last_event_frame, Lisp_Frame, selected_frame); |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1386 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
|
1387 #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
|
1388 /* 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
|
1389 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
|
1390 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
|
1391 Vquit_flag = Qnil; |
| 518 | 1392 |
| 1393 goto non_reread; | |
| 1394 } | |
| 1395 | |
| 1396 /* Message turns off echoing unless more keystrokes turn it on again. */ | |
| 1397 if (echo_area_glyphs && *echo_area_glyphs && echo_area_glyphs != echobuf) | |
| 1398 cancel_echoing (); | |
| 1399 else | |
| 1400 /* If already echoing, continue. */ | |
| 1401 echo_dash (); | |
| 1402 | |
| 1403 /* If in middle of key sequence and minibuffer not active, | |
| 1404 start echoing if enough time elapses. */ | |
| 1405 if (minibuf_level == 0 && !immediate_echo && this_command_key_count > 0 | |
| 1406 && echo_keystrokes > 0 | |
| 1407 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0)) | |
| 1408 { | |
| 1409 Lisp_Object tem0; | |
| 1410 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1411 /* After a mouse event, start echoing right away. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1412 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
|
1413 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
|
1414 if (EVENT_HAS_PARAMETERS (prev_event)) |
| 518 | 1415 echo (); |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1416 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1417 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1418 tem0 = sit_for (echo_keystrokes, 0, 1, 1); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1419 if (EQ (tem0, Qt)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1420 echo (); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1421 } |
| 518 | 1422 } |
| 1423 | |
| 1424 /* Maybe auto save due to number of keystrokes or idle time. */ | |
| 1425 | |
| 1426 if (commandflag != 0 | |
| 1427 && auto_save_interval > 0 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1428 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20) |
| 518 | 1429 && !detect_input_pending ()) |
| 1430 { | |
| 1431 jmp_buf temp; | |
| 1432 save_getcjmp (temp); | |
| 1433 Fdo_auto_save (Qnil, Qnil); | |
| 1434 restore_getcjmp (temp); | |
| 1435 } | |
| 1436 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1437 /* Try reading a character via menu prompting. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1438 Try this before the sit-for, because the sit-for |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1439 would do the wrong thing if we are supposed to do |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1440 menu prompting. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1441 c = Qnil; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1442 if (INTERACTIVE && !NILP (prev_event)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1443 c = read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1444 |
| 518 | 1445 /* Slow down auto saves logarithmically in size of current buffer, |
| 1446 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
|
1447 if (NILP (c)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1448 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1449 int delay_level, buffer_size; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1450 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1451 if (! MINI_WINDOW_P (XWINDOW (selected_window))) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1452 last_non_minibuf_size = Z - BEG; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1453 buffer_size = (last_non_minibuf_size >> 8) + 1; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1454 delay_level = 0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1455 while (buffer_size > 64) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1456 delay_level++, buffer_size -= buffer_size >> 2; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1457 if (delay_level < 4) delay_level = 4; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1458 /* 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
|
1459 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
|
1460 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1461 /* 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
|
1462 if (commandflag != 0 |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1463 && num_nonmacro_input_chars > last_auto_save |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1464 && XTYPE (Vauto_save_timeout) == Lisp_Int |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1465 && XINT (Vauto_save_timeout) > 0) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1466 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1467 Lisp_Object tem0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1468 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1469 tem0 = sit_for (delay, 0, 1, 1); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1470 if (EQ (tem0, Qt)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1471 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1472 jmp_buf temp; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1473 save_getcjmp (temp); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1474 Fdo_auto_save (Qnil, Qnil); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1475 restore_getcjmp (temp); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1476 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1477 /* 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
|
1478 available, garbage collect if there has been enough |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1479 consing going on to make it worthwhile. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1480 if (!detect_input_pending () |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1481 && consing_since_gc > gc_cons_threshold / 2) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1482 Fgarbage_collect (); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1483 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1484 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1485 } |
| 518 | 1486 |
| 1487 /* Actually read a character, waiting if necessary. */ | |
|
3174
719776bc7f7d
(read_char): Correct previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3117
diff
changeset
|
1488 while (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
|
1489 { |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1490 c = kbd_buffer_get_event (); |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1491 if (!NILP (c)) |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1492 break; |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1493 if (commandflag >= 0 && !input_pending && !detect_input_pending ()) |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1494 redisplay (); |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1495 } |
| 518 | 1496 |
| 1497 /* Terminate Emacs in batch mode if at eof. */ | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1498 if (noninteractive && XTYPE (c) == Lisp_Int && XINT (c) < 0) |
| 518 | 1499 Fkill_emacs (make_number (1)); |
| 1500 | |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1501 if (XTYPE (c) == Lisp_Int) |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1502 { |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1503 /* Add in any extra modifiers, where appropriate. */ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1504 if ((extra_keyboard_modifiers & CHAR_CTL) |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1505 || ((extra_keyboard_modifiers & 0177) < ' ' |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1506 && (extra_keyboard_modifiers & 0177) != 0)) |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1507 XSETINT (c, make_ctrl_char (XINT (c))); |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1508 |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1509 /* Transfer any other modifier bits directly from |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1510 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
|
1511 in the low 16 bits of extra_keyboard_modifiers. */ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1512 c |= (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL); |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1513 } |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
1514 |
| 518 | 1515 non_reread: |
| 1516 | |
| 650 | 1517 restore_getcjmp (save_jump); |
| 518 | 1518 |
| 1519 start_polling (); | |
| 1520 | |
| 1521 echo_area_glyphs = 0; | |
| 1522 | |
| 1523 /* Handle things that only apply to characters. */ | |
| 1524 if (XTYPE (c) == Lisp_Int) | |
| 1525 { | |
| 1526 /* 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
|
1527 if (XINT (c) == -1) |
| 518 | 1528 return c; |
| 1529 | |
| 1530 if (XTYPE (Vkeyboard_translate_table) == Lisp_String | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
1531 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c)) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
1532 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]); |
| 518 | 1533 } |
| 1534 | |
| 1535 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
|
1536 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
|
1537 if (++recent_keys_index >= NUM_RECENT_KEYS) |
| 518 | 1538 recent_keys_index = 0; |
| 1539 | |
| 1540 /* Write c to the dribble file. If c is a lispy event, write | |
| 1541 the event's symbol to the dribble file, in <brackets>. Bleaugh. | |
| 1542 If you, dear reader, have a better idea, you've got the source. :-) */ | |
| 1543 if (dribble) | |
| 1544 { | |
| 1545 if (XTYPE (c) == Lisp_Int) | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
1546 putc (XINT (c), dribble); |
| 518 | 1547 else |
| 1548 { | |
| 1549 Lisp_Object dribblee = c; | |
| 1550 | |
| 1551 /* If it's a structured event, take the event header. */ | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1552 dribblee = EVENT_HEAD (dribblee); |
| 518 | 1553 |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
1554 if (XTYPE (dribblee) == Lisp_Symbol) |
| 518 | 1555 { |
| 1556 putc ('<', dribble); | |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
1557 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
|
1558 XSYMBOL (dribblee)->name->size, |
| 518 | 1559 dribble); |
| 1560 putc ('>', dribble); | |
| 1561 } | |
| 1562 } | |
| 1563 | |
| 1564 fflush (dribble); | |
| 1565 } | |
| 1566 | |
| 1567 store_kbd_macro_char (c); | |
| 1568 | |
|
1104
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1569 num_nonmacro_input_chars++; |
|
f3a7122a68e1
(num_nonmacro_input_chars): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1097
diff
changeset
|
1570 |
| 518 | 1571 from_macro: |
| 1572 reread_first: | |
| 1573 | |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1574 /* Record this character as part of the current key. |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1575 Don't record mouse motion; it should never matter. */ |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1576 if (! (EVENT_HAS_PARAMETERS (c) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1577 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement))) |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1578 { |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1579 echo_char (c); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1580 add_command_key (c); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1581 } |
| 518 | 1582 |
| 1583 /* Re-reading in the middle of a command */ | |
| 1584 reread: | |
| 1585 last_input_char = c; | |
| 1586 num_input_chars++; | |
| 1587 | |
| 1588 /* Process the help character specially if enabled */ | |
| 1589 if (EQ (c, help_char) && !NILP (Vhelp_form)) | |
| 1590 { | |
| 1591 Lisp_Object tem0; | |
| 1592 count = specpdl_ptr - specpdl; | |
| 1593 | |
| 1594 record_unwind_protect (Fset_window_configuration, | |
| 1595 Fcurrent_window_configuration (Qnil)); | |
| 1596 | |
| 1597 tem0 = Feval (Vhelp_form); | |
| 1598 if (XTYPE (tem0) == Lisp_String) | |
| 1599 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0); | |
| 1600 | |
| 1601 cancel_echoing (); | |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
1602 c = read_char (0, 0, 0, Qnil, 0); |
| 765 | 1603 /* Remove the help from the frame */ |
| 518 | 1604 unbind_to (count, Qnil); |
| 1605 redisplay (); | |
| 1606 if (EQ (c, make_number (040))) | |
| 1607 { | |
| 1608 cancel_echoing (); | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1609 c = read_char (0, 0, 0, Qnil, 0); |
| 518 | 1610 } |
| 1611 } | |
| 1612 | |
| 1613 return c; | |
| 1614 } | |
| 1615 | |
| 1616 Lisp_Object | |
| 1617 print_help (object) | |
| 1618 Lisp_Object object; | |
| 1619 { | |
| 1620 Fprinc (object, Qnil); | |
| 1621 return Qnil; | |
| 1622 } | |
| 1623 | |
| 1624 /* Copy out or in the info on where C-g should throw to. | |
| 1625 This is used when running Lisp code from within get_char, | |
| 1626 in case get_char is called recursively. | |
| 1627 See read_process_output. */ | |
| 1628 | |
| 1629 save_getcjmp (temp) | |
| 1630 jmp_buf temp; | |
| 1631 { | |
| 1632 bcopy (getcjmp, temp, sizeof getcjmp); | |
| 1633 } | |
| 1634 | |
| 1635 restore_getcjmp (temp) | |
| 1636 jmp_buf temp; | |
| 1637 { | |
| 1638 bcopy (temp, getcjmp, sizeof getcjmp); | |
| 1639 } | |
| 1640 | |
| 1641 | |
| 1642 /* Low level keyboard/mouse input. | |
| 1643 kbd_buffer_store_event places events in kbd_buffer, and | |
| 1644 kbd_buffer_get_event retrieves them. | |
| 1645 mouse_moved indicates when the mouse has moved again, and | |
| 1646 *mouse_position_hook provides the mouse position. */ | |
| 1647 | |
| 1648 /* Set this for debugging, to have a way to get out */ | |
| 1649 int stop_character; | |
| 1650 | |
| 765 | 1651 extern int frame_garbaged; |
| 518 | 1652 |
| 1653 /* Return true iff there are any events in the queue that read-char | |
| 1654 would return. If this returns false, a read-char would block. */ | |
| 1655 static int | |
| 1656 readable_events () | |
| 1657 { | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
1658 return ! EVENT_QUEUES_EMPTY; |
| 518 | 1659 } |
| 1660 | |
| 1661 | |
| 1662 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use | |
| 1663 of this function. */ | |
| 1664 static Lisp_Object | |
| 1665 tracking_off (old_value) | |
| 1666 Lisp_Object old_value; | |
| 1667 { | |
| 1668 if (! XFASTINT (old_value)) | |
| 1669 { | |
| 1670 do_mouse_tracking = 0; | |
| 1671 | |
| 1672 /* Redisplay may have been preempted because there was input | |
| 1673 available, and it assumes it will be called again after the | |
| 1674 input has been processed. If the only input available was | |
| 1675 the sort that we have just disabled, then we need to call | |
| 1676 redisplay. */ | |
| 1677 if (!readable_events ()) | |
| 1678 { | |
| 1679 redisplay_preserve_echo_area (); | |
| 1680 get_input_pending (&input_pending); | |
| 1681 } | |
| 1682 } | |
| 1683 } | |
| 1684 | |
| 1685 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
|
1686 "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
|
1687 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
|
1688 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
|
1689 Normally, mouse motion is ignored.") |
| 518 | 1690 (args) |
| 1691 Lisp_Object args; | |
| 1692 { | |
| 1693 int count = specpdl_ptr - specpdl; | |
| 1694 Lisp_Object val; | |
| 1695 | |
| 1696 XSET (val, Lisp_Int, do_mouse_tracking); | |
| 1697 record_unwind_protect (tracking_off, val); | |
| 1698 | |
| 1699 do_mouse_tracking = 1; | |
| 1700 | |
| 1701 val = Fprogn (args); | |
| 1702 return unbind_to (count, val); | |
| 1703 } | |
| 1704 | |
| 1705 /* Store an event obtained at interrupt level into kbd_buffer, fifo */ | |
| 1706 | |
| 1707 void | |
| 1708 kbd_buffer_store_event (event) | |
| 1709 register struct input_event *event; | |
| 1710 { | |
| 1711 if (event->kind == no_event) | |
| 1712 abort (); | |
| 1713 | |
| 1714 if (event->kind == ascii_keystroke) | |
| 1715 { | |
| 1716 register int c = XFASTINT (event->code) & 0377; | |
| 1717 | |
|
2950
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1718 if (event->modifiers & ctrl_modifier) |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1719 c = make_ctrl_char (c); |
|
6dee690ddac5
* keyboard.c (make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2924
diff
changeset
|
1720 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
1721 if (c == quit_char) |
| 518 | 1722 { |
|
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1723 extern SIGTYPE interrupt_signal (); |
|
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1724 |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1725 #ifdef MULTI_FRAME |
| 518 | 1726 /* 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
|
1727 input, set Vlast_event_frame properly. If this doesn't |
| 518 | 1728 get returned to Emacs as an event, the next event read |
| 765 | 1729 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
|
1730 { |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1731 Lisp_Object focus = |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1732 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
|
1733 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1734 if (NILP (focus)) |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1735 internal_last_event_frame = 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
|
1736 else |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1737 internal_last_event_frame = focus; |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1738 Vlast_event_frame = internal_last_event_frame; |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1739 } |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1740 #endif |
|
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1741 |
| 648 | 1742 last_event_timestamp = event->timestamp; |
| 518 | 1743 interrupt_signal (); |
| 1744 return; | |
| 1745 } | |
| 1746 | |
| 1747 if (c && c == stop_character) | |
| 1748 { | |
| 1749 sys_suspend (); | |
| 1750 return; | |
| 1751 } | |
| 1752 | |
| 1753 XSET (event->code, Lisp_Int, c); | |
| 1754 } | |
| 1755 | |
| 1756 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE) | |
| 1757 kbd_store_ptr = kbd_buffer; | |
| 1758 | |
| 1759 /* Don't let the very last slot in the buffer become full, | |
| 1760 since that would make the two pointers equal, | |
| 1761 and that is indistinguishable from an empty buffer. | |
| 1762 Discard the event if it would fill the last slot. */ | |
| 1763 if (kbd_fetch_ptr - 1 != kbd_store_ptr) | |
| 1764 { | |
| 1765 kbd_store_ptr->kind = event->kind; | |
| 1766 kbd_store_ptr->code = event->code; | |
| 1767 kbd_store_ptr->part = event->part; | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1768 kbd_store_ptr->frame_or_window = event->frame_or_window; |
| 518 | 1769 kbd_store_ptr->modifiers = event->modifiers; |
| 1770 kbd_store_ptr->x = event->x; | |
| 1771 kbd_store_ptr->y = event->y; | |
| 1772 kbd_store_ptr->timestamp = event->timestamp; | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1773 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1774 - kbd_buffer] |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1775 = event->frame_or_window); |
| 518 | 1776 |
| 1777 kbd_store_ptr++; | |
| 1778 } | |
| 1779 } | |
| 1780 | |
| 1781 static Lisp_Object make_lispy_event (); | |
| 1782 static Lisp_Object make_lispy_movement (); | |
| 1783 static Lisp_Object modify_event_symbol (); | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1784 static Lisp_Object make_lispy_switch_frame (); |
| 518 | 1785 |
| 1786 static Lisp_Object | |
| 1787 kbd_buffer_get_event () | |
| 1788 { | |
| 1789 register int c; | |
| 1790 Lisp_Object obj; | |
| 1791 | |
| 1792 if (noninteractive) | |
| 1793 { | |
| 1794 c = getchar (); | |
| 1795 XSET (obj, Lisp_Int, c); | |
| 1796 return obj; | |
| 1797 } | |
| 1798 | |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1799 retry: |
| 518 | 1800 /* Wait until there is input available. */ |
| 1801 for (;;) | |
| 1802 { | |
| 1803 if (!EVENT_QUEUES_EMPTY) | |
| 1804 break; | |
| 1805 | |
| 1806 /* If the quit flag is set, then read_char will return | |
| 1807 quit_char, so that counts as "available input." */ | |
| 1808 if (!NILP (Vquit_flag)) | |
| 1809 quit_throw_to_read_char (); | |
| 1810 | |
| 1811 /* One way or another, wait until input is available; then, if | |
| 1812 interrupt handlers have not read it, read it now. */ | |
| 1813 | |
| 1814 #ifdef OLDVMS | |
| 1815 wait_for_kbd_input (); | |
| 1816 #else | |
| 1817 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
| 1818 #ifdef SIGIO | |
| 1819 gobble_input (0); | |
| 1820 #endif /* SIGIO */ | |
| 1821 if (EVENT_QUEUES_EMPTY) | |
| 1822 { | |
| 650 | 1823 Lisp_Object minus_one; |
| 1824 | |
| 1825 XSET (minus_one, Lisp_Int, -1); | |
| 1826 wait_reading_process_input (0, 0, minus_one, 1); | |
| 518 | 1827 |
| 1828 if (!interrupt_input && EVENT_QUEUES_EMPTY) | |
| 1829 { | |
| 1830 read_avail_input (0); | |
| 1831 } | |
| 1832 } | |
| 1833 #endif /* not VMS */ | |
| 1834 } | |
| 1835 | |
| 1836 /* At this point, we know that there is a readable event available | |
| 1837 somewhere. If the event queue is empty, then there must be a | |
| 1838 mouse movement enabled and available. */ | |
| 1839 if (kbd_fetch_ptr != kbd_store_ptr) | |
| 1840 { | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1841 struct input_event *event; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1842 |
|
1404
1c2080f78a36
* keyboard.c (kbd_buffer_get_event): Fix fencepost bug in
Jim Blandy <jimb@redhat.com>
parents:
1402
diff
changeset
|
1843 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE) |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1844 ? kbd_fetch_ptr |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1845 : kbd_buffer); |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1846 |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1847 last_event_timestamp = event->timestamp; |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1848 |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1849 obj = Qnil; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1850 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1851 /* These two kinds of events get special handling |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1852 and don't actually appear to the command loop. */ |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1853 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
|
1854 { |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1855 #ifdef HAVE_X11 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1856 x_handle_selection_request (event); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1857 kbd_fetch_ptr = event + 1; |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1858 #else |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1859 /* 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
|
1860 a window system. */ |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1861 abort (); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1862 #endif |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1863 } |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1864 |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1865 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
|
1866 { |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1867 #ifdef HAVE_X11 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1868 x_handle_selection_clear (event); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1869 kbd_fetch_ptr = event + 1; |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1870 #else |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1871 /* 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
|
1872 a window system. */ |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1873 abort (); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
1874 #endif |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1875 } |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1876 |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1877 #ifdef MULTI_FRAME |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1878 /* 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
|
1879 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
|
1880 else |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1881 { |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1882 Lisp_Object frame = event->frame_or_window; |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1883 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
|
1884 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1885 if (XTYPE (frame) == Lisp_Window) |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1886 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
|
1887 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1888 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
|
1889 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
|
1890 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
|
1891 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1892 if (! EQ (frame, internal_last_event_frame) |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1893 && 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
|
1894 obj = make_lispy_switch_frame (frame); |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1895 internal_last_event_frame = frame; |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1896 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1897 /* 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
|
1898 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
|
1899 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1900 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
|
1901 { |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1902 obj = make_lispy_event (event); |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1903 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1904 /* 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
|
1905 event->kind = no_event; |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1906 (XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer] |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1907 = Qnil); |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1908 |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1909 kbd_fetch_ptr = event + 1; |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1910 } |
|
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1911 } |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1912 #endif |
| 518 | 1913 } |
| 1914 else if (do_mouse_tracking && mouse_moved) | |
| 1915 { | |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1916 FRAME_PTR f; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1917 Lisp_Object bar_window; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1918 enum scroll_bar_part part; |
| 732 | 1919 Lisp_Object x, y; |
| 1920 unsigned long time; | |
| 518 | 1921 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1922 (*mouse_position_hook) (&f, &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
|
1923 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1924 obj = Qnil; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1925 |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1926 #ifdef MULTI_FRAME |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1927 /* 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
|
1928 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
|
1929 frames. */ |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1930 if (f) |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
1931 { |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1932 Lisp_Object frame = FRAME_FOCUS_FRAME (f); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1933 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1934 if (NILP (frame)) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1935 XSET (frame, Lisp_Frame, f); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1936 |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1937 if (! EQ (frame, internal_last_event_frame) |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1938 && XFRAME (frame) != selected_frame) |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1939 obj = make_lispy_switch_frame (internal_last_event_frame); |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
1940 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
|
1941 } |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
1942 #endif |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1943 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1944 /* If we didn't decide to make a switch-frame event, go ahead and |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1945 return a mouse-motion event. */ |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
1946 if (NILP (obj)) |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
1947 obj = make_lispy_movement (f, 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
|
1948 } |
| 518 | 1949 else |
| 1950 /* We were promised by the above while loop that there was | |
| 1951 something for us to read! */ | |
| 1952 abort (); | |
| 1953 | |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1954 #if 0 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1955 /* If something gave back nil as the Lispy event, |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1956 it means the event was discarded, so try again. */ |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1957 if (NILP (obj)) |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1958 goto retry; |
|
3101
9de5bf724302
(read_char): If kbd_buffer_get_event returns nil, redisplay and retry.
Richard M. Stallman <rms@gnu.org>
parents:
3067
diff
changeset
|
1959 #endif |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
1960 |
| 518 | 1961 input_pending = readable_events (); |
| 1962 | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1963 #ifdef MULTI_FRAME |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1964 Vlast_event_frame = internal_last_event_frame; |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1965 #endif |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
1966 |
| 518 | 1967 return (obj); |
| 1968 } | |
| 1969 | |
|
3104
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1970 /* Process any events that are not user-visible. */ |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1971 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1972 void |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1973 swallow_events () |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1974 { |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1975 while (kbd_fetch_ptr != kbd_store_ptr) |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1976 { |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1977 struct input_event *event; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1978 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1979 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE) |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1980 ? kbd_fetch_ptr |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1981 : kbd_buffer); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1982 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1983 last_event_timestamp = event->timestamp; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1984 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1985 /* These two kinds of events get special handling |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1986 and don't actually appear to the command loop. */ |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1987 if (event->kind == selection_request_event) |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1988 { |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1989 #ifdef HAVE_X11 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1990 x_handle_selection_request (event); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1991 kbd_fetch_ptr = event + 1; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1992 #else |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1993 /* 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
|
1994 a window system. */ |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1995 abort (); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1996 #endif |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1997 } |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1998 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
1999 else if (event->kind == selection_clear_event) |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2000 { |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2001 #ifdef HAVE_X11 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2002 x_handle_selection_clear (event); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2003 kbd_fetch_ptr = event + 1; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2004 #else |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2005 /* 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
|
2006 a window system. */ |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2007 abort (); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2008 #endif |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2009 } |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2010 else |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2011 break; |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2012 } |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2013 |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2014 get_input_pending (&input_pending); |
|
3c6fccdf8257
(swallow_events): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3101
diff
changeset
|
2015 } |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2016 |
| 518 | 2017 /* Caches for modify_event_symbol. */ |
| 2018 static Lisp_Object func_key_syms; | |
| 2019 static Lisp_Object mouse_syms; | |
| 2020 | |
| 2021 /* You'll notice that this table is arranged to be conveniently | |
| 2022 indexed by X Windows keysym values. */ | |
| 2023 static char *lispy_function_keys[] = | |
| 2024 { | |
| 2025 /* X Keysym value */ | |
| 2026 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2027 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */ |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2028 "backspace", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2029 "tab", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2030 "linefeed", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2031 "clear", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2032 0, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2033 "return", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2034 0, 0, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2035 0, 0, 0, /* 0xff10 */ |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2036 "pause", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2037 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
|
2038 "escape", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2039 0, 0, 0, 0, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2040 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
|
2041 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
|
2042 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
|
2043 |
| 518 | 2044 "home", /* 0xff50 */ /* IsCursorKey */ |
| 2045 "left", | |
| 2046 "up", | |
| 2047 "right", | |
| 2048 "down", | |
| 2049 "prior", | |
| 2050 "next", | |
| 2051 "end", | |
| 2052 "begin", | |
| 2053 0, /* 0xff59 */ | |
| 2054 0, 0, 0, 0, 0, 0, | |
| 2055 "select", /* 0xff60 */ /* IsMiscFunctionKey */ | |
| 2056 "print", | |
| 2057 "execute", | |
| 2058 "insert", | |
| 2059 0, /* 0xff64 */ | |
| 2060 "undo", | |
| 2061 "redo", | |
| 2062 "menu", | |
| 2063 "find", | |
| 2064 "cancel", | |
| 2065 "help", | |
| 2066 "break", /* 0xff6b */ | |
| 2067 | |
| 2068 /* Here are some keys found mostly on HP keyboards. The X event | |
| 2069 handling code will strip bit 29, which flags vendor-specific | |
| 2070 keysyms. */ | |
| 2071 "reset", /* 0x1000ff6c */ | |
| 2072 "system", | |
| 2073 "user", | |
| 2074 "clearline", | |
| 2075 "insertline", | |
| 2076 "deleteline", | |
| 2077 "insertchar", | |
| 2078 "deletechar", | |
| 2079 "backtab", | |
|
3054
57814bb76b37
(lispy_function_keys): Add kp-numlock. Fix kp-backspace.
Richard M. Stallman <rms@gnu.org>
parents:
3042
diff
changeset
|
2080 "kp-backtab", /* 0x1000ff75 */ |
| 518 | 2081 0, /* 0xff76 */ |
|
3054
57814bb76b37
(lispy_function_keys): Add kp-numlock. Fix kp-backspace.
Richard M. Stallman <rms@gnu.org>
parents:
3042
diff
changeset
|
2082 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */ |
| 518 | 2083 "kp-space", /* 0xff80 */ /* IsKeypadKey */ |
| 2084 0, 0, 0, 0, 0, 0, 0, 0, | |
| 2085 "kp-tab", /* 0xff89 */ | |
| 2086 0, 0, 0, | |
| 2087 "kp-enter", /* 0xff8d */ | |
| 2088 0, 0, 0, | |
| 2089 "kp-f1", /* 0xff91 */ | |
| 2090 "kp-f2", | |
| 2091 "kp-f3", | |
| 2092 "kp-f4", | |
| 2093 0, /* 0xff95 */ | |
| 2094 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
| 2095 "kp-multiply", /* 0xffaa */ | |
| 2096 "kp-add", | |
| 2097 "kp-separator", | |
| 2098 "kp-subtract", | |
| 2099 "kp-decimal", | |
| 2100 "kp-divide", /* 0xffaf */ | |
| 2101 "kp-0", /* 0xffb0 */ | |
| 2102 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9", | |
| 2103 0, /* 0xffba */ | |
| 2104 0, 0, | |
| 2105 "kp-equal", /* 0xffbd */ | |
| 2106 "f1", /* 0xffbe */ /* IsFunctionKey */ | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2107 "f2", |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2108 "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
|
2109 "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
|
2110 "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
|
2111 "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
|
2112 "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
|
2113 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
|
2114 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
|
2115 0, 0, 0, 0, 0, 0, 0, "delete" |
| 518 | 2116 }; |
| 2117 | |
| 2118 static char *lispy_mouse_names[] = | |
| 2119 { | |
| 2120 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5" | |
| 2121 }; | |
| 2122 | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2123 /* Scroll bar parts. */ |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2124 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
|
2125 |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2126 /* 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
|
2127 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
|
2128 &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
|
2129 }; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2130 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2131 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2132 /* 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
|
2133 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
|
2134 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2135 The elements have the form |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2136 (BUTTON-NUMBER MODIFIER-MASK . REST) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2137 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
|
2138 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2139 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
|
2140 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
|
2141 location to be included in drag events. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2142 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2143 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
|
2144 |
| 518 | 2145 /* Given a struct input_event, build the lisp event which represents |
| 2146 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
|
2147 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
|
2148 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2149 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
|
2150 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
|
2151 in order to build drag events when the button is released. */ |
| 518 | 2152 |
| 2153 static Lisp_Object | |
| 2154 make_lispy_event (event) | |
| 2155 struct input_event *event; | |
| 2156 { | |
| 2157 #ifdef SWITCH_ENUM_BUG | |
| 2158 switch ((int) event->kind) | |
| 2159 #else | |
| 2160 switch (event->kind) | |
| 2161 #endif | |
| 2162 { | |
| 2163 /* A simple keystroke. */ | |
| 2164 case ascii_keystroke: | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2165 { |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2166 int c = XFASTINT (event->code); |
|
2867
5b72eb2483e7
* xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents:
2789
diff
changeset
|
2167 /* 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
|
2168 when proper. */ |
|
5b72eb2483e7
* xterm.c (XTread_socket): Turn off ControlMask for XLookupString.
Jim Blandy <jimb@redhat.com>
parents:
2789
diff
changeset
|
2169 if (event->modifiers & ctrl_modifier) |
|
2954
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
2170 c = make_ctrl_char (c); |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
2171 |
|
0dfd1927264e
(make_ctrl_char): New function.
Jim Blandy <jimb@redhat.com>
parents:
2950
diff
changeset
|
2172 /* 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
|
2173 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
|
2174 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
|
2175 c |= (event->modifiers |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2176 & (meta_modifier | alt_modifier |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2177 | hyper_modifier | super_modifier)); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2178 return c; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2179 } |
| 518 | 2180 |
| 2181 /* A function key. The symbol may need to have modifier prefixes | |
| 2182 tacked onto it. */ | |
| 2183 case non_ascii_keystroke: | |
| 2184 return modify_event_symbol (XFASTINT (event->code), event->modifiers, | |
| 2185 Qfunction_key, | |
| 2186 lispy_function_keys, &func_key_syms, | |
| 2187 (sizeof (lispy_function_keys) | |
| 2188 / sizeof (lispy_function_keys[0]))); | |
| 2189 break; | |
| 2190 | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2191 /* A mouse click. Figure out where it is, decide whether it's |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2192 a press, click or drag, and build the appropriate structure. */ |
| 518 | 2193 case mouse_click: |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2194 case scroll_bar_click: |
| 518 | 2195 { |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2196 int button = XFASTINT (event->code); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2197 Lisp_Object position; |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2198 Lisp_Object *start_pos_ptr; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2199 Lisp_Object start_pos; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2200 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2201 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
|
2202 abort (); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2203 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2204 /* 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
|
2205 if (event->kind == mouse_click) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2206 { |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2207 int part; |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
2208 FRAME_PTR f = XFRAME (event->frame_or_window); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2209 Lisp_Object window |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2210 = window_from_coordinates (f, XINT (event->x), XINT (event->y), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2211 &part); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2212 Lisp_Object posn; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2213 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2214 if (XINT (event->y) < FRAME_MENU_BAR_LINES (f)) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2215 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2216 int hpos; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2217 Lisp_Object items; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2218 items = FRAME_MENU_BAR_ITEMS (f); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2219 for (; CONSP (items); items = XCONS (items)->cdr) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2220 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2221 Lisp_Object pos, string; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2222 pos = Fcdr (Fcdr (Fcar (items))); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2223 string = Fcar (Fcdr (Fcar (items))); |
|
3117
1d3a6f78266f
(make_lispy_event): Fix off-by-1 error with hpos in menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
3116
diff
changeset
|
2224 if (XINT (event->x) >= XINT (pos) |
|
1d3a6f78266f
(make_lispy_event): Fix off-by-1 error with hpos in menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
3116
diff
changeset
|
2225 && XINT (event->x) < XINT (pos) + XSTRING (string)->size) |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2226 break; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2227 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2228 position |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2229 = Fcons (event->frame_or_window, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2230 Fcons (Qmenu_bar, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2231 Fcons (Fcons (event->x, event->y), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2232 Fcons (make_number (event->timestamp), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2233 Qnil)))); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2234 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2235 if (CONSP (items)) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2236 return Fcons (Fcar (Fcar (items)), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2237 Fcons (position, Qnil)); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2238 else |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2239 return Fcons (Qnil, Fcons (position, Qnil)); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2240 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2241 else if (XTYPE (window) != Lisp_Window) |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2242 posn = Qnil; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2243 else |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2244 { |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2245 XSETINT (event->x, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2246 (XINT (event->x) - XINT (XWINDOW (window)->left))); |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2247 XSETINT (event->y, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2248 (XINT (event->y) - XINT (XWINDOW (window)->top))); |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2249 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2250 if (part == 1) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2251 posn = Qmode_line; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2252 else if (part == 2) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2253 posn = Qvertical_line; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2254 else |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2255 XSET (posn, Lisp_Int, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2256 buffer_posn_from_coords (XWINDOW (window), |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2257 XINT (event->x), |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2258 XINT (event->y))); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2259 } |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2260 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2261 position |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2262 = Fcons (window, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2263 Fcons (posn, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2264 Fcons (Fcons (event->x, event->y), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2265 Fcons (make_number (event->timestamp), |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2266 Qnil)))); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2267 } |
| 518 | 2268 else |
| 2269 { | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2270 Lisp_Object window = event->frame_or_window; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2271 Lisp_Object portion_whole = Fcons (event->x, event->y); |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2272 Lisp_Object 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
|
2273 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2274 position = |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2275 Fcons (window, |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2276 Fcons (Qvertical_scroll_bar, |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2277 Fcons (portion_whole, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2278 Fcons (make_number (event->timestamp), |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2279 Fcons (part, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2280 Qnil))))); |
| 518 | 2281 } |
| 2282 | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2283 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
|
2284 |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2285 start_pos = *start_pos_ptr; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2286 *start_pos_ptr = Qnil; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2287 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2288 /* 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
|
2289 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
|
2290 if (event->modifiers & down_modifier) |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2291 *start_pos_ptr = Fcopy_alist (position); |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2292 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2293 /* 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
|
2294 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
|
2295 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
|
2296 { |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2297 /* 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
|
2298 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
|
2299 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
|
2300 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
|
2301 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
|
2302 as a separate event. */ |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2303 |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2304 if (XTYPE (start_pos) != Lisp_Cons) |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2305 return Qnil; |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2306 |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2307 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
|
2308 #if 0 /* Formerly we treated an up with no down as a click event. */ |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2309 if (XTYPE (start_pos) != Lisp_Cons) |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2310 event->modifiers |= click_modifier; |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2311 else |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2312 #endif |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2313 { |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2314 /* 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
|
2315 pair. */ |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2316 Lisp_Object down = Fnth (make_number (2), start_pos); |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2317 |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2318 event->modifiers |= ((EQ (event->x, XCONS (down)->car) |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2319 && EQ (event->y, XCONS (down)->cdr)) |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2320 ? click_modifier |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2321 : drag_modifier); |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2322 } |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2323 } |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2324 else |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2325 /* 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
|
2326 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
|
2327 abort (); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2328 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2329 { |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2330 /* Get the symbol we should use for the mouse click. */ |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2331 Lisp_Object head |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2332 = modify_event_symbol (button, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2333 event->modifiers, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2334 Qmouse_click, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2335 lispy_mouse_names, &mouse_syms, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2336 (sizeof (lispy_mouse_names) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
2337 / sizeof (lispy_mouse_names[0]))); |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2338 |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2339 if (event->modifiers & drag_modifier) |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2340 return Fcons (head, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2341 Fcons (start_pos, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2342 Fcons (position, |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
2343 Qnil))); |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2344 else |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2345 return Fcons (head, |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2346 Fcons (position, |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2347 Qnil)); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2348 } |
| 518 | 2349 } |
| 2350 | |
| 2351 /* The 'kind' field of the event is something we don't recognize. */ | |
| 2352 default: | |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
2353 abort (); |
| 518 | 2354 } |
| 2355 } | |
| 2356 | |
| 2357 static Lisp_Object | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2358 make_lispy_movement (frame, bar_window, part, x, y, time) |
| 765 | 2359 FRAME_PTR frame; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2360 Lisp_Object bar_window; |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2361 enum scroll_bar_part part; |
| 518 | 2362 Lisp_Object x, y; |
| 732 | 2363 unsigned long time; |
| 518 | 2364 { |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2365 /* Is it a scroll bar movement? */ |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2366 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
|
2367 { |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2368 Lisp_Object part_sym = *scroll_bar_parts[(int) part]; |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2369 |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2370 return Fcons (Qscroll_bar_movement, |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2371 (Fcons (Fcons (bar_window, |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
2372 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
|
2373 Fcons (Fcons (x, y), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2374 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
|
2375 Fcons (part_sym, |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2376 Qnil))))), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2377 Qnil))); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2378 } |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2379 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2380 /* Or is it an ordinary mouse movement? */ |
| 518 | 2381 else |
| 2382 { | |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2383 int area; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2384 Lisp_Object window = |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2385 (frame |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2386 ? window_from_coordinates (frame, XINT (x), XINT (y), &area) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2387 : Qnil); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2388 Lisp_Object posn; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2389 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2390 if (XTYPE (window) == Lisp_Window) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2391 { |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2392 XSETINT (x, XINT (x) - XINT (XWINDOW (window)->left)); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2393 XSETINT (y, XINT (y) - XINT (XWINDOW (window)->top)); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2394 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2395 if (area == 1) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2396 posn = Qmode_line; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2397 else if (area == 2) |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2398 posn = Qvertical_line; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2399 else |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2400 XSET (posn, Lisp_Int, |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2401 buffer_posn_from_coords (XWINDOW (window), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2402 XINT (x), XINT (y))); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2403 } |
| 518 | 2404 else |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2405 { |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2406 window = Qnil; |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2407 posn = Qnil; |
|
2980
654eebe93c27
* keyboard.c (make_lispy_movement): Deal properly with mouse
Jim Blandy <jimb@redhat.com>
parents:
2956
diff
changeset
|
2408 XFASTINT (x) = 0; |
|
654eebe93c27
* keyboard.c (make_lispy_movement): Deal properly with mouse
Jim Blandy <jimb@redhat.com>
parents:
2956
diff
changeset
|
2409 XFASTINT (y) = 0; |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2410 } |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2411 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2412 return Fcons (Qmouse_movement, |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2413 Fcons (Fcons (window, |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2414 Fcons (posn, |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2415 Fcons (Fcons (x, y), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2416 Fcons (make_number (time), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2417 Qnil)))), |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
2418 Qnil)); |
| 518 | 2419 } |
| 2420 } | |
| 2421 | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2422 /* 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
|
2423 static Lisp_Object |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2424 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
|
2425 Lisp_Object frame; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2426 { |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2427 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
|
2428 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2429 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2430 /* Manipulating modifiers. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2431 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2432 /* 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
|
2433 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2434 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
|
2435 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
|
2436 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
|
2437 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2438 This doesn't use any caches. */ |
| 518 | 2439 static int |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2440 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
|
2441 Lisp_Object symbol; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2442 int *modifier_end; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2443 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2444 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
|
2445 int i; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2446 int modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2447 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2448 CHECK_SYMBOL (symbol, 1); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2449 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2450 modifiers = 0; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2451 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
|
2452 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2453 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2454 for (i = 0; i+2 <= name->size; ) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2455 switch (name->data[i]) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2456 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2457 #define SINGLE_LETTER_MOD(bit) \ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2458 if (name->data[i+1] != '-') \ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2459 goto no_more_modifiers; \ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2460 modifiers |= bit; \ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2461 i += 2; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2462 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2463 case 'A': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2464 SINGLE_LETTER_MOD (alt_modifier); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2465 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2466 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2467 case 'C': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2468 SINGLE_LETTER_MOD (ctrl_modifier); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2469 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2470 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2471 case 'H': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2472 SINGLE_LETTER_MOD (hyper_modifier); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2473 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2474 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2475 case 'M': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2476 SINGLE_LETTER_MOD (meta_modifier); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2477 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2478 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2479 case 'S': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2480 SINGLE_LETTER_MOD (shift_modifier); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2481 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2482 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2483 case 's': |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2484 SINGLE_LETTER_MOD (super_modifier); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2485 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2486 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2487 case 'd': |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2488 if (i + 5 > name->size) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2489 goto no_more_modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2490 if (! strncmp (name->data + i, "drag-", 5)) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2491 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2492 modifiers |= drag_modifier; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2493 i += 5; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2494 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2495 else if (! strncmp (name->data + i, "down-", 5)) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2496 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2497 modifiers |= down_modifier; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2498 i += 5; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2499 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2500 else |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2501 goto no_more_modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2502 break; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2503 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2504 default: |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2505 goto no_more_modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2506 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2507 #undef SINGLE_LETTER_MOD |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2508 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2509 no_more_modifiers: |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2510 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2511 /* Should we include the `click' modifier? */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2512 if (! (modifiers & (down_modifier | drag_modifier)) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2513 && 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
|
2514 && 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
|
2515 && ('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
|
2516 modifiers |= click_modifier; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2517 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2518 if (modifier_end) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2519 *modifier_end = i; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2520 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2521 return modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2522 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2523 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2524 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2525 /* 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
|
2526 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
|
2527 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
|
2528 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2529 apply_modifiers_uncached (modifiers, base, base_len) |
| 518 | 2530 int modifiers; |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2531 char *base; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2532 int base_len; |
| 518 | 2533 { |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2534 /* 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
|
2535 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
|
2536 reference to it. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2537 char *new_mods = |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2538 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-")); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2539 int mod_len; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2540 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2541 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2542 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
|
2543 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2544 /* 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
|
2545 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
|
2546 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
|
2547 abort (); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2548 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2549 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
|
2550 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
|
2551 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
|
2552 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
|
2553 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
|
2554 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2555 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
|
2556 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
|
2557 /* 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
|
2558 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2559 *p = '\0'; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2560 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2561 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
|
2562 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2563 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2564 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2565 Lisp_Object new_name = make_uninit_string (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
|
2566 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2567 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
|
2568 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
|
2569 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2570 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
|
2571 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2572 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2573 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2574 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2575 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
|
2576 { |
|
2956
d25ffad42426
(modifier_names): Update to match *_modifier in termhooks.
Richard M. Stallman <rms@gnu.org>
parents:
2954
diff
changeset
|
2577 "up", "down", "drag", "click", 0, 0, 0, 0, |
|
d25ffad42426
(modifier_names): Update to match *_modifier in termhooks.
Richard M. Stallman <rms@gnu.org>
parents:
2954
diff
changeset
|
2578 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
|
2579 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
|
2580 }; |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2581 #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
|
2582 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2583 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
|
2584 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2585 /* 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
|
2586 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2587 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
|
2588 int modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2589 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2590 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
|
2591 int i; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2592 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2593 modifier_list = Qnil; |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2594 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
|
2595 if (modifiers & (1<<i)) |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2596 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i], |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2597 modifier_list); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2598 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2599 return modifier_list; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2600 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2601 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2602 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2603 /* 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
|
2604 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
|
2605 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
|
2606 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
|
2607 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
|
2608 Qevent_symbol_elements property. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2609 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2610 parse_modifiers (symbol) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2611 Lisp_Object symbol; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2612 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2613 Lisp_Object elements = Fget (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
|
2614 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2615 if (CONSP (elements)) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2616 return elements; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2617 else |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2618 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2619 int end; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2620 int modifiers = parse_modifiers_uncached (symbol, &end); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2621 Lisp_Object unmodified |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2622 = Fintern (make_string (XSYMBOL (symbol)->name->data + end, |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2623 XSYMBOL (symbol)->name->size - end), |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2624 Qnil); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2625 Lisp_Object mask; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2626 |
|
2436
80aafda1127b
* keyboard.c (parse_modifiers, apply_modifiers): Make sure we're
Jim Blandy <jimb@redhat.com>
parents:
2434
diff
changeset
|
2627 if (modifiers & ~((1<<VALBITS) - 1)) |
|
80aafda1127b
* keyboard.c (parse_modifiers, apply_modifiers): Make sure we're
Jim Blandy <jimb@redhat.com>
parents:
2434
diff
changeset
|
2628 abort (); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2629 XFASTINT (mask) = modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2630 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
|
2631 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2632 /* 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
|
2633 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
|
2634 elements); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2635 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
|
2636 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
|
2637 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2638 /* 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
|
2639 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
|
2640 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
|
2641 canonical. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2642 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2643 return elements; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2644 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2645 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2646 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2647 /* 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
|
2648 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
|
2649 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2650 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
|
2651 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
|
2652 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
|
2653 |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
2654 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
|
2655 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
|
2656 static Lisp_Object |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2657 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
|
2658 int modifiers; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2659 Lisp_Object base; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2660 { |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2661 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
|
2662 |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2663 /* Mask out upper bits. We don't know where this value's been. */ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2664 modifiers &= (1<<VALBITS) - 1; |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
2665 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2666 /* 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
|
2667 cache = Fget (base, Qmodifier_cache); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2668 XFASTINT (index) = (modifiers & ~click_modifier); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2669 entry = Fassq (index, cache); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2670 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2671 if (CONSP (entry)) |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2672 new_symbol = XCONS (entry)->cdr; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2673 else |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2674 { |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2675 /* We have to create the symbol ourselves. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2676 new_symbol = apply_modifiers_uncached (modifiers, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2677 XSYMBOL (base)->name->data, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2678 XSYMBOL (base)->name->size); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2679 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2680 /* 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
|
2681 entry = Fcons (index, new_symbol); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2682 Fput (base, Qmodifier_cache, Fcons (entry, cache)); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2683 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2684 /* We have the parsing info now for free, so add it to the caches. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2685 XFASTINT (index) = modifiers; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2686 Fput (new_symbol, Qevent_symbol_element_mask, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2687 Fcons (base, Fcons (index, Qnil))); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2688 Fput (new_symbol, Qevent_symbol_elements, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2689 Fcons (base, lispy_modifier_list (modifiers))); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2690 } |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2691 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2692 /* Make sure this symbol is of the same kind as BASE. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2693 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2694 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
|
2695 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
|
2696 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
|
2697 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
|
2698 Qevent_kind set right as well. */ |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2699 if (NILP (Fget (new_symbol, Qevent_kind))) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2700 { |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2701 Lisp_Object kind = Fget (base, Qevent_kind); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2702 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2703 if (! NILP (kind)) |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2704 Fput (new_symbol, Qevent_kind, kind); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2705 } |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2706 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2707 return new_symbol; |
| 518 | 2708 } |
| 2709 | |
| 2710 | |
| 2711 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc), | |
| 2712 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
|
2713 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
|
2714 always come last. The 'click' modifier is never written out. |
| 518 | 2715 |
| 2716 Fdefine_key calls this to make sure that (for example) C-M-foo | |
| 2717 and M-C-foo end up being equivalent in the keymap. */ | |
| 2718 | |
| 2719 Lisp_Object | |
| 2720 reorder_modifiers (symbol) | |
| 2721 Lisp_Object symbol; | |
| 2722 { | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2723 /* 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
|
2724 will soon be in caches, and no consing will be done at all. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2725 Lisp_Object parsed = parse_modifiers (symbol); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2726 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2727 return apply_modifiers (XCONS (XCONS (parsed)->cdr)->car, |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2728 XCONS (parsed)->car); |
| 518 | 2729 } |
| 2730 | |
| 2731 | |
| 2732 /* For handling events, we often want to produce a symbol whose name | |
| 2733 is a series of modifier key prefixes ("M-", "C-", etcetera) attached | |
| 2734 to some base, like the name of a function key or mouse button. | |
| 2735 modify_event_symbol produces symbols of this sort. | |
| 2736 | |
| 2737 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i] | |
| 2738 is the name of the i'th symbol. TABLE_SIZE is the number of elements | |
| 2739 in the table. | |
| 2740 | |
| 2741 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will | |
| 2742 persist between calls to modify_event_symbol that it can use to | |
| 2743 store a cache of the symbols it's generated for this NAME_TABLE | |
| 2744 before. | |
| 2745 | |
| 2746 SYMBOL_NUM is the number of the base name we want from NAME_TABLE. | |
| 2747 | |
| 2748 MODIFIERS is a set of modifier bits (as given in struct input_events) | |
| 2749 whose prefixes should be applied to the symbol name. | |
| 2750 | |
| 2751 SYMBOL_KIND is the value to be placed in the event_kind property of | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2752 the returned symbol. |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2753 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2754 The symbols we create are supposed to have an |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2755 `event-symbol-elements' propery, which lists the modifiers present |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2756 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
|
2757 |
| 518 | 2758 static Lisp_Object |
| 2759 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_table, | |
| 2760 symbol_table, table_size) | |
| 2761 int symbol_num; | |
| 2762 unsigned modifiers; | |
| 2763 Lisp_Object symbol_kind; | |
| 2764 char **name_table; | |
| 2765 Lisp_Object *symbol_table; | |
| 2766 int table_size; | |
| 2767 { | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2768 Lisp_Object *slot; |
| 518 | 2769 |
| 2770 /* 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
|
2771 if (symbol_num < 0 || symbol_num >= table_size) |
| 518 | 2772 abort (); |
| 2773 | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2774 /* 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
|
2775 *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
|
2776 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
|
2777 we've never used that symbol before. */ |
| 518 | 2778 if (XTYPE (*symbol_table) != Lisp_Vector |
| 2779 || XVECTOR (*symbol_table)->size != table_size) | |
| 2780 { | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2781 Lisp_Object size; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2782 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2783 XFASTINT (size) = table_size; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2784 *symbol_table = Fmake_vector (size, Qnil); |
| 518 | 2785 } |
| 2786 | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2787 slot = & XVECTOR (*symbol_table)->contents[symbol_num]; |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2788 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2789 /* Have we already used this symbol before? */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2790 if (NILP (*slot)) |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2791 { |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2792 /* No; let's create it. */ |
|
3042
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2793 if (name_table[symbol_num]) |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2794 *slot = intern (name_table[symbol_num]); |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2795 else |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2796 { |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2797 char buf[20]; |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2798 sprintf (buf, "key-%d", symbol_num); |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2799 *slot = intern (buf); |
|
793f7e0dc66b
(modify_event_symbol): If a name_table elt is null,
Richard M. Stallman <rms@gnu.org>
parents:
2980
diff
changeset
|
2800 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2801 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2802 /* Fill in the cache entries for this symbol; this also |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2803 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
|
2804 cares about. */ |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
2805 apply_modifiers (modifiers & click_modifier, *slot); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2806 Fput (*slot, 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
|
2807 } |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
2808 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2809 /* Apply modifiers to that symbol. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2810 return apply_modifiers (modifiers, *slot); |
| 518 | 2811 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
2812 |
| 518 | 2813 |
| 2814 /* Store into *addr a value nonzero if terminal input chars are available. | |
| 2815 Serves the purpose of ioctl (0, FIONREAD, addr) | |
| 2816 but works even if FIONREAD does not exist. | |
| 2817 (In fact, this may actually read some input.) */ | |
| 2818 | |
| 2819 static void | |
| 2820 get_input_pending (addr) | |
| 2821 int *addr; | |
| 2822 { | |
| 2823 /* First of all, have we already counted some input? */ | |
| 2824 *addr = !NILP (Vquit_flag) || readable_events (); | |
| 2825 | |
| 2826 /* If input is being read as it arrives, and we have none, there is none. */ | |
| 2827 if (*addr > 0 || (interrupt_input && ! interrupts_deferred)) | |
| 2828 return; | |
| 2829 | |
| 2830 /* Try to read some input and see how much we get. */ | |
| 2831 gobble_input (0); | |
| 2832 *addr = !NILP (Vquit_flag) || readable_events (); | |
| 2833 } | |
| 2834 | |
| 2835 /* Interface to read_avail_input, blocking SIGIO if necessary. */ | |
| 2836 | |
| 2837 int | |
| 2838 gobble_input (expected) | |
| 2839 int expected; | |
| 2840 { | |
| 2841 #ifndef VMS | |
| 2842 #ifdef SIGIO | |
| 2843 if (interrupt_input) | |
| 2844 { | |
| 624 | 2845 SIGMASKTYPE mask; |
| 638 | 2846 mask = sigblockx (SIGIO); |
| 518 | 2847 read_avail_input (expected); |
| 638 | 2848 sigsetmask (mask); |
| 518 | 2849 } |
| 2850 else | |
| 2851 #endif | |
| 2852 read_avail_input (expected); | |
| 2853 #endif | |
| 2854 } | |
| 2855 | |
| 2856 #ifndef VMS | |
| 2857 | |
| 2858 /* Read any terminal input already buffered up by the system | |
| 2859 into the kbd_buffer, but do not wait. | |
| 2860 | |
| 2861 EXPECTED should be nonzero if the caller knows there is some input. | |
| 2862 | |
| 2863 Except on VMS, all input is read by this function. | |
| 2864 If interrupt_input is nonzero, this function MUST be called | |
| 2865 only when SIGIO is blocked. | |
| 2866 | |
| 2867 Returns the number of keyboard chars read, or -1 meaning | |
| 2868 this is a bad time to try to read input. */ | |
| 2869 | |
| 2870 static int | |
| 2871 read_avail_input (expected) | |
| 2872 int expected; | |
| 2873 { | |
| 2874 struct input_event buf[KBD_BUFFER_SIZE]; | |
| 2875 register int i; | |
| 2876 int nread; | |
| 2877 | |
| 2878 if (read_socket_hook) | |
| 2879 /* No need for FIONREAD or fcntl; just say don't wait. */ | |
| 2880 nread = (*read_socket_hook) (0, buf, KBD_BUFFER_SIZE, expected, expected); | |
| 2881 else | |
| 2882 { | |
| 2883 unsigned char cbuf[KBD_BUFFER_SIZE]; | |
| 2884 | |
| 2885 #ifdef FIONREAD | |
| 2886 /* Find out how much input is available. */ | |
| 2887 if (ioctl (0, FIONREAD, &nread) < 0) | |
| 2888 /* Formerly simply reported no input, but that sometimes led to | |
| 2889 a failure of Emacs to terminate. | |
| 2890 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
|
2891 /* ??? 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
|
2892 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
|
2893 Perhaps on systems with FIONREAD Emacs is alone in its group. */ |
| 518 | 2894 kill (getpid (), SIGHUP); |
| 2895 if (nread == 0) | |
| 2896 return 0; | |
| 2897 if (nread > sizeof cbuf) | |
| 2898 nread = sizeof cbuf; | |
| 2899 #else /* no FIONREAD */ | |
| 2900 #ifdef USG | |
| 2901 /* Read some input if available, but don't wait. */ | |
| 2902 nread = sizeof cbuf; | |
| 2903 fcntl (fileno (stdin), F_SETFL, O_NDELAY); | |
| 2904 #else | |
| 2905 you lose; | |
| 2906 #endif | |
| 2907 #endif | |
| 2908 | |
| 2909 /* Now read; for one reason or another, this will not block. */ | |
| 2910 while (1) | |
| 2911 { | |
| 2912 nread = read (fileno (stdin), cbuf, nread); | |
| 2913 #ifdef AIX | |
| 2914 /* The kernel sometimes fails to deliver SIGHUP for ptys. | |
| 2915 This looks incorrect, but it isn't, because _BSD causes | |
| 2916 O_NDELAY to be defined in fcntl.h as O_NONBLOCK, | |
| 2917 and that causes a value other than 0 when there is no input. */ | |
| 2918 if (nread == 0) | |
| 2919 kill (SIGHUP, 0); | |
| 2920 #endif | |
| 2921 /* Retry the read if it is interrupted. */ | |
| 2922 if (nread >= 0 | |
| 2923 || ! (errno == EAGAIN || errno == EFAULT | |
| 2924 #ifdef EBADSLT | |
| 2925 || errno == EBADSLT | |
| 2926 #endif | |
| 2927 )) | |
| 2928 break; | |
| 2929 } | |
| 2930 | |
| 2931 #ifndef FIONREAD | |
| 2932 #ifdef USG | |
| 2933 fcntl (fileno (stdin), F_SETFL, 0); | |
| 2934 #endif /* USG */ | |
| 2935 #endif /* no FIONREAD */ | |
| 2936 for (i = 0; i < nread; i++) | |
| 2937 { | |
| 2938 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
|
2939 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
|
2940 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
|
2941 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
|
2942 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
|
2943 cbuf[i] &= ~0x80; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
2944 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2945 XSET (buf[i].code, Lisp_Int, cbuf[i]); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2946 #ifdef MULTI_FRAME |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2947 XSET (buf[i].frame_or_window, Lisp_Frame, selected_frame); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2948 #else |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2949 buf[i].frame_or_window = Qnil; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
2950 #endif |
| 518 | 2951 } |
| 2952 } | |
| 2953 | |
| 2954 /* Scan the chars for C-g and store them in kbd_buffer. */ | |
| 2955 for (i = 0; i < nread; i++) | |
| 2956 { | |
| 2957 kbd_buffer_store_event (&buf[i]); | |
| 2958 /* Don't look at input that follows a C-g too closely. | |
| 2959 This reduces lossage due to autorepeat on C-g. */ | |
| 2960 if (buf[i].kind == ascii_keystroke | |
| 2961 && XINT(buf[i].code) == quit_char) | |
| 2962 break; | |
| 2963 } | |
| 2964 | |
| 2965 return nread; | |
| 2966 } | |
| 2967 #endif /* not VMS */ | |
| 2968 | |
| 2969 #ifdef SIGIO /* for entire page */ | |
| 2970 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
| 2971 | |
|
1119
5d315d54b8b4
* keyboard.c (kbd_buffer_get_event): When performing the
Jim Blandy <jimb@redhat.com>
parents:
1104
diff
changeset
|
2972 SIGTYPE |
| 518 | 2973 input_available_signal (signo) |
| 2974 int signo; | |
| 2975 { | |
| 2976 /* Must preserve main program's value of errno. */ | |
| 2977 int old_errno = errno; | |
| 2978 #ifdef BSD4_1 | |
| 2979 extern int select_alarmed; | |
| 2980 #endif | |
| 2981 | |
| 2982 #ifdef USG | |
| 2983 /* USG systems forget handlers when they are used; | |
| 2984 must reestablish each time */ | |
| 2985 signal (signo, input_available_signal); | |
| 2986 #endif /* USG */ | |
| 2987 | |
| 2988 #ifdef BSD4_1 | |
| 2989 sigisheld (SIGIO); | |
| 2990 #endif | |
| 2991 | |
| 648 | 2992 if (input_available_clear_time) |
| 2993 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); | |
| 518 | 2994 |
| 2995 while (1) | |
| 2996 { | |
| 2997 int nread; | |
| 2998 nread = read_avail_input (1); | |
| 2999 /* -1 means it's not ok to read the input now. | |
| 3000 UNBLOCK_INPUT will read it later; now, avoid infinite loop. | |
| 3001 0 means there was no keyboard input available. */ | |
| 3002 if (nread <= 0) | |
| 3003 break; | |
| 3004 | |
| 3005 #ifdef BSD4_1 | |
| 3006 select_alarmed = 1; /* Force the select emulator back to life */ | |
| 3007 #endif | |
| 3008 } | |
| 3009 | |
| 3010 #ifdef BSD4_1 | |
| 3011 sigfree (); | |
| 3012 #endif | |
| 3013 errno = old_errno; | |
| 3014 } | |
| 3015 #endif /* SIGIO */ | |
|
2726
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3016 |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3017 /* Send ourselves a SIGIO. |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3018 |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3019 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
|
3020 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
|
3021 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
|
3022 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
|
3023 void |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3024 reinvoke_input_signal () |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3025 { |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3026 #ifdef SIGIO |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3027 kill (0, SIGIO); |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3028 #endif |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3029 } |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3030 |
|
954251d0fbd1
* blockinput.h (UNBLOCK_INPUT): We cannot assume that SIGIO is
Jim Blandy <jimb@redhat.com>
parents:
2719
diff
changeset
|
3031 |
| 518 | 3032 |
| 3033 /* Return the prompt-string of a sparse keymap. | |
| 3034 This is the first element which is a string. | |
| 3035 Return nil if there is none. */ | |
| 3036 | |
| 3037 Lisp_Object | |
| 3038 map_prompt (map) | |
| 3039 Lisp_Object map; | |
| 3040 { | |
| 3041 while (CONSP (map)) | |
| 3042 { | |
| 3043 register Lisp_Object tem; | |
| 3044 tem = Fcar (map); | |
| 3045 if (XTYPE (tem) == Lisp_String) | |
| 3046 return tem; | |
| 3047 map = Fcdr (map); | |
| 3048 } | |
| 3049 return Qnil; | |
| 3050 } | |
| 3051 | |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3052 static Lisp_Object menu_bar_item (); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3053 static Lisp_Object menu_bar_one_keymap (); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3054 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3055 /* Return a list of menu items for a menu bar, appropriate |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3056 to the current buffer. |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3057 The elements have the form (KEY STRING . nil). */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3058 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3059 Lisp_Object |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3060 menu_bar_items () |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3061 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3062 /* 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
|
3063 keymaps we have allocated space for. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3064 int nmaps; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3065 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3066 /* 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
|
3067 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
|
3068 Lisp_Object *maps; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3069 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3070 Lisp_Object def, tem; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3071 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3072 Lisp_Object result; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3073 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3074 int mapno; |
|
3255
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3075 Lisp_Object oquit; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3076 |
|
3209
1166db56c752
* keyboard.c (menu_bar_items): Bind Qinhibit_quit to Qt while we
Jim Blandy <jimb@redhat.com>
parents:
3174
diff
changeset
|
3077 /* 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
|
3078 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
|
3079 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
|
3080 quitting while building the menus. |
|
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3081 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
|
3082 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
|
3083 oquit = Vinhibit_quit; |
|
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3084 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
|
3085 |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3086 /* Build our list of keymaps. |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3087 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
|
3088 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
|
3089 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
|
3090 the initial keymaps from the current buffer. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3091 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3092 Lisp_Object *tmaps; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3093 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3094 nmaps = current_minor_maps (0, &tmaps) + 2; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3095 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0])); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3096 bcopy (tmaps, maps, (nmaps - 2) * sizeof (maps[0])); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3097 #ifdef USE_TEXT_PROPERTIES |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3098 maps[nmaps-2] = get_local_map (PT, current_buffer); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3099 #else |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3100 maps[nmaps-2] = current_buffer->local_map; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3101 #endif |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3102 maps[nmaps-1] = global_map; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3103 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3104 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3105 /* 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
|
3106 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3107 result = Qnil; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3108 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3109 for (mapno = 0; mapno < nmaps; mapno++) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3110 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3111 if (! NILP (maps[mapno])) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3112 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1)); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3113 else |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3114 def = Qnil; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3115 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3116 tem = Fkeymapp (def); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3117 if (!NILP (tem)) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3118 result = menu_bar_one_keymap (def, result); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3119 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3120 |
|
3276
4a1d8a111149
(menu_bar_items): Call Fnreverse before restoring Vinhibit_quit.
Richard M. Stallman <rms@gnu.org>
parents:
3255
diff
changeset
|
3121 result = Fnreverse (result); |
|
3255
b04e2b131ef0
(menu_bar_items): Save Vinhibit_quit by hand
Richard M. Stallman <rms@gnu.org>
parents:
3209
diff
changeset
|
3122 Vinhibit_quit = oquit; |
|
3276
4a1d8a111149
(menu_bar_items): Call Fnreverse before restoring Vinhibit_quit.
Richard M. Stallman <rms@gnu.org>
parents:
3255
diff
changeset
|
3123 return result; |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3124 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3125 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3126 /* Scan one map KEYMAP, accumulating any menu items it defines |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3127 that have not yet been seen in RESULT. Return the updated RESULT. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3128 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3129 static Lisp_Object |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3130 menu_bar_one_keymap (keymap, result) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3131 Lisp_Object keymap, result; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3132 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3133 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
|
3134 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3135 /* Loop over all keymap entries that have menu strings. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3136 for (tail = keymap; XTYPE (tail) == Lisp_Cons; tail = XCONS (tail)->cdr) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3137 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3138 item = XCONS (tail)->car; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3139 if (XTYPE (item) == Lisp_Cons) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3140 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3141 key = XCONS (item)->car; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3142 binding = XCONS (item)->cdr; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3143 if (XTYPE (binding) == Lisp_Cons) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3144 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3145 item_string = XCONS (binding)->car; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3146 if (XTYPE (item_string) == Lisp_String) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3147 result = menu_bar_item (key, item_string, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3148 Fcdr (binding), result); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3149 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3150 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3151 else if (XTYPE (item) == Lisp_Vector) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3152 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3153 /* 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
|
3154 int len = XVECTOR (item)->size; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3155 int c; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3156 for (c = 0; c < len; c++) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3157 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3158 Lisp_Object character; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3159 XFASTINT (character) = c; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3160 binding = XVECTOR (item)->contents[c]; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3161 if (XTYPE (binding) == Lisp_Cons) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3162 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3163 item_string = XCONS (binding)->car; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3164 if (XTYPE (item_string) == Lisp_String) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3165 result = menu_bar_item (key, item_string, |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3166 Fcdr (binding), result); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3167 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3168 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3169 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3170 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3171 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3172 return result; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3173 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3174 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3175 static Lisp_Object |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3176 menu_bar_item (key, item_string, def, result) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3177 Lisp_Object key, item_string, def, result; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3178 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3179 Lisp_Object tem, elt; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3180 Lisp_Object enabled; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3181 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3182 /* See if this entry is enabled. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3183 enabled = Qt; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3184 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3185 if (XTYPE (def) == Lisp_Symbol) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3186 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3187 /* No property, or nil, means enable. |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3188 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
|
3189 tem = Fget (def, Qmenu_enable); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3190 if (!NILP (tem)) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3191 enabled = Feval (tem); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3192 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3193 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3194 /* Add an entry for this key and string |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3195 if there is none yet. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3196 elt = Fassq (key, result); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3197 if (!NILP (enabled) && NILP (elt)) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3198 result = Fcons (Fcons (key, Fcons (item_string, Qnil)), result); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3199 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3200 return result; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3201 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3202 |
| 518 | 3203 static int echo_flag; |
| 3204 static int echo_now; | |
| 3205 | |
| 3206 /* Read a character like read_char but optionally prompt based on maps | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3207 in the array MAPS. NMAPS is the length of MAPS. Return nil if we |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3208 decided not to read a character, because there are no menu items in |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3209 MAPS. |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3210 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3211 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
|
3212 the first event of a key sequence. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3213 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
3214 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1 |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
3215 if we used a mouse menu to read the input, or zero otherwise. If |
|
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
3216 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone. |
| 518 | 3217 |
| 3218 The prompting is done based on the prompt-string of the map | |
| 3219 and the strings associated with various map elements. */ | |
| 3220 | |
| 3221 Lisp_Object | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3222 read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3223 int nmaps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3224 Lisp_Object *maps; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3225 Lisp_Object prev_event; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3226 int *used_mouse_menu; |
| 518 | 3227 { |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3228 int mapno; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3229 register Lisp_Object name; |
| 518 | 3230 int nlength; |
| 765 | 3231 int width = FRAME_WIDTH (selected_frame) - 4; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3232 char *menu = (char *) alloca (width + 4); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3233 int idx = -1; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3234 Lisp_Object rest, vector; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3235 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
3236 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
|
3237 *used_mouse_menu = 0; |
| 518 | 3238 |
| 3239 /* Use local over global Menu maps */ | |
| 3240 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3241 if (! menu_prompting) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3242 return Qnil; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3243 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3244 /* 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
|
3245 for (mapno = 0; mapno < nmaps; mapno++) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3246 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3247 name = map_prompt (maps[mapno]); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3248 if (!NILP (name)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3249 break; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3250 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3251 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3252 /* 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
|
3253 if (mapno >= nmaps) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3254 return Qnil; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3255 |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3256 #ifdef HAVE_X_WINDOWS |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3257 #ifdef HAVE_X_MENU |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3258 /* 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
|
3259 use a real menu for mouse selection. */ |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3260 if (EVENT_HAS_PARAMETERS (prev_event)) |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3261 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3262 /* Display the menu and get the selection. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3263 Lisp_Object *realmaps |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3264 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object)); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3265 Lisp_Object value; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3266 int nmaps1 = 0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3267 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3268 /* Use the maps that are not nil. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3269 for (mapno = 0; mapno < nmaps; mapno++) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3270 if (!NILP (maps[mapno])) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3271 realmaps[nmaps1++] = maps[mapno]; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3272 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3273 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
|
3274 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
|
3275 { |
|
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
3276 /* 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
|
3277 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
|
3278 Return just the first event now. */ |
|
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
3279 unread_command_events |
|
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
3280 = nconc2 (XCONS (value)->cdr, unread_command_events); |
|
340d7c6c8790
* keyboard.c (read_char): Exit kbd macro if Vexecuting_macro is t.
Jim Blandy <jimb@redhat.com>
parents:
2690
diff
changeset
|
3281 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
|
3282 } |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3283 if (NILP (value)) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3284 XSET (value, Lisp_Int, quit_char); |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
3285 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
|
3286 *used_mouse_menu = 1; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3287 return value; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3288 } |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3289 #endif /* HAVE_X_MENU */ |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
3290 #endif /* HAVE_X_WINDOWS */ |
| 518 | 3291 |
| 3292 /* Prompt string always starts with map's prompt, and a space. */ | |
| 3293 strcpy (menu, XSTRING (name)->data); | |
| 3294 nlength = XSTRING (name)->size; | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3295 menu[nlength++] = ':'; |
| 518 | 3296 menu[nlength++] = ' '; |
| 3297 menu[nlength] = 0; | |
| 3298 | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3299 /* Start prompting at start of first map. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3300 mapno = 0; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3301 rest = maps[mapno]; |
| 518 | 3302 |
| 3303 /* Present the documented bindings, a line at a time. */ | |
| 3304 while (1) | |
| 3305 { | |
| 3306 int notfirst = 0; | |
| 3307 int i = nlength; | |
| 3308 Lisp_Object obj; | |
| 3309 int ch; | |
| 3310 | |
| 3311 /* Loop over elements of map. */ | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3312 while (i < width) |
| 518 | 3313 { |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3314 Lisp_Object s, elt; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3315 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3316 /* 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
|
3317 if (NILP (rest)) |
| 518 | 3318 { |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3319 mapno++; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3320 /* 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
|
3321 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
|
3322 if (mapno == nmaps) |
| 518 | 3323 { |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3324 if (notfirst) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3325 break; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3326 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3327 mapno = 0; |
| 518 | 3328 } |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3329 rest = maps[mapno]; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3330 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3331 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3332 /* Look at the next element of the map. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3333 if (idx >= 0) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3334 elt = XVECTOR (vector)->contents[idx]; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3335 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3336 elt = Fcar_safe (rest); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3337 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3338 if (idx < 0 && XTYPE (elt) == Lisp_Vector) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3339 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3340 /* 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
|
3341 advanced past it, but start scanning its contents. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3342 rest = Fcdr_safe (rest); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3343 vector = elt; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3344 idx = 0; |
| 518 | 3345 } |
| 3346 else | |
| 3347 { | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3348 /* An ordinary element. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3349 s = Fcar_safe (Fcdr_safe (elt)); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3350 if (XTYPE (s) != Lisp_String) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3351 /* Ignore the element if it has no prompt string. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3352 ; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3353 /* If we have room for the prompt string, add it to this line. |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3354 If this is the first on the line, always add it. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3355 else if (XSTRING (s)->size + i < width |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3356 || !notfirst) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3357 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3358 int thiswidth; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3359 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3360 /* Punctuate between strings. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3361 if (notfirst) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3362 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3363 strcpy (menu + i, ", "); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3364 i += 2; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3365 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3366 notfirst = 1; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3367 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3368 /* Add as much of string as fits. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3369 thiswidth = XSTRING (s)->size; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3370 if (thiswidth + i > width) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3371 thiswidth = width - i; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3372 bcopy (XSTRING (s)->data, menu + i, thiswidth); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3373 i += thiswidth; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3374 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3375 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3376 { |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3377 /* If this element does not fit, end the line now, |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3378 and save the element for the next line. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3379 strcpy (menu + i, "..."); |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3380 break; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3381 } |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3382 |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3383 /* Move past this element. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3384 if (idx >= 0 && idx + 1 >= XVECTOR (rest)->size) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3385 /* Handle reaching end of dense table. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3386 idx = -1; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3387 if (idx >= 0) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3388 idx++; |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3389 else |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3390 rest = Fcdr_safe (rest); |
| 518 | 3391 } |
| 3392 } | |
| 3393 | |
| 3394 /* Prompt with that and read response. */ | |
| 3395 message1 (menu); | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3396 obj = read_char (1, 0, 0, Qnil, 0); |
| 518 | 3397 |
| 3398 if (XTYPE (obj) != Lisp_Int) | |
| 3399 return obj; | |
| 3400 else | |
| 3401 ch = XINT (obj); | |
| 3402 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3403 if (! EQ (obj, menu_prompt_more_char) |
| 518 | 3404 && (XTYPE (menu_prompt_more_char) != Lisp_Int |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3405 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char)))))) |
| 518 | 3406 return obj; |
| 3407 } | |
| 3408 } | |
| 3409 | |
| 3410 /* Reading key sequences. */ | |
| 3411 | |
| 3412 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings | |
| 3413 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a | |
| 3414 keymap, or nil otherwise. Return the index of the first keymap in | |
| 3415 which KEY has any binding, or NMAPS if no map has a binding. | |
| 3416 | |
| 3417 If KEY is a meta ASCII character, treat it like meta-prefix-char | |
| 3418 followed by the corresponding non-meta character. Keymaps in | |
| 3419 CURRENT with non-prefix bindings for meta-prefix-char become nil in | |
| 3420 NEXT. | |
| 3421 | |
| 3422 When KEY is not defined in any of the keymaps, if it is an upper | |
| 3423 case letter and there are bindings for the corresponding lower-case | |
| 3424 letter, return the bindings for the lower-case letter. | |
| 3425 | |
|
1310
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3426 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
|
3427 unmodified. |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
3428 |
| 518 | 3429 NEXT may == CURRENT. */ |
| 3430 | |
| 3431 static int | |
| 3432 follow_key (key, nmaps, current, defs, next) | |
| 3433 Lisp_Object key; | |
| 3434 Lisp_Object *current, *defs, *next; | |
| 3435 int nmaps; | |
| 3436 { | |
| 3437 int i, first_binding; | |
| 3438 | |
| 3439 /* If KEY is a meta ASCII character, treat it like meta-prefix-char | |
| 3440 followed by the corresponding non-meta character. */ | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3441 if (XTYPE (key) == Lisp_Int && (XINT (key) & CHAR_META)) |
| 518 | 3442 { |
| 3443 for (i = 0; i < nmaps; i++) | |
| 3444 if (! NILP (current[i])) | |
| 3445 { | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3446 next[i] = |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3447 get_keyelt (access_keymap (current[i], meta_prefix_char, 1)); |
| 518 | 3448 |
| 3449 /* Note that since we pass the resulting bindings through | |
| 3450 get_keymap_1, non-prefix bindings for meta-prefix-char | |
| 3451 disappear. */ | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3452 next[i] = get_keymap_1 (next[i], 0, 1); |
| 518 | 3453 } |
| 3454 else | |
| 3455 next[i] = Qnil; | |
| 3456 | |
| 3457 current = next; | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3458 XSET (key, Lisp_Int, XFASTINT (key) & ~CHAR_META); |
| 518 | 3459 } |
| 3460 | |
| 3461 first_binding = nmaps; | |
| 3462 for (i = nmaps - 1; i >= 0; i--) | |
| 3463 { | |
| 3464 if (! NILP (current[i])) | |
| 3465 { | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3466 defs[i] = get_keyelt (access_keymap (current[i], key, 1)); |
| 518 | 3467 if (! NILP (defs[i])) |
| 3468 first_binding = i; | |
| 3469 } | |
| 3470 else | |
| 3471 defs[i] = Qnil; | |
| 3472 } | |
| 3473 | |
| 3474 /* When KEY is not defined in any of the keymaps, if it is an upper | |
| 3475 case letter and there are bindings for the corresponding | |
| 3476 lower-case letter, return the bindings for the lower-case letter. */ | |
| 3477 if (first_binding == nmaps | |
| 3478 && XTYPE (key) == Lisp_Int | |
|
2892
7ff263825550
(follow_key): Check char in range before UPPERCASEP.
Richard M. Stallman <rms@gnu.org>
parents:
2868
diff
changeset
|
3479 && ((((XINT (key) & 0x3ffff) |
|
7ff263825550
(follow_key): Check char in range before UPPERCASEP.
Richard M. Stallman <rms@gnu.org>
parents:
2868
diff
changeset
|
3480 < XSTRING (current_buffer->downcase_table)->size) |
|
7ff263825550
(follow_key): Check char in range before UPPERCASEP.
Richard M. Stallman <rms@gnu.org>
parents:
2868
diff
changeset
|
3481 && UPPERCASEP (XINT (key) & 0x3ffff)) |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3482 || (XINT (key) & shift_modifier))) |
| 518 | 3483 { |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3484 if (XINT (key) & shift_modifier) |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3485 XSETINT (key, XINT (key) & ~shift_modifier); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3486 else |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3487 XSETINT (key, DOWNCASE (XINT (key))); |
| 518 | 3488 |
| 3489 first_binding = nmaps; | |
| 3490 for (i = nmaps - 1; i >= 0; i--) | |
| 3491 { | |
| 3492 if (! NILP (current[i])) | |
| 3493 { | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3494 defs[i] = get_keyelt (access_keymap (current[i], key, 1)); |
| 518 | 3495 if (! NILP (defs[i])) |
| 3496 first_binding = i; | |
| 3497 } | |
| 3498 else | |
| 3499 defs[i] = Qnil; | |
| 3500 } | |
| 3501 } | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3502 |
| 518 | 3503 /* 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
|
3504 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
|
3505 for (i = 0; i < nmaps; i++) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3506 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1); |
| 518 | 3507 |
| 3508 return first_binding; | |
| 3509 } | |
| 3510 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3511 /* Read a sequence of keys that ends with a non prefix character, |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3512 storing it in KEYBUF, a buffer of size BUFSIZE. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3513 Prompt with PROMPT. |
| 518 | 3514 Return the length of the key sequence stored. |
| 3515 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3516 Echo starting immediately unless `prompt' is 0. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3517 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3518 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
|
3519 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
|
3520 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
|
3521 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3522 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
|
3523 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
|
3524 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
|
3525 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
|
3526 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3527 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3528 events into similar click events, if that would make them bound. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3529 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3530 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
|
3531 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
|
3532 symbol denoting that area - `mode-line', `vertical-line', or |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3533 whatever. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3534 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3535 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
|
3536 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
|
3537 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3538 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
|
3539 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
|
3540 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
|
3541 |
| 518 | 3542 static int |
| 3543 read_key_sequence (keybuf, bufsize, prompt) | |
| 3544 Lisp_Object *keybuf; | |
| 3545 int bufsize; | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3546 char *prompt; |
| 518 | 3547 { |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3548 int count = specpdl_ptr - specpdl; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3549 |
| 518 | 3550 /* How many keys there are in the current key sequence. */ |
| 3551 int t; | |
| 3552 | |
| 3553 /* The length of the echo buffer when we started reading, and | |
| 3554 the length of this_command_keys when we started reading. */ | |
| 3555 int echo_start; | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3556 int keys_start; |
| 518 | 3557 |
| 3558 /* The number of keymaps we're scanning right now, and the number of | |
| 3559 keymaps we have allocated space for. */ | |
| 3560 int nmaps; | |
| 3561 int nmaps_allocated = 0; | |
| 3562 | |
| 3563 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in | |
| 3564 the current keymaps. */ | |
| 3565 Lisp_Object *defs; | |
| 3566 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3567 /* 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
|
3568 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
|
3569 Lisp_Object *submaps; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3570 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3571 /* 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
|
3572 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
|
3573 defs[i] is non-nil. */ |
| 518 | 3574 int first_binding; |
| 3575 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3576 /* If t < mock_input, then KEYBUF[t] should be read as the next |
| 899 | 3577 input key. |
| 3578 | |
| 3579 We use this to recover after recognizing a function key. Once we | |
| 3580 realize that a suffix of the current key sequence is actually a | |
| 3581 function key's escape sequence, we replace the suffix with the | |
| 3582 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
|
3583 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
|
3584 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
|
3585 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
|
3586 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
|
3587 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
|
3588 reading characters from the keyboard. */ |
| 518 | 3589 int mock_input = 0; |
| 3590 | |
| 899 | 3591 /* If the sequence is unbound in submaps[], then |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3592 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
|
3593 and fkey_map is its binding. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3594 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3595 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
|
3596 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
|
3597 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
|
3598 key's again in Vfunction_key_map. */ |
| 518 | 3599 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
|
3600 Lisp_Object fkey_map; |
| 518 | 3601 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3602 /* 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
|
3603 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
|
3604 Lisp_Object delayed_switch_frame; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3605 |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3606 Lisp_Object first_event; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3607 |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3608 int junk; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3609 |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3610 last_nonmenu_event = Qnil; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3611 |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3612 delayed_switch_frame = Qnil; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3613 fkey_map = Vfunction_key_map; |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3614 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3615 /* If there is no function key map, turn off function key scanning. */ |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3616 if (NILP (Fkeymapp (Vfunction_key_map))) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3617 fkey_start = fkey_end = bufsize + 1; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3618 |
| 518 | 3619 if (INTERACTIVE) |
| 3620 { | |
| 3621 if (prompt) | |
| 3622 echo_prompt (prompt); | |
| 3623 else if (cursor_in_echo_area) | |
| 3624 /* This doesn't put in a dash if the echo buffer is empty, so | |
| 3625 you don't always see a dash hanging out in the minibuffer. */ | |
| 3626 echo_dash (); | |
| 3627 } | |
| 3628 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3629 /* 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
|
3630 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
|
3631 if (INTERACTIVE) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3632 echo_start = echo_length (); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3633 keys_start = this_command_key_count; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3634 |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3635 /* 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
|
3636 up any keymaps, in case a filter runs and switches buffers on us. */ |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3637 first_event = read_char (!prompt, 0, submaps, last_nonmenu_event, |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3638 &junk); |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3639 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3640 /* 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
|
3641 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
|
3642 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
|
3643 replay_sequence: |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3644 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3645 /* Build our list of keymaps. |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
3646 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
|
3647 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
|
3648 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
|
3649 the initial keymaps from the current buffer. */ |
| 518 | 3650 { |
| 3651 Lisp_Object *maps; | |
| 3652 | |
| 3653 nmaps = current_minor_maps (0, &maps) + 2; | |
| 3654 if (nmaps > nmaps_allocated) | |
| 3655 { | |
| 899 | 3656 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0])); |
| 518 | 3657 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0])); |
| 3658 nmaps_allocated = nmaps; | |
| 3659 } | |
| 899 | 3660 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0])); |
| 2061 | 3661 #ifdef USE_TEXT_PROPERTIES |
| 3662 submaps[nmaps-2] = get_local_map (PT, current_buffer); | |
| 3663 #else | |
| 3664 submaps[nmaps-2] = current_buffer->local_map; | |
| 3665 #endif | |
| 899 | 3666 submaps[nmaps-1] = global_map; |
| 518 | 3667 } |
| 3668 | |
| 3669 /* Find an accurate initial value for first_binding. */ | |
| 3670 for (first_binding = 0; first_binding < nmaps; first_binding++) | |
| 899 | 3671 if (! NILP (submaps[first_binding])) |
| 518 | 3672 break; |
| 3673 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3674 /* We jump here when a function key substitution has forced us to |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3675 reprocess the current key sequence. keybuf[0..mock_input] is the |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3676 sequence we want to reread. */ |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3677 t = 0; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3678 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3679 /* 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
|
3680 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
|
3681 this_command_key_count = keys_start; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3682 if (INTERACTIVE) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3683 echo_truncate (echo_start); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3684 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3685 /* If the best binding for the current key sequence is a keymap, |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3686 or we may be looking at a function key's escape sequence, keep |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3687 on reading. */ |
| 899 | 3688 while ((first_binding < nmaps && ! NILP (submaps[first_binding])) |
| 518 | 3689 || (first_binding >= nmaps && fkey_start < t)) |
| 3690 { | |
| 3691 Lisp_Object key; | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3692 int used_mouse_menu = 0; |
| 518 | 3693 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3694 /* 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
|
3695 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
|
3696 (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
|
3697 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
|
3698 of keybuf. */ |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3699 int last_real_key_start; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3700 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3701 /* 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
|
3702 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
|
3703 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
|
3704 just one key. */ |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3705 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
|
3706 |
| 518 | 3707 if (t >= bufsize) |
| 3708 error ("key sequence too long"); | |
| 3709 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3710 if (INTERACTIVE) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3711 echo_local_start = echo_length (); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3712 keys_local_start = this_command_key_count; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3713 local_first_binding = first_binding; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3714 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3715 replay_key: |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3716 /* 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
|
3717 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
|
3718 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
|
3719 loop. */ |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3720 if (INTERACTIVE) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3721 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
|
3722 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
|
3723 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
|
3724 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3725 /* Does mock_input indicate that we are re-reading a key sequence? */ |
| 518 | 3726 if (t < mock_input) |
| 3727 { | |
| 3728 key = keybuf[t]; | |
| 3729 add_command_key (key); | |
| 3730 echo_char (key); | |
| 3731 } | |
| 899 | 3732 |
| 3733 /* If not, we should actually read a character. */ | |
| 518 | 3734 else |
| 3735 { | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3736 last_real_key_start = t; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3737 |
|
3294
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3738 if (! NILP (first_event)) |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3739 { |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3740 key = first_event; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3741 first_event = Qnil; |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3742 } |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3743 else |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3744 key = read_char (!prompt, nmaps, submaps, last_nonmenu_event, |
|
4a10e4c34b11
(read_key_sequence): Read the first char specially
Richard M. Stallman <rms@gnu.org>
parents:
3276
diff
changeset
|
3745 &used_mouse_menu); |
| 518 | 3746 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3747 /* read_char returns -1 at the end of a macro. |
| 518 | 3748 Emacs 18 handles this by returning immediately with a |
| 3749 zero, so that's what we'll do. */ | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
3750 if (XTYPE (key) == Lisp_Int && XINT (key) == -1) |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3751 { |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3752 t = 0; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3753 goto done; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3754 } |
| 518 | 3755 |
| 3756 Vquit_flag = Qnil; | |
| 3757 | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3758 /* Clicks in non-text areas get prefixed by the symbol |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3759 in their CHAR-ADDRESS field. For example, a click on |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3760 the mode line is prefixed by the symbol `mode-line'. |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3761 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3762 Furthermore, key sequences beginning with mouse clicks |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3763 are read using the keymaps of the buffer clicked on, not |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3764 the current buffer. So we may have to switch the buffer |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3765 here. */ |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3766 if (EVENT_HAS_PARAMETERS (key)) |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3767 { |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3768 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (key)); |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3769 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3770 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
|
3771 { |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3772 Lisp_Object window = POSN_WINDOW (EVENT_START (key)); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3773 Lisp_Object posn = POSN_BUFFER_POSN (EVENT_START (key)); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3774 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3775 /* Key sequences beginning with mouse clicks are |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3776 read using the keymaps in the buffer clicked on, |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3777 not the current buffer. If we're at the |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3778 beginning of a key sequence, switch buffers. */ |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3779 if (t == 0 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3780 && XTYPE (window) == Lisp_Window |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3781 && XTYPE (XWINDOW (window)->buffer) == Lisp_Buffer |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3782 && XBUFFER (XWINDOW (window)->buffer) != current_buffer) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3783 { |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3784 if (XTYPE (posn) == Lisp_Symbol) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3785 { |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3786 if (t + 1 >= bufsize) |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3787 error ("key sequence too long"); |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3788 keybuf[t] = posn; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3789 keybuf[t+1] = key; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3790 mock_input = t + 2; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3791 } |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3792 else |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3793 { |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3794 keybuf[t] = key; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3795 mock_input = t + 1; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3796 } |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3797 |
|
2868
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3798 /* Arrange to go back to the original buffer once we're |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3799 done reading the key sequence. Note that we can't |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3800 use save_excursion_{save,restore} here, because they |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3801 save point as well as the current buffer; we don't |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3802 want to save point, because redisplay may change it, |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3803 to accomodate a Fset_window_start or something. We |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3804 don't want to do this at the top of the function, |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3805 because we may get input from a subprocess which |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3806 wants to change the selected window and stuff (say, |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3807 emacsclient). */ |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3808 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); |
|
998ec1083f3d
* keyboard.c (read_key_sequence): Don't lay down an unwind_protect
Jim Blandy <jimb@redhat.com>
parents:
2867
diff
changeset
|
3809 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3810 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer)); |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
3811 goto replay_sequence; |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3812 } |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3813 else if (XTYPE (posn) == Lisp_Symbol) |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3814 { |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3815 if (t + 1 >= bufsize) |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3816 error ("key sequence too long"); |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3817 keybuf[t] = posn; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3818 keybuf[t+1] = key; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3819 mock_input = t + 2; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3820 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3821 goto replay_key; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3822 } |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3823 } |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3824 else if (EQ (kind, Qswitch_frame)) |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3825 { |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3826 /* If we're at the beginning of a key sequence, go |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3827 ahead and return this event. If we're in the |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3828 midst of a key sequence, delay it until the end. */ |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3829 if (t > 0) |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3830 { |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3831 delayed_switch_frame = key; |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3832 goto replay_key; |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
3833 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3834 } |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3835 else |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3836 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3837 Lisp_Object posn = POSN_BUFFER_POSN (EVENT_START (key)); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3838 |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3839 /* Handle menu-bar events: |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3840 insert the dummy prefix char `menu-bar'. */ |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3841 if (EQ (posn, Qmenu_bar)) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3842 { |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3843 if (t + 1 >= bufsize) |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3844 error ("key sequence too long"); |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
3845 /* Run the Lucid hook. */ |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
3846 call1 (Vrun_hooks, Qactivate_menubar_hook); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
3847 /* 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
|
3848 really recompute the menubar from the value. */ |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
3849 if (! NILP (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
|
3850 call0 (Qrecompute_lucid_menubar); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3851 keybuf[t] = posn; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3852 keybuf[t+1] = key; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3853 mock_input = t + 2; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3854 goto replay_sequence; |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3855 } |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
3856 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3857 } |
| 518 | 3858 } |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3859 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3860 /* 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
|
3861 to look up. */ |
| 518 | 3862 first_binding = (follow_key (key, |
| 3863 nmaps - first_binding, | |
| 899 | 3864 submaps + first_binding, |
| 518 | 3865 defs + first_binding, |
| 899 | 3866 submaps + first_binding) |
| 518 | 3867 + first_binding); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3868 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3869 /* 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
|
3870 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
|
3871 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3872 Lisp_Object head = EVENT_HEAD (key); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3873 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3874 if (XTYPE (head) == Lisp_Symbol) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3875 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3876 Lisp_Object breakdown = parse_modifiers (head); |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
3877 int modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car); |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3878 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3879 /* We drop unbound `down-' events altogether. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3880 if (modifiers & down_modifier) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3881 { |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3882 /* Dispose of this event by simply jumping back to |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3883 replay_key, to get another event. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3884 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3885 Note that if this event came from mock input, |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3886 then just jumping back to replay_key will just |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3887 hand it to us again. So we have to wipe out any |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3888 mock input. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3889 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3890 We could delete keybuf[t] and shift everything |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3891 after that to the left by one spot, but we'd also |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3892 have to fix up any variable that points into |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3893 keybuf, and shifting isn't really necessary |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3894 anyway. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3895 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3896 Adding prefixes for non-textual mouse clicks |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3897 creates two characters of mock input, and both |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3898 must be thrown away. If we're only looking at |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3899 the prefix now, we can just jump back to |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3900 replay_key. On the other hand, if we've already |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3901 processed the prefix, and now the actual click |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3902 itself is giving us trouble, then we've lost the |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3903 state of the keymaps we want to backtrack to, and |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3904 we need to replay the whole sequence to rebuild |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3905 it. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3906 |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3907 Beyond that, only function key expansion could |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3908 create more than two keys, but that should never |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3909 generate mouse events, so it's okay to zero |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3910 mock_input in that case too. |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3911 |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3912 Isn't this just the most wonderful code ever? */ |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3913 if (t == last_real_key_start) |
|
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 mock_input = 0; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3916 goto replay_key; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3917 } |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3918 else |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3919 { |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3920 mock_input = last_real_key_start; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3921 goto replay_sequence; |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
3922 } |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3923 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3924 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3925 /* We turn unbound `drag-' events into `click-' |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3926 events, if the click would be bound. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3927 else if (modifiers & drag_modifier) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3928 { |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3929 Lisp_Object new_head = |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3930 apply_modifiers (modifiers & ~drag_modifier, |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3931 XCONS (breakdown)->car); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3932 Lisp_Object new_click = |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3933 Fcons (new_head, Fcons (EVENT_START (key), Qnil)); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3934 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3935 /* Look for a binding for this new key. follow_key |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3936 promises that it didn't munge submaps the |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3937 last time we called it, since key was unbound. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3938 first_binding = |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3939 (follow_key (new_click, |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3940 nmaps - local_first_binding, |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3941 submaps + local_first_binding, |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3942 defs + local_first_binding, |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3943 submaps + local_first_binding) |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3944 + local_first_binding); |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3945 |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3946 /* If that click is bound, go for it. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3947 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
|
3948 key = new_click; |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3949 /* Otherwise, we'll leave key set to the drag event. */ |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3950 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3951 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3952 } |
|
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
3953 |
| 518 | 3954 keybuf[t++] = key; |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3955 /* 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
|
3956 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
|
3957 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
|
3958 event that preceded the first level of menu. */ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3959 if (!used_mouse_menu) |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3960 last_nonmenu_event = key; |
| 518 | 3961 |
| 3962 /* If the sequence is unbound, see if we can hang a function key | |
| 899 | 3963 off the end of it. We only want to scan real keyboard input |
| 3964 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
|
3965 re-reading old events, don't examine it. */ |
| 518 | 3966 if (first_binding >= nmaps |
| 899 | 3967 && t >= mock_input) |
| 518 | 3968 { |
| 3969 Lisp_Object fkey_next; | |
| 3970 | |
| 3971 /* Scan from fkey_end until we find a bound suffix. */ | |
| 3972 while (fkey_end < t) | |
| 3973 { | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3974 Lisp_Object key; |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3975 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3976 key = keybuf[fkey_end++]; |
| 853 | 3977 /* Look up meta-characters by prefixing them |
| 3978 with meta_prefix_char. I hate this. */ | |
| 2056 | 3979 if (XTYPE (key) == Lisp_Int && XINT (key) & meta_modifier) |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3980 { |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3981 fkey_next = |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3982 get_keymap_1 |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3983 (get_keyelt |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3984 (access_keymap |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3985 (fkey_map, meta_prefix_char, 1)), |
|
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3986 0, 1); |
| 2056 | 3987 XFASTINT (key) = XFASTINT (key) & ~meta_modifier; |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3988 } |
| 853 | 3989 else |
| 3990 fkey_next = fkey_map; | |
| 3991 | |
| 518 | 3992 fkey_next = |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
3993 get_keyelt (access_keymap (fkey_next, key, 1)); |
|
939
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
3994 |
|
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
3995 /* If keybuf[fkey_start..fkey_end] is bound in the |
| 547 | 3996 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
|
3997 sequence (i.e. fkey_end == t), replace it with |
| 547 | 3998 the binding and restart with fkey_start at the end. */ |
| 518 | 3999 if (XTYPE (fkey_next) == Lisp_Vector |
| 4000 && fkey_end == t) | |
| 4001 { | |
| 4002 t = fkey_start + XVECTOR (fkey_next)->size; | |
| 4003 if (t >= bufsize) | |
| 4004 error ("key sequence too long"); | |
| 4005 | |
| 4006 bcopy (XVECTOR (fkey_next)->contents, | |
| 4007 keybuf + fkey_start, | |
| 4008 (t - fkey_start) * sizeof (keybuf[0])); | |
| 4009 | |
| 4010 mock_input = t; | |
| 4011 fkey_start = fkey_end = t; | |
| 4012 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4013 goto replay_sequence; |
| 518 | 4014 } |
| 4015 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4016 fkey_map = get_keymap_1 (fkey_next, 0, 1); |
| 518 | 4017 |
| 547 | 4018 /* If we no longer have a bound suffix, try a new positions for |
| 4019 fkey_start. */ | |
| 518 | 4020 if (NILP (fkey_map)) |
| 4021 { | |
| 4022 fkey_end = ++fkey_start; | |
| 4023 fkey_map = Vfunction_key_map; | |
| 4024 } | |
| 4025 } | |
| 4026 } | |
| 4027 } | |
| 4028 | |
| 4029 read_key_sequence_cmd = (first_binding < nmaps | |
| 4030 ? defs[first_binding] | |
| 4031 : Qnil); | |
| 4032 | |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4033 done: |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4034 unread_switch_frame = delayed_switch_frame; |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4035 unbind_to (count, Qnil); |
| 518 | 4036 return t; |
| 4037 } | |
| 4038 | |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
4039 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0, |
| 518 | 4040 "Read a sequence of keystrokes and return as a string or vector.\n\ |
| 4041 The sequence is sufficient to specify a non-prefix command in the\n\ | |
| 4042 current local and global maps.\n\ | |
| 4043 \n\ | |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
4044 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
|
4045 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
|
4046 as a continuation of the previous key.\n\ |
| 518 | 4047 \n\ |
|
1921
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4048 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
|
4049 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
|
4050 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4051 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
|
4052 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
|
4053 of the selected window as normal.\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4054 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4055 `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
|
4056 only care about the click or drag events which follow them. If a drag\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4057 event is unbound, but the corresponding click event would be bound,\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4058 `read-key-sequence' turns the drag event into a click event at the\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4059 drag's starting position. This means that you don't have to distinguish\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4060 between click and drag events unless you want to.\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4061 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4062 `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
|
4063 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
|
4064 `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
|
4065 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4066 If the user switches frames in the middle of a key sequence, the\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4067 frame-switch event is put off until after the current key sequence.\n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4068 \n\ |
|
06ecd9e51ca0
* keyboard.c (init_keyboard): Recognize HAVE_TERMIOS as well as
Jim Blandy <jimb@redhat.com>
parents:
1895
diff
changeset
|
4069 `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
|
4070 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
|
4071 `function-key-map' for more details.") |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
4072 (prompt, continue_echo) |
|
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
4073 Lisp_Object prompt, continue_echo; |
| 518 | 4074 { |
| 4075 Lisp_Object keybuf[30]; | |
| 4076 register int i; | |
| 4077 struct gcpro gcpro1, gcpro2; | |
| 4078 | |
| 4079 if (!NILP (prompt)) | |
| 4080 CHECK_STRING (prompt, 0); | |
| 4081 QUIT; | |
| 4082 | |
| 4083 bzero (keybuf, sizeof keybuf); | |
| 4084 GCPRO1 (keybuf[0]); | |
| 4085 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0])); | |
| 4086 | |
| 727 | 4087 if (NILP (continue_echo)) |
|
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
4088 this_command_key_count = 0; |
|
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
4089 |
| 518 | 4090 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])), |
|
1515
8cc7bc81d2aa
* keyboard.c: #include dispextern.h.
Jim Blandy <jimb@redhat.com>
parents:
1449
diff
changeset
|
4091 NILP (prompt) ? 0 : XSTRING (prompt)->data); |
| 518 | 4092 |
| 4093 UNGCPRO; | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4094 return make_event_array (i, keybuf); |
| 518 | 4095 } |
| 4096 | |
| 4097 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0, | |
| 4098 "Execute CMD as an editor command.\n\ | |
| 4099 CMD must be a symbol that satisfies the `commandp' predicate.\n\ | |
| 4100 Optional second arg RECORD-FLAG non-nil\n\ | |
| 4101 means unconditionally put this command in `command-history'.\n\ | |
| 4102 Otherwise, that is done only if an arg is read using the minibuffer.") | |
| 4103 (cmd, record) | |
| 4104 Lisp_Object cmd, record; | |
| 4105 { | |
| 4106 register Lisp_Object final; | |
| 4107 register Lisp_Object tem; | |
| 4108 Lisp_Object prefixarg; | |
| 4109 struct backtrace backtrace; | |
| 4110 extern int debug_on_next_call; | |
| 4111 | |
| 4112 prefixarg = Vprefix_arg, Vprefix_arg = Qnil; | |
| 4113 Vcurrent_prefix_arg = prefixarg; | |
| 4114 debug_on_next_call = 0; | |
| 4115 | |
| 4116 if (XTYPE (cmd) == Lisp_Symbol) | |
| 4117 { | |
| 4118 tem = Fget (cmd, Qdisabled); | |
| 4119 if (!NILP (tem)) | |
| 4120 return call1 (Vrun_hooks, Vdisabled_command_hook); | |
| 4121 } | |
| 4122 | |
| 4123 while (1) | |
| 4124 { | |
| 648 | 4125 final = Findirect_function (cmd); |
| 518 | 4126 |
| 4127 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload))) | |
| 4128 do_autoload (final, cmd); | |
| 4129 else | |
| 4130 break; | |
| 4131 } | |
| 4132 | |
| 4133 if (XTYPE (final) == Lisp_String | |
| 4134 || XTYPE (final) == Lisp_Vector) | |
| 4135 { | |
| 4136 /* If requested, place the macro in the command history. For | |
| 4137 other sorts of commands, call-interactively takes care of | |
| 4138 this. */ | |
| 4139 if (!NILP (record)) | |
| 4140 Vcommand_history | |
| 4141 = Fcons (Fcons (Qexecute_kbd_macro, | |
| 4142 Fcons (final, Fcons (prefixarg, Qnil))), | |
| 4143 Vcommand_history); | |
| 4144 | |
| 4145 return Fexecute_kbd_macro (final, prefixarg); | |
| 4146 } | |
| 4147 if (CONSP (final) || XTYPE (final) == Lisp_Subr | |
| 4148 || XTYPE (final) == Lisp_Compiled) | |
| 4149 { | |
| 4150 backtrace.next = backtrace_list; | |
| 4151 backtrace_list = &backtrace; | |
| 4152 backtrace.function = &Qcall_interactively; | |
| 4153 backtrace.args = &cmd; | |
| 4154 backtrace.nargs = 1; | |
| 4155 backtrace.evalargs = 0; | |
| 4156 | |
| 4157 tem = Fcall_interactively (cmd, record); | |
| 4158 | |
| 4159 backtrace_list = backtrace.next; | |
| 4160 return tem; | |
| 4161 } | |
| 4162 return Qnil; | |
| 4163 } | |
| 4164 | |
| 4165 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command, | |
| 4166 1, 1, "P", | |
| 4167 "Read function name, then read its arguments and call it.") | |
| 4168 (prefixarg) | |
| 4169 Lisp_Object prefixarg; | |
| 4170 { | |
| 4171 Lisp_Object function; | |
| 4172 char buf[40]; | |
| 4173 Lisp_Object saved_keys; | |
| 4174 struct gcpro gcpro1; | |
| 4175 | |
| 4176 saved_keys = Fthis_command_keys (); | |
| 4177 buf[0] = 0; | |
| 4178 GCPRO1 (saved_keys); | |
| 4179 | |
| 4180 if (EQ (prefixarg, Qminus)) | |
| 4181 strcpy (buf, "- "); | |
| 4182 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4) | |
| 4183 strcpy (buf, "C-u "); | |
| 4184 else if (CONSP (prefixarg) && XTYPE (XCONS (prefixarg)->car) == Lisp_Int) | |
| 4185 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car)); | |
| 4186 else if (XTYPE (prefixarg) == Lisp_Int) | |
| 4187 sprintf (buf, "%d ", XINT (prefixarg)); | |
| 4188 | |
| 4189 /* This isn't strictly correct if execute-extended-command | |
| 4190 is bound to anything else. Perhaps it should use | |
| 4191 this_command_keys? */ | |
| 4192 strcat (buf, "M-x "); | |
| 4193 | |
| 4194 /* Prompt with buf, and then read a string, completing from and | |
| 4195 restricting to the set of all defined commands. Don't provide | |
| 4196 any initial input. The last Qnil says not to perform a | |
| 4197 peculiar hack on the initial input. */ | |
| 4198 function = Fcompleting_read (build_string (buf), | |
| 4199 Vobarray, Qcommandp, | |
| 4200 Qt, Qnil, Qnil); | |
| 4201 | |
| 708 | 4202 /* Set this_command_keys to the concatenation of saved_keys and |
| 4203 function, followed by a RET. */ | |
| 518 | 4204 { |
| 708 | 4205 struct Lisp_String *str; |
| 518 | 4206 int i; |
| 4207 Lisp_Object tem; | |
| 4208 | |
| 708 | 4209 this_command_key_count = 0; |
| 4210 | |
| 4211 str = XSTRING (saved_keys); | |
| 4212 for (i = 0; i < str->size; i++) | |
| 518 | 4213 { |
| 708 | 4214 XFASTINT (tem) = str->data[i]; |
| 518 | 4215 add_command_key (tem); |
| 4216 } | |
| 708 | 4217 |
| 4218 str = XSTRING (function); | |
| 4219 for (i = 0; i < str->size; i++) | |
| 4220 { | |
| 4221 XFASTINT (tem) = str->data[i]; | |
| 4222 add_command_key (tem); | |
| 4223 } | |
| 4224 | |
| 4225 XFASTINT (tem) = '\015'; | |
| 4226 add_command_key (tem); | |
| 518 | 4227 } |
| 4228 | |
| 4229 UNGCPRO; | |
| 4230 | |
|
1328
c4eb3aa71303
* keyboard.c (read_key_sequence): Treat mouse clicks on non-text
Jim Blandy <jimb@redhat.com>
parents:
1322
diff
changeset
|
4231 function = Fintern (function, Qnil); |
| 518 | 4232 Vprefix_arg = prefixarg; |
| 4233 this_command = function; | |
| 4234 | |
| 4235 return Fcommand_execute (function, Qt); | |
| 4236 } | |
| 4237 | |
| 4238 | |
| 4239 detect_input_pending () | |
| 4240 { | |
| 4241 if (!input_pending) | |
| 4242 get_input_pending (&input_pending); | |
| 4243 | |
| 4244 return input_pending; | |
| 4245 } | |
| 4246 | |
| 648 | 4247 /* This is called in some cases before a possible quit. |
| 4248 It cases the next call to detect_input_pending to recompute input_pending. | |
| 4249 So calling this function unnecessarily can't do any harm. */ | |
| 4250 clear_input_pending () | |
| 4251 { | |
| 4252 input_pending = 0; | |
| 4253 } | |
| 4254 | |
| 518 | 4255 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0, |
| 4256 "T if command input is currently available with no waiting.\n\ | |
| 4257 Actually, the value is nil only if we can be sure that no input is available.") | |
| 4258 () | |
| 4259 { | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4260 if (!NILP (unread_command_events) || unread_command_char != -1) |
| 518 | 4261 return (Qt); |
| 4262 | |
| 4263 return detect_input_pending () ? Qt : Qnil; | |
| 4264 } | |
| 4265 | |
| 4266 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
|
4267 "Return vector of last 100 events, not counting those from keyboard macros.") |
| 518 | 4268 () |
| 4269 { | |
|
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
4270 Lisp_Object *keys = XVECTOR (recent_keys)->contents; |
| 518 | 4271 Lisp_Object val; |
| 4272 | |
| 4273 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
|
4274 return Fvector (total_keys, keys); |
| 518 | 4275 else |
| 4276 { | |
|
1261
60b30565326c
* keyboard.c (recent_keys): Turn this from an array, which is a
Jim Blandy <jimb@redhat.com>
parents:
1239
diff
changeset
|
4277 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
|
4278 bcopy (keys + recent_keys_index, |
| 518 | 4279 XVECTOR (val)->contents, |
| 4280 (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
|
4281 bcopy (keys, |
| 518 | 4282 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index, |
| 4283 recent_keys_index * sizeof (Lisp_Object)); | |
| 4284 return val; | |
| 4285 } | |
| 4286 } | |
| 4287 | |
| 4288 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
|
4289 "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
|
4290 The value is a string or a vector.") |
| 518 | 4291 () |
| 4292 { | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4293 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
|
4294 XVECTOR (this_command_keys)->contents); |
| 518 | 4295 } |
| 4296 | |
| 4297 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0, | |
| 4298 "Return the current depth in recursive edits.") | |
| 4299 () | |
| 4300 { | |
| 4301 Lisp_Object temp; | |
| 4302 XFASTINT (temp) = command_loop_level + minibuf_level; | |
| 4303 return temp; | |
| 4304 } | |
| 4305 | |
| 4306 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1, | |
| 4307 "FOpen dribble file: ", | |
|
1888
86ff3942d7e1
(Fopen_dribble_file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1842
diff
changeset
|
4308 "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
|
4309 If FILE is nil, close any open dribble file.") |
| 518 | 4310 (file) |
| 4311 Lisp_Object file; | |
| 4312 { | |
| 4313 if (NILP (file)) | |
| 4314 { | |
| 4315 fclose (dribble); | |
| 4316 dribble = 0; | |
| 4317 } | |
| 4318 else | |
| 4319 { | |
| 4320 file = Fexpand_file_name (file, Qnil); | |
| 4321 dribble = fopen (XSTRING (file)->data, "w"); | |
| 4322 } | |
| 4323 return Qnil; | |
| 4324 } | |
| 4325 | |
| 4326 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0, | |
| 4327 "Discard the contents of the terminal input buffer.\n\ | |
| 4328 Also cancel any kbd macro being defined.") | |
| 4329 () | |
| 4330 { | |
| 4331 defining_kbd_macro = 0; | |
| 4332 update_mode_lines++; | |
| 4333 | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
4334 unread_command_events = Qnil; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4335 unread_command_char = -1; |
| 518 | 4336 |
| 4337 discard_tty_input (); | |
| 4338 | |
|
1654
fe6f6e55182f
* keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents:
1590
diff
changeset
|
4339 /* 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
|
4340 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
|
4341 with that? */ |
|
fe6f6e55182f
* keyboard.c (kbd_store_ptr): Declare this to be volatile, if
Jim Blandy <jimb@redhat.com>
parents:
1590
diff
changeset
|
4342 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4343 Ffillarray (kbd_buffer_frame_or_window, Qnil); |
| 518 | 4344 input_pending = 0; |
| 4345 | |
| 4346 return Qnil; | |
| 4347 } | |
| 4348 | |
| 4349 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "", | |
| 4350 "Stop Emacs and return to superior process. You can resume later.\n\ | |
| 4351 On systems that don't have job control, run a subshell instead.\n\n\ | |
| 4352 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
|
4353 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
|
4354 \n\ |
|
2618
2c57852a01ca
(Fsuspend_emacs): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2611
diff
changeset
|
4355 Before suspending, call the functions in `suspend-hook' with no args.\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
|
4356 If any of them returns nil, don't call the rest and don't suspend.\n\ |
|
035c39b0b1b9
(Fsuspend_emacs): Rename suspend-hook to suspend-hooks and run it manually.
Richard M. Stallman <rms@gnu.org>
parents:
1888
diff
changeset
|
4357 Otherwise, suspend normally and after resumption run the normal hook\n\ |
| 518 | 4358 `suspend-resume-hook' if that is bound and non-nil.\n\ |
| 4359 \n\ | |
| 4360 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
|
4361 On such systems, Emacs starts a subshell instead of suspending.") |
| 518 | 4362 (stuffstring) |
| 4363 Lisp_Object stuffstring; | |
| 4364 { | |
|
1895
b497a7ec0d58
(Fsuspend_emacs): Make tem not register.
Richard M. Stallman <rms@gnu.org>
parents:
1891
diff
changeset
|
4365 Lisp_Object tem; |
| 518 | 4366 int count = specpdl_ptr - specpdl; |
| 4367 int old_height, old_width; | |
| 4368 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
|
4369 struct gcpro gcpro1, gcpro2; |
| 518 | 4370 extern init_sys_modes (); |
| 4371 | |
| 4372 if (!NILP (stuffstring)) | |
| 4373 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
|
4374 |
|
2338
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
4375 /* Run the functions in suspend-hook. */ |
|
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
4376 if (!NILP (Vrun_hooks)) |
|
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
4377 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
|
4378 |
| 518 | 4379 GCPRO1 (stuffstring); |
| 765 | 4380 get_frame_size (&old_width, &old_height); |
| 518 | 4381 reset_sys_modes (); |
| 4382 /* sys_suspend can get an error if it tries to fork a subshell | |
| 4383 and the system resources aren't available for that. */ | |
| 4384 record_unwind_protect (init_sys_modes, 0); | |
| 4385 stuff_buffered_input (stuffstring); | |
| 4386 sys_suspend (); | |
| 4387 unbind_to (count, Qnil); | |
| 4388 | |
| 4389 /* Check if terminal/window size has changed. | |
| 4390 Note that this is not useful when we are running directly | |
| 4391 with a window system; but suspend should be disabled in that case. */ | |
| 765 | 4392 get_frame_size (&width, &height); |
| 518 | 4393 if (width != old_width || height != old_height) |
|
966
eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents:
939
diff
changeset
|
4394 change_frame_size (0, height, width, 0, 0); |
| 518 | 4395 |
|
2338
36cc4399937f
* keyboard.c (Fsuspend_emacs):
Jim Blandy <jimb@redhat.com>
parents:
2188
diff
changeset
|
4396 /* Run suspend-resume-hook. */ |
| 518 | 4397 if (!NILP (Vrun_hooks)) |
| 4398 call1 (Vrun_hooks, intern ("suspend-resume-hook")); | |
| 4399 | |
| 4400 UNGCPRO; | |
| 4401 return Qnil; | |
| 4402 } | |
| 4403 | |
| 4404 /* If STUFFSTRING is a string, stuff its contents as pending terminal input. | |
| 4405 Then in any case stuff anthing Emacs has read ahead and not used. */ | |
| 4406 | |
| 4407 stuff_buffered_input (stuffstring) | |
| 4408 Lisp_Object stuffstring; | |
| 4409 { | |
| 4410 register unsigned char *p; | |
| 4411 | |
| 4412 /* stuff_char works only in BSD, versions 4.2 and up. */ | |
| 4413 #ifdef BSD | |
| 4414 #ifndef BSD4_1 | |
| 4415 if (XTYPE (stuffstring) == Lisp_String) | |
| 4416 { | |
| 4417 register int count; | |
| 4418 | |
| 4419 p = XSTRING (stuffstring)->data; | |
| 4420 count = XSTRING (stuffstring)->size; | |
| 4421 while (count-- > 0) | |
| 4422 stuff_char (*p++); | |
| 4423 stuff_char ('\n'); | |
| 4424 } | |
| 4425 /* Anything we have read ahead, put back for the shell to read. */ | |
| 4426 while (kbd_fetch_ptr != kbd_store_ptr) | |
| 4427 { | |
| 4428 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE) | |
| 4429 kbd_fetch_ptr = kbd_buffer; | |
| 4430 if (kbd_fetch_ptr->kind == ascii_keystroke) | |
| 4431 stuff_char (XINT (kbd_fetch_ptr->code)); | |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4432 kbd_fetch_ptr->kind = no_event; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4433 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4434 - kbd_buffer] |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4435 = Qnil); |
| 518 | 4436 kbd_fetch_ptr++; |
| 4437 } | |
| 4438 input_pending = 0; | |
| 4439 #endif | |
| 4440 #endif /* BSD and not BSD4_1 */ | |
| 4441 } | |
| 4442 | |
| 648 | 4443 set_waiting_for_input (time_to_clear) |
| 4444 EMACS_TIME *time_to_clear; | |
| 518 | 4445 { |
| 648 | 4446 input_available_clear_time = time_to_clear; |
| 518 | 4447 |
| 4448 /* Tell interrupt_signal to throw back to read_char, */ | |
| 4449 waiting_for_input = 1; | |
| 4450 | |
| 4451 /* If interrupt_signal was called before and buffered a C-g, | |
| 4452 make it run again now, to avoid timing error. */ | |
| 4453 if (!NILP (Vquit_flag)) | |
| 4454 quit_throw_to_read_char (); | |
| 4455 | |
| 4456 /* If alarm has gone off already, echo now. */ | |
| 4457 if (echo_flag) | |
| 4458 { | |
| 4459 echo (); | |
| 4460 echo_flag = 0; | |
| 4461 } | |
| 4462 } | |
| 4463 | |
| 4464 clear_waiting_for_input () | |
| 4465 { | |
| 4466 /* Tell interrupt_signal not to throw back to read_char, */ | |
| 4467 waiting_for_input = 0; | |
| 648 | 4468 input_available_clear_time = 0; |
| 518 | 4469 } |
| 4470 | |
| 4471 /* This routine is called at interrupt level in response to C-G. | |
| 4472 If interrupt_input, this is the handler for SIGINT. | |
| 4473 Otherwise, it is called from kbd_buffer_store_event, | |
| 4474 in handling SIGIO or SIGTINT. | |
| 4475 | |
| 4476 If `waiting_for_input' is non zero, then unless `echoing' is nonzero, | |
| 4477 immediately throw back to read_char. | |
| 4478 | |
| 4479 Otherwise it sets the Lisp variable quit-flag not-nil. | |
| 4480 This causes eval to throw, when it gets a chance. | |
| 4481 If quit-flag is already non-nil, it stops the job right away. */ | |
| 4482 | |
| 4483 SIGTYPE | |
| 4484 interrupt_signal () | |
| 4485 { | |
| 4486 char c; | |
| 4487 /* Must preserve main program's value of errno. */ | |
| 4488 int old_errno = errno; | |
| 4489 | |
| 4490 #ifdef USG | |
| 4491 /* USG systems forget handlers when they are used; | |
| 4492 must reestablish each time */ | |
| 4493 signal (SIGINT, interrupt_signal); | |
| 4494 signal (SIGQUIT, interrupt_signal); | |
| 4495 #endif /* USG */ | |
| 4496 | |
| 4497 cancel_echoing (); | |
| 4498 | |
|
966
eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents:
939
diff
changeset
|
4499 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame)) |
| 518 | 4500 { |
| 4501 fflush (stdout); | |
| 4502 reset_sys_modes (); | |
| 4503 sigfree (); | |
| 4504 #ifdef SIGTSTP /* Support possible in later USG versions */ | |
| 4505 /* | |
| 4506 * On systems which can suspend the current process and return to the original | |
| 4507 * shell, this command causes the user to end up back at the shell. | |
| 4508 * The "Auto-save" and "Abort" questions are not asked until | |
| 4509 * the user elects to return to emacs, at which point he can save the current | |
| 4510 * job and either dump core or continue. | |
| 4511 */ | |
| 4512 sys_suspend (); | |
| 4513 #else | |
| 4514 #ifdef VMS | |
| 4515 if (sys_suspend () == -1) | |
| 4516 { | |
| 4517 printf ("Not running as a subprocess;\n"); | |
| 4518 printf ("you can continue or abort.\n"); | |
| 4519 } | |
| 4520 #else /* not VMS */ | |
| 4521 /* Perhaps should really fork an inferior shell? | |
| 4522 But that would not provide any way to get back | |
| 4523 to the original shell, ever. */ | |
| 4524 printf ("No support for stopping a process on this operating system;\n"); | |
| 4525 printf ("you can continue or abort.\n"); | |
| 4526 #endif /* not VMS */ | |
| 4527 #endif /* not SIGTSTP */ | |
| 4528 printf ("Auto-save? (y or n) "); | |
| 4529 fflush (stdout); | |
| 4530 if (((c = getchar ()) & ~040) == 'Y') | |
| 4531 Fdo_auto_save (Qnil, Qnil); | |
| 4532 while (c != '\n') c = getchar (); | |
| 4533 #ifdef VMS | |
| 4534 printf ("Abort (and enter debugger)? (y or n) "); | |
| 4535 #else /* not VMS */ | |
| 4536 printf ("Abort (and dump core)? (y or n) "); | |
| 4537 #endif /* not VMS */ | |
| 4538 fflush (stdout); | |
| 4539 if (((c = getchar ()) & ~040) == 'Y') | |
| 4540 abort (); | |
| 4541 while (c != '\n') c = getchar (); | |
| 4542 printf ("Continuing...\n"); | |
| 4543 fflush (stdout); | |
| 4544 init_sys_modes (); | |
| 4545 } | |
| 4546 else | |
| 4547 { | |
| 4548 /* If executing a function that wants to be interrupted out of | |
| 4549 and the user has not deferred quitting by binding `inhibit-quit' | |
| 4550 then quit right away. */ | |
| 4551 if (immediate_quit && NILP (Vinhibit_quit)) | |
| 4552 { | |
| 4553 immediate_quit = 0; | |
| 4554 sigfree (); | |
| 4555 Fsignal (Qquit, Qnil); | |
| 4556 } | |
| 4557 else | |
| 4558 /* Else request quit when it's safe */ | |
| 4559 Vquit_flag = Qt; | |
| 4560 } | |
| 4561 | |
| 4562 if (waiting_for_input && !echoing) | |
| 4563 quit_throw_to_read_char (); | |
| 4564 | |
| 4565 errno = old_errno; | |
| 4566 } | |
| 4567 | |
| 4568 /* Handle a C-g by making read_char return C-g. */ | |
| 4569 | |
| 4570 quit_throw_to_read_char () | |
| 4571 { | |
| 4572 quit_error_check (); | |
| 4573 sigfree (); | |
| 4574 /* Prevent another signal from doing this before we finish. */ | |
| 650 | 4575 clear_waiting_for_input (); |
| 518 | 4576 input_pending = 0; |
| 4577 | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
4578 unread_command_events = Qnil; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4579 unread_command_char = -1; |
| 518 | 4580 |
|
2340
f19f4582c04d
* keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents:
2338
diff
changeset
|
4581 #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
|
4582 /* 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
|
4583 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
|
4584 abort (); |
|
f19f4582c04d
* keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents:
2338
diff
changeset
|
4585 #endif |
|
f19f4582c04d
* keyboard.c [POLL_FOR_INPUT] (quit_throw_to_read_char): If
Jim Blandy <jimb@redhat.com>
parents:
2338
diff
changeset
|
4586 |
| 518 | 4587 _longjmp (getcjmp, 1); |
| 4588 } | |
| 4589 | |
| 4590 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0, | |
| 4591 "Set mode of reading keyboard input.\n\ | |
|
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
4592 First arg INTERRUPT non-nil means use input interrupts;\n\ |
|
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
4593 nil means use CBREAK mode.\n\ |
|
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
4594 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\ |
| 518 | 4595 (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
|
4596 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
|
4597 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
|
4598 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
|
4599 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
|
4600 See also `current-input-mode'.") |
| 518 | 4601 (interrupt, flow, meta, quit) |
| 4602 Lisp_Object interrupt, flow, meta, quit; | |
| 4603 { | |
| 4604 if (!NILP (quit) | |
| 4605 && (XTYPE (quit) != Lisp_Int | |
| 4606 || XINT (quit) < 0 || XINT (quit) > 0400)) | |
| 4607 error ("set-input-mode: QUIT must be an ASCII character."); | |
| 4608 | |
| 4609 reset_sys_modes (); | |
| 4610 #ifdef SIGIO | |
| 4611 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
| 4612 #ifdef NO_SOCK_SIGIO | |
| 4613 if (read_socket_hook) | |
| 4614 interrupt_input = 0; /* No interrupts if reading from a socket. */ | |
| 4615 else | |
| 4616 #endif /* NO_SOCK_SIGIO */ | |
| 4617 interrupt_input = !NILP (interrupt); | |
| 4618 #else /* not SIGIO */ | |
| 4619 interrupt_input = 0; | |
| 4620 #endif /* not SIGIO */ | |
| 4621 /* Our VMS input only works by interrupts, as of now. */ | |
| 4622 #ifdef VMS | |
| 4623 interrupt_input = 1; | |
| 4624 #endif | |
| 4625 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
|
4626 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
|
4627 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
|
4628 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
|
4629 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
|
4630 else |
|
5275561e6b0a
(read_avail_input): If meta_key is 2, let 8 bits thru.
Richard M. Stallman <rms@gnu.org>
parents:
2651
diff
changeset
|
4631 meta_key = 2; |
| 518 | 4632 if (!NILP (quit)) |
| 4633 /* Don't let this value be out of range. */ | |
| 4634 quit_char = XINT (quit) & (meta_key ? 0377 : 0177); | |
| 4635 | |
| 4636 init_sys_modes (); | |
| 4637 return Qnil; | |
| 4638 } | |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4639 |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4640 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
|
4641 "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
|
4642 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
|
4643 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
|
4644 nil, Emacs is using CBREAK mode.\n\ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4645 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
|
4646 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
|
4647 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
|
4648 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
|
4649 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
|
4650 all 8 bits as the character code.\n\ |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4651 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
|
4652 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
|
4653 `set-input-mode'.") |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4654 () |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4655 { |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4656 Lisp_Object val[4]; |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4657 |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4658 val[0] = interrupt_input ? Qt : Qnil; |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4659 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
|
4660 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil; |
| 3067 | 4661 XFASTINT (val[3]) = quit_char; |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4662 |
|
3116
05c3ef28bb6b
(Fcurrent_input_mode): Fix the call to Flist.
Richard M. Stallman <rms@gnu.org>
parents:
3104
diff
changeset
|
4663 return Flist (sizeof (val) / sizeof (val[0]), val); |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4664 } |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4665 |
| 518 | 4666 |
| 4667 init_keyboard () | |
| 4668 { | |
| 4669 /* This is correct before outermost invocation of the editor loop */ | |
| 4670 command_loop_level = -1; | |
| 4671 immediate_quit = 0; | |
| 4672 quit_char = Ctl ('g'); | |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
4673 unread_command_events = Qnil; |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4674 unread_command_char = -1; |
| 518 | 4675 total_keys = 0; |
|
1262
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
4676 recent_keys_index = 0; |
| 518 | 4677 kbd_fetch_ptr = kbd_buffer; |
| 4678 kbd_store_ptr = kbd_buffer; | |
| 4679 do_mouse_tracking = 0; | |
| 4680 input_pending = 0; | |
| 4681 | |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
4682 #ifdef MULTI_FRAME |
|
1590
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
4683 /* This means that command_loop_1 won't try to select anything the first |
|
11cd7c23f538
* keyboard.c (unread_switch_frame): Don't declare this static.
Jim Blandy <jimb@redhat.com>
parents:
1565
diff
changeset
|
4684 time through. */ |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
4685 internal_last_event_frame = Qnil; |
|
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
4686 Vlast_event_frame = internal_last_event_frame; |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4687 #endif |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4688 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4689 /* If we're running a dumped Emacs, we need to clear out |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4690 kbd_buffer_frame_or_window, in case some events got into it |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4691 before we dumped. |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4692 |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4693 If we're running an undumped Emacs, it hasn't been initialized by |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4694 syms_of_keyboard yet. */ |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4695 if (initialized) |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4696 Ffillarray (kbd_buffer_frame_or_window, Qnil); |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
4697 |
| 518 | 4698 if (!noninteractive) |
| 4699 { | |
| 4700 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
|
4701 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS) |
| 518 | 4702 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and |
| 4703 SIGQUIT and we can't tell which one it will give us. */ | |
| 4704 signal (SIGQUIT, interrupt_signal); | |
| 4705 #endif /* HAVE_TERMIO */ | |
| 4706 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
| 4707 #ifdef SIGIO | |
| 4708 signal (SIGIO, input_available_signal); | |
|
1008
f1df63f98e5c
* keyboard.c (init_keyboard): Changed "#endif SIGIO" to
Jim Blandy <jimb@redhat.com>
parents:
985
diff
changeset
|
4709 #endif /* SIGIO */ |
| 518 | 4710 } |
| 4711 | |
| 4712 /* Use interrupt input by default, if it works and noninterrupt input | |
| 4713 has deficiencies. */ | |
| 4714 | |
| 4715 #ifdef INTERRUPT_INPUT | |
| 4716 interrupt_input = 1; | |
| 4717 #else | |
| 4718 interrupt_input = 0; | |
| 4719 #endif | |
| 4720 | |
| 4721 /* Our VMS input only works by interrupts, as of now. */ | |
| 4722 #ifdef VMS | |
| 4723 interrupt_input = 1; | |
| 4724 #endif | |
| 4725 | |
| 4726 sigfree (); | |
| 4727 dribble = 0; | |
| 4728 | |
| 4729 if (keyboard_init_hook) | |
| 4730 (*keyboard_init_hook) (); | |
| 4731 | |
| 4732 #ifdef POLL_FOR_INPUT | |
| 4733 poll_suppress_count = 1; | |
| 4734 start_polling (); | |
| 4735 #endif | |
| 4736 } | |
| 4737 | |
| 4738 /* This type's only use is in syms_of_keyboard, to initialize the | |
| 4739 event header symbols and put properties on them. */ | |
| 4740 struct event_head { | |
| 4741 Lisp_Object *var; | |
| 4742 char *name; | |
| 4743 Lisp_Object *kind; | |
| 4744 }; | |
| 4745 | |
| 4746 struct event_head head_table[] = { | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4747 &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
|
4748 &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
|
4749 &Qswitch_frame, "switch-frame", &Qswitch_frame, |
| 518 | 4750 }; |
| 4751 | |
| 4752 syms_of_keyboard () | |
| 4753 { | |
| 4754 Qself_insert_command = intern ("self-insert-command"); | |
| 4755 staticpro (&Qself_insert_command); | |
| 4756 | |
| 4757 Qforward_char = intern ("forward-char"); | |
| 4758 staticpro (&Qforward_char); | |
| 4759 | |
| 4760 Qbackward_char = intern ("backward-char"); | |
| 4761 staticpro (&Qbackward_char); | |
| 4762 | |
| 4763 Qdisabled = intern ("disabled"); | |
| 4764 staticpro (&Qdisabled); | |
| 4765 | |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4766 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
|
4767 staticpro (&Qpre_command_hook); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4768 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4769 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
|
4770 staticpro (&Qpost_command_hook); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4771 |
| 518 | 4772 Qfunction_key = intern ("function-key"); |
| 4773 staticpro (&Qfunction_key); | |
|
1322
5f327f1dddd3
* keyboard.c (modify_event_symbol): Make sure that the unmodified
Jim Blandy <jimb@redhat.com>
parents:
1310
diff
changeset
|
4774 Qmouse_click = intern ("mouse-click"); |
| 518 | 4775 staticpro (&Qmouse_click); |
| 4776 | |
|
2512
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
4777 Qmenu_enable = intern ("menu-enable"); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
4778 staticpro (&Qmenu_enable); |
|
2a13ec10bfd7
* keyboard.c (command_loop_1): Rebuild menu bar if
Jim Blandy <jimb@redhat.com>
parents:
2505
diff
changeset
|
4779 |
| 518 | 4780 Qmode_line = intern ("mode-line"); |
| 4781 staticpro (&Qmode_line); | |
| 732 | 4782 Qvertical_line = intern ("vertical-line"); |
| 4783 staticpro (&Qvertical_line); | |
|
1988
1709282a3413
* keyboard.c (kbd_buffer_get_event): Protect assignment to
Jim Blandy <jimb@redhat.com>
parents:
1960
diff
changeset
|
4784 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
|
4785 staticpro (&Qvertical_scroll_bar); |
|
2149
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4786 Qmenu_bar = intern ("menu-bar"); |
|
9e21e9f8bb0d
(syms_of_keyboard): Set up Qmenu_bar.
Richard M. Stallman <rms@gnu.org>
parents:
2133
diff
changeset
|
4787 staticpro (&Qmenu_bar); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4788 |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4789 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
|
4790 staticpro (&Qabove_handle); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4791 Qhandle = intern ("handle"); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4792 staticpro (&Qhandle); |
|
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4793 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
|
4794 staticpro (&Qbelow_handle); |
| 518 | 4795 |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4796 Qevent_kind = intern ("event-kind"); |
| 518 | 4797 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
|
4798 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
|
4799 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
|
4800 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
|
4801 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
|
4802 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
|
4803 staticpro (&Qmodifier_cache); |
| 518 | 4804 |
|
2188
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
4805 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
|
4806 staticpro (&Qrecompute_lucid_menubar); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
4807 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
|
4808 staticpro (&Qactivate_menubar_hook); |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
4809 |
| 518 | 4810 { |
| 4811 struct event_head *p; | |
| 4812 | |
| 4813 for (p = head_table; | |
| 4814 p < head_table + (sizeof (head_table) / sizeof (head_table[0])); | |
| 4815 p++) | |
| 4816 { | |
| 4817 *p->var = intern (p->name); | |
| 4818 staticpro (p->var); | |
| 4819 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
|
4820 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil)); |
| 518 | 4821 } |
| 4822 } | |
| 4823 | |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4824 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
|
4825 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
|
4826 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4827 { |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4828 int i; |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4829 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
|
4830 |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4831 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
|
4832 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
|
4833 if (modifier_names[i]) |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4834 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
|
4835 staticpro (&modifier_symbols); |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4836 } |
|
8db103d11270
* keyboard.c (echo_char, read_char): Apply EVENT_HEAD without first
Jim Blandy <jimb@redhat.com>
parents:
1262
diff
changeset
|
4837 |
|
1262
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
4838 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
|
4839 staticpro (&recent_keys); |
|
c9fc221502e4
* keyboard.c: Initialize recent_keys in syms_of_keyboard, not
Jim Blandy <jimb@redhat.com>
parents:
1261
diff
changeset
|
4840 |
|
1439
b3b2d1181d3a
* keyboard.c (this_command_keys): Make this a vector, instead of
Jim Blandy <jimb@redhat.com>
parents:
1404
diff
changeset
|
4841 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
|
4842 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
|
4843 |
|
1778
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4844 kbd_buffer_frame_or_window |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4845 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil); |
|
1f18bfe28e2f
* termhooks.h (mouse_position_hook): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1711
diff
changeset
|
4846 staticpro (&kbd_buffer_frame_or_window); |
|
1711
4cd44b41f1e3
* keyboard.c: Protect all references to kbd_buffer_frames with
Jim Blandy <jimb@redhat.com>
parents:
1654
diff
changeset
|
4847 |
| 518 | 4848 func_key_syms = Qnil; |
| 4849 staticpro (&func_key_syms); | |
| 4850 | |
| 4851 mouse_syms = Qnil; | |
| 4852 staticpro (&mouse_syms); | |
| 4853 | |
|
1386
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4854 unread_switch_frame = Qnil; |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4855 staticpro (&unread_switch_frame); |
|
5845050f9d5c
* keyboard.c (Vlast_event_frame): Make this variable exist even
Jim Blandy <jimb@redhat.com>
parents:
1328
diff
changeset
|
4856 |
| 518 | 4857 defsubr (&Sread_key_sequence); |
| 4858 defsubr (&Srecursive_edit); | |
| 4859 defsubr (&Strack_mouse); | |
| 4860 defsubr (&Sinput_pending_p); | |
| 4861 defsubr (&Scommand_execute); | |
| 4862 defsubr (&Srecent_keys); | |
| 4863 defsubr (&Sthis_command_keys); | |
| 4864 defsubr (&Ssuspend_emacs); | |
| 4865 defsubr (&Sabort_recursive_edit); | |
| 4866 defsubr (&Sexit_recursive_edit); | |
| 4867 defsubr (&Srecursion_depth); | |
| 4868 defsubr (&Stop_level); | |
| 4869 defsubr (&Sdiscard_input); | |
| 4870 defsubr (&Sopen_dribble_file); | |
| 4871 defsubr (&Sset_input_mode); | |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4872 defsubr (&Scurrent_input_mode); |
| 518 | 4873 defsubr (&Sexecute_extended_command); |
| 4874 | |
| 4875 DEFVAR_LISP ("disabled-command-hook", &Vdisabled_command_hook, | |
| 4876 "Value is called instead of any command that is disabled\n\ | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4877 \(has a non-nil `disabled' property)."); |
| 518 | 4878 |
| 4879 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
|
4880 "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
|
4881 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4882 DEFVAR_LISP ("last-command-event", &last_command_char, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4883 "Last input event that was part of a command."); |
| 518 | 4884 |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4885 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
|
4886 "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
|
4887 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
|
4888 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
|
4889 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
|
4890 |
| 518 | 4891 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
|
4892 "Last input event."); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4893 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4894 DEFVAR_LISP ("last-input-event", &last_input_char, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4895 "Last input event."); |
| 518 | 4896 |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1802
diff
changeset
|
4897 DEFVAR_LISP ("unread-command-events", &unread_command_events, |
|
1960
6051ba81a938
(syms_of_keyboard): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1947
diff
changeset
|
4898 "List of objects to be read as next command input events."); |
| 518 | 4899 |
|
2045
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
4900 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
|
4901 "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
|
4902 |
| 518 | 4903 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char, |
| 4904 "Meta-prefix character code. Meta-foo as command input\n\ | |
| 4905 turns into this character followed by foo."); | |
| 4906 XSET (meta_prefix_char, Lisp_Int, 033); | |
| 4907 | |
| 4908 DEFVAR_LISP ("last-command", &last_command, | |
| 4909 "The last command executed. Normally a symbol with a function definition,\n\ | |
| 4910 but can be whatever was found in the keymap, or whatever the variable\n\ | |
| 4911 `this-command' was set to by that command."); | |
| 4912 last_command = Qnil; | |
| 4913 | |
| 4914 DEFVAR_LISP ("this-command", &this_command, | |
| 4915 "The command now being executed.\n\ | |
| 4916 The command can set this variable; whatever is put here\n\ | |
| 4917 will be in `last-command' during the following command."); | |
| 4918 this_command = Qnil; | |
| 4919 | |
| 4920 DEFVAR_INT ("auto-save-interval", &auto_save_interval, | |
| 4921 "*Number of keyboard input characters between auto-saves.\n\ | |
| 4922 Zero means disable autosaving due to number of characters typed."); | |
| 4923 auto_save_interval = 300; | |
| 4924 | |
| 4925 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout, | |
| 4926 "*Number of seconds idle time before auto-save.\n\ | |
|
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
4927 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
|
4928 After auto-saving due to this many seconds of idle time,\n\ |
| 701 | 4929 Emacs also does a garbage collection if that seems to be warranted."); |
| 518 | 4930 XFASTINT (Vauto_save_timeout) = 30; |
| 4931 | |
| 4932 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes, | |
| 4933 "*Nonzero means echo unfinished commands after this many seconds of pause."); | |
| 4934 echo_keystrokes = 1; | |
| 4935 | |
| 4936 DEFVAR_INT ("polling-period", &polling_period, | |
| 4937 "*Interval between polling for input during Lisp execution.\n\ | |
| 4938 The reason for polling is to make C-g work to stop a running program.\n\ | |
| 4939 Polling is needed only when using X windows and SIGIO does not work.\n\ | |
| 4940 Polling is automatically disabled in all other cases."); | |
| 4941 polling_period = 2; | |
| 4942 | |
| 4943 DEFVAR_INT ("num-input-keys", &num_input_keys, | |
| 4944 "*Number of complete keys read from the keyboard so far."); | |
| 4945 num_input_keys = 0; | |
| 4946 | |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
4947 #ifdef MULTI_FRAME |
| 765 | 4948 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame, |
|
1239
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
4949 "*The frame in which the most recently read event occurred.\n\ |
|
52afa4976154
* keyboard.c (read_char): If we're returning an event from a
Jim Blandy <jimb@redhat.com>
parents:
1140
diff
changeset
|
4950 If the last event came from a keyboard macro, this is set to `macro'."); |
| 765 | 4951 Vlast_event_frame = Qnil; |
|
1565
a681f63f93fa
* keyboard.c (read_key_sequence): Removed the
Jim Blandy <jimb@redhat.com>
parents:
1515
diff
changeset
|
4952 #endif |
| 518 | 4953 |
| 4954 DEFVAR_LISP ("help-char", &help_char, | |
| 4955 "Character to recognize as meaning Help.\n\ | |
| 4956 When it is read, do `(eval help-form)', and display result if it's a string.\n\ | |
| 4957 If the value of `help-form' is nil, this char can be read normally."); | |
| 4958 XSET (help_char, Lisp_Int, Ctl ('H')); | |
| 4959 | |
| 4960 DEFVAR_LISP ("help-form", &Vhelp_form, | |
| 4961 "Form to execute when character help-char is read.\n\ | |
| 4962 If the form returns a string, that string is displayed.\n\ | |
| 4963 If `help-form' is nil, the help char is not recognized."); | |
| 4964 Vhelp_form = Qnil; | |
| 4965 | |
| 4966 DEFVAR_LISP ("top-level", &Vtop_level, | |
| 4967 "Form to evaluate when Emacs starts up.\n\ | |
| 4968 Useful to set before you dump a modified Emacs."); | |
| 4969 Vtop_level = Qnil; | |
| 4970 | |
| 4971 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table, | |
| 4972 "String used as translate table for keyboard input, or nil.\n\ | |
| 4973 Each character is looked up in this string and the contents used instead.\n\ | |
| 4974 If string is of length N, character codes N and up are untranslated."); | |
| 4975 Vkeyboard_translate_table = Qnil; | |
| 4976 | |
| 4977 DEFVAR_BOOL ("menu-prompting", &menu_prompting, | |
|
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4978 "Non-nil means prompt with menus when appropriate.\n\ |
| 518 | 4979 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
|
4980 for elements that have prompt strings.\n\ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4981 The menu is displayed on the screen\n\ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4982 if X menus were enabled at configuration\n\ |
|
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
4983 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
|
4984 Otherwise, menu prompting uses the echo area."); |
| 518 | 4985 menu_prompting = 1; |
| 4986 | |
| 4987 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char, | |
| 4988 "Character to see next line of menu prompt.\n\ | |
| 4989 Type this character while in a menu prompt to rotate around the lines of it."); | |
| 4990 XSET (menu_prompt_more_char, Lisp_Int, ' '); | |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
4991 |
|
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
4992 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
|
4993 "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
|
4994 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
|
4995 character it reads. For example, after evaluating the expression\n\ |
|
2651
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4996 (setq extra-keyboard-modifiers ?\C-x)\n\ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4997 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
|
4998 \n\ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
4999 Note that the character ?\C-@, equivalent to the integer zero, does\n\ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
5000 not count as a control character; rather, it counts as a character\n\ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
5001 with no modifiers; thus, setting extra_keyboard_modifiers to zero\n\ |
|
d3f05a05fe2a
Implement extra_keyboard_modifiers properly.
Jim Blandy <jimb@redhat.com>
parents:
2618
diff
changeset
|
5002 cancels any modification."); |
|
1842
2cc82d6070e2
(extra_keyboard_modifiers): New Lisp var.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
5003 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
|
5004 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5005 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
|
5006 "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
|
5007 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
|
5008 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
|
5009 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
|
5010 Vdeactivate_mark = Qnil; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5011 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5012 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5013 "Normal hook run before each command is executed."); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5014 Vpre_command_hook = Qnil; |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5015 |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5016 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook, |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5017 "Normal hook run before each command is executed."); |
|
cc85a38463b8
(follow_key): Downcase shift_modifier as well as ASCII.
Richard M. Stallman <rms@gnu.org>
parents:
1988
diff
changeset
|
5018 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
|
5019 |
|
f74e9c948380
(command_loop_1): Set FRAME_MENU_BAR_ITEMS here.
Richard M. Stallman <rms@gnu.org>
parents:
2149
diff
changeset
|
5020 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
|
5021 "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
|
5022 Vlucid_menu_bar_dirty_flag = Qnil; |
| 518 | 5023 } |
| 5024 | |
| 5025 keys_of_keyboard () | |
| 5026 { | |
| 5027 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs"); | |
| 5028 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs"); | |
| 5029 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit"); | |
| 5030 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit"); | |
| 5031 initial_define_key (meta_map, 'x', "execute-extended-command"); | |
| 5032 } |
